From 84c2cf9684613e5e962b0dac3b81aef5cd17b21a Mon Sep 17 00:00:00 2001 From: George Fu Date: Thu, 6 Nov 2025 17:59:21 +0000 Subject: [PATCH 1/2] chore(codegen): sync for schema naming collisions --- scripts/generate-clients/config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/generate-clients/config.js b/scripts/generate-clients/config.js index 43c8fae1e231..127171e20ed6 100644 --- a/scripts/generate-clients/config.js +++ b/scripts/generate-clients/config.js @@ -2,8 +2,8 @@ module.exports = { // Use full commit hash as we explicitly fetch it. // Comparison link (update with previous hash): - // https://github.com/smithy-lang/smithy-typescript/compare/56a65e69af8a8b7a814a92af716009cabe4b0b42...472a5ea035237e10c560ed362c0e0105805ad26f - SMITHY_TS_COMMIT: "8aef84bd27a0bb995ef908239e7bb7c6c3a37435", + // https://github.com/smithy-lang/smithy-typescript/compare/8aef84bd27a0bb995ef908239e7bb7c6c3a37435...08e3b88680fec11b216b8bffaa4a44dba76eee8b + SMITHY_TS_COMMIT: "08e3b88680fec11b216b8bffaa4a44dba76eee8b", }; if (module.exports.SMITHY_TS_COMMIT.length < 40) { From a748535eb70a2a95bdef257eebd6d2f10065993e Mon Sep 17 00:00:00 2001 From: George Fu Date: Fri, 7 Nov 2025 16:20:54 +0000 Subject: [PATCH 2/2] chore(codegen): sync for synthetic base exception naming collision --- .../commands/AbortEnvironmentUpdateCommand.ts | 2 +- .../ApplyEnvironmentManagedActionCommand.ts | 2 +- ...sociateEnvironmentOperationsRoleCommand.ts | 2 +- .../commands/CheckDNSAvailabilityCommand.ts | 2 +- .../commands/ComposeEnvironmentsCommand.ts | 2 +- .../src/commands/CreateApplicationCommand.ts | 2 +- .../CreateApplicationVersionCommand.ts | 2 +- .../CreateConfigurationTemplateCommand.ts | 2 +- .../src/commands/CreateEnvironmentCommand.ts | 2 +- .../commands/CreatePlatformVersionCommand.ts | 2 +- .../commands/CreateStorageLocationCommand.ts | 2 +- .../src/commands/DeleteApplicationCommand.ts | 2 +- .../DeleteApplicationVersionCommand.ts | 2 +- .../DeleteConfigurationTemplateCommand.ts | 2 +- .../DeleteEnvironmentConfigurationCommand.ts | 2 +- .../commands/DeletePlatformVersionCommand.ts | 2 +- .../DescribeAccountAttributesCommand.ts | 2 +- .../DescribeApplicationVersionsCommand.ts | 2 +- .../commands/DescribeApplicationsCommand.ts | 2 +- .../DescribeConfigurationOptionsCommand.ts | 2 +- .../DescribeConfigurationSettingsCommand.ts | 2 +- .../DescribeEnvironmentHealthCommand.ts | 2 +- ...eEnvironmentManagedActionHistoryCommand.ts | 2 +- ...escribeEnvironmentManagedActionsCommand.ts | 2 +- .../DescribeEnvironmentResourcesCommand.ts | 2 +- .../commands/DescribeEnvironmentsCommand.ts | 2 +- .../src/commands/DescribeEventsCommand.ts | 2 +- .../DescribeInstancesHealthCommand.ts | 2 +- .../DescribePlatformVersionCommand.ts | 2 +- ...sociateEnvironmentOperationsRoleCommand.ts | 2 +- .../ListAvailableSolutionStacksCommand.ts | 2 +- .../commands/ListPlatformBranchesCommand.ts | 2 +- .../commands/ListPlatformVersionsCommand.ts | 2 +- .../commands/ListTagsForResourceCommand.ts | 2 +- .../src/commands/RebuildEnvironmentCommand.ts | 2 +- .../commands/RequestEnvironmentInfoCommand.ts | 2 +- .../src/commands/RestartAppServerCommand.ts | 2 +- .../RetrieveEnvironmentInfoCommand.ts | 2 +- .../commands/SwapEnvironmentCNAMEsCommand.ts | 2 +- .../commands/TerminateEnvironmentCommand.ts | 2 +- .../src/commands/UpdateApplicationCommand.ts | 2 +- ...dateApplicationResourceLifecycleCommand.ts | 2 +- .../UpdateApplicationVersionCommand.ts | 2 +- .../UpdateConfigurationTemplateCommand.ts | 2 +- .../src/commands/UpdateEnvironmentCommand.ts | 2 +- .../commands/UpdateTagsForResourceCommand.ts | 2 +- .../ValidateConfigurationSettingsCommand.ts | 2 +- clients/client-elastic-beanstalk/src/index.ts | 2 +- ...sticBeanstalkSyntheticServiceException.ts} | 4 +- .../src/models/models_0.ts | 2 +- .../src/protocols/Aws_query.ts | 2 +- .../src/schemas/schemas_0.ts | 52 +++---- .../src/schemas/schemas_0.ts | 22 +-- .../src/schemas/schemas_0.ts | 2 +- .../src/schemas/schemas_0.ts | 20 +-- .../src/schemas/schemas_0.ts | 66 ++++----- .../src/schemas/schemas_0.ts | 2 +- .../src/schemas/schemas_0.ts | 138 +++++++++--------- .../src/schemas/schemas_0.ts | 52 +++---- .../src/schemas/schemas_0.ts | 10 +- 60 files changed, 234 insertions(+), 234 deletions(-) rename clients/client-elastic-beanstalk/src/models/{ElasticBeanstalkServiceException.ts => ElasticBeanstalkSyntheticServiceException.ts} (73%) diff --git a/clients/client-elastic-beanstalk/src/commands/AbortEnvironmentUpdateCommand.ts b/clients/client-elastic-beanstalk/src/commands/AbortEnvironmentUpdateCommand.ts index 6751a1a45662..951ad227e532 100644 --- a/clients/client-elastic-beanstalk/src/commands/AbortEnvironmentUpdateCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/AbortEnvironmentUpdateCommand.ts @@ -58,7 +58,7 @@ export interface AbortEnvironmentUpdateCommandOutput extends __MetadataBearer {} *

The specified account does not have sufficient privileges for one or more AWS * services.

* - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/ApplyEnvironmentManagedActionCommand.ts b/clients/client-elastic-beanstalk/src/commands/ApplyEnvironmentManagedActionCommand.ts index ebc7377e8c1c..da6d9d024e55 100644 --- a/clients/client-elastic-beanstalk/src/commands/ApplyEnvironmentManagedActionCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/ApplyEnvironmentManagedActionCommand.ts @@ -72,7 +72,7 @@ export interface ApplyEnvironmentManagedActionCommandOutput * @throws {@link ManagedActionInvalidStateException} (client fault) *

Cannot modify the managed action in its current state.

* - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/AssociateEnvironmentOperationsRoleCommand.ts b/clients/client-elastic-beanstalk/src/commands/AssociateEnvironmentOperationsRoleCommand.ts index a99222aeb4dc..abaa1c00342c 100644 --- a/clients/client-elastic-beanstalk/src/commands/AssociateEnvironmentOperationsRoleCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/AssociateEnvironmentOperationsRoleCommand.ts @@ -63,7 +63,7 @@ export interface AssociateEnvironmentOperationsRoleCommandOutput extends __Metad *

The specified account does not have sufficient privileges for one or more AWS * services.

* - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/CheckDNSAvailabilityCommand.ts b/clients/client-elastic-beanstalk/src/commands/CheckDNSAvailabilityCommand.ts index 04978fa832fc..9ca0b4321711 100644 --- a/clients/client-elastic-beanstalk/src/commands/CheckDNSAvailabilityCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/CheckDNSAvailabilityCommand.ts @@ -55,7 +55,7 @@ export interface CheckDNSAvailabilityCommandOutput extends CheckDNSAvailabilityR * @see {@link CheckDNSAvailabilityCommandOutput} for command's `response` shape. * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape. * - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/ComposeEnvironmentsCommand.ts b/clients/client-elastic-beanstalk/src/commands/ComposeEnvironmentsCommand.ts index 4eb2827e34fe..c6d4c922297e 100644 --- a/clients/client-elastic-beanstalk/src/commands/ComposeEnvironmentsCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/ComposeEnvironmentsCommand.ts @@ -115,7 +115,7 @@ export interface ComposeEnvironmentsCommandOutput extends EnvironmentDescription * @throws {@link TooManyEnvironmentsException} (client fault) *

The specified account has reached its limit of environments.

* - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/CreateApplicationCommand.ts b/clients/client-elastic-beanstalk/src/commands/CreateApplicationCommand.ts index ecdabb3e60e0..fdc30c7a69ec 100644 --- a/clients/client-elastic-beanstalk/src/commands/CreateApplicationCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/CreateApplicationCommand.ts @@ -107,7 +107,7 @@ export interface CreateApplicationCommandOutput extends ApplicationDescriptionMe * @throws {@link TooManyApplicationsException} (client fault) *

The specified account has reached its limit of applications.

* - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/CreateApplicationVersionCommand.ts b/clients/client-elastic-beanstalk/src/commands/CreateApplicationVersionCommand.ts index 886058e393aa..f09d58f504fe 100644 --- a/clients/client-elastic-beanstalk/src/commands/CreateApplicationVersionCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/CreateApplicationVersionCommand.ts @@ -142,7 +142,7 @@ export interface CreateApplicationVersionCommandOutput extends ApplicationVersio * @throws {@link TooManyApplicationVersionsException} (client fault) *

The specified account has reached its limit of application versions.

* - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/CreateConfigurationTemplateCommand.ts b/clients/client-elastic-beanstalk/src/commands/CreateConfigurationTemplateCommand.ts index 1b706a95827c..6471ea7f376b 100644 --- a/clients/client-elastic-beanstalk/src/commands/CreateConfigurationTemplateCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/CreateConfigurationTemplateCommand.ts @@ -126,7 +126,7 @@ export interface CreateConfigurationTemplateCommandOutput extends ConfigurationS * @throws {@link TooManyConfigurationTemplatesException} (client fault) *

The specified account has reached its limit of configuration templates.

* - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/CreateEnvironmentCommand.ts b/clients/client-elastic-beanstalk/src/commands/CreateEnvironmentCommand.ts index 216331aaf1aa..826fc0853635 100644 --- a/clients/client-elastic-beanstalk/src/commands/CreateEnvironmentCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/CreateEnvironmentCommand.ts @@ -137,7 +137,7 @@ export interface CreateEnvironmentCommandOutput extends EnvironmentDescription, * @throws {@link TooManyEnvironmentsException} (client fault) *

The specified account has reached its limit of environments.

* - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/CreatePlatformVersionCommand.ts b/clients/client-elastic-beanstalk/src/commands/CreatePlatformVersionCommand.ts index 023847c173be..d63be6e5d942 100644 --- a/clients/client-elastic-beanstalk/src/commands/CreatePlatformVersionCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/CreatePlatformVersionCommand.ts @@ -104,7 +104,7 @@ export interface CreatePlatformVersionCommandOutput extends CreatePlatformVersio * @throws {@link TooManyPlatformsException} (client fault) *

You have exceeded the maximum number of allowed platforms associated with the account.

* - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/CreateStorageLocationCommand.ts b/clients/client-elastic-beanstalk/src/commands/CreateStorageLocationCommand.ts index f9c0067bdfec..3bbb80131975 100644 --- a/clients/client-elastic-beanstalk/src/commands/CreateStorageLocationCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/CreateStorageLocationCommand.ts @@ -66,7 +66,7 @@ export interface CreateStorageLocationCommandOutput extends CreateStorageLocatio * @throws {@link TooManyBucketsException} (client fault) *

The specified account has reached its limit of Amazon S3 buckets.

* - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/DeleteApplicationCommand.ts b/clients/client-elastic-beanstalk/src/commands/DeleteApplicationCommand.ts index 12689f47103d..4d074f9f004a 100644 --- a/clients/client-elastic-beanstalk/src/commands/DeleteApplicationCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DeleteApplicationCommand.ts @@ -62,7 +62,7 @@ export interface DeleteApplicationCommandOutput extends __MetadataBearer {} *

Unable to perform the specified operation because another operation that effects an * element in this activity is already in progress.

* - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/DeleteApplicationVersionCommand.ts b/clients/client-elastic-beanstalk/src/commands/DeleteApplicationVersionCommand.ts index aae05cbf3938..437500cbaf67 100644 --- a/clients/client-elastic-beanstalk/src/commands/DeleteApplicationVersionCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DeleteApplicationVersionCommand.ts @@ -85,7 +85,7 @@ export interface DeleteApplicationVersionCommandOutput extends __MetadataBearer *

Unable to delete the Amazon S3 source bundle associated with the application version. * The application version was deleted successfully.

* - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/DeleteConfigurationTemplateCommand.ts b/clients/client-elastic-beanstalk/src/commands/DeleteConfigurationTemplateCommand.ts index f88d1600ef3b..0208a7075d44 100644 --- a/clients/client-elastic-beanstalk/src/commands/DeleteConfigurationTemplateCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DeleteConfigurationTemplateCommand.ts @@ -62,7 +62,7 @@ export interface DeleteConfigurationTemplateCommandOutput extends __MetadataBear *

Unable to perform the specified operation because another operation that effects an * element in this activity is already in progress.

* - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/DeleteEnvironmentConfigurationCommand.ts b/clients/client-elastic-beanstalk/src/commands/DeleteEnvironmentConfigurationCommand.ts index 261624172ada..d3445ac53bf6 100644 --- a/clients/client-elastic-beanstalk/src/commands/DeleteEnvironmentConfigurationCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DeleteEnvironmentConfigurationCommand.ts @@ -61,7 +61,7 @@ export interface DeleteEnvironmentConfigurationCommandOutput extends __MetadataB * @see {@link DeleteEnvironmentConfigurationCommandOutput} for command's `response` shape. * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape. * - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/DeletePlatformVersionCommand.ts b/clients/client-elastic-beanstalk/src/commands/DeletePlatformVersionCommand.ts index 7027d5bda9e6..36ced8092d14 100644 --- a/clients/client-elastic-beanstalk/src/commands/DeletePlatformVersionCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DeletePlatformVersionCommand.ts @@ -85,7 +85,7 @@ export interface DeletePlatformVersionCommandOutput extends DeletePlatformVersio * @throws {@link PlatformVersionStillReferencedException} (client fault) *

You cannot delete the platform version because there are still environments running on it.

* - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/DescribeAccountAttributesCommand.ts b/clients/client-elastic-beanstalk/src/commands/DescribeAccountAttributesCommand.ts index 7b29cb7dc68d..733b16e6356e 100644 --- a/clients/client-elastic-beanstalk/src/commands/DescribeAccountAttributesCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DescribeAccountAttributesCommand.ts @@ -74,7 +74,7 @@ export interface DescribeAccountAttributesCommandOutput extends DescribeAccountA *

The specified account does not have sufficient privileges for one or more AWS * services.

* - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/DescribeApplicationVersionsCommand.ts b/clients/client-elastic-beanstalk/src/commands/DescribeApplicationVersionsCommand.ts index a68cd4b51d24..ebed2e6b361f 100644 --- a/clients/client-elastic-beanstalk/src/commands/DescribeApplicationVersionsCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DescribeApplicationVersionsCommand.ts @@ -82,7 +82,7 @@ export interface DescribeApplicationVersionsCommandOutput * @see {@link DescribeApplicationVersionsCommandOutput} for command's `response` shape. * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape. * - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/DescribeApplicationsCommand.ts b/clients/client-elastic-beanstalk/src/commands/DescribeApplicationsCommand.ts index 97a8b816ff7e..1ceb6011e287 100644 --- a/clients/client-elastic-beanstalk/src/commands/DescribeApplicationsCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DescribeApplicationsCommand.ts @@ -85,7 +85,7 @@ export interface DescribeApplicationsCommandOutput extends ApplicationDescriptio * @see {@link DescribeApplicationsCommandOutput} for command's `response` shape. * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape. * - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/DescribeConfigurationOptionsCommand.ts b/clients/client-elastic-beanstalk/src/commands/DescribeConfigurationOptionsCommand.ts index 67525d979061..62123aabe385 100644 --- a/clients/client-elastic-beanstalk/src/commands/DescribeConfigurationOptionsCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DescribeConfigurationOptionsCommand.ts @@ -92,7 +92,7 @@ export interface DescribeConfigurationOptionsCommandOutput extends Configuration * @throws {@link TooManyBucketsException} (client fault) *

The specified account has reached its limit of Amazon S3 buckets.

* - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/DescribeConfigurationSettingsCommand.ts b/clients/client-elastic-beanstalk/src/commands/DescribeConfigurationSettingsCommand.ts index fb796f52c5fa..c98c6813ee67 100644 --- a/clients/client-elastic-beanstalk/src/commands/DescribeConfigurationSettingsCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DescribeConfigurationSettingsCommand.ts @@ -98,7 +98,7 @@ export interface DescribeConfigurationSettingsCommandOutput * @throws {@link TooManyBucketsException} (client fault) *

The specified account has reached its limit of Amazon S3 buckets.

* - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentHealthCommand.ts b/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentHealthCommand.ts index c00c6f284015..a04d537a009e 100644 --- a/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentHealthCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentHealthCommand.ts @@ -104,7 +104,7 @@ export interface DescribeEnvironmentHealthCommandOutput extends DescribeEnvironm *

One or more input parameters is not valid. Please correct the input parameters and try * the operation again.

* - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentManagedActionHistoryCommand.ts b/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentManagedActionHistoryCommand.ts index 7e6d3fe8c4de..598d4d42e4ef 100644 --- a/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentManagedActionHistoryCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentManagedActionHistoryCommand.ts @@ -81,7 +81,7 @@ export interface DescribeEnvironmentManagedActionHistoryCommandOutput * @throws {@link ElasticBeanstalkServiceException} (client fault) *

A generic service exception has occurred.

* - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentManagedActionsCommand.ts b/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentManagedActionsCommand.ts index 48ccd6698850..a34c6ca4a099 100644 --- a/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentManagedActionsCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentManagedActionsCommand.ts @@ -72,7 +72,7 @@ export interface DescribeEnvironmentManagedActionsCommandOutput * @throws {@link ElasticBeanstalkServiceException} (client fault) *

A generic service exception has occurred.

* - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentResourcesCommand.ts b/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentResourcesCommand.ts index e6d0c24d9f3a..54978bb48146 100644 --- a/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentResourcesCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentResourcesCommand.ts @@ -99,7 +99,7 @@ export interface DescribeEnvironmentResourcesCommandOutput *

The specified account does not have sufficient privileges for one or more AWS * services.

* - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentsCommand.ts b/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentsCommand.ts index 62dfbd5ac430..5dc77141aabe 100644 --- a/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentsCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentsCommand.ts @@ -110,7 +110,7 @@ export interface DescribeEnvironmentsCommandOutput extends EnvironmentDescriptio * @see {@link DescribeEnvironmentsCommandOutput} for command's `response` shape. * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape. * - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/DescribeEventsCommand.ts b/clients/client-elastic-beanstalk/src/commands/DescribeEventsCommand.ts index d799ab830a85..ecfbad675825 100644 --- a/clients/client-elastic-beanstalk/src/commands/DescribeEventsCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DescribeEventsCommand.ts @@ -82,7 +82,7 @@ export interface DescribeEventsCommandOutput extends EventDescriptionsMessage, _ * @see {@link DescribeEventsCommandOutput} for command's `response` shape. * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape. * - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/DescribeInstancesHealthCommand.ts b/clients/client-elastic-beanstalk/src/commands/DescribeInstancesHealthCommand.ts index 1ea9c718f5e1..ace8b44d0520 100644 --- a/clients/client-elastic-beanstalk/src/commands/DescribeInstancesHealthCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DescribeInstancesHealthCommand.ts @@ -123,7 +123,7 @@ export interface DescribeInstancesHealthCommandOutput extends DescribeInstancesH *

One or more input parameters is not valid. Please correct the input parameters and try * the operation again.

* - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/DescribePlatformVersionCommand.ts b/clients/client-elastic-beanstalk/src/commands/DescribePlatformVersionCommand.ts index f653fa412282..e37cc3543bee 100644 --- a/clients/client-elastic-beanstalk/src/commands/DescribePlatformVersionCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DescribePlatformVersionCommand.ts @@ -105,7 +105,7 @@ export interface DescribePlatformVersionCommandOutput extends DescribePlatformVe *

The specified account does not have sufficient privileges for one or more AWS * services.

* - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/DisassociateEnvironmentOperationsRoleCommand.ts b/clients/client-elastic-beanstalk/src/commands/DisassociateEnvironmentOperationsRoleCommand.ts index 4c6239f0ad95..e11ba8f7a91c 100644 --- a/clients/client-elastic-beanstalk/src/commands/DisassociateEnvironmentOperationsRoleCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DisassociateEnvironmentOperationsRoleCommand.ts @@ -63,7 +63,7 @@ export interface DisassociateEnvironmentOperationsRoleCommandOutput extends __Me *

The specified account does not have sufficient privileges for one or more AWS * services.

* - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/ListAvailableSolutionStacksCommand.ts b/clients/client-elastic-beanstalk/src/commands/ListAvailableSolutionStacksCommand.ts index 9cfe3fd69a1e..b5263292faf6 100644 --- a/clients/client-elastic-beanstalk/src/commands/ListAvailableSolutionStacksCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/ListAvailableSolutionStacksCommand.ts @@ -65,7 +65,7 @@ export interface ListAvailableSolutionStacksCommandOutput * @see {@link ListAvailableSolutionStacksCommandOutput} for command's `response` shape. * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape. * - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/ListPlatformBranchesCommand.ts b/clients/client-elastic-beanstalk/src/commands/ListPlatformBranchesCommand.ts index 6fbc888deb1f..4115e16e9856 100644 --- a/clients/client-elastic-beanstalk/src/commands/ListPlatformBranchesCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/ListPlatformBranchesCommand.ts @@ -78,7 +78,7 @@ export interface ListPlatformBranchesCommandOutput extends ListPlatformBranchesR * @see {@link ListPlatformBranchesCommandOutput} for command's `response` shape. * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape. * - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/ListPlatformVersionsCommand.ts b/clients/client-elastic-beanstalk/src/commands/ListPlatformVersionsCommand.ts index 049d13311295..596cc6f726de 100644 --- a/clients/client-elastic-beanstalk/src/commands/ListPlatformVersionsCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/ListPlatformVersionsCommand.ts @@ -95,7 +95,7 @@ export interface ListPlatformVersionsCommandOutput extends ListPlatformVersionsR *

The specified account does not have sufficient privileges for one or more AWS * services.

* - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/ListTagsForResourceCommand.ts b/clients/client-elastic-beanstalk/src/commands/ListTagsForResourceCommand.ts index 14d8dd14b888..aaf514214509 100644 --- a/clients/client-elastic-beanstalk/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/ListTagsForResourceCommand.ts @@ -73,7 +73,7 @@ export interface ListTagsForResourceCommandOutput extends ResourceTagsDescriptio * @throws {@link ResourceTypeNotSupportedException} (client fault) *

The type of the specified Amazon Resource Name (ARN) isn't supported for this operation.

* - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/RebuildEnvironmentCommand.ts b/clients/client-elastic-beanstalk/src/commands/RebuildEnvironmentCommand.ts index 389f68aad339..9c3380662075 100644 --- a/clients/client-elastic-beanstalk/src/commands/RebuildEnvironmentCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/RebuildEnvironmentCommand.ts @@ -58,7 +58,7 @@ export interface RebuildEnvironmentCommandOutput extends __MetadataBearer {} *

The specified account does not have sufficient privileges for one or more AWS * services.

* - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/RequestEnvironmentInfoCommand.ts b/clients/client-elastic-beanstalk/src/commands/RequestEnvironmentInfoCommand.ts index b561c3bbd1a0..ad943601fd4f 100644 --- a/clients/client-elastic-beanstalk/src/commands/RequestEnvironmentInfoCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/RequestEnvironmentInfoCommand.ts @@ -69,7 +69,7 @@ export interface RequestEnvironmentInfoCommandOutput extends __MetadataBearer {} * @see {@link RequestEnvironmentInfoCommandOutput} for command's `response` shape. * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape. * - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/RestartAppServerCommand.ts b/clients/client-elastic-beanstalk/src/commands/RestartAppServerCommand.ts index fc57807046ae..d406036000d5 100644 --- a/clients/client-elastic-beanstalk/src/commands/RestartAppServerCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/RestartAppServerCommand.ts @@ -54,7 +54,7 @@ export interface RestartAppServerCommandOutput extends __MetadataBearer {} * @see {@link RestartAppServerCommandOutput} for command's `response` shape. * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape. * - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/RetrieveEnvironmentInfoCommand.ts b/clients/client-elastic-beanstalk/src/commands/RetrieveEnvironmentInfoCommand.ts index 50d4a9f13db5..c8bd45edd572 100644 --- a/clients/client-elastic-beanstalk/src/commands/RetrieveEnvironmentInfoCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/RetrieveEnvironmentInfoCommand.ts @@ -72,7 +72,7 @@ export interface RetrieveEnvironmentInfoCommandOutput extends RetrieveEnvironmen * @see {@link RetrieveEnvironmentInfoCommandOutput} for command's `response` shape. * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape. * - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/SwapEnvironmentCNAMEsCommand.ts b/clients/client-elastic-beanstalk/src/commands/SwapEnvironmentCNAMEsCommand.ts index 7cd9934c3cd6..e9b74e889187 100644 --- a/clients/client-elastic-beanstalk/src/commands/SwapEnvironmentCNAMEsCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/SwapEnvironmentCNAMEsCommand.ts @@ -55,7 +55,7 @@ export interface SwapEnvironmentCNAMEsCommandOutput extends __MetadataBearer {} * @see {@link SwapEnvironmentCNAMEsCommandOutput} for command's `response` shape. * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape. * - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/TerminateEnvironmentCommand.ts b/clients/client-elastic-beanstalk/src/commands/TerminateEnvironmentCommand.ts index d8355717c97c..eb2ef16f18d1 100644 --- a/clients/client-elastic-beanstalk/src/commands/TerminateEnvironmentCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/TerminateEnvironmentCommand.ts @@ -101,7 +101,7 @@ export interface TerminateEnvironmentCommandOutput extends EnvironmentDescriptio *

The specified account does not have sufficient privileges for one or more AWS * services.

* - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/UpdateApplicationCommand.ts b/clients/client-elastic-beanstalk/src/commands/UpdateApplicationCommand.ts index 3aada3bc2fae..f2217cde0e25 100644 --- a/clients/client-elastic-beanstalk/src/commands/UpdateApplicationCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/UpdateApplicationCommand.ts @@ -86,7 +86,7 @@ export interface UpdateApplicationCommandOutput extends ApplicationDescriptionMe * @see {@link UpdateApplicationCommandOutput} for command's `response` shape. * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape. * - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/UpdateApplicationResourceLifecycleCommand.ts b/clients/client-elastic-beanstalk/src/commands/UpdateApplicationResourceLifecycleCommand.ts index 16c9cf1193a0..5aa975293744 100644 --- a/clients/client-elastic-beanstalk/src/commands/UpdateApplicationResourceLifecycleCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/UpdateApplicationResourceLifecycleCommand.ts @@ -96,7 +96,7 @@ export interface UpdateApplicationResourceLifecycleCommandOutput *

The specified account does not have sufficient privileges for one or more AWS * services.

* - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/UpdateApplicationVersionCommand.ts b/clients/client-elastic-beanstalk/src/commands/UpdateApplicationVersionCommand.ts index af21e8297c93..dc2d599b9b7f 100644 --- a/clients/client-elastic-beanstalk/src/commands/UpdateApplicationVersionCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/UpdateApplicationVersionCommand.ts @@ -78,7 +78,7 @@ export interface UpdateApplicationVersionCommandOutput extends ApplicationVersio * @see {@link UpdateApplicationVersionCommandOutput} for command's `response` shape. * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape. * - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/UpdateConfigurationTemplateCommand.ts b/clients/client-elastic-beanstalk/src/commands/UpdateConfigurationTemplateCommand.ts index ad033e4c8726..1e76f91b0404 100644 --- a/clients/client-elastic-beanstalk/src/commands/UpdateConfigurationTemplateCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/UpdateConfigurationTemplateCommand.ts @@ -107,7 +107,7 @@ export interface UpdateConfigurationTemplateCommandOutput extends ConfigurationS * @throws {@link TooManyBucketsException} (client fault) *

The specified account has reached its limit of Amazon S3 buckets.

* - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/UpdateEnvironmentCommand.ts b/clients/client-elastic-beanstalk/src/commands/UpdateEnvironmentCommand.ts index 3e895bcb9490..ffcb1f9be676 100644 --- a/clients/client-elastic-beanstalk/src/commands/UpdateEnvironmentCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/UpdateEnvironmentCommand.ts @@ -137,7 +137,7 @@ export interface UpdateEnvironmentCommandOutput extends EnvironmentDescription, * @throws {@link TooManyBucketsException} (client fault) *

The specified account has reached its limit of Amazon S3 buckets.

* - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/UpdateTagsForResourceCommand.ts b/clients/client-elastic-beanstalk/src/commands/UpdateTagsForResourceCommand.ts index db0234e716d1..27b82783191a 100644 --- a/clients/client-elastic-beanstalk/src/commands/UpdateTagsForResourceCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/UpdateTagsForResourceCommand.ts @@ -100,7 +100,7 @@ export interface UpdateTagsForResourceCommandOutput extends __MetadataBearer {} *

To calculate this, the operation considers both the number of tags the resource already has * and the tags this operation would add if it succeeded.

* - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/commands/ValidateConfigurationSettingsCommand.ts b/clients/client-elastic-beanstalk/src/commands/ValidateConfigurationSettingsCommand.ts index 8c7a4865275c..1c59136b6209 100644 --- a/clients/client-elastic-beanstalk/src/commands/ValidateConfigurationSettingsCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/ValidateConfigurationSettingsCommand.ts @@ -86,7 +86,7 @@ export interface ValidateConfigurationSettingsCommandOutput * @throws {@link TooManyBucketsException} (client fault) *

The specified account has reached its limit of Amazon S3 buckets.

* - * @throws {@link ElasticBeanstalkServiceException} + * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * diff --git a/clients/client-elastic-beanstalk/src/index.ts b/clients/client-elastic-beanstalk/src/index.ts index 6522b270c167..ed592e9176d5 100644 --- a/clients/client-elastic-beanstalk/src/index.ts +++ b/clients/client-elastic-beanstalk/src/index.ts @@ -27,4 +27,4 @@ export * from "./pagination"; export * from "./waiters"; export * from "./models"; -export { ElasticBeanstalkServiceException } from "./models/ElasticBeanstalkServiceException"; +export { ElasticBeanstalkSyntheticServiceException } from "./models/ElasticBeanstalkSyntheticServiceException"; diff --git a/clients/client-elastic-beanstalk/src/models/ElasticBeanstalkServiceException.ts b/clients/client-elastic-beanstalk/src/models/ElasticBeanstalkSyntheticServiceException.ts similarity index 73% rename from clients/client-elastic-beanstalk/src/models/ElasticBeanstalkServiceException.ts rename to clients/client-elastic-beanstalk/src/models/ElasticBeanstalkSyntheticServiceException.ts index a72bceb80d93..e15fad92e340 100644 --- a/clients/client-elastic-beanstalk/src/models/ElasticBeanstalkServiceException.ts +++ b/clients/client-elastic-beanstalk/src/models/ElasticBeanstalkSyntheticServiceException.ts @@ -13,12 +13,12 @@ export { __ServiceException }; * * Base exception class for all service exceptions from ElasticBeanstalk service. */ -export class ElasticBeanstalkServiceException extends __ServiceException { +export class ElasticBeanstalkSyntheticServiceException extends __ServiceException { /** * @internal */ constructor(options: __ServiceExceptionOptions) { super(options); - Object.setPrototypeOf(this, ElasticBeanstalkServiceException.prototype); + Object.setPrototypeOf(this, ElasticBeanstalkSyntheticServiceException.prototype); } } diff --git a/clients/client-elastic-beanstalk/src/models/models_0.ts b/clients/client-elastic-beanstalk/src/models/models_0.ts index 14564b9014c9..cb1c295d504b 100644 --- a/clients/client-elastic-beanstalk/src/models/models_0.ts +++ b/clients/client-elastic-beanstalk/src/models/models_0.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; -import { ElasticBeanstalkServiceException as __BaseException } from "./ElasticBeanstalkServiceException"; +import { ElasticBeanstalkSyntheticServiceException as __BaseException } from "./ElasticBeanstalkSyntheticServiceException"; /** *

diff --git a/clients/client-elastic-beanstalk/src/protocols/Aws_query.ts b/clients/client-elastic-beanstalk/src/protocols/Aws_query.ts index 590b455ffcd0..9434cb2eacde 100644 --- a/clients/client-elastic-beanstalk/src/protocols/Aws_query.ts +++ b/clients/client-elastic-beanstalk/src/protocols/Aws_query.ts @@ -187,7 +187,7 @@ import { ValidateConfigurationSettingsCommandInput, ValidateConfigurationSettingsCommandOutput, } from "../commands/ValidateConfigurationSettingsCommand"; -import { ElasticBeanstalkServiceException as __BaseException } from "../models/ElasticBeanstalkServiceException"; +import { ElasticBeanstalkSyntheticServiceException as __BaseException } from "../models/ElasticBeanstalkSyntheticServiceException"; import { AbortEnvironmentUpdateMessage, ApplicationDescription, 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 1e866359a939..43d04fb09e46 100644 --- a/private/aws-protocoltests-ec2-schema/src/schemas/schemas_0.ts +++ b/private/aws-protocoltests-ec2-schema/src/schemas/schemas_0.ts @@ -511,7 +511,7 @@ export var XmlTimestampsOutput: StaticStructureSchema = [ [4, 5, 5, 7, 7, 6, 6], ]; export var GreetingStruct: StaticStructureSchema = [3, n1, _GS, 0, [_hi], [0]]; -export var Unit = "unit" as const; +export var __Unit = "unit" as const; export var EC2ProtocolServiceException: StaticErrorSchema = [-3, _s, "EC2ProtocolServiceException", 0, [], []]; TypeRegistry.for(_s).registerError(EC2ProtocolServiceException, __EC2ProtocolServiceException); @@ -611,7 +611,7 @@ export var FooEnumMap = 128 | 0; export var IntegerEnumMap = 128 | 1; -export var DatetimeOffsets: StaticOperationSchema = [9, n0, _DO, 0, () => Unit, () => DatetimeOffsetsOutput]; +export var DatetimeOffsets: StaticOperationSchema = [9, n0, _DO, 0, () => __Unit, () => DatetimeOffsetsOutput]; export var EmptyInputAndEmptyOutput: StaticOperationSchema = [ 9, n0, @@ -627,8 +627,8 @@ export var EndpointOperation: StaticOperationSchema = [ { [_end]: ["foo."], }, - () => Unit, - () => Unit, + () => __Unit, + () => __Unit, ]; export var EndpointWithHostLabelOperation: StaticOperationSchema = [ 9, @@ -638,28 +638,28 @@ export var EndpointWithHostLabelOperation: StaticOperationSchema = [ [_end]: ["foo.{label}."], }, () => HostLabelInput, - () => Unit, + () => __Unit, ]; -export var FractionalSeconds: StaticOperationSchema = [9, n0, _FS, 0, () => Unit, () => FractionalSecondsOutput]; -export var GreetingWithErrors: StaticOperationSchema = [9, n0, _GWE, 0, () => Unit, () => GreetingWithErrorsOutput]; -export var HostWithPathOperation: StaticOperationSchema = [9, n0, _HWPO, 0, () => Unit, () => Unit]; +export var FractionalSeconds: StaticOperationSchema = [9, n0, _FS, 0, () => __Unit, () => FractionalSecondsOutput]; +export var GreetingWithErrors: StaticOperationSchema = [9, n0, _GWE, 0, () => __Unit, () => GreetingWithErrorsOutput]; +export var HostWithPathOperation: StaticOperationSchema = [9, n0, _HWPO, 0, () => __Unit, () => __Unit]; export var IgnoresWrappingXmlName: StaticOperationSchema = [ 9, n0, _IWXN, 0, - () => Unit, + () => __Unit, () => IgnoresWrappingXmlNameOutput, ]; -export var NestedStructures: StaticOperationSchema = [9, n0, _NS, 0, () => NestedStructuresInput, () => Unit]; -export var NoInputAndOutput: StaticOperationSchema = [9, n0, _NIAO, 0, () => Unit, () => NoInputAndOutputOutput]; +export var NestedStructures: StaticOperationSchema = [9, n0, _NS, 0, () => NestedStructuresInput, () => __Unit]; +export var NoInputAndOutput: StaticOperationSchema = [9, n0, _NIAO, 0, () => __Unit, () => NoInputAndOutputOutput]; export var PutWithContentEncoding: StaticOperationSchema = [ 9, n0, _PWCE, 0, () => PutWithContentEncodingInput, - () => Unit, + () => __Unit, ]; export var QueryIdempotencyTokenAutoFill: StaticOperationSchema = [ 9, @@ -667,25 +667,25 @@ export var QueryIdempotencyTokenAutoFill: StaticOperationSchema = [ _QITAF, 0, () => QueryIdempotencyTokenAutoFillInput, - () => Unit, + () => __Unit, ]; -export var QueryLists: StaticOperationSchema = [9, n0, _QL, 0, () => QueryListsInput, () => Unit]; -export var QueryTimestamps: StaticOperationSchema = [9, n0, _QT, 0, () => QueryTimestampsInput, () => Unit]; -export var RecursiveXmlShapes: StaticOperationSchema = [9, n0, _RXS, 0, () => Unit, () => RecursiveXmlShapesOutput]; -export var SimpleInputParams: StaticOperationSchema = [9, n0, _SIP, 0, () => SimpleInputParamsInput, () => Unit]; +export var QueryLists: StaticOperationSchema = [9, n0, _QL, 0, () => QueryListsInput, () => __Unit]; +export var QueryTimestamps: StaticOperationSchema = [9, n0, _QT, 0, () => QueryTimestampsInput, () => __Unit]; +export var RecursiveXmlShapes: StaticOperationSchema = [9, n0, _RXS, 0, () => __Unit, () => RecursiveXmlShapesOutput]; +export var SimpleInputParams: StaticOperationSchema = [9, n0, _SIP, 0, () => SimpleInputParamsInput, () => __Unit]; export var SimpleScalarXmlProperties: StaticOperationSchema = [ 9, n0, _SSXP, 0, - () => Unit, + () => __Unit, () => SimpleScalarXmlPropertiesOutput, ]; -export var XmlBlobs: StaticOperationSchema = [9, n0, _XB, 0, () => Unit, () => XmlBlobsOutput]; -export var XmlEmptyBlobs: StaticOperationSchema = [9, n0, _XEB, 0, () => Unit, () => XmlBlobsOutput]; -export var XmlEmptyLists: StaticOperationSchema = [9, n0, _XEL, 0, () => Unit, () => XmlListsOutput]; -export var XmlEnums: StaticOperationSchema = [9, n0, _XE, 0, () => Unit, () => XmlEnumsOutput]; -export var XmlIntEnums: StaticOperationSchema = [9, n0, _XIE, 0, () => Unit, () => XmlIntEnumsOutput]; -export var XmlLists: StaticOperationSchema = [9, n0, _XL, 0, () => Unit, () => XmlListsOutput]; -export var XmlNamespaces: StaticOperationSchema = [9, n0, _XN, 0, () => Unit, () => XmlNamespacesOutput]; -export var XmlTimestamps: StaticOperationSchema = [9, n0, _XT, 0, () => Unit, () => XmlTimestampsOutput]; +export var XmlBlobs: StaticOperationSchema = [9, n0, _XB, 0, () => __Unit, () => XmlBlobsOutput]; +export var XmlEmptyBlobs: StaticOperationSchema = [9, n0, _XEB, 0, () => __Unit, () => XmlBlobsOutput]; +export var XmlEmptyLists: StaticOperationSchema = [9, n0, _XEL, 0, () => __Unit, () => XmlListsOutput]; +export var XmlEnums: StaticOperationSchema = [9, n0, _XE, 0, () => __Unit, () => XmlEnumsOutput]; +export var XmlIntEnums: StaticOperationSchema = [9, n0, _XIE, 0, () => __Unit, () => XmlIntEnumsOutput]; +export var XmlLists: StaticOperationSchema = [9, n0, _XL, 0, () => __Unit, () => XmlListsOutput]; +export var XmlNamespaces: StaticOperationSchema = [9, n0, _XN, 0, () => __Unit, () => XmlNamespacesOutput]; +export var XmlTimestamps: StaticOperationSchema = [9, n0, _XT, 0, () => __Unit, () => XmlTimestampsOutput]; 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 4acdb8f46a6a..9476ebbede79 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 @@ -366,7 +366,7 @@ export var TopLevel: StaticStructureSchema = [ [() => Dialog, () => DialogList, () => DialogMap], ]; export var GreetingStruct: StaticStructureSchema = [3, n1, _GS, 0, [_h], [0]]; -export var Unit = "unit" as const; +export var __Unit = "unit" as const; export var JSONRPC10ServiceException: StaticErrorSchema = [-3, _sm, "JSONRPC10ServiceException", 0, [], []]; TypeRegistry.for(_sm).registerError(JSONRPC10ServiceException, __JSONRPC10ServiceException); @@ -416,8 +416,8 @@ export var EndpointOperation: StaticOperationSchema = [ { [_end]: ["foo."], }, - () => Unit, - () => Unit, + () => __Unit, + () => __Unit, ]; export var EndpointWithHostLabelOperation: StaticOperationSchema = [ 9, @@ -427,7 +427,7 @@ export var EndpointWithHostLabelOperation: StaticOperationSchema = [ [_end]: ["foo.{label}."], }, () => EndpointWithHostLabelOperationInput, - () => Unit, + () => __Unit, ]; export var GreetingWithErrors: StaticOperationSchema = [ 9, @@ -437,10 +437,10 @@ export var GreetingWithErrors: StaticOperationSchema = [ () => GreetingWithErrorsInput, () => GreetingWithErrorsOutput, ]; -export var HostWithPathOperation: StaticOperationSchema = [9, n0, _HWPO, 0, () => Unit, () => Unit]; +export var HostWithPathOperation: StaticOperationSchema = [9, n0, _HWPO, 0, () => __Unit, () => __Unit]; export var JsonUnions: StaticOperationSchema = [9, n0, _JU, 2, () => JsonUnionsInput, () => JsonUnionsOutput]; -export var NoInputAndNoOutput: StaticOperationSchema = [9, n0, _NIANO, 0, () => Unit, () => Unit]; -export var NoInputAndOutput: StaticOperationSchema = [9, n0, _NIAO, 0, () => Unit, () => NoInputAndOutputOutput]; +export var NoInputAndNoOutput: StaticOperationSchema = [9, n0, _NIANO, 0, () => __Unit, () => __Unit]; +export var NoInputAndOutput: StaticOperationSchema = [9, n0, _NIAO, 0, () => __Unit, () => NoInputAndOutputOutput]; export var OperationWithDefaults: StaticOperationSchema = [ 9, n0, @@ -462,7 +462,7 @@ export var OperationWithRequiredMembers: StaticOperationSchema = [ n0, _OWRM, 0, - () => Unit, + () => __Unit, () => OperationWithRequiredMembersOutput, ]; export var OperationWithRequiredMembersWithDefaults: StaticOperationSchema = [ @@ -470,7 +470,7 @@ export var OperationWithRequiredMembersWithDefaults: StaticOperationSchema = [ n0, _OWRMWD, 0, - () => Unit, + () => __Unit, () => OperationWithRequiredMembersWithDefaultsOutput, ]; export var PutWithContentEncoding: StaticOperationSchema = [ @@ -479,9 +479,9 @@ export var PutWithContentEncoding: StaticOperationSchema = [ _PWCE, 0, () => PutWithContentEncodingInput, - () => Unit, + () => __Unit, ]; -export var QueryIncompatibleOperation: StaticOperationSchema = [9, n0, _QIO, 2, () => Unit, () => Unit]; +export var QueryIncompatibleOperation: StaticOperationSchema = [9, n0, _QIO, 2, () => __Unit, () => __Unit]; export var SimpleScalarProperties: StaticOperationSchema = [ 9, n0, 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 79bc4e6a550e..7258e34b3042 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 @@ -106,7 +106,7 @@ export var ResourceNotFoundException: StaticErrorSchema = [ ]; TypeRegistry.for(n0).registerError(ResourceNotFoundException, __ResourceNotFoundException); -export var Unit = "unit" as const; +export var __Unit = "unit" as const; export var MachineLearningServiceException: StaticErrorSchema = [-3, _sm, "MachineLearningServiceException", 0, [], []]; TypeRegistry.for(_sm).registerError(MachineLearningServiceException, __MachineLearningServiceException); 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 793da2f3b324..e1aa3ffdb7ac 100644 --- a/private/aws-protocoltests-json-schema/src/schemas/schemas_0.ts +++ b/private/aws-protocoltests-json-schema/src/schemas/schemas_0.ts @@ -391,7 +391,7 @@ export var StructWithJsonName: StaticStructureSchema = [ ]; export var UnionInputOutput: StaticStructureSchema = [3, n0, _UIO, 0, [_co], [() => MyUnion]]; export var GreetingStruct: StaticStructureSchema = [3, n1, _GS, 0, [_h], [0]]; -export var Unit = "unit" as const; +export var __Unit = "unit" as const; export var JsonProtocolServiceException: StaticErrorSchema = [-3, _sm, "JsonProtocolServiceException", 0, [], []]; TypeRegistry.for(_sm).registerError(JsonProtocolServiceException, __JsonProtocolServiceException); @@ -459,8 +459,8 @@ export var ContentTypeParameters: StaticOperationSchema = [ () => ContentTypeParametersInput, () => ContentTypeParametersOutput, ]; -export var DatetimeOffsets: StaticOperationSchema = [9, n0, _DO, 0, () => Unit, () => DatetimeOffsetsOutput]; -export var EmptyOperation: StaticOperationSchema = [9, n0, _EO, 0, () => Unit, () => Unit]; +export var DatetimeOffsets: StaticOperationSchema = [9, n0, _DO, 0, () => __Unit, () => DatetimeOffsetsOutput]; +export var EmptyOperation: StaticOperationSchema = [9, n0, _EO, 0, () => __Unit, () => __Unit]; export var EndpointOperation: StaticOperationSchema = [ 9, n0, @@ -468,8 +468,8 @@ export var EndpointOperation: StaticOperationSchema = [ { [_end]: ["foo."], }, - () => Unit, - () => Unit, + () => __Unit, + () => __Unit, ]; export var EndpointWithHostLabelOperation: StaticOperationSchema = [ 9, @@ -479,11 +479,11 @@ export var EndpointWithHostLabelOperation: StaticOperationSchema = [ [_end]: ["foo.{label}."], }, () => HostLabelInput, - () => Unit, + () => __Unit, ]; -export var FractionalSeconds: StaticOperationSchema = [9, n0, _FS, 0, () => Unit, () => FractionalSecondsOutput]; -export var GreetingWithErrors: StaticOperationSchema = [9, n0, _GWE, 2, () => Unit, () => GreetingWithErrorsOutput]; -export var HostWithPathOperation: StaticOperationSchema = [9, n0, _HWPO, 0, () => Unit, () => Unit]; +export var FractionalSeconds: StaticOperationSchema = [9, n0, _FS, 0, () => __Unit, () => FractionalSecondsOutput]; +export var GreetingWithErrors: StaticOperationSchema = [9, n0, _GWE, 2, () => __Unit, () => GreetingWithErrorsOutput]; +export var HostWithPathOperation: StaticOperationSchema = [9, n0, _HWPO, 0, () => __Unit, () => __Unit]; export var JsonEnums: StaticOperationSchema = [9, n0, _JE, 2, () => JsonEnumsInputOutput, () => JsonEnumsInputOutput]; export var JsonIntEnums: StaticOperationSchema = [ 9, @@ -525,7 +525,7 @@ export var PutWithContentEncoding: StaticOperationSchema = [ _PWCE, 0, () => PutWithContentEncodingInput, - () => Unit, + () => __Unit, ]; export var SimpleScalarProperties: StaticOperationSchema = [ 9, 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 5c21be54cce6..3ab481f934f0 100644 --- a/private/aws-protocoltests-query-schema/src/schemas/schemas_0.ts +++ b/private/aws-protocoltests-query-schema/src/schemas/schemas_0.ts @@ -631,7 +631,7 @@ export var XmlTimestampsOutput: StaticStructureSchema = [ [4, 5, 5, 7, 7, 6, 6], ]; export var GreetingStruct: StaticStructureSchema = [3, n1, _GS, 0, [_hi], [0]]; -export var Unit = "unit" as const; +export var __Unit = "unit" as const; export var QueryProtocolServiceException: StaticErrorSchema = [-3, _s, "QueryProtocolServiceException", 0, [], []]; TypeRegistry.for(_s).registerError(QueryProtocolServiceException, __QueryProtocolServiceException); @@ -810,7 +810,7 @@ export var IntegerEnumMap = 128 | 1; export var StringMap = 128 | 0; -export var DatetimeOffsets: StaticOperationSchema = [9, n0, _DO, 0, () => Unit, () => DatetimeOffsetsOutput]; +export var DatetimeOffsets: StaticOperationSchema = [9, n0, _DO, 0, () => __Unit, () => DatetimeOffsetsOutput]; export var EmptyInputAndEmptyOutput: StaticOperationSchema = [ 9, n0, @@ -826,8 +826,8 @@ export var EndpointOperation: StaticOperationSchema = [ { [_end]: ["foo."], }, - () => Unit, - () => Unit, + () => __Unit, + () => __Unit, ]; export var EndpointWithHostLabelOperation: StaticOperationSchema = [ 9, @@ -837,15 +837,15 @@ export var EndpointWithHostLabelOperation: StaticOperationSchema = [ [_end]: ["foo.{label}."], }, () => HostLabelInput, - () => Unit, + () => __Unit, ]; -export var FlattenedXmlMap: StaticOperationSchema = [9, n0, _FXM, 0, () => Unit, () => FlattenedXmlMapOutput]; +export var FlattenedXmlMap: StaticOperationSchema = [9, n0, _FXM, 0, () => __Unit, () => FlattenedXmlMapOutput]; export var FlattenedXmlMapWithXmlName: StaticOperationSchema = [ 9, n0, _FXMWXN, 0, - () => Unit, + () => __Unit, () => FlattenedXmlMapWithXmlNameOutput, ]; export var FlattenedXmlMapWithXmlNamespace: StaticOperationSchema = [ @@ -853,22 +853,22 @@ export var FlattenedXmlMapWithXmlNamespace: StaticOperationSchema = [ n0, _FXMWXNl, 0, - () => Unit, + () => __Unit, () => FlattenedXmlMapWithXmlNamespaceOutput, ]; -export var FractionalSeconds: StaticOperationSchema = [9, n0, _FS, 0, () => Unit, () => FractionalSecondsOutput]; -export var GreetingWithErrors: StaticOperationSchema = [9, n0, _GWE, 0, () => Unit, () => GreetingWithErrorsOutput]; -export var HostWithPathOperation: StaticOperationSchema = [9, n0, _HWPO, 0, () => Unit, () => Unit]; +export var FractionalSeconds: StaticOperationSchema = [9, n0, _FS, 0, () => __Unit, () => FractionalSecondsOutput]; +export var GreetingWithErrors: StaticOperationSchema = [9, n0, _GWE, 0, () => __Unit, () => GreetingWithErrorsOutput]; +export var HostWithPathOperation: StaticOperationSchema = [9, n0, _HWPO, 0, () => __Unit, () => __Unit]; export var IgnoresWrappingXmlName: StaticOperationSchema = [ 9, n0, _IWXN, 0, - () => Unit, + () => __Unit, () => IgnoresWrappingXmlNameOutput, ]; -export var NestedStructures: StaticOperationSchema = [9, n0, _NS, 0, () => NestedStructuresInput, () => Unit]; -export var NoInputAndNoOutput: StaticOperationSchema = [9, n0, _NIANO, 0, () => Unit, () => Unit]; +export var NestedStructures: StaticOperationSchema = [9, n0, _NS, 0, () => NestedStructuresInput, () => __Unit]; +export var NoInputAndNoOutput: StaticOperationSchema = [9, n0, _NIANO, 0, () => __Unit, () => __Unit]; export var NoInputAndOutput: StaticOperationSchema = [ 9, n0, @@ -883,7 +883,7 @@ export var PutWithContentEncoding: StaticOperationSchema = [ _PWCE, 0, () => PutWithContentEncodingInput, - () => Unit, + () => __Unit, ]; export var QueryIdempotencyTokenAutoFill: StaticOperationSchema = [ 9, @@ -891,29 +891,29 @@ export var QueryIdempotencyTokenAutoFill: StaticOperationSchema = [ _QITAF, 0, () => QueryIdempotencyTokenAutoFillInput, - () => Unit, + () => __Unit, ]; -export var QueryLists: StaticOperationSchema = [9, n0, _QL, 0, () => QueryListsInput, () => Unit]; -export var QueryMaps: StaticOperationSchema = [9, n0, _QM, 0, () => QueryMapsInput, () => Unit]; -export var QueryTimestamps: StaticOperationSchema = [9, n0, _QT, 0, () => QueryTimestampsInput, () => Unit]; -export var RecursiveXmlShapes: StaticOperationSchema = [9, n0, _RXS, 0, () => Unit, () => RecursiveXmlShapesOutput]; -export var SimpleInputParams: StaticOperationSchema = [9, n0, _SIP, 0, () => SimpleInputParamsInput, () => Unit]; +export var QueryLists: StaticOperationSchema = [9, n0, _QL, 0, () => QueryListsInput, () => __Unit]; +export var QueryMaps: StaticOperationSchema = [9, n0, _QM, 0, () => QueryMapsInput, () => __Unit]; +export var QueryTimestamps: StaticOperationSchema = [9, n0, _QT, 0, () => QueryTimestampsInput, () => __Unit]; +export var RecursiveXmlShapes: StaticOperationSchema = [9, n0, _RXS, 0, () => __Unit, () => RecursiveXmlShapesOutput]; +export var SimpleInputParams: StaticOperationSchema = [9, n0, _SIP, 0, () => SimpleInputParamsInput, () => __Unit]; export var SimpleScalarXmlProperties: StaticOperationSchema = [ 9, n0, _SSXP, 0, - () => Unit, + () => __Unit, () => SimpleScalarXmlPropertiesOutput, ]; -export var XmlBlobs: StaticOperationSchema = [9, n0, _XB, 0, () => Unit, () => XmlBlobsOutput]; -export var XmlEmptyBlobs: StaticOperationSchema = [9, n0, _XEB, 0, () => Unit, () => XmlBlobsOutput]; -export var XmlEmptyLists: StaticOperationSchema = [9, n0, _XEL, 0, () => Unit, () => XmlListsOutput]; -export var XmlEmptyMaps: StaticOperationSchema = [9, n0, _XEM, 0, () => Unit, () => XmlMapsOutput]; -export var XmlEnums: StaticOperationSchema = [9, n0, _XE, 0, () => Unit, () => XmlEnumsOutput]; -export var XmlIntEnums: StaticOperationSchema = [9, n0, _XIE, 0, () => Unit, () => XmlIntEnumsOutput]; -export var XmlLists: StaticOperationSchema = [9, n0, _XL, 0, () => Unit, () => XmlListsOutput]; -export var XmlMaps: StaticOperationSchema = [9, n0, _XM, 0, () => Unit, () => XmlMapsOutput]; -export var XmlMapsXmlName: StaticOperationSchema = [9, n0, _XMXN, 0, () => Unit, () => XmlMapsXmlNameOutput]; -export var XmlNamespaces: StaticOperationSchema = [9, n0, _XN, 0, () => Unit, () => XmlNamespacesOutput]; -export var XmlTimestamps: StaticOperationSchema = [9, n0, _XT, 0, () => Unit, () => XmlTimestampsOutput]; +export var XmlBlobs: StaticOperationSchema = [9, n0, _XB, 0, () => __Unit, () => XmlBlobsOutput]; +export var XmlEmptyBlobs: StaticOperationSchema = [9, n0, _XEB, 0, () => __Unit, () => XmlBlobsOutput]; +export var XmlEmptyLists: StaticOperationSchema = [9, n0, _XEL, 0, () => __Unit, () => XmlListsOutput]; +export var XmlEmptyMaps: StaticOperationSchema = [9, n0, _XEM, 0, () => __Unit, () => XmlMapsOutput]; +export var XmlEnums: StaticOperationSchema = [9, n0, _XE, 0, () => __Unit, () => XmlEnumsOutput]; +export var XmlIntEnums: StaticOperationSchema = [9, n0, _XIE, 0, () => __Unit, () => XmlIntEnumsOutput]; +export var XmlLists: StaticOperationSchema = [9, n0, _XL, 0, () => __Unit, () => XmlListsOutput]; +export var XmlMaps: StaticOperationSchema = [9, n0, _XM, 0, () => __Unit, () => XmlMapsOutput]; +export var XmlMapsXmlName: StaticOperationSchema = [9, n0, _XMXN, 0, () => __Unit, () => XmlMapsXmlNameOutput]; +export var XmlNamespaces: StaticOperationSchema = [9, n0, _XN, 0, () => __Unit, () => XmlNamespacesOutput]; +export var XmlTimestamps: StaticOperationSchema = [9, n0, _XT, 0, () => __Unit, () => XmlTimestampsOutput]; 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 63448635be4f..6c56cb248ef6 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 @@ -151,7 +151,7 @@ export var UnauthorizedException: StaticErrorSchema = [ ]; TypeRegistry.for(n0).registerError(UnauthorizedException, __UnauthorizedException); -export var Unit = "unit" as const; +export var __Unit = "unit" as const; export var APIGatewayServiceException: StaticErrorSchema = [-3, _s, "APIGatewayServiceException", 0, [], []]; TypeRegistry.for(_s).registerError(APIGatewayServiceException, __APIGatewayServiceException); 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 44a1666c656a..db8ccd04ed7e 100644 --- a/private/aws-protocoltests-restjson-schema/src/schemas/schemas_0.ts +++ b/private/aws-protocoltests-restjson-schema/src/schemas/schemas_0.ts @@ -2216,7 +2216,7 @@ export var TopLevel: StaticStructureSchema = [ export var UnionInputOutput: StaticStructureSchema = [3, n0, _UIO, 0, [_con], [() => MyUnion]]; 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 __Unit = "unit" as const; export var RestJsonProtocolServiceException: StaticErrorSchema = [ -3, @@ -2355,7 +2355,7 @@ export var MyUnion: StaticStructureSchema = [ [_sV, _bVo, _nVu, _bVl, _tV, _eV, _lVi, _mV, _sVt, _rSV], [0, 2, 1, 21, 4, 0, 64 | 0, 128 | 0, () => GreetingStruct_n1, () => GreetingStruct], ]; -export var PlayerAction: StaticStructureSchema = [3, n0, _PA, 0, [_qu], [() => Unit]]; +export var PlayerAction: StaticStructureSchema = [3, n0, _PA, 0, [_qu], [() => __Unit]]; export var SimpleUnion: StaticStructureSchema = [3, n0, _SU, 0, [_int, _st], [1, 0]]; export var UnionPayload: StaticStructureSchema = [3, n0, _UP, 0, [_g], [0]]; export var UnionWithJsonName: StaticStructureSchema = [ @@ -2388,7 +2388,7 @@ export var AllQueryStringTypes: StaticOperationSchema = [ [_ht]: ["GET", "/AllQueryStringTypesInput", 200], }, () => AllQueryStringTypesInput, - () => Unit, + () => __Unit, ]; export var ConstantAndVariableQueryString: StaticOperationSchema = [ 9, @@ -2398,7 +2398,7 @@ export var ConstantAndVariableQueryString: StaticOperationSchema = [ [_ht]: ["GET", "/ConstantAndVariableQueryString?foo=bar", 200], }, () => ConstantAndVariableQueryStringInput, - () => Unit, + () => __Unit, ]; export var ConstantQueryString: StaticOperationSchema = [ 9, @@ -2408,7 +2408,7 @@ export var ConstantQueryString: StaticOperationSchema = [ [_ht]: ["GET", "/ConstantQueryString/{hello}?foo=bar&hello", 200], }, () => ConstantQueryStringInput, - () => Unit, + () => __Unit, ]; export var ContentTypeParameters: StaticOperationSchema = [ 9, @@ -2427,7 +2427,7 @@ export var DatetimeOffsets: StaticOperationSchema = [ { [_ht]: ["POST", "/DatetimeOffsets", 200], }, - () => Unit, + () => __Unit, () => DatetimeOffsetsOutput, ]; export var DocumentType: StaticOperationSchema = [ @@ -2478,8 +2478,8 @@ export var EndpointOperation: StaticOperationSchema = [ [_ht]: ["POST", "/EndpointOperation", 200], [_end]: ["foo."], }, - () => Unit, - () => Unit, + () => __Unit, + () => __Unit, ]; export var EndpointWithHostLabelOperation: StaticOperationSchema = [ 9, @@ -2490,7 +2490,7 @@ export var EndpointWithHostLabelOperation: StaticOperationSchema = [ [_end]: ["foo.{label}."], }, () => HostLabelInput, - () => Unit, + () => __Unit, ]; export var FractionalSeconds: StaticOperationSchema = [ 9, @@ -2499,7 +2499,7 @@ export var FractionalSeconds: StaticOperationSchema = [ { [_ht]: ["POST", "/FractionalSeconds", 200], }, - () => Unit, + () => __Unit, () => FractionalSecondsOutput, ]; export var GreetingWithErrors: StaticOperationSchema = [ @@ -2509,7 +2509,7 @@ export var GreetingWithErrors: StaticOperationSchema = [ { [_ht]: ["PUT", "/GreetingWithErrors", 200], }, - () => Unit, + () => __Unit, () => GreetingWithErrorsOutput, ]; export var HostWithPathOperation: StaticOperationSchema = [ @@ -2519,8 +2519,8 @@ export var HostWithPathOperation: StaticOperationSchema = [ { [_ht]: ["GET", "/HostWithPathOperation", 200], }, - () => Unit, - () => Unit, + () => __Unit, + () => __Unit, ]; export var HttpChecksumRequired: StaticOperationSchema = [ 9, @@ -2621,7 +2621,7 @@ export var HttpRequestWithFloatLabels: StaticOperationSchema = [ [_ht]: ["GET", "/FloatHttpLabels/{float}/{double}", 200], }, () => HttpRequestWithFloatLabelsInput, - () => Unit, + () => __Unit, ]; export var HttpRequestWithGreedyLabelInPath: StaticOperationSchema = [ 9, @@ -2631,7 +2631,7 @@ export var HttpRequestWithGreedyLabelInPath: StaticOperationSchema = [ [_ht]: ["GET", "/HttpRequestWithGreedyLabelInPath/foo/{foo}/baz/{baz+}", 200], }, () => HttpRequestWithGreedyLabelInPathInput, - () => Unit, + () => __Unit, ]; export var HttpRequestWithLabels: StaticOperationSchema = [ 9, @@ -2645,7 +2645,7 @@ export var HttpRequestWithLabels: StaticOperationSchema = [ ], }, () => HttpRequestWithLabelsInput, - () => Unit, + () => __Unit, ]; export var HttpRequestWithLabelsAndTimestampFormat: StaticOperationSchema = [ 9, @@ -2659,7 +2659,7 @@ export var HttpRequestWithLabelsAndTimestampFormat: StaticOperationSchema = [ ], }, () => HttpRequestWithLabelsAndTimestampFormatInput, - () => Unit, + () => __Unit, ]; export var HttpRequestWithRegexLiteral: StaticOperationSchema = [ 9, @@ -2669,7 +2669,7 @@ export var HttpRequestWithRegexLiteral: StaticOperationSchema = [ [_ht]: ["GET", "/ReDosLiteral/{str}/(a+)+", 200], }, () => HttpRequestWithRegexLiteralInput, - () => Unit, + () => __Unit, ]; export var HttpResponseCode: StaticOperationSchema = [ 9, @@ -2678,7 +2678,7 @@ export var HttpResponseCode: StaticOperationSchema = [ { [_ht]: ["PUT", "/HttpResponseCode", 200], }, - () => Unit, + () => __Unit, () => HttpResponseCodeOutput, ]; export var HttpStringPayload: StaticOperationSchema = [ @@ -2698,7 +2698,7 @@ export var IgnoreQueryParamsInResponse: StaticOperationSchema = [ { [_ht]: ["GET", "/IgnoreQueryParamsInResponse", 200], }, - () => Unit, + () => __Unit, () => IgnoreQueryParamsInResponseOutput, ]; export var InputAndOutputWithHeaders: StaticOperationSchema = [ @@ -2788,7 +2788,7 @@ export var MalformedAcceptWithBody: StaticOperationSchema = [ { [_ht]: ["POST", "/MalformedAcceptWithBody", 200], }, - () => Unit, + () => __Unit, () => GreetingStruct_n1, ]; export var MalformedAcceptWithGenericString: StaticOperationSchema = [ @@ -2798,7 +2798,7 @@ export var MalformedAcceptWithGenericString: StaticOperationSchema = [ { [_ht]: ["POST", "/MalformedAcceptWithGenericString", 200], }, - () => Unit, + () => __Unit, () => MalformedAcceptWithGenericStringOutput, ]; export var MalformedAcceptWithPayload: StaticOperationSchema = [ @@ -2808,7 +2808,7 @@ export var MalformedAcceptWithPayload: StaticOperationSchema = [ { [_ht]: ["POST", "/MalformedAcceptWithPayload", 200], }, - () => Unit, + () => __Unit, () => MalformedAcceptWithPayloadOutput, ]; export var MalformedBlob: StaticOperationSchema = [ @@ -2819,7 +2819,7 @@ export var MalformedBlob: StaticOperationSchema = [ [_ht]: ["POST", "/MalformedBlob", 200], }, () => MalformedBlobInput, - () => Unit, + () => __Unit, ]; export var MalformedBoolean: StaticOperationSchema = [ 9, @@ -2829,7 +2829,7 @@ export var MalformedBoolean: StaticOperationSchema = [ [_ht]: ["POST", "/MalformedBoolean/{booleanInPath}", 200], }, () => MalformedBooleanInput, - () => Unit, + () => __Unit, ]; export var MalformedByte: StaticOperationSchema = [ 9, @@ -2839,7 +2839,7 @@ export var MalformedByte: StaticOperationSchema = [ [_ht]: ["POST", "/MalformedByte/{byteInPath}", 200], }, () => MalformedByteInput, - () => Unit, + () => __Unit, ]; export var MalformedContentTypeWithBody: StaticOperationSchema = [ 9, @@ -2849,7 +2849,7 @@ export var MalformedContentTypeWithBody: StaticOperationSchema = [ [_ht]: ["POST", "/MalformedContentTypeWithBody", 200], }, () => GreetingStruct_n1, - () => Unit, + () => __Unit, ]; export var MalformedContentTypeWithGenericString: StaticOperationSchema = [ 9, @@ -2859,7 +2859,7 @@ export var MalformedContentTypeWithGenericString: StaticOperationSchema = [ [_ht]: ["POST", "/MalformedContentTypeWithGenericString", 200], }, () => MalformedContentTypeWithGenericStringInput, - () => Unit, + () => __Unit, ]; export var MalformedContentTypeWithoutBody: StaticOperationSchema = [ 9, @@ -2868,8 +2868,8 @@ export var MalformedContentTypeWithoutBody: StaticOperationSchema = [ { [_ht]: ["POST", "/MalformedContentTypeWithoutBody", 200], }, - () => Unit, - () => Unit, + () => __Unit, + () => __Unit, ]; export var MalformedContentTypeWithoutBodyEmptyInput: StaticOperationSchema = [ 9, @@ -2879,7 +2879,7 @@ export var MalformedContentTypeWithoutBodyEmptyInput: StaticOperationSchema = [ [_ht]: ["POST", "/MalformedContentTypeWithoutBodyEmptyInput", 200], }, () => MalformedContentTypeWithoutBodyEmptyInputInput, - () => Unit, + () => __Unit, ]; export var MalformedContentTypeWithPayload: StaticOperationSchema = [ 9, @@ -2889,7 +2889,7 @@ export var MalformedContentTypeWithPayload: StaticOperationSchema = [ [_ht]: ["POST", "/MalformedContentTypeWithPayload", 200], }, () => MalformedContentTypeWithPayloadInput, - () => Unit, + () => __Unit, ]; export var MalformedDouble: StaticOperationSchema = [ 9, @@ -2899,7 +2899,7 @@ export var MalformedDouble: StaticOperationSchema = [ [_ht]: ["POST", "/MalformedDouble/{doubleInPath}", 200], }, () => MalformedDoubleInput, - () => Unit, + () => __Unit, ]; export var MalformedFloat: StaticOperationSchema = [ 9, @@ -2909,7 +2909,7 @@ export var MalformedFloat: StaticOperationSchema = [ [_ht]: ["POST", "/MalformedFloat/{floatInPath}", 200], }, () => MalformedFloatInput, - () => Unit, + () => __Unit, ]; export var MalformedInteger: StaticOperationSchema = [ 9, @@ -2919,7 +2919,7 @@ export var MalformedInteger: StaticOperationSchema = [ [_ht]: ["POST", "/MalformedInteger/{integerInPath}", 200], }, () => MalformedIntegerInput, - () => Unit, + () => __Unit, ]; export var MalformedList: StaticOperationSchema = [ 9, @@ -2929,7 +2929,7 @@ export var MalformedList: StaticOperationSchema = [ [_ht]: ["POST", "/MalformedList", 200], }, () => MalformedListInput, - () => Unit, + () => __Unit, ]; export var MalformedLong: StaticOperationSchema = [ 9, @@ -2939,7 +2939,7 @@ export var MalformedLong: StaticOperationSchema = [ [_ht]: ["POST", "/MalformedLong/{longInPath}", 200], }, () => MalformedLongInput, - () => Unit, + () => __Unit, ]; export var MalformedMap: StaticOperationSchema = [ 9, @@ -2949,7 +2949,7 @@ export var MalformedMap: StaticOperationSchema = [ [_ht]: ["POST", "/MalformedMap", 200], }, () => MalformedMapInput, - () => Unit, + () => __Unit, ]; export var MalformedRequestBody: StaticOperationSchema = [ 9, @@ -2959,7 +2959,7 @@ export var MalformedRequestBody: StaticOperationSchema = [ [_ht]: ["POST", "/MalformedRequestBody", 200], }, () => MalformedRequestBodyInput, - () => Unit, + () => __Unit, ]; export var MalformedShort: StaticOperationSchema = [ 9, @@ -2969,7 +2969,7 @@ export var MalformedShort: StaticOperationSchema = [ [_ht]: ["POST", "/MalformedShort/{shortInPath}", 200], }, () => MalformedShortInput, - () => Unit, + () => __Unit, ]; export var MalformedString: StaticOperationSchema = [ 9, @@ -2979,7 +2979,7 @@ export var MalformedString: StaticOperationSchema = [ [_ht]: ["POST", "/MalformedString", 200], }, () => MalformedStringInput, - () => Unit, + () => __Unit, ]; export var MalformedTimestampBodyDateTime: StaticOperationSchema = [ 9, @@ -2989,7 +2989,7 @@ export var MalformedTimestampBodyDateTime: StaticOperationSchema = [ [_ht]: ["POST", "/MalformedTimestampBodyDateTime", 200], }, () => MalformedTimestampBodyDateTimeInput, - () => Unit, + () => __Unit, ]; export var MalformedTimestampBodyDefault: StaticOperationSchema = [ 9, @@ -2999,7 +2999,7 @@ export var MalformedTimestampBodyDefault: StaticOperationSchema = [ [_ht]: ["POST", "/MalformedTimestampBodyDefault", 200], }, () => MalformedTimestampBodyDefaultInput, - () => Unit, + () => __Unit, ]; export var MalformedTimestampBodyHttpDate: StaticOperationSchema = [ 9, @@ -3009,7 +3009,7 @@ export var MalformedTimestampBodyHttpDate: StaticOperationSchema = [ [_ht]: ["POST", "/MalformedTimestampBodyHttpDate", 200], }, () => MalformedTimestampBodyHttpDateInput, - () => Unit, + () => __Unit, ]; export var MalformedTimestampHeaderDateTime: StaticOperationSchema = [ 9, @@ -3019,7 +3019,7 @@ export var MalformedTimestampHeaderDateTime: StaticOperationSchema = [ [_ht]: ["POST", "/MalformedTimestampHeaderDateTime", 200], }, () => MalformedTimestampHeaderDateTimeInput, - () => Unit, + () => __Unit, ]; export var MalformedTimestampHeaderDefault: StaticOperationSchema = [ 9, @@ -3029,7 +3029,7 @@ export var MalformedTimestampHeaderDefault: StaticOperationSchema = [ [_ht]: ["POST", "/MalformedTimestampHeaderDefault", 200], }, () => MalformedTimestampHeaderDefaultInput, - () => Unit, + () => __Unit, ]; export var MalformedTimestampHeaderEpoch: StaticOperationSchema = [ 9, @@ -3039,7 +3039,7 @@ export var MalformedTimestampHeaderEpoch: StaticOperationSchema = [ [_ht]: ["POST", "/MalformedTimestampHeaderEpoch", 200], }, () => MalformedTimestampHeaderEpochInput, - () => Unit, + () => __Unit, ]; export var MalformedTimestampPathDefault: StaticOperationSchema = [ 9, @@ -3049,7 +3049,7 @@ export var MalformedTimestampPathDefault: StaticOperationSchema = [ [_ht]: ["POST", "/MalformedTimestampPathDefault/{timestamp}", 200], }, () => MalformedTimestampPathDefaultInput, - () => Unit, + () => __Unit, ]; export var MalformedTimestampPathEpoch: StaticOperationSchema = [ 9, @@ -3059,7 +3059,7 @@ export var MalformedTimestampPathEpoch: StaticOperationSchema = [ [_ht]: ["POST", "/MalformedTimestampPathEpoch/{timestamp}", 200], }, () => MalformedTimestampPathEpochInput, - () => Unit, + () => __Unit, ]; export var MalformedTimestampPathHttpDate: StaticOperationSchema = [ 9, @@ -3069,7 +3069,7 @@ export var MalformedTimestampPathHttpDate: StaticOperationSchema = [ [_ht]: ["POST", "/MalformedTimestampPathHttpDate/{timestamp}", 200], }, () => MalformedTimestampPathHttpDateInput, - () => Unit, + () => __Unit, ]; export var MalformedTimestampQueryDefault: StaticOperationSchema = [ 9, @@ -3079,7 +3079,7 @@ export var MalformedTimestampQueryDefault: StaticOperationSchema = [ [_ht]: ["POST", "/MalformedTimestampQueryDefault", 200], }, () => MalformedTimestampQueryDefaultInput, - () => Unit, + () => __Unit, ]; export var MalformedTimestampQueryEpoch: StaticOperationSchema = [ 9, @@ -3089,7 +3089,7 @@ export var MalformedTimestampQueryEpoch: StaticOperationSchema = [ [_ht]: ["POST", "/MalformedTimestampQueryEpoch", 200], }, () => MalformedTimestampQueryEpochInput, - () => Unit, + () => __Unit, ]; export var MalformedTimestampQueryHttpDate: StaticOperationSchema = [ 9, @@ -3099,7 +3099,7 @@ export var MalformedTimestampQueryHttpDate: StaticOperationSchema = [ [_ht]: ["POST", "/MalformedTimestampQueryHttpDate", 200], }, () => MalformedTimestampQueryHttpDateInput, - () => Unit, + () => __Unit, ]; export var MalformedUnion: StaticOperationSchema = [ 9, @@ -3109,7 +3109,7 @@ export var MalformedUnion: StaticOperationSchema = [ [_ht]: ["POST", "/MalformedUnion", 200], }, () => MalformedUnionInput, - () => Unit, + () => __Unit, ]; export var MediaTypeHeader: StaticOperationSchema = [ 9, @@ -3128,8 +3128,8 @@ export var NoInputAndNoOutput: StaticOperationSchema = [ { [_ht]: ["POST", "/NoInputAndNoOutput", 200], }, - () => Unit, - () => Unit, + () => __Unit, + () => __Unit, ]; export var NoInputAndOutput: StaticOperationSchema = [ 9, @@ -3138,7 +3138,7 @@ export var NoInputAndOutput: StaticOperationSchema = [ { [_ht]: ["POST", "/NoInputAndOutputOutput", 200], }, - () => Unit, + () => __Unit, () => NoInputAndOutputOutput, ]; export var NullAndEmptyHeadersClient: StaticOperationSchema = [ @@ -3169,7 +3169,7 @@ export var OmitsNullSerializesEmptyString: StaticOperationSchema = [ [_ht]: ["GET", "/OmitsNullSerializesEmptyString", 200], }, () => OmitsNullSerializesEmptyStringInput, - () => Unit, + () => __Unit, ]; export var OmitsSerializingEmptyLists: StaticOperationSchema = [ 9, @@ -3179,7 +3179,7 @@ export var OmitsSerializingEmptyLists: StaticOperationSchema = [ [_ht]: ["POST", "/OmitsSerializingEmptyLists", 200], }, () => OmitsSerializingEmptyListsInput, - () => Unit, + () => __Unit, ]; export var OperationWithDefaults: StaticOperationSchema = [ 9, @@ -3229,7 +3229,7 @@ export var PutWithContentEncoding: StaticOperationSchema = [ [_ht]: ["POST", "/requestcompression/putcontentwithencoding", 200], }, () => PutWithContentEncodingInput, - () => Unit, + () => __Unit, ]; export var QueryIdempotencyTokenAutoFill: StaticOperationSchema = [ 9, @@ -3239,7 +3239,7 @@ export var QueryIdempotencyTokenAutoFill: StaticOperationSchema = [ [_ht]: ["POST", "/QueryIdempotencyTokenAutoFill", 200], }, () => QueryIdempotencyTokenAutoFillInput, - () => Unit, + () => __Unit, ]; export var QueryParamsAsStringListMap: StaticOperationSchema = [ 9, @@ -3249,7 +3249,7 @@ export var QueryParamsAsStringListMap: StaticOperationSchema = [ [_ht]: ["POST", "/StringListMap", 200], }, () => QueryParamsAsStringListMapInput, - () => Unit, + () => __Unit, ]; export var QueryPrecedence: StaticOperationSchema = [ 9, @@ -3259,7 +3259,7 @@ export var QueryPrecedence: StaticOperationSchema = [ [_ht]: ["POST", "/Precedence", 200], }, () => QueryPrecedenceInput, - () => Unit, + () => __Unit, ]; export var RecursiveShapes: StaticOperationSchema = [ 9, @@ -3288,7 +3288,7 @@ export var ResponseCodeRequired: StaticOperationSchema = [ { [_ht]: ["GET", "/responseCodeRequired", 200], }, - () => Unit, + () => __Unit, () => ResponseCodeRequiredOutput, ]; export var SimpleScalarProperties: StaticOperationSchema = [ @@ -3339,7 +3339,7 @@ export var StreamingTraitsRequireLength: StaticOperationSchema = [ [_ht]: ["POST", "/StreamingTraitsRequireLength", 200], }, () => StreamingTraitsRequireLengthInput, - () => Unit, + () => __Unit, ]; export var StreamingTraitsWithMediaType: StaticOperationSchema = [ 9, @@ -3368,7 +3368,7 @@ export var TestGetNoInputNoPayload: StaticOperationSchema = [ { [_ht]: ["GET", "/no_input_no_payload", 200], }, - () => Unit, + () => __Unit, () => TestNoPayloadInputOutput, ]; export var TestGetNoPayload: StaticOperationSchema = [ @@ -3408,7 +3408,7 @@ export var TestPostNoInputNoPayload: StaticOperationSchema = [ { [_ht]: ["POST", "/no_input_no_payload", 200], }, - () => Unit, + () => __Unit, () => TestNoPayloadInputOutput, ]; export var TestPostNoPayload: StaticOperationSchema = [ @@ -3438,6 +3438,6 @@ export var UnitInputAndOutput: StaticOperationSchema = [ { [_ht]: ["POST", "/UnitInputAndOutput", 200], }, - () => Unit, - () => Unit, + () => __Unit, + () => __Unit, ]; 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 1d5f0be98d0b..ca0b112544ab 100644 --- a/private/aws-protocoltests-restxml-schema/src/schemas/schemas_0.ts +++ b/private/aws-protocoltests-restxml-schema/src/schemas/schemas_0.ts @@ -1966,7 +1966,7 @@ export var XmlTimestampsResponse: StaticStructureSchema = [ export var XmlUnionsRequest: StaticStructureSchema = [3, n1, _XUR, 0, [_uV], [() => XmlUnionShape]]; export var XmlUnionsResponse: StaticStructureSchema = [3, n1, _XURm, 0, [_uV], [() => XmlUnionShape]]; export var GreetingStruct: StaticStructureSchema = [3, n0, _GS, 0, [_hi], [0]]; -export var Unit = "unit" as const; +export var __Unit = "unit" as const; export var RestXmlProtocolServiceException: StaticErrorSchema = [-3, _sm, "RestXmlProtocolServiceException", 0, [], []]; TypeRegistry.for(_sm).registerError(RestXmlProtocolServiceException, __RestXmlProtocolServiceException); @@ -2188,7 +2188,7 @@ export var AllQueryStringTypes: StaticOperationSchema = [ [_http_]: ["GET", "/AllQueryStringTypesInput", 200], }, () => AllQueryStringTypesInput, - () => Unit, + () => __Unit, ]; export var BodyWithXmlName: StaticOperationSchema = [ 9, @@ -2208,7 +2208,7 @@ export var ConstantAndVariableQueryString: StaticOperationSchema = [ [_http_]: ["GET", "/ConstantAndVariableQueryString?foo=bar", 200], }, () => ConstantAndVariableQueryStringInput, - () => Unit, + () => __Unit, ]; export var ConstantQueryString: StaticOperationSchema = [ 9, @@ -2218,7 +2218,7 @@ export var ConstantQueryString: StaticOperationSchema = [ [_http_]: ["GET", "/ConstantQueryString/{hello}?foo=bar&hello", 200], }, () => ConstantQueryStringInput, - () => Unit, + () => __Unit, ]; export var ContentTypeParameters: StaticOperationSchema = [ 9, @@ -2237,7 +2237,7 @@ export var DatetimeOffsets: StaticOperationSchema = [ { [_http_]: ["POST", "/DatetimeOffsets", 200], }, - () => Unit, + () => __Unit, () => DatetimeOffsetsOutput, ]; export var EmptyInputAndEmptyOutput: StaticOperationSchema = [ @@ -2258,8 +2258,8 @@ export var EndpointOperation: StaticOperationSchema = [ [_http_]: ["POST", "/EndpointOperation", 200], [_end]: ["foo."], }, - () => Unit, - () => Unit, + () => __Unit, + () => __Unit, ]; export var EndpointWithHostLabelHeaderOperation: StaticOperationSchema = [ 9, @@ -2270,7 +2270,7 @@ export var EndpointWithHostLabelHeaderOperation: StaticOperationSchema = [ [_end]: ["{accountId}."], }, () => HostLabelHeaderInput, - () => Unit, + () => __Unit, ]; export var EndpointWithHostLabelOperation: StaticOperationSchema = [ 9, @@ -2281,7 +2281,7 @@ export var EndpointWithHostLabelOperation: StaticOperationSchema = [ [_end]: ["foo.{label}."], }, () => EndpointWithHostLabelOperationRequest, - () => Unit, + () => __Unit, ]; export var FlattenedXmlMap: StaticOperationSchema = [ 9, @@ -2310,7 +2310,7 @@ export var FlattenedXmlMapWithXmlNamespace: StaticOperationSchema = [ { [_http_]: ["POST", "/FlattenedXmlMapWithXmlNamespace", 200], }, - () => Unit, + () => __Unit, () => FlattenedXmlMapWithXmlNamespaceOutput, ]; export var FractionalSeconds: StaticOperationSchema = [ @@ -2320,7 +2320,7 @@ export var FractionalSeconds: StaticOperationSchema = [ { [_http_]: ["POST", "/FractionalSeconds", 200], }, - () => Unit, + () => __Unit, () => FractionalSecondsOutput, ]; export var GreetingWithErrors: StaticOperationSchema = [ @@ -2330,7 +2330,7 @@ export var GreetingWithErrors: StaticOperationSchema = [ { [_http_]: ["PUT", "/GreetingWithErrors", 200], }, - () => Unit, + () => __Unit, () => GreetingWithErrorsOutput, ]; export var HttpEmptyPrefixHeaders: StaticOperationSchema = [ @@ -2451,7 +2451,7 @@ export var HttpRequestWithFloatLabels: StaticOperationSchema = [ [_http_]: ["GET", "/FloatHttpLabels/{float}/{double}", 200], }, () => HttpRequestWithFloatLabelsInput, - () => Unit, + () => __Unit, ]; export var HttpRequestWithGreedyLabelInPath: StaticOperationSchema = [ 9, @@ -2461,7 +2461,7 @@ export var HttpRequestWithGreedyLabelInPath: StaticOperationSchema = [ [_http_]: ["GET", "/HttpRequestWithGreedyLabelInPath/foo/{foo}/baz/{baz+}", 200], }, () => HttpRequestWithGreedyLabelInPathInput, - () => Unit, + () => __Unit, ]; export var HttpRequestWithLabels: StaticOperationSchema = [ 9, @@ -2475,7 +2475,7 @@ export var HttpRequestWithLabels: StaticOperationSchema = [ ], }, () => HttpRequestWithLabelsInput, - () => Unit, + () => __Unit, ]; export var HttpRequestWithLabelsAndTimestampFormat: StaticOperationSchema = [ 9, @@ -2489,7 +2489,7 @@ export var HttpRequestWithLabelsAndTimestampFormat: StaticOperationSchema = [ ], }, () => HttpRequestWithLabelsAndTimestampFormatInput, - () => Unit, + () => __Unit, ]; export var HttpResponseCode: StaticOperationSchema = [ 9, @@ -2498,7 +2498,7 @@ export var HttpResponseCode: StaticOperationSchema = [ { [_http_]: ["PUT", "/HttpResponseCode", 200], }, - () => Unit, + () => __Unit, () => HttpResponseCodeOutput, ]; export var HttpStringPayload: StaticOperationSchema = [ @@ -2518,7 +2518,7 @@ export var IgnoreQueryParamsInResponse: StaticOperationSchema = [ { [_http_]: ["GET", "/IgnoreQueryParamsInResponse", 200], }, - () => Unit, + () => __Unit, () => IgnoreQueryParamsInResponseOutput, ]; export var InputAndOutputWithHeaders: StaticOperationSchema = [ @@ -2558,8 +2558,8 @@ export var NoInputAndNoOutput: StaticOperationSchema = [ { [_http_]: ["POST", "/NoInputAndNoOutput", 200], }, - () => Unit, - () => Unit, + () => __Unit, + () => __Unit, ]; export var NoInputAndOutput: StaticOperationSchema = [ 9, @@ -2568,7 +2568,7 @@ export var NoInputAndOutput: StaticOperationSchema = [ { [_http_]: ["POST", "/NoInputAndOutputOutput", 200], }, - () => Unit, + () => __Unit, () => NoInputAndOutputOutput, ]; export var NullAndEmptyHeadersClient: StaticOperationSchema = [ @@ -2599,7 +2599,7 @@ export var OmitsNullSerializesEmptyString: StaticOperationSchema = [ [_http_]: ["GET", "/OmitsNullSerializesEmptyString", 200], }, () => OmitsNullSerializesEmptyStringInput, - () => Unit, + () => __Unit, ]; export var PutWithContentEncoding: StaticOperationSchema = [ 9, @@ -2609,7 +2609,7 @@ export var PutWithContentEncoding: StaticOperationSchema = [ [_http_]: ["POST", "/requestcompression/putcontentwithencoding", 200], }, () => PutWithContentEncodingInput, - () => Unit, + () => __Unit, ]; export var QueryIdempotencyTokenAutoFill: StaticOperationSchema = [ 9, @@ -2619,7 +2619,7 @@ export var QueryIdempotencyTokenAutoFill: StaticOperationSchema = [ [_http_]: ["POST", "/QueryIdempotencyTokenAutoFill", 200], }, () => QueryIdempotencyTokenAutoFillInput, - () => Unit, + () => __Unit, ]; export var QueryParamsAsStringListMap: StaticOperationSchema = [ 9, @@ -2629,7 +2629,7 @@ export var QueryParamsAsStringListMap: StaticOperationSchema = [ [_http_]: ["POST", "/StringListMap", 200], }, () => QueryParamsAsStringListMapInput, - () => Unit, + () => __Unit, ]; export var QueryPrecedence: StaticOperationSchema = [ 9, @@ -2639,7 +2639,7 @@ export var QueryPrecedence: StaticOperationSchema = [ [_http_]: ["POST", "/Precedence", 200], }, () => QueryPrecedenceInput, - () => Unit, + () => __Unit, ]; export var RecursiveShapes: StaticOperationSchema = [ 9, 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 dfd848c5c42f..d323348a1322 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 @@ -149,7 +149,7 @@ import { RpcV2ProtocolServiceException as __RpcV2ProtocolServiceException } from /* eslint no-var: 0 */ -export var Unit = "unit" as const; +export var __Unit = "unit" as const; export var ValidationException: StaticErrorSchema = [ -3, @@ -436,10 +436,10 @@ export var SparseStringMap: StaticMapSchema = [ 0, ]; export var EmptyInputOutput: StaticOperationSchema = [9, n1, _EIO, 0, () => EmptyStructure, () => EmptyStructure]; -export var Float16: StaticOperationSchema = [9, n1, _Fl, 0, () => Unit, () => Float16Output]; -export var FractionalSeconds: StaticOperationSchema = [9, n1, _FS, 0, () => Unit, () => FractionalSecondsOutput]; -export var GreetingWithErrors: StaticOperationSchema = [9, n1, _GWE, 2, () => Unit, () => GreetingWithErrorsOutput]; -export var NoInputOutput: StaticOperationSchema = [9, n1, _NIO, 0, () => Unit, () => Unit]; +export var Float16: StaticOperationSchema = [9, n1, _Fl, 0, () => __Unit, () => Float16Output]; +export var FractionalSeconds: StaticOperationSchema = [9, n1, _FS, 0, () => __Unit, () => FractionalSecondsOutput]; +export var GreetingWithErrors: StaticOperationSchema = [9, n1, _GWE, 2, () => __Unit, () => GreetingWithErrorsOutput]; +export var NoInputOutput: StaticOperationSchema = [9, n1, _NIO, 0, () => __Unit, () => __Unit]; export var OperationWithDefaults: StaticOperationSchema = [ 9, n1,