@gemeentenijmegen/webapp 1.1.10 → 1.1.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +11 -11
- package/assets/webapp/auth/auth.lambda/index.js +63 -66
- package/assets/webapp/login/login.lambda/index.js +18 -21
- package/assets/webapp/logout/logout.lambda/index.js +18 -2
- package/lib/webapp/Criticality.js +1 -1
- package/lib/webapp/Webapp.js +1 -1
- package/lib/webapp/Webpage.js +1 -1
- package/lib/webapp/util/Files.js +1 -1
- package/node_modules/@aws/lambda-invoke-store/LICENSE +175 -0
- package/node_modules/@aws/lambda-invoke-store/README.md +182 -0
- package/node_modules/@aws/lambda-invoke-store/dist/invoke-store.d.ts +52 -0
- package/node_modules/@aws/lambda-invoke-store/dist/invoke-store.js +90 -0
- package/node_modules/@aws/lambda-invoke-store/package.json +36 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/.jsii +6005 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/.jsii.tabl.json +1 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/CONTRIBUTING.md +66 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/LICENSE +202 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/NOTICE +46 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/README.md +53 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/cli-version.json +1 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/lib/assets/aws-destination.d.ts +35 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/lib/assets/aws-destination.js +3 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/lib/assets/docker-image-asset.d.ts +171 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/lib/assets/docker-image-asset.js +3 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/lib/assets/file-asset.d.ts +75 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/lib/assets/file-asset.js +18 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/lib/assets/index.d.ts +4 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/lib/assets/index.js +21 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/lib/assets/schema.d.ts +27 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/lib/assets/schema.js +3 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/lib/cloud-assembly/artifact-schema.d.ts +295 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/lib/cloud-assembly/artifact-schema.js +3 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/lib/cloud-assembly/context-queries.d.ts +451 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/lib/cloud-assembly/context-queries.js +102 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/lib/cloud-assembly/index.d.ts +5 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/lib/cloud-assembly/index.js +22 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/lib/cloud-assembly/interfaces.d.ts +23 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/lib/cloud-assembly/interfaces.js +10 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/lib/cloud-assembly/metadata-schema.d.ts +302 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/lib/cloud-assembly/metadata-schema.js +38 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/lib/cloud-assembly/schema.d.ts +147 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/lib/cloud-assembly/schema.js +34 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/lib/index.d.ts +4 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/lib/index.js +21 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/lib/integ-tests/commands/common.d.ts +178 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/lib/integ-tests/commands/common.js +22 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/lib/integ-tests/commands/deploy.d.ts +92 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/lib/integ-tests/commands/deploy.js +3 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/lib/integ-tests/commands/destroy.d.ts +18 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/lib/integ-tests/commands/destroy.js +3 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/lib/integ-tests/commands/index.d.ts +3 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/lib/integ-tests/commands/index.js +20 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/lib/integ-tests/index.d.ts +3 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/lib/integ-tests/index.js +20 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/lib/integ-tests/schema.d.ts +35 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/lib/integ-tests/schema.js +3 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/lib/integ-tests/test-case.d.ts +186 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/lib/integ-tests/test-case.js +3 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/lib/manifest.d.ts +134 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/lib/manifest.js +295 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/jsonschema/.editorconfig +10 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/jsonschema/LICENSE +21 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/jsonschema/README.md +421 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/jsonschema/lib/attribute.js +978 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/jsonschema/lib/helpers.js +390 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/jsonschema/lib/index.d.ts +142 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/jsonschema/lib/index.js +15 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/jsonschema/lib/scan.js +75 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/jsonschema/lib/validator.js +336 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/jsonschema/package.json +42 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/LICENSE +15 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/README.md +664 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/bin/semver.js +191 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/classes/comparator.js +143 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/classes/index.js +7 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/classes/range.js +556 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/classes/semver.js +319 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/functions/clean.js +8 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/functions/cmp.js +54 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/functions/coerce.js +62 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/functions/compare-build.js +9 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/functions/compare-loose.js +5 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/functions/compare.js +7 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/functions/diff.js +60 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/functions/eq.js +5 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/functions/gt.js +5 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/functions/gte.js +5 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/functions/inc.js +21 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/functions/lt.js +5 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/functions/lte.js +5 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/functions/major.js +5 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/functions/minor.js +5 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/functions/neq.js +5 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/functions/parse.js +18 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/functions/patch.js +5 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/functions/prerelease.js +8 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/functions/rcompare.js +5 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/functions/rsort.js +5 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/functions/satisfies.js +12 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/functions/sort.js +5 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/functions/valid.js +8 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/index.js +91 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/internal/constants.js +37 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/internal/debug.js +11 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/internal/identifiers.js +25 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/internal/lrucache.js +42 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/internal/parse-options.js +17 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/internal/re.js +223 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/package.json +78 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/preload.js +4 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/range.bnf +16 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/ranges/gtr.js +6 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/ranges/intersects.js +9 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/ranges/ltr.js +6 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/ranges/max-satisfying.js +27 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/ranges/min-satisfying.js +26 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/ranges/min-version.js +63 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/ranges/outside.js +82 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/ranges/simplify.js +49 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/ranges/subset.js +249 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/ranges/to-comparators.js +10 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver/ranges/valid.js +13 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/package.json +133 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/rosetta/default.ts-fixture +3 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/schema/README.md +5 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/schema/assets.schema.json +271 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/schema/cloud-assembly.schema.json +1189 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/schema/integ.schema.json +493 -0
- package/node_modules/@aws-cdk/cloud-assembly-schema/schema/version.json +5 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/endpoint/ruleset.js +3 -3
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/index.js +5197 -5425
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/endpoint/ruleset.js +3 -3
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/models/index.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/models/models_0.js +22 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/models/models_1.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/protocols/Aws_json1_0.js +15 -2
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/BatchExecuteStatementCommand.d.ts +10 -3
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/BatchGetItemCommand.d.ts +16 -7
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/BatchWriteItemCommand.d.ts +16 -7
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/CreateBackupCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/CreateGlobalTableCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/CreateTableCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DeleteBackupCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DeleteItemCommand.d.ts +16 -7
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DeleteResourcePolicyCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DeleteTableCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeBackupCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeContinuousBackupsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeContributorInsightsCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeEndpointsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeExportCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeGlobalTableCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeGlobalTableSettingsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeImportCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeKinesisStreamingDestinationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeLimitsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeTableCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeTableReplicaAutoScalingCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeTimeToLiveCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DisableKinesisStreamingDestinationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/EnableKinesisStreamingDestinationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ExecuteStatementCommand.d.ts +16 -7
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ExecuteTransactionCommand.d.ts +16 -7
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ExportTableToPointInTimeCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/GetItemCommand.d.ts +16 -7
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/GetResourcePolicyCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ImportTableCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListBackupsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListContributorInsightsCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListExportsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListGlobalTablesCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListImportsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListTablesCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListTagsOfResourceCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/PutItemCommand.d.ts +16 -7
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/PutResourcePolicyCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/QueryCommand.d.ts +16 -7
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/RestoreTableFromBackupCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/RestoreTableToPointInTimeCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ScanCommand.d.ts +16 -7
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/TagResourceCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/TransactGetItemsCommand.d.ts +16 -7
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/TransactWriteItemsCommand.d.ts +18 -8
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UntagResourceCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateContinuousBackupsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateContributorInsightsCommand.d.ts +4 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateGlobalTableCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateGlobalTableSettingsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateItemCommand.d.ts +16 -7
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateKinesisStreamingDestinationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateTableCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateTableReplicaAutoScalingCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateTimeToLiveCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/models/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/models/models_0.d.ts +151 -79
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/models/models_1.d.ts +73 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/TransactWriteItemsCommand.d.ts +2 -4
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/models/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/models/models_0.d.ts +24 -6
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/models/models_1.d.ts +11 -0
- package/node_modules/@aws-sdk/client-dynamodb/package.json +41 -42
- package/node_modules/@aws-sdk/client-s3/dist-cjs/index.js +11771 -11916
- package/node_modules/@aws-sdk/client-s3/dist-es/protocols/Aws_restXml.js +55 -55
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/AbortMultipartUploadCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CompleteMultipartUploadCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CopyObjectCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketMetadataConfigurationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketMetadataTableConfigurationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateMultipartUploadCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateSessionCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketAnalyticsConfigurationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketCorsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketEncryptionCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketIntelligentTieringConfigurationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketInventoryConfigurationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketLifecycleCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetadataConfigurationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetadataTableConfigurationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetricsConfigurationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketOwnershipControlsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketPolicyCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketReplicationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketTaggingCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketWebsiteCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectTaggingCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeletePublicAccessBlockCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAccelerateConfigurationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAclCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAnalyticsConfigurationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketCorsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketEncryptionCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketIntelligentTieringConfigurationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketInventoryConfigurationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLifecycleConfigurationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLocationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLoggingCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetadataConfigurationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetadataTableConfigurationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetricsConfigurationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketNotificationConfigurationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketOwnershipControlsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketPolicyCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketPolicyStatusCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketReplicationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketRequestPaymentCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketTaggingCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketVersioningCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketWebsiteCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAclCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAttributesCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectLegalHoldCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectLockConfigurationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectRetentionCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectTaggingCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectTorrentCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetPublicAccessBlockCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/HeadBucketCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/HeadObjectCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketAnalyticsConfigurationsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketIntelligentTieringConfigurationsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketInventoryConfigurationsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketMetricsConfigurationsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListDirectoryBucketsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListMultipartUploadsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectVersionsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectsV2Command.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListPartsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAccelerateConfigurationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAclCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAnalyticsConfigurationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketCorsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketEncryptionCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketIntelligentTieringConfigurationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketInventoryConfigurationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketLifecycleConfigurationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketLoggingCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketMetricsConfigurationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketNotificationConfigurationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketOwnershipControlsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketPolicyCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketReplicationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketRequestPaymentCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketTaggingCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketVersioningCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketWebsiteCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectAclCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectLegalHoldCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectLockConfigurationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectRetentionCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectTaggingCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutPublicAccessBlockCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/RenameObjectCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/RestoreObjectCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/SelectObjectContentCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateBucketMetadataInventoryTableConfigurationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateBucketMetadataJournalTableConfigurationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UploadPartCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UploadPartCopyCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/WriteGetObjectResponseCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/models/models_0.d.ts +4 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/models/models_1.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/package.json +62 -63
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/index.js +1582 -1740
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/protocols/Aws_json1_1.js +1 -1
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/BatchGetSecretValueCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/CancelRotateSecretCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/CreateSecretCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/DeleteResourcePolicyCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/DeleteSecretCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/DescribeSecretCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/GetRandomPasswordCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/GetResourcePolicyCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/GetSecretValueCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/ListSecretVersionIdsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/ListSecretsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/PutResourcePolicyCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/PutSecretValueCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/RemoveRegionsFromReplicationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/ReplicateSecretToRegionsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/RestoreSecretCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/RotateSecretCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/StopReplicationToReplicaCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/TagResourceCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/UntagResourceCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/UpdateSecretCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/UpdateSecretVersionStageCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/ValidateResourcePolicyCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/package.json +39 -40
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/ruleset.js +1 -1
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/index.js +12508 -13696
- package/node_modules/@aws-sdk/client-ssm/dist-es/endpoint/ruleset.js +1 -1
- package/node_modules/@aws-sdk/client-ssm/dist-es/protocols/Aws_json1_1.js +1 -1
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/AddTagsToResourceCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/AssociateOpsItemRelatedItemCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CancelCommandCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CancelMaintenanceWindowExecutionCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateActivationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateAssociationBatchCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateAssociationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateDocumentCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateMaintenanceWindowCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateOpsItemCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateOpsMetadataCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreatePatchBaselineCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateResourceDataSyncCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteActivationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteAssociationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteDocumentCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteInventoryCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteMaintenanceWindowCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteOpsItemCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteOpsMetadataCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteParameterCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteParametersCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeletePatchBaselineCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteResourceDataSyncCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteResourcePolicyCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterManagedInstanceCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterPatchBaselineForPatchGroupCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterTargetFromMaintenanceWindowCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterTaskFromMaintenanceWindowCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeActivationsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAssociationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAssociationExecutionTargetsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAssociationExecutionsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAutomationExecutionsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAutomationStepExecutionsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAvailablePatchesCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeDocumentCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeDocumentPermissionCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeEffectiveInstanceAssociationsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeEffectivePatchesForPatchBaselineCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstanceAssociationsStatusCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstanceInformationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePatchStatesCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePatchStatesForPatchGroupCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePatchesCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePropertiesCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInventoryDeletionsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowExecutionTasksCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowExecutionsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowScheduleCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowTargetsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowTasksCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowsForTargetCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeOpsItemsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeParametersCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchBaselinesCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchGroupStateCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchGroupsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchPropertiesCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeSessionsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DisassociateOpsItemRelatedItemCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetAccessTokenCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetAutomationExecutionCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetCalendarStateCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetCommandInvocationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetConnectionStatusCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetDefaultPatchBaselineCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetDeployablePatchSnapshotForInstanceCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetDocumentCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetExecutionPreviewCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetInventoryCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetInventorySchemaCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowExecutionCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowExecutionTaskCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowTaskCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetOpsItemCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetOpsMetadataCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetOpsSummaryCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParameterCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParameterHistoryCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParametersByPathCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParametersCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetPatchBaselineCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetPatchBaselineForPatchGroupCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetResourcePoliciesCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetServiceSettingCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/LabelParameterVersionCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListAssociationVersionsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListAssociationsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListCommandInvocationsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListCommandsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListComplianceItemsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListComplianceSummariesCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListDocumentMetadataHistoryCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListDocumentVersionsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListDocumentsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListInventoryEntriesCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListNodesCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListNodesSummaryCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListOpsItemEventsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListOpsItemRelatedItemsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListOpsMetadataCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListResourceComplianceSummariesCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListResourceDataSyncCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ModifyDocumentPermissionCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutComplianceItemsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutInventoryCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutParameterCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutResourcePolicyCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterDefaultPatchBaselineCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterPatchBaselineForPatchGroupCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterTargetWithMaintenanceWindowCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterTaskWithMaintenanceWindowCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ResetServiceSettingCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ResumeSessionCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/SendAutomationSignalCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/SendCommandCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartAccessRequestCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartAssociationsOnceCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartAutomationExecutionCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartChangeRequestExecutionCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartExecutionPreviewCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartSessionCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StopAutomationExecutionCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/TerminateSessionCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UnlabelParameterVersionCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateAssociationCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateAssociationStatusCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateDocumentCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateDocumentDefaultVersionCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateDocumentMetadataCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateMaintenanceWindowCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateMaintenanceWindowTargetCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateMaintenanceWindowTaskCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateManagedInstanceRoleCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateOpsItemCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateOpsMetadataCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdatePatchBaselineCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateResourceDataSyncCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateServiceSettingCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/models/models_0.d.ts +24 -5
- package/node_modules/@aws-sdk/client-ssm/dist-types/models/models_1.d.ts +9 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/models/models_2.d.ts +18 -3
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/models_1.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ssm/package.json +40 -41
- package/node_modules/@aws-sdk/client-sso/dist-cjs/index.js +478 -596
- package/node_modules/@aws-sdk/client-sso/dist-types/commands/GetRoleCredentialsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountRolesCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountsCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/commands/LogoutCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-sso/package.json +36 -36
- package/node_modules/@aws-sdk/core/dist-cjs/index.js +1969 -6
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/account-id-endpoint/index.js +48 -88
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +35 -74
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/httpAuthSchemes/index.js +273 -365
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +1582 -1669
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/ProtocolLib.js +89 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.js +40 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/common.js +2 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/index.js +1 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJson1_0Protocol.js +6 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJson1_1Protocol.js +6 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJsonRpcProtocol.js +24 -36
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsRestJsonProtocol.js +15 -61
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeDeserializer.js +28 -11
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeSerializer.js +48 -21
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/jsonReplacer.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/AwsQueryProtocol.js +29 -42
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/QueryShapeSerializer.js +10 -6
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/AwsRestXmlProtocol.js +17 -70
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeDeserializer.js +5 -13
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeSerializer.js +20 -20
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/parseXmlBody.js +2 -13
- package/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/AccountIdEndpointModeConfigResolver.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/ConfigurableSerdeContext.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/ProtocolLib.d.ts +49 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.d.ts +23 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/index.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJson1_0Protocol.d.ts +7 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJson1_1Protocol.d.ts +7 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJsonRpcProtocol.d.ts +8 -3
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsRestJsonProtocol.d.ts +6 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonCodec.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonShapeDeserializer.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonShapeSerializer.d.ts +6 -2
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/AwsQueryProtocol.d.ts +6 -2
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/QuerySerializerSettings.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/AwsRestXmlProtocol.d.ts +6 -2
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlCodec.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/ProtocolLib.d.ts +37 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.d.ts +33 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/index.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJson1_0Protocol.d.ts +10 -1
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJson1_1Protocol.d.ts +10 -1
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJsonRpcProtocol.d.ts +13 -2
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsRestJsonProtocol.d.ts +2 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonShapeSerializer.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/AwsQueryProtocol.d.ts +3 -1
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/AwsRestXmlProtocol.d.ts +3 -1
- package/node_modules/@aws-sdk/core/package.json +15 -17
- package/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js +38 -73
- package/node_modules/@aws-sdk/credential-provider-env/package.json +6 -5
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js +4 -2
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.js +4 -2
- package/node_modules/@aws-sdk/credential-provider-http/package.json +11 -10
- package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +194 -259
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveAssumeRoleCredentials.js +1 -2
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProfileData.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveAssumeRoleCredentials.d.ts +2 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProfileData.d.ts +4 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveAssumeRoleCredentials.d.ts +3 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProfileData.d.ts +1 -0
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +16 -15
- package/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +72 -132
- package/node_modules/@aws-sdk/credential-provider-node/dist-es/defaultProvider.js +3 -1
- package/node_modules/@aws-sdk/credential-provider-node/package.json +16 -14
- package/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js +71 -106
- package/node_modules/@aws-sdk/credential-provider-process/dist-es/resolveProcessCredentials.js +2 -1
- package/node_modules/@aws-sdk/credential-provider-process/package.json +7 -6
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +176 -233
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/loadSso-CVy8iqsZ.js +14 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/fromSSO.js +8 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/resolveSSOCredentials.js +7 -2
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/resolveSSOCredentials.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/resolveSSOCredentials.d.ts +3 -0
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +9 -8
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js +3 -1
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/index.js +16 -25
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromTokenFile.js +3 -1
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +8 -6
- package/node_modules/@aws-sdk/endpoint-cache/package.json +2 -1
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-cjs/index.js +334 -450
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/package.json +8 -7
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-cjs/index.js +170 -211
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/package.json +9 -8
- package/node_modules/@aws-sdk/middleware-expect-continue/dist-cjs/index.js +30 -60
- package/node_modules/@aws-sdk/middleware-expect-continue/package.json +7 -6
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-cjs/index.js +381 -478
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/getCrc32ChecksumAlgorithmFunction.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/stringHasher.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/getCrc32ChecksumAlgorithmFunction.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/stringHasher.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +16 -15
- package/node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js +35 -63
- package/node_modules/@aws-sdk/middleware-host-header/package.json +7 -6
- package/node_modules/@aws-sdk/middleware-location-constraint/dist-cjs/index.js +23 -57
- package/node_modules/@aws-sdk/middleware-location-constraint/dist-es/index.js +4 -7
- package/node_modules/@aws-sdk/middleware-location-constraint/package.json +6 -5
- package/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js +44 -75
- package/node_modules/@aws-sdk/middleware-logger/dist-types/loggerMiddleware.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-logger/package.json +6 -5
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/index.js +20 -67
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/recursionDetectionMiddleware.js +32 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/recursionDetectionMiddleware.native.js +5 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/configuration.js +7 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/getRecursionDetectionPlugin.js +7 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/index.js +2 -37
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/recursionDetectionMiddleware.browser.js +1 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/recursionDetectionMiddleware.js +28 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/recursionDetectionMiddleware.native.js +1 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/configuration.d.ts +5 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/getRecursionDetectionPlugin.d.ts +5 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/index.d.ts +2 -18
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/recursionDetectionMiddleware.browser.d.ts +6 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/recursionDetectionMiddleware.d.ts +6 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/recursionDetectionMiddleware.native.d.ts +6 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/configuration.d.ts +3 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/getRecursionDetectionPlugin.d.ts +4 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/index.d.ts +2 -18
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/recursionDetectionMiddleware.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/recursionDetectionMiddleware.d.ts +5 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/recursionDetectionMiddleware.native.d.ts +5 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +13 -7
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.js +512 -638
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/region-redirect-middleware.js +15 -10
- package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +19 -18
- package/node_modules/@aws-sdk/middleware-ssec/dist-cjs/index.js +65 -92
- package/node_modules/@aws-sdk/middleware-ssec/package.json +6 -5
- package/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js +170 -203
- package/node_modules/@aws-sdk/middleware-user-agent/package.json +10 -9
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/index.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js +585 -833
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js +797 -928
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/models_0.js +13 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/protocols/Aws_restJson1.js +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/defaultStsRoleAssumers.js +6 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/SSOOIDC.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/SSOOIDCClient.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/index.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/models_0.d.ts +36 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/defaultStsRoleAssumers.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/models_0.d.ts +15 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/defaultStsRoleAssumers.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/package.json +37 -36
- package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/index.js +37 -100
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/index.js +1 -1
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/awsRegionConfig.js +2 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/extensions/index.d.ts +2 -2
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/index.d.ts +1 -1
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/awsRegionConfig.d.ts +15 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/index.d.ts +1 -1
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/awsRegionConfig.d.ts +11 -0
- package/node_modules/@aws-sdk/region-config-resolver/package.json +5 -7
- package/node_modules/@aws-sdk/s3-request-presigner/dist-cjs/index.js +123 -177
- package/node_modules/@aws-sdk/s3-request-presigner/package.json +11 -10
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-cjs/index.js +108 -137
- package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +9 -8
- package/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +147 -222
- package/node_modules/@aws-sdk/token-providers/package.json +11 -9
- package/node_modules/@aws-sdk/types/dist-cjs/index.js +18 -290
- package/node_modules/@aws-sdk/types/package.json +3 -2
- package/node_modules/@aws-sdk/util-arn-parser/package.json +2 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js +395 -466
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partitions.json +40 -37
- package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partitions.json +40 -37
- package/node_modules/@aws-sdk/util-endpoints/package.json +8 -8
- package/node_modules/@aws-sdk/util-format-url/dist-cjs/index.js +30 -58
- package/node_modules/@aws-sdk/util-format-url/package.json +5 -4
- package/node_modules/@aws-sdk/util-locate-window/package.json +2 -1
- package/node_modules/@aws-sdk/util-user-agent-browser/README.md +22 -3
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/createUserAgentStringParsingProvider.js +57 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.js +39 -8
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-es/createUserAgentStringParsingProvider.js +20 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.js +37 -6
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/createUserAgentStringParsingProvider.d.ts +14 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.d.ts +14 -4
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.native.d.ts +4 -3
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/createUserAgentStringParsingProvider.d.ts +9 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.d.ts +5 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/package.json +4 -3
- package/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js +50 -94
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/crt-availability.d.ts +1 -2
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/defaultUserAgent.d.ts +10 -5
- package/node_modules/@aws-sdk/util-user-agent-node/package.json +6 -5
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/index.js +106 -155
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.js +18 -0
- package/node_modules/@aws-sdk/xml-builder/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/xml-builder/dist-es/xml-parser.browser.js +57 -0
- package/node_modules/@aws-sdk/xml-builder/dist-es/xml-parser.js +15 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/xml-parser.browser.d.ts +1 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/xml-parser.d.ts +1 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/xml-parser.browser.d.ts +9 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/xml-parser.d.ts +4 -0
- package/node_modules/@aws-sdk/xml-builder/package.json +11 -2
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/.jsii +135 -5
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/lib/index.js +1 -1
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/node_modules/@aws-solutions-constructs/core/.jsii +224 -86
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/node_modules/@aws-solutions-constructs/core/index.d.ts +1 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/node_modules/@aws-solutions-constructs/core/index.js +2 -1
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/node_modules/@aws-solutions-constructs/core/lib/bedrock-inference-helper.js +2 -2
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/node_modules/@aws-solutions-constructs/core/lib/cloudfront-distribution-defaults.d.ts +1 -1
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/node_modules/@aws-solutions-constructs/core/lib/cloudfront-distribution-defaults.js +1 -1
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/node_modules/@aws-solutions-constructs/core/lib/cloudfront-distribution-helper.d.ts +1 -1
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/node_modules/@aws-solutions-constructs/core/lib/cloudfront-distribution-helper.js +21 -2
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/{test/integ.lamddb-no-arguments.js.snapshot/asset.a0c6248ec595d3ceec1177aa5ac5b494fdf4c66f1b88aa48086befd44f193d8c/index.js → node_modules/@aws-solutions-constructs/core/lib/constructs-feature-flags.d.ts} +9 -9
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/node_modules/@aws-solutions-constructs/core/lib/constructs-feature-flags.js +63 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/node_modules/@aws-solutions-constructs/core/lib/dynamodb-table-helper.d.ts +0 -2
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/node_modules/@aws-solutions-constructs/core/lib/dynamodb-table-helper.js +4 -2
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/node_modules/@aws-solutions-constructs/core/lib/kendra-helper.js +4 -2
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/node_modules/@aws-solutions-constructs/core/lib/pipes-defaults.js +1 -2
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/node_modules/@aws-solutions-constructs/core/lib/sqs-helper.js +46 -41
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/node_modules/@aws-solutions-constructs/core/lib/utils.js +1 -1
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/node_modules/@aws-solutions-constructs/core/lib/vpc-defaults.d.ts +3 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/node_modules/@aws-solutions-constructs/core/lib/vpc-defaults.js +21 -16
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/node_modules/@aws-solutions-constructs/core/lib/vpc-helper.d.ts +5 -1
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/node_modules/@aws-solutions-constructs/core/lib/vpc-helper.js +31 -4
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/node_modules/@aws-solutions-constructs/core/lib/waf-helper.js +5 -2
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/node_modules/@aws-solutions-constructs/core/package.json +5 -4
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/node_modules/@aws-solutions-constructs/core/test/TwoLogGroups.json +365 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/node_modules/@aws-solutions-constructs/core/test/bedrock-inference-helper.test.js +2 -6
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/node_modules/@aws-solutions-constructs/core/test/cloudfront-distribution-s3-helper.test.js +123 -1
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/{test/integ.lamddb-deployFunctionWithExistingVpc.js.snapshot/asset.a0c6248ec595d3ceec1177aa5ac5b494fdf4c66f1b88aa48086befd44f193d8c/index.js → node_modules/@aws-solutions-constructs/core/test/constructs-feature-flags.test.d.ts} +1 -9
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/node_modules/@aws-solutions-constructs/core/test/constructs-feature-flags.test.js +50 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/node_modules/@aws-solutions-constructs/core/test/dynamo-table.test.js +12 -6
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/node_modules/@aws-solutions-constructs/core/test/lambda/index.js +1 -1
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/node_modules/@aws-solutions-constructs/core/test/pipes-helper.test.js +2 -2
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/node_modules/@aws-solutions-constructs/core/test/step-function-helper.test.js +1 -1
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/node_modules/@aws-solutions-constructs/core/test/test-helper.d.ts +6 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/node_modules/@aws-solutions-constructs/core/test/test-helper.js +84 -1
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/node_modules/@aws-solutions-constructs/core/test/vpc-helper.test.js +31 -1
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/node_modules/@aws-solutions-constructs/core/test/waf-helper.test.js +35 -1
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/package.json +6 -6
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-add-secondary-index.js +2 -1
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-deployFunctionWithExistingVpc.js +2 -1
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-deployFunctionWithExistingVpc.js.snapshot/cdk.out +1 -1
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-deployFunctionWithExistingVpc.js.snapshot/integ.json +2 -2
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-deployFunctionWithExistingVpc.js.snapshot/lamddb-deployFunctionWithExistingVpc.assets.json +6 -6
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-deployFunctionWithExistingVpc.js.snapshot/lamddb-deployFunctionWithExistingVpc.template.json +1 -136
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-deployFunctionWithExistingVpc.js.snapshot/lamddbdeployFunctionWithExistingVpcIntegDefaultTestDeployAssertEE08E38E.assets.json +2 -2
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-deployFunctionWithExistingVpc.js.snapshot/manifest.json +475 -10
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-deployFunctionWithExistingVpc.js.snapshot/tree.json +1 -1
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-deployFunctionWithVpc.js +2 -1
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-deployFunctionWithVpc.js.snapshot/cdk.out +1 -1
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-deployFunctionWithVpc.js.snapshot/integ.json +2 -2
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-deployFunctionWithVpc.js.snapshot/lamddb-deployFunctionWithVpc.assets.json +6 -6
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-deployFunctionWithVpc.js.snapshot/lamddb-deployFunctionWithVpc.template.json +1 -136
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-deployFunctionWithVpc.js.snapshot/lamddbdeployFunctionWithVpcIntegDefaultTestDeployAssert0AB8275C.assets.json +2 -2
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-deployFunctionWithVpc.js.snapshot/manifest.json +475 -10
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-deployFunctionWithVpc.js.snapshot/tree.json +1 -1
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-no-arguments.js +2 -1
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-point-in-time-recovery.js +2 -1
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-set-billing-mode.js +2 -1
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-use-existing-func.js +2 -1
- package/node_modules/@gemeentenijmegen/apiclient/node_modules/@gemeentenijmegen/utils/package.json +8 -8
- package/node_modules/@gemeentenijmegen/apiclient/package.json +9 -9
- package/node_modules/@gemeentenijmegen/apigateway-http/package.json +5 -5
- package/node_modules/@gemeentenijmegen/session/lib/index.d.ts +5 -0
- package/node_modules/@gemeentenijmegen/session/lib/index.js +17 -1
- package/node_modules/@gemeentenijmegen/session/package.json +6 -6
- package/node_modules/@gemeentenijmegen/utils/lib/authenticate.d.ts +13 -0
- package/node_modules/@gemeentenijmegen/utils/lib/authenticate.js +52 -0
- package/node_modules/@gemeentenijmegen/utils/lib/index.d.ts +3 -2
- package/node_modules/@gemeentenijmegen/utils/lib/index.js +8 -6
- package/node_modules/@gemeentenijmegen/utils/package.json +9 -8
- package/node_modules/@smithy/abort-controller/dist-cjs/index.js +28 -80
- package/node_modules/@smithy/abort-controller/dist-es/AbortController.js +1 -3
- package/node_modules/@smithy/abort-controller/dist-es/AbortSignal.js +2 -2
- package/node_modules/@smithy/abort-controller/package.json +3 -2
- package/node_modules/@smithy/chunked-blob-reader/dist-cjs/index.js +9 -37
- package/node_modules/@smithy/chunked-blob-reader/package.json +5 -4
- package/node_modules/@smithy/chunked-blob-reader-native/dist-cjs/index.js +28 -55
- package/node_modules/@smithy/chunked-blob-reader-native/package.json +6 -5
- package/node_modules/@smithy/config-resolver/dist-cjs/index.js +167 -214
- package/node_modules/@smithy/config-resolver/dist-es/regionConfig/checkRegion.js +10 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionConfig/resolveRegionConfig.js +5 -5
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +1 -1
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +1 -1
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveCustomEndpointsConfig.d.ts +2 -2
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveEndpointsConfig.d.ts +1 -1
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/utils/getEndpointFromRegion.d.ts +1 -1
- package/node_modules/@smithy/config-resolver/dist-types/regionConfig/checkRegion.d.ts +9 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionConfig/config.d.ts +1 -1
- package/node_modules/@smithy/config-resolver/dist-types/regionConfig/resolveRegionConfig.d.ts +1 -1
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/EndpointVariant.d.ts +1 -1
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/PartitionHash.d.ts +1 -1
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/RegionHash.d.ts +1 -1
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getHostnameFromVariants.d.ts +1 -1
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getRegionInfo.d.ts +3 -3
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedPartition.d.ts +1 -1
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/checkRegion.d.ts +9 -0
- package/node_modules/@smithy/config-resolver/package.json +7 -5
- package/node_modules/@smithy/core/dist-cjs/index.js +308 -413
- package/node_modules/@smithy/core/dist-cjs/submodules/cbor/index.js +985 -939
- package/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.js +211 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +797 -799
- package/node_modules/@smithy/core/dist-cjs/submodules/schema/index.js +576 -807
- package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.js +671 -720
- package/node_modules/@smithy/core/dist-es/index.js +1 -1
- package/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +0 -1
- package/node_modules/@smithy/core/dist-es/middleware-http-signing/httpSigningMiddleware.js +0 -1
- package/node_modules/@smithy/core/dist-es/submodules/cbor/CborCodec.js +82 -53
- package/node_modules/@smithy/core/dist-es/submodules/cbor/SmithyRpcV2CborProtocol.js +42 -19
- package/node_modules/@smithy/core/dist-es/submodules/cbor/byte-printer.js +35 -1
- package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-decode.js +18 -18
- package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-encode.js +5 -5
- package/node_modules/@smithy/core/dist-es/submodules/cbor/parseCborBody.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/EventStreamSerde.js +206 -0
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/index.js +1 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpBindingProtocol.js +99 -17
- package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpProtocol.js +52 -101
- package/node_modules/@smithy/core/dist-es/submodules/protocols/RpcProtocol.js +38 -12
- package/node_modules/@smithy/core/dist-es/submodules/protocols/SerdeContext.js +6 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/index.js +2 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/requestBuilder.js +9 -7
- package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/FromStringShapeDeserializer.js +23 -21
- package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/HttpInterceptingShapeDeserializer.js +5 -1
- package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/HttpInterceptingShapeSerializer.js +3 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/ToStringShapeSerializer.js +9 -10
- package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/determineTimestampFormat.js +5 -6
- package/node_modules/@smithy/core/dist-es/submodules/schema/TypeRegistry.js +27 -11
- package/node_modules/@smithy/core/dist-es/submodules/schema/index.js +2 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaDeserializationMiddleware.js +3 -1
- package/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaSerializationMiddleware.js +3 -1
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/ErrorSchema.js +12 -24
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/ListSchema.js +11 -22
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/MapSchema.js +13 -23
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/NormalizedSchema.js +143 -195
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/OperationSchema.js +13 -13
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/Schema.js +17 -3
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/SimpleSchema.js +17 -22
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/StructureSchema.js +13 -29
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/operation.js +7 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/sentinels.js +14 -14
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/translateTraits.js +22 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/copyDocumentWithTransform.js +1 -53
- package/node_modules/@smithy/core/dist-es/submodules/serde/generateIdempotencyToken.js +2 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/index.js +2 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/schema-serde-lib/schema-date-utils.js +110 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/value/NumericValue.js +6 -24
- package/node_modules/@smithy/core/dist-es/util-identity-and-auth/DefaultIdentityProviderConfig.js +1 -1
- package/node_modules/@smithy/core/dist-es/util-identity-and-auth/memoizeIdentityProvider.js +4 -2
- package/node_modules/@smithy/core/dist-types/getSmithyContext.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/index.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/getHttpAuthSchemePlugin.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/httpAuthSchemeMiddleware.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/resolveAuthOptions.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/middleware-http-signing/getHttpSigningMiddleware.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/middleware-http-signing/httpSigningMiddleware.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/normalizeProvider.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/cbor/CborCodec.d.ts +15 -11
- package/node_modules/@smithy/core/dist-types/submodules/cbor/SmithyRpcV2CborProtocol.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-decode.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-types.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/cbor/parseCborBody.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/submodules/event-streams/EventStreamSerde.d.ts +60 -0
- package/node_modules/@smithy/core/dist-types/submodules/event-streams/index.d.ts +1 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/HttpBindingProtocol.d.ts +9 -1
- package/node_modules/@smithy/core/dist-types/submodules/protocols/HttpProtocol.d.ts +47 -4
- package/node_modules/@smithy/core/dist-types/submodules/protocols/RpcProtocol.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/protocols/SerdeContext.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/collect-stream-body.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/protocols/index.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/serde/FromStringShapeDeserializer.d.ts +3 -4
- package/node_modules/@smithy/core/dist-types/submodules/protocols/serde/HttpInterceptingShapeDeserializer.d.ts +6 -3
- package/node_modules/@smithy/core/dist-types/submodules/protocols/serde/HttpInterceptingShapeSerializer.d.ts +5 -2
- package/node_modules/@smithy/core/dist-types/submodules/protocols/serde/ToStringShapeSerializer.d.ts +3 -4
- package/node_modules/@smithy/core/dist-types/submodules/protocols/serde/determineTimestampFormat.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/submodules/schema/TypeRegistry.d.ts +14 -5
- package/node_modules/@smithy/core/dist-types/submodules/schema/index.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/middleware/getSchemaSerdePlugin.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/submodules/schema/middleware/schemaDeserializationMiddleware.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/submodules/schema/middleware/schemaSerializationMiddleware.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/ErrorSchema.d.ts +10 -14
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/ListSchema.d.ts +5 -5
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/MapSchema.d.ts +5 -9
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/NormalizedSchema.d.ts +31 -29
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/OperationSchema.d.ts +5 -2
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/Schema.d.ts +6 -1
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/SimpleSchema.d.ts +11 -6
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/StructureSchema.d.ts +5 -6
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/operation.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/sentinels.d.ts +3 -1
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/translateTraits.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/copyDocumentWithTransform.d.ts +2 -1
- package/node_modules/@smithy/core/dist-types/submodules/serde/generateIdempotencyToken.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/index.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/schema-serde-lib/schema-date-utils.d.ts +47 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/index.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/CborCodec.d.ts +15 -11
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/SmithyRpcV2CborProtocol.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor-types.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/EventStreamSerde.d.ts +60 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/index.d.ts +1 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/HttpBindingProtocol.d.ts +9 -1
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/HttpProtocol.d.ts +47 -4
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/SerdeContext.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/index.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/FromStringShapeDeserializer.d.ts +3 -4
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/HttpInterceptingShapeDeserializer.d.ts +5 -2
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/HttpInterceptingShapeSerializer.d.ts +5 -2
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/ToStringShapeSerializer.d.ts +3 -4
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/determineTimestampFormat.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/TypeRegistry.d.ts +13 -4
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/index.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/ErrorSchema.d.ts +10 -14
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/ListSchema.d.ts +5 -5
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/MapSchema.d.ts +5 -9
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/NormalizedSchema.d.ts +31 -29
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/OperationSchema.d.ts +5 -2
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/Schema.d.ts +6 -1
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/SimpleSchema.d.ts +10 -5
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/StructureSchema.d.ts +5 -9
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/operation.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/sentinels.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/translateTraits.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/copyDocumentWithTransform.d.ts +1 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/generateIdempotencyToken.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/index.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/schema-serde-lib/schema-date-utils.d.ts +47 -0
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/DefaultIdentityProviderConfig.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/noAuth.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/memoizeIdentityProvider.d.ts +1 -1
- package/node_modules/@smithy/core/event-streams.d.ts +7 -0
- package/node_modules/@smithy/core/event-streams.js +6 -0
- package/node_modules/@smithy/core/package.json +20 -9
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/index.js +340 -413
- package/node_modules/@smithy/credential-provider-imds/dist-es/error/InstanceMetadataV1FallbackError.js +2 -1
- package/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointConfigOptions.d.ts +1 -1
- package/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointModeConfigOptions.d.ts +1 -1
- package/node_modules/@smithy/credential-provider-imds/dist-types/fromContainerMetadata.d.ts +2 -2
- package/node_modules/@smithy/credential-provider-imds/dist-types/fromInstanceMetadata.d.ts +3 -3
- package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/ImdsCredentials.d.ts +1 -1
- package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/RemoteProviderInit.d.ts +1 -1
- package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/httpRequest.d.ts +1 -1
- package/node_modules/@smithy/credential-provider-imds/dist-types/types.d.ts +1 -1
- package/node_modules/@smithy/credential-provider-imds/dist-types/utils/getExtendedInstanceMetadataCredentials.d.ts +2 -2
- package/node_modules/@smithy/credential-provider-imds/dist-types/utils/getInstanceMetadataEndpoint.d.ts +1 -1
- package/node_modules/@smithy/credential-provider-imds/dist-types/utils/staticStabilityProvider.d.ts +2 -2
- package/node_modules/@smithy/credential-provider-imds/package.json +6 -5
- package/node_modules/@smithy/eventstream-codec/dist-cjs/index.js +372 -459
- package/node_modules/@smithy/eventstream-codec/dist-es/EventStreamCodec.js +3 -0
- package/node_modules/@smithy/eventstream-codec/dist-es/HeaderMarshaller.js +2 -0
- package/node_modules/@smithy/eventstream-codec/dist-es/Int64.js +2 -1
- package/node_modules/@smithy/eventstream-codec/dist-es/MessageDecoderStream.js +1 -0
- package/node_modules/@smithy/eventstream-codec/dist-es/MessageEncoderStream.js +1 -0
- package/node_modules/@smithy/eventstream-codec/dist-es/SmithyMessageDecoderStream.js +1 -0
- package/node_modules/@smithy/eventstream-codec/dist-es/SmithyMessageEncoderStream.js +1 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/EventStreamCodec.d.ts +2 -2
- package/node_modules/@smithy/eventstream-codec/dist-types/HeaderMarshaller.d.ts +1 -1
- package/node_modules/@smithy/eventstream-codec/dist-types/Int64.d.ts +1 -1
- package/node_modules/@smithy/eventstream-codec/dist-types/Message.d.ts +1 -1
- package/node_modules/@smithy/eventstream-codec/dist-types/MessageDecoderStream.d.ts +1 -1
- package/node_modules/@smithy/eventstream-codec/dist-types/MessageEncoderStream.d.ts +1 -1
- package/node_modules/@smithy/eventstream-codec/dist-types/SmithyMessageDecoderStream.d.ts +1 -1
- package/node_modules/@smithy/eventstream-codec/dist-types/SmithyMessageEncoderStream.d.ts +1 -1
- package/node_modules/@smithy/eventstream-codec/dist-types/TestVectors.fixture.d.ts +1 -1
- package/node_modules/@smithy/eventstream-codec/dist-types/vectorTypes.fixture.d.ts +1 -1
- package/node_modules/@smithy/eventstream-codec/package.json +5 -4
- package/node_modules/@smithy/eventstream-serde-browser/dist-cjs/index.js +51 -97
- package/node_modules/@smithy/eventstream-serde-browser/dist-es/EventStreamMarshaller.js +1 -0
- package/node_modules/@smithy/eventstream-serde-browser/dist-types/EventStreamMarshaller.d.ts +1 -1
- package/node_modules/@smithy/eventstream-serde-browser/dist-types/provider.d.ts +1 -1
- package/node_modules/@smithy/eventstream-serde-browser/package.json +4 -3
- package/node_modules/@smithy/eventstream-serde-config-resolver/dist-cjs/index.js +4 -33
- package/node_modules/@smithy/eventstream-serde-config-resolver/dist-types/EventStreamSerdeConfig.d.ts +1 -1
- package/node_modules/@smithy/eventstream-serde-config-resolver/package.json +3 -2
- package/node_modules/@smithy/eventstream-serde-node/dist-cjs/index.js +44 -80
- package/node_modules/@smithy/eventstream-serde-node/dist-es/EventStreamMarshaller.js +1 -0
- package/node_modules/@smithy/eventstream-serde-node/dist-types/EventStreamMarshaller.d.ts +1 -1
- package/node_modules/@smithy/eventstream-serde-node/dist-types/provider.d.ts +1 -1
- package/node_modules/@smithy/eventstream-serde-node/dist-types/utils.d.ts +1 -1
- package/node_modules/@smithy/eventstream-serde-node/package.json +4 -3
- package/node_modules/@smithy/eventstream-serde-universal/dist-cjs/index.js +120 -171
- package/node_modules/@smithy/eventstream-serde-universal/dist-es/EventStreamMarshaller.js +2 -0
- package/node_modules/@smithy/eventstream-serde-universal/dist-types/EventStreamMarshaller.d.ts +1 -1
- package/node_modules/@smithy/eventstream-serde-universal/dist-types/getUnmarshalledStream.d.ts +2 -2
- package/node_modules/@smithy/eventstream-serde-universal/dist-types/provider.d.ts +1 -1
- package/node_modules/@smithy/eventstream-serde-universal/package.json +8 -5
- package/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +190 -238
- package/node_modules/@smithy/fetch-http-handler/dist-es/fetch-http-handler.js +2 -0
- package/node_modules/@smithy/fetch-http-handler/dist-types/create-request.d.ts +1 -1
- package/node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts +3 -2
- package/node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts +1 -1
- package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/fetch-http-handler.d.ts +2 -1
- package/node_modules/@smithy/fetch-http-handler/package.json +9 -8
- package/node_modules/@smithy/hash-blob-browser/dist-cjs/index.js +10 -36
- package/node_modules/@smithy/hash-blob-browser/dist-types/index.d.ts +1 -1
- package/node_modules/@smithy/hash-blob-browser/package.json +6 -5
- package/node_modules/@smithy/hash-node/dist-cjs/index.js +38 -63
- package/node_modules/@smithy/hash-node/dist-es/index.js +3 -0
- package/node_modules/@smithy/hash-node/dist-types/index.d.ts +1 -1
- package/node_modules/@smithy/hash-node/package.json +5 -4
- package/node_modules/@smithy/hash-stream-node/dist-cjs/index.js +58 -92
- package/node_modules/@smithy/hash-stream-node/dist-es/HashCalculator.js +1 -0
- package/node_modules/@smithy/hash-stream-node/dist-types/HashCalculator.d.ts +3 -2
- package/node_modules/@smithy/hash-stream-node/dist-types/fileStreamHasher.d.ts +2 -2
- package/node_modules/@smithy/hash-stream-node/dist-types/readableStreamHasher.d.ts +2 -2
- package/node_modules/@smithy/hash-stream-node/dist-types/ts3.4/HashCalculator.d.ts +2 -1
- package/node_modules/@smithy/hash-stream-node/package.json +5 -4
- package/node_modules/@smithy/invalid-dependency/dist-cjs/index.js +7 -38
- package/node_modules/@smithy/invalid-dependency/dist-types/invalidProvider.d.ts +1 -1
- package/node_modules/@smithy/invalid-dependency/package.json +3 -2
- package/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +4 -30
- package/node_modules/@smithy/is-array-buffer/package.json +5 -4
- package/node_modules/@smithy/md5-js/dist-cjs/index.js +153 -186
- package/node_modules/@smithy/md5-js/dist-es/index.js +5 -0
- package/node_modules/@smithy/md5-js/dist-types/index.d.ts +1 -1
- package/node_modules/@smithy/md5-js/package.json +6 -5
- package/node_modules/@smithy/middleware-content-length/dist-cjs/index.js +39 -64
- package/node_modules/@smithy/middleware-content-length/dist-types/index.d.ts +1 -1
- package/node_modules/@smithy/middleware-content-length/package.json +6 -5
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.js +1 -1
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/index.js +219 -277
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromInstructions.d.ts +3 -3
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointUrlConfig.d.ts +1 -1
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/toEndpointV1.d.ts +1 -1
- package/node_modules/@smithy/middleware-endpoint/dist-types/endpointMiddleware.d.ts +3 -3
- package/node_modules/@smithy/middleware-endpoint/dist-types/getEndpointPlugin.d.ts +3 -3
- package/node_modules/@smithy/middleware-endpoint/dist-types/resolveEndpointConfig.d.ts +1 -1
- package/node_modules/@smithy/middleware-endpoint/dist-types/resolveEndpointRequiredConfig.d.ts +1 -1
- package/node_modules/@smithy/middleware-endpoint/dist-types/service-customizations/s3.d.ts +1 -1
- package/node_modules/@smithy/middleware-endpoint/package.json +9 -8
- package/node_modules/@smithy/middleware-retry/dist-cjs/index.js +327 -394
- package/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.browser.js +1 -1
- package/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.js +2 -2
- package/node_modules/@smithy/middleware-retry/dist-es/AdaptiveRetryStrategy.js +1 -0
- package/node_modules/@smithy/middleware-retry/dist-es/StandardRetryStrategy.js +6 -2
- package/node_modules/@smithy/middleware-retry/dist-es/retryMiddleware.js +1 -1
- package/node_modules/@smithy/middleware-retry/dist-types/AdaptiveRetryStrategy.d.ts +4 -3
- package/node_modules/@smithy/middleware-retry/dist-types/StandardRetryStrategy.d.ts +2 -2
- package/node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts +2 -2
- package/node_modules/@smithy/middleware-retry/dist-types/defaultRetryQuota.d.ts +1 -1
- package/node_modules/@smithy/middleware-retry/dist-types/omitRetryHeadersMiddleware.d.ts +1 -1
- package/node_modules/@smithy/middleware-retry/dist-types/retryDecider.d.ts +1 -1
- package/node_modules/@smithy/middleware-retry/dist-types/retryMiddleware.d.ts +2 -2
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +2 -1
- package/node_modules/@smithy/middleware-retry/dist-types/types.d.ts +1 -1
- package/node_modules/@smithy/middleware-retry/dist-types/util.d.ts +1 -1
- package/node_modules/@smithy/middleware-retry/package.json +13 -13
- package/node_modules/@smithy/middleware-serde/dist-cjs/index.js +89 -118
- package/node_modules/@smithy/middleware-serde/dist-types/deserializerMiddleware.d.ts +1 -1
- package/node_modules/@smithy/middleware-serde/dist-types/serdePlugin.d.ts +1 -1
- package/node_modules/@smithy/middleware-serde/dist-types/serializerMiddleware.d.ts +1 -1
- package/node_modules/@smithy/middleware-serde/package.json +6 -5
- package/node_modules/@smithy/middleware-stack/dist-cjs/index.js +274 -302
- package/node_modules/@smithy/middleware-stack/dist-types/MiddlewareStack.d.ts +1 -1
- package/node_modules/@smithy/middleware-stack/dist-types/types.d.ts +1 -1
- package/node_modules/@smithy/middleware-stack/package.json +3 -2
- package/node_modules/@smithy/node-config-provider/dist-cjs/index.js +51 -98
- package/node_modules/@smithy/node-config-provider/dist-types/configLoader.d.ts +4 -4
- package/node_modules/@smithy/node-config-provider/dist-types/fromEnv.d.ts +1 -1
- package/node_modules/@smithy/node-config-provider/dist-types/fromSharedConfigFiles.d.ts +2 -2
- package/node_modules/@smithy/node-config-provider/dist-types/fromStatic.d.ts +1 -1
- package/node_modules/@smithy/node-config-provider/package.json +5 -4
- package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +690 -769
- package/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +26 -15
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +2 -1
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-pool.js +1 -1
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +4 -2
- package/node_modules/@smithy/node-http-handler/dist-es/readable.mock.js +3 -1
- package/node_modules/@smithy/node-http-handler/dist-es/set-connection-timeout.js +1 -1
- package/node_modules/@smithy/node-http-handler/dist-es/set-request-timeout.js +21 -0
- package/node_modules/@smithy/node-http-handler/dist-es/set-socket-timeout.js +2 -3
- package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/collector.js +1 -4
- package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/readable.mock.js +3 -1
- package/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +2 -2
- package/node_modules/@smithy/node-http-handler/dist-types/get-transformed-headers.d.ts +2 -2
- package/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +3 -2
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +4 -4
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +2 -2
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +3 -2
- package/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +2 -1
- package/node_modules/@smithy/node-http-handler/dist-types/server.mock.d.ts +4 -4
- package/node_modules/@smithy/node-http-handler/dist-types/set-connection-timeout.d.ts +1 -1
- package/node_modules/@smithy/node-http-handler/dist-types/set-request-timeout.d.ts +6 -0
- package/node_modules/@smithy/node-http-handler/dist-types/set-socket-keep-alive.d.ts +1 -1
- package/node_modules/@smithy/node-http-handler/dist-types/set-socket-timeout.d.ts +1 -1
- package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +1 -1
- package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +2 -1
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +2 -1
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +2 -1
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +2 -1
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-request-timeout.d.ts +6 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +2 -1
- package/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +3 -3
- package/node_modules/@smithy/node-http-handler/package.json +6 -5
- package/node_modules/@smithy/property-provider/dist-cjs/index.js +105 -158
- package/node_modules/@smithy/property-provider/dist-es/CredentialsProviderError.js +1 -1
- package/node_modules/@smithy/property-provider/dist-es/ProviderError.js +2 -1
- package/node_modules/@smithy/property-provider/dist-es/TokenProviderError.js +1 -1
- package/node_modules/@smithy/property-provider/dist-types/CredentialsProviderError.d.ts +2 -1
- package/node_modules/@smithy/property-provider/dist-types/ProviderError.d.ts +1 -1
- package/node_modules/@smithy/property-provider/dist-types/TokenProviderError.d.ts +2 -1
- package/node_modules/@smithy/property-provider/dist-types/chain.d.ts +1 -1
- package/node_modules/@smithy/property-provider/dist-types/fromStatic.d.ts +1 -1
- package/node_modules/@smithy/property-provider/dist-types/memoize.d.ts +1 -1
- package/node_modules/@smithy/property-provider/dist-types/ts3.4/CredentialsProviderError.d.ts +2 -1
- package/node_modules/@smithy/property-provider/dist-types/ts3.4/TokenProviderError.d.ts +2 -1
- package/node_modules/@smithy/property-provider/package.json +3 -2
- package/node_modules/@smithy/protocol-http/dist-cjs/index.js +154 -247
- package/node_modules/@smithy/protocol-http/dist-es/Field.js +3 -0
- package/node_modules/@smithy/protocol-http/dist-es/Fields.js +2 -1
- package/node_modules/@smithy/protocol-http/dist-es/httpRequest.js +11 -0
- package/node_modules/@smithy/protocol-http/dist-es/httpResponse.js +4 -0
- package/node_modules/@smithy/protocol-http/dist-types/Field.d.ts +2 -1
- package/node_modules/@smithy/protocol-http/dist-types/Fields.d.ts +2 -2
- package/node_modules/@smithy/protocol-http/dist-types/extensions/httpExtensionConfiguration.d.ts +1 -1
- package/node_modules/@smithy/protocol-http/dist-types/httpRequest.d.ts +2 -1
- package/node_modules/@smithy/protocol-http/dist-types/httpResponse.d.ts +1 -1
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/Field.d.ts +2 -1
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpRequest.d.ts +2 -1
- package/node_modules/@smithy/protocol-http/dist-types/types.d.ts +1 -1
- package/node_modules/@smithy/protocol-http/package.json +3 -2
- package/node_modules/@smithy/querystring-builder/dist-cjs/index.js +21 -47
- package/node_modules/@smithy/querystring-builder/dist-types/index.d.ts +1 -1
- package/node_modules/@smithy/querystring-builder/package.json +4 -3
- package/node_modules/@smithy/querystring-parser/dist-cjs/index.js +22 -48
- package/node_modules/@smithy/querystring-parser/dist-types/index.d.ts +1 -1
- package/node_modules/@smithy/querystring-parser/package.json +3 -2
- package/node_modules/@smithy/service-error-classification/dist-cjs/index.js +70 -103
- package/node_modules/@smithy/service-error-classification/dist-es/index.js +3 -2
- package/node_modules/@smithy/service-error-classification/dist-types/index.d.ts +1 -1
- package/node_modules/@smithy/service-error-classification/package.json +3 -2
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFromFile.js +5 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/index.js +173 -189
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/slurpFile.js +9 -5
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/constants.js +1 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/externalDataInterceptor.js +16 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getConfigData.js +1 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getSSOTokenFromFile.js +4 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/index.js +2 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/loadSharedConfigFiles.js +1 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/parseIni.js +1 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/slurpFile.js +5 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/constants.d.ts +4 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/externalDataInterceptor.d.ts +9 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getConfigData.d.ts +1 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getSSOTokenFromFile.d.ts +5 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getSsoSessionData.d.ts +1 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/index.d.ts +2 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/loadSharedConfigFiles.d.ts +2 -5
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/loadSsoSessionData.d.ts +1 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/mergeConfigFiles.d.ts +1 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/parseIni.d.ts +1 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/parseKnownFiles.d.ts +2 -2
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/slurpFile.d.ts +2 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/constants.d.ts +4 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/externalDataInterceptor.d.ts +9 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFromFile.d.ts +5 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/index.d.ts +2 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/loadSharedConfigFiles.d.ts +1 -4
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/slurpFile.d.ts +2 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/types.d.ts +1 -1
- package/node_modules/@smithy/shared-ini-file-loader/package.json +3 -2
- package/node_modules/@smithy/signature-v4/dist-cjs/index.js +525 -651
- package/node_modules/@smithy/signature-v4/dist-es/HeaderFormatter.js +2 -1
- package/node_modules/@smithy/signature-v4/dist-es/SignatureV4.js +1 -1
- package/node_modules/@smithy/signature-v4/dist-es/SignatureV4Base.js +6 -0
- package/node_modules/@smithy/signature-v4/dist-types/SignatureV4.d.ts +3 -2
- package/node_modules/@smithy/signature-v4/dist-types/SignatureV4Base.d.ts +1 -1
- package/node_modules/@smithy/signature-v4/dist-types/credentialDerivation.d.ts +1 -1
- package/node_modules/@smithy/signature-v4/dist-types/getCanonicalHeaders.d.ts +1 -1
- package/node_modules/@smithy/signature-v4/dist-types/getCanonicalQuery.d.ts +1 -1
- package/node_modules/@smithy/signature-v4/dist-types/getPayloadHash.d.ts +1 -1
- package/node_modules/@smithy/signature-v4/dist-types/headerUtil.d.ts +1 -1
- package/node_modules/@smithy/signature-v4/dist-types/suite.fixture.d.ts +1 -1
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/SignatureV4.d.ts +2 -1
- package/node_modules/@smithy/signature-v4/package.json +9 -8
- package/node_modules/@smithy/smithy-client/dist-cjs/index.js +557 -714
- package/node_modules/@smithy/smithy-client/dist-es/client.js +4 -1
- package/node_modules/@smithy/smithy-client/dist-es/command.js +23 -20
- package/node_modules/@smithy/smithy-client/dist-es/exceptions.js +4 -0
- package/node_modules/@smithy/smithy-client/dist-es/schemaLogFilter.js +34 -0
- package/node_modules/@smithy/smithy-client/dist-types/NoOpLogger.d.ts +1 -1
- package/node_modules/@smithy/smithy-client/dist-types/client.d.ts +1 -1
- package/node_modules/@smithy/smithy-client/dist-types/command.d.ts +3 -3
- package/node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts +1 -1
- package/node_modules/@smithy/smithy-client/dist-types/exceptions.d.ts +1 -1
- package/node_modules/@smithy/smithy-client/dist-types/extensions/defaultExtensionConfiguration.d.ts +2 -2
- package/node_modules/@smithy/smithy-client/dist-types/extensions/retry.d.ts +1 -1
- package/node_modules/@smithy/smithy-client/dist-types/schemaLogFilter.d.ts +9 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/command.d.ts +3 -3
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/schemaLogFilter.d.ts +9 -0
- package/node_modules/@smithy/smithy-client/package.json +8 -7
- package/node_modules/@smithy/types/dist-cjs/index.js +80 -133
- package/node_modules/@smithy/types/dist-es/index.js +2 -0
- package/node_modules/@smithy/types/dist-es/schema/schema-deprecated.js +1 -0
- package/node_modules/@smithy/types/dist-es/schema/static-schemas.js +1 -0
- package/node_modules/@smithy/types/dist-types/auth/HttpAuthScheme.d.ts +4 -4
- package/node_modules/@smithy/types/dist-types/auth/HttpAuthSchemeProvider.d.ts +2 -2
- package/node_modules/@smithy/types/dist-types/auth/HttpSigner.d.ts +2 -2
- package/node_modules/@smithy/types/dist-types/auth/IdentityProviderConfig.d.ts +2 -2
- package/node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts +1 -1
- package/node_modules/@smithy/types/dist-types/checksum.d.ts +1 -1
- package/node_modules/@smithy/types/dist-types/client.d.ts +4 -4
- package/node_modules/@smithy/types/dist-types/command.d.ts +2 -2
- package/node_modules/@smithy/types/dist-types/connection/manager.d.ts +2 -2
- package/node_modules/@smithy/types/dist-types/encode.d.ts +1 -1
- package/node_modules/@smithy/types/dist-types/endpoint.d.ts +1 -1
- package/node_modules/@smithy/types/dist-types/endpoints/EndpointRuleObject.d.ts +2 -2
- package/node_modules/@smithy/types/dist-types/endpoints/ErrorRuleObject.d.ts +1 -1
- package/node_modules/@smithy/types/dist-types/endpoints/RuleSetObject.d.ts +1 -1
- package/node_modules/@smithy/types/dist-types/endpoints/TreeRuleObject.d.ts +3 -3
- package/node_modules/@smithy/types/dist-types/endpoints/shared.d.ts +1 -1
- package/node_modules/@smithy/types/dist-types/eventStream.d.ts +3 -3
- package/node_modules/@smithy/types/dist-types/extensions/checksum.d.ts +2 -2
- package/node_modules/@smithy/types/dist-types/extensions/defaultClientConfiguration.d.ts +1 -1
- package/node_modules/@smithy/types/dist-types/extensions/defaultExtensionConfiguration.d.ts +2 -2
- package/node_modules/@smithy/types/dist-types/extensions/retry.d.ts +2 -2
- package/node_modules/@smithy/types/dist-types/http/httpHandlerInitialization.d.ts +19 -12
- package/node_modules/@smithy/types/dist-types/http.d.ts +2 -2
- package/node_modules/@smithy/types/dist-types/identity/apiKeyIdentity.d.ts +1 -1
- package/node_modules/@smithy/types/dist-types/identity/awsCredentialIdentity.d.ts +1 -1
- package/node_modules/@smithy/types/dist-types/identity/tokenIdentity.d.ts +1 -1
- package/node_modules/@smithy/types/dist-types/index.d.ts +2 -0
- package/node_modules/@smithy/types/dist-types/retry.d.ts +1 -1
- package/node_modules/@smithy/types/dist-types/schema/schema-deprecated.d.ts +136 -0
- package/node_modules/@smithy/types/dist-types/schema/schema.d.ts +31 -62
- package/node_modules/@smithy/types/dist-types/schema/static-schemas.d.ts +82 -0
- package/node_modules/@smithy/types/dist-types/serde.d.ts +5 -5
- package/node_modules/@smithy/types/dist-types/shapes.d.ts +2 -2
- package/node_modules/@smithy/types/dist-types/signature.d.ts +2 -2
- package/node_modules/@smithy/types/dist-types/stream.d.ts +3 -3
- package/node_modules/@smithy/types/dist-types/ts3.4/http/httpHandlerInitialization.d.ts +17 -10
- package/node_modules/@smithy/types/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/schema/schema-deprecated.d.ts +142 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/schema/schema.d.ts +35 -66
- package/node_modules/@smithy/types/dist-types/ts3.4/schema/static-schemas.d.ts +101 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/serde.d.ts +2 -2
- package/node_modules/@smithy/types/dist-types/uri.d.ts +1 -1
- package/node_modules/@smithy/types/dist-types/util.d.ts +3 -3
- package/node_modules/@smithy/types/dist-types/waiter.d.ts +1 -1
- package/node_modules/@smithy/types/package.json +2 -1
- package/node_modules/@smithy/url-parser/dist-cjs/index.js +20 -46
- package/node_modules/@smithy/url-parser/dist-types/index.d.ts +1 -1
- package/node_modules/@smithy/url-parser/package.json +4 -3
- package/node_modules/@smithy/util-base64/dist-cjs/constants.browser.js +9 -32
- package/node_modules/@smithy/util-base64/dist-cjs/index.js +16 -24
- package/node_modules/@smithy/util-base64/dist-cjs/toBase64.browser.js +1 -2
- package/node_modules/@smithy/util-base64/dist-es/constants.browser.js +9 -28
- package/node_modules/@smithy/util-base64/dist-types/constants.browser.d.ts +5 -6
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/constants.browser.d.ts +5 -6
- package/node_modules/@smithy/util-base64/package.json +7 -6
- package/node_modules/@smithy/util-body-length-browser/dist-cjs/index.js +26 -53
- package/node_modules/@smithy/util-body-length-browser/package.json +5 -4
- package/node_modules/@smithy/util-body-length-node/dist-cjs/index.js +29 -50
- package/node_modules/@smithy/util-body-length-node/dist-es/calculateBodyLength.js +8 -6
- package/node_modules/@smithy/util-body-length-node/package.json +5 -4
- package/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +17 -44
- package/node_modules/@smithy/util-buffer-from/package.json +6 -5
- package/node_modules/@smithy/util-config-provider/dist-cjs/index.js +26 -60
- package/node_modules/@smithy/util-config-provider/dist-types/booleanSelector.d.ts +1 -1
- package/node_modules/@smithy/util-config-provider/dist-types/numberSelector.d.ts +1 -1
- package/node_modules/@smithy/util-config-provider/package.json +5 -4
- package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/index.js +9 -22
- package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.js +13 -12
- package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.native.js +2 -2
- package/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.js +11 -8
- package/node_modules/@smithy/util-defaults-mode-browser/package.json +5 -5
- package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/index.js +65 -110
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/defaultsModeConfig.d.ts +1 -1
- package/node_modules/@smithy/util-defaults-mode-node/package.json +8 -7
- package/node_modules/@smithy/util-endpoints/dist-cjs/index.js +435 -507
- package/node_modules/@smithy/util-endpoints/dist-es/cache/EndpointCache.js +3 -2
- package/node_modules/@smithy/util-endpoints/dist-es/utils/callFunction.js +1 -11
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateExpression.js +15 -2
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateRules.js +17 -2
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateTreeRule.js +1 -13
- package/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointProperties.js +25 -2
- package/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointProperty.js +1 -21
- package/node_modules/@smithy/util-endpoints/dist-types/debug/toDebugString.d.ts +3 -3
- package/node_modules/@smithy/util-endpoints/dist-types/getEndpointUrlConfig.d.ts +1 -1
- package/node_modules/@smithy/util-endpoints/dist-types/lib/parseURL.d.ts +1 -1
- package/node_modules/@smithy/util-endpoints/dist-types/resolveEndpoint.d.ts +2 -2
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/callFunction.d.ts +1 -2
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateExpression.d.ts +7 -2
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateRules.d.ts +6 -1
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateTreeRule.d.ts +1 -3
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointProperties.d.ts +6 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointProperty.d.ts +1 -3
- package/node_modules/@smithy/util-endpoints/dist-types/types/EndpointFunctions.d.ts +1 -1
- package/node_modules/@smithy/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +1 -1
- package/node_modules/@smithy/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +1 -1
- package/node_modules/@smithy/util-endpoints/dist-types/types/RuleSetObject.d.ts +1 -1
- package/node_modules/@smithy/util-endpoints/dist-types/types/TreeRuleObject.d.ts +1 -1
- package/node_modules/@smithy/util-endpoints/dist-types/types/shared.d.ts +1 -1
- package/node_modules/@smithy/util-endpoints/dist-types/utils/callFunction.d.ts +1 -2
- package/node_modules/@smithy/util-endpoints/dist-types/utils/customEndpointFunctions.d.ts +1 -1
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateCondition.d.ts +1 -1
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateConditions.d.ts +1 -1
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateEndpointRule.d.ts +2 -2
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateErrorRule.d.ts +1 -1
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateExpression.d.ts +7 -2
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateRules.d.ts +7 -2
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateTemplate.d.ts +1 -1
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateTreeRule.d.ts +1 -3
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointHeaders.d.ts +1 -1
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointProperties.d.ts +7 -1
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointProperty.d.ts +1 -3
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointUrl.d.ts +1 -1
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getReferenceValue.d.ts +1 -1
- package/node_modules/@smithy/util-endpoints/package.json +6 -5
- package/node_modules/@smithy/util-hex-encoding/dist-cjs/index.js +29 -58
- package/node_modules/@smithy/util-hex-encoding/package.json +5 -4
- package/node_modules/@smithy/util-middleware/dist-cjs/index.js +11 -41
- package/node_modules/@smithy/util-middleware/dist-types/getSmithyContext.d.ts +1 -1
- package/node_modules/@smithy/util-middleware/dist-types/normalizeProvider.d.ts +1 -1
- package/node_modules/@smithy/util-middleware/package.json +3 -2
- package/node_modules/@smithy/util-retry/dist-cjs/index.js +260 -340
- package/node_modules/@smithy/util-retry/dist-es/AdaptiveRetryStrategy.js +4 -1
- package/node_modules/@smithy/util-retry/dist-es/ConfiguredRetryStrategy.js +1 -0
- package/node_modules/@smithy/util-retry/dist-es/DefaultRateLimiter.js +17 -8
- package/node_modules/@smithy/util-retry/dist-es/StandardRetryStrategy.js +5 -3
- package/node_modules/@smithy/util-retry/dist-types/AdaptiveRetryStrategy.d.ts +2 -2
- package/node_modules/@smithy/util-retry/dist-types/DefaultRateLimiter.d.ts +1 -1
- package/node_modules/@smithy/util-retry/dist-types/StandardRetryStrategy.d.ts +1 -1
- package/node_modules/@smithy/util-retry/dist-types/defaultRetryBackoffStrategy.d.ts +1 -1
- package/node_modules/@smithy/util-retry/dist-types/defaultRetryToken.d.ts +1 -1
- package/node_modules/@smithy/util-retry/package.json +7 -4
- package/node_modules/@smithy/util-stream/dist-cjs/ByteArrayCollector.js +3 -2
- package/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.js +7 -3
- package/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.browser.js +2 -3
- package/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadable.js +1 -1
- package/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadableStream.js +2 -3
- package/node_modules/@smithy/util-stream/dist-cjs/headStream.browser.js +1 -2
- package/node_modules/@smithy/util-stream/dist-cjs/headStream.js +4 -8
- package/node_modules/@smithy/util-stream/dist-cjs/index.js +78 -97
- package/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.browser.js +1 -2
- package/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.js +1 -2
- package/node_modules/@smithy/util-stream/dist-cjs/stream-type-check.js +3 -7
- package/node_modules/@smithy/util-stream/dist-es/ByteArrayCollector.js +3 -2
- package/node_modules/@smithy/util-stream/dist-es/blob/Uint8ArrayBlobAdapter.js +12 -7
- package/node_modules/@smithy/util-stream/dist-es/checksum/ChecksumStream.js +5 -0
- package/node_modules/@smithy/util-stream/dist-es/headStream.js +3 -6
- package/node_modules/@smithy/util-stream/dist-types/ByteArrayCollector.d.ts +1 -1
- package/node_modules/@smithy/util-stream/dist-types/blob/Uint8ArrayBlobAdapter.d.ts +1 -0
- package/node_modules/@smithy/util-stream/dist-types/checksum/ChecksumStream.browser.d.ts +1 -1
- package/node_modules/@smithy/util-stream/dist-types/checksum/ChecksumStream.d.ts +3 -2
- package/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.browser.d.ts +1 -1
- package/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.d.ts +3 -3
- package/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.browser.d.ts +1 -1
- package/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.d.ts +1 -1
- package/node_modules/@smithy/util-stream/dist-types/headStream.d.ts +1 -1
- package/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.browser.d.ts +1 -1
- package/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts +1 -1
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/ByteArrayCollector.d.ts +1 -1
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/blob/Uint8ArrayBlobAdapter.d.ts +1 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/ChecksumStream.d.ts +2 -1
- package/node_modules/@smithy/util-stream/package.json +13 -12
- package/node_modules/@smithy/util-uri-escape/dist-cjs/index.js +6 -40
- package/node_modules/@smithy/util-uri-escape/package.json +5 -4
- package/node_modules/@smithy/util-utf8/dist-cjs/index.js +27 -60
- package/node_modules/@smithy/util-utf8/package.json +6 -5
- package/node_modules/@smithy/util-waiter/dist-cjs/index.js +152 -190
- package/node_modules/@smithy/util-waiter/dist-types/createWaiter.d.ts +1 -1
- package/node_modules/@smithy/util-waiter/dist-types/poller.d.ts +1 -1
- package/node_modules/@smithy/util-waiter/dist-types/utils/validate.d.ts +1 -1
- package/node_modules/@smithy/util-waiter/dist-types/waiter.d.ts +1 -1
- package/node_modules/@smithy/util-waiter/package.json +4 -3
- package/node_modules/@smithy/uuid/LICENSE +201 -0
- package/node_modules/@smithy/uuid/README.md +10 -0
- package/node_modules/@smithy/uuid/dist-cjs/index.js +36 -0
- package/node_modules/@smithy/uuid/dist-cjs/randomUUID.js +6 -0
- package/node_modules/@smithy/uuid/dist-cjs/randomUUID.native.js +4 -0
- package/node_modules/@smithy/uuid/dist-es/index.js +1 -0
- package/node_modules/@smithy/uuid/dist-es/randomUUID.browser.js +1 -0
- package/node_modules/@smithy/uuid/dist-es/randomUUID.js +2 -0
- package/node_modules/@smithy/uuid/dist-es/randomUUID.native.js +1 -0
- package/node_modules/@smithy/uuid/dist-es/v4.js +31 -0
- package/node_modules/@smithy/uuid/dist-types/index.d.ts +1 -0
- package/node_modules/@smithy/uuid/dist-types/randomUUID.browser.d.ts +1 -0
- package/node_modules/@smithy/uuid/dist-types/randomUUID.d.ts +2 -0
- package/node_modules/@smithy/uuid/dist-types/randomUUID.native.d.ts +1 -0
- package/node_modules/@smithy/uuid/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@smithy/uuid/dist-types/ts3.4/randomUUID.browser.d.ts +1 -0
- package/node_modules/@smithy/uuid/dist-types/ts3.4/randomUUID.d.ts +2 -0
- package/node_modules/@smithy/uuid/dist-types/ts3.4/randomUUID.native.d.ts +1 -0
- package/node_modules/@smithy/uuid/dist-types/ts3.4/v4.d.ts +19 -0
- package/node_modules/@smithy/uuid/dist-types/v4.d.ts +19 -0
- package/node_modules/@smithy/uuid/package.json +66 -0
- package/node_modules/@types/aws-lambda/README.md +1 -1
- package/node_modules/@types/aws-lambda/package.json +3 -3
- package/node_modules/@types/aws-lambda/trigger/connect-contact-flow.d.ts +1 -1
- package/node_modules/@types/aws-lambda/trigger/dynamodb-stream.d.ts +20 -12
- package/node_modules/@types/aws-lambda/trigger/sns.d.ts +2 -2
- package/node_modules/axios/CHANGELOG.md +58 -0
- package/node_modules/axios/README.md +87 -10
- package/node_modules/axios/dist/axios.js +355 -289
- package/node_modules/axios/dist/axios.js.map +1 -1
- package/node_modules/axios/dist/axios.min.js +2 -2
- package/node_modules/axios/dist/axios.min.js.map +1 -1
- package/node_modules/axios/dist/browser/axios.cjs +286 -213
- package/node_modules/axios/dist/browser/axios.cjs.map +1 -1
- package/node_modules/axios/dist/esm/axios.js +286 -213
- package/node_modules/axios/dist/esm/axios.js.map +1 -1
- package/node_modules/axios/dist/esm/axios.min.js +2 -2
- package/node_modules/axios/dist/esm/axios.min.js.map +1 -1
- package/node_modules/axios/dist/node/axios.cjs +377 -213
- package/node_modules/axios/dist/node/axios.cjs.map +1 -1
- package/node_modules/axios/index.d.cts +12 -5
- package/node_modules/axios/index.d.ts +13 -4
- package/node_modules/axios/lib/adapters/adapters.js +6 -4
- package/node_modules/axios/lib/adapters/fetch.js +221 -162
- package/node_modules/axios/lib/adapters/http.js +18 -0
- package/node_modules/axios/lib/adapters/xhr.js +11 -8
- package/node_modules/axios/lib/core/Axios.js +0 -2
- package/node_modules/axios/lib/core/AxiosError.js +10 -3
- package/node_modules/axios/lib/core/dispatchRequest.js +1 -1
- package/node_modules/axios/lib/defaults/index.js +1 -1
- package/node_modules/axios/lib/env/data.js +1 -1
- package/node_modules/axios/lib/helpers/buildURL.js +1 -3
- package/node_modules/axios/lib/helpers/estimateDataURLDecodedBytes.js +73 -0
- package/node_modules/axios/lib/helpers/resolveConfig.js +13 -9
- package/node_modules/axios/lib/utils.js +5 -3
- package/node_modules/axios/package.json +18 -12
- package/node_modules/bowser/CHANGELOG.md +1 -1
- package/node_modules/bowser/README.md +2 -4
- package/node_modules/bowser/bundled.js +1 -1
- package/node_modules/bowser/es5.js +1 -1
- package/node_modules/bowser/index.d.ts +71 -6
- package/node_modules/bowser/package.json +4 -3
- package/node_modules/bowser/src/constants.js +3 -0
- package/node_modules/bowser/src/parser-browsers.js +15 -0
- package/node_modules/bowser/src/parser-platforms.js +17 -1
- package/node_modules/bowser/src/parser.js +20 -5
- package/node_modules/bowser/src/utils.js +2 -2
- package/node_modules/follow-redirects/package.json +1 -1
- package/node_modules/oidc-token-hash/README.md +1 -0
- package/node_modules/oidc-token-hash/lib/index.js +0 -10
- package/node_modules/oidc-token-hash/package.json +1 -1
- package/package.json +19 -19
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/config.js +0 -12
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/getRealRegion.js +0 -6
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/index.js +0 -2
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/isFipsRegion.js +0 -1
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/resolveRegionConfig.js +0 -24
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/config.d.ts +0 -17
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/getRealRegion.d.ts +0 -4
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/index.d.ts +0 -8
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/isFipsRegion.d.ts +0 -4
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/resolveRegionConfig.d.ts +0 -37
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/config.d.ts +0 -8
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/getRealRegion.d.ts +0 -1
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/index.d.ts +0 -2
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/isFipsRegion.d.ts +0 -1
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/resolveRegionConfig.d.ts +0 -14
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-add-secondary-index.js.snapshot/asset.a0c6248ec595d3ceec1177aa5ac5b494fdf4c66f1b88aa48086befd44f193d8c/index.js +0 -21
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-deployFunctionWithExistingVpc.js.snapshot/asset.7fa1e366ee8a9ded01fc355f704cff92bfd179574e6f9cfee800a3541df1b200/__entrypoint__.js +0 -1
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-deployFunctionWithExistingVpc.js.snapshot/asset.7fa1e366ee8a9ded01fc355f704cff92bfd179574e6f9cfee800a3541df1b200/index.js +0 -1
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-deployFunctionWithVpc.js.snapshot/asset.7fa1e366ee8a9ded01fc355f704cff92bfd179574e6f9cfee800a3541df1b200/__entrypoint__.js +0 -1
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-deployFunctionWithVpc.js.snapshot/asset.7fa1e366ee8a9ded01fc355f704cff92bfd179574e6f9cfee800a3541df1b200/index.js +0 -1
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-deployFunctionWithVpc.js.snapshot/asset.a0c6248ec595d3ceec1177aa5ac5b494fdf4c66f1b88aa48086befd44f193d8c/index.js +0 -21
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-point-in-time-recovery.js.snapshot/asset.a0c6248ec595d3ceec1177aa5ac5b494fdf4c66f1b88aa48086befd44f193d8c/index.js +0 -21
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-set-billing-mode.js.snapshot/asset.a0c6248ec595d3ceec1177aa5ac5b494fdf4c66f1b88aa48086befd44f193d8c/index.js +0 -21
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-use-existing-func.js.snapshot/asset.a0c6248ec595d3ceec1177aa5ac5b494fdf4c66f1b88aa48086befd44f193d8c/index.js +0 -21
- package/node_modules/@smithy/abort-controller/dist-cjs/AbortController.js +0 -1
- package/node_modules/@smithy/abort-controller/dist-cjs/AbortSignal.js +0 -1
- package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +0 -1
- package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +0 -1
- package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/index.js +0 -1
- package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/resolveCustomEndpointsConfig.js +0 -1
- package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/resolveEndpointsConfig.js +0 -1
- package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/utils/getEndpointFromRegion.js +0 -1
- package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/config.js +0 -1
- package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/getRealRegion.js +0 -1
- package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/index.js +0 -1
- package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/isFipsRegion.js +0 -1
- package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/resolveRegionConfig.js +0 -1
- package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/EndpointVariant.js +0 -1
- package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/EndpointVariantTag.js +0 -1
- package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/PartitionHash.js +0 -1
- package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/RegionHash.js +0 -1
- package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getHostnameFromVariants.js +0 -1
- package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getRegionInfo.js +0 -1
- package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getResolvedHostname.js +0 -1
- package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getResolvedPartition.js +0 -1
- package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getResolvedSigningRegion.js +0 -1
- package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/index.js +0 -1
- package/node_modules/@smithy/core/dist-cjs/getSmithyContext.js +0 -1
- package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.js +0 -1
- package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/getHttpAuthSchemePlugin.js +0 -1
- package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +0 -1
- package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/index.js +0 -1
- package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/resolveAuthOptions.js +0 -1
- package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/getHttpSigningMiddleware.js +0 -1
- package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/httpSigningMiddleware.js +0 -1
- package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/index.js +0 -1
- package/node_modules/@smithy/core/dist-cjs/normalizeProvider.js +0 -1
- package/node_modules/@smithy/core/dist-cjs/pagination/createPaginator.js +0 -1
- package/node_modules/@smithy/core/dist-cjs/protocols/requestBuilder.js +0 -1
- package/node_modules/@smithy/core/dist-cjs/setFeature.js +0 -1
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/DefaultIdentityProviderConfig.js +0 -1
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js +0 -1
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js +0 -1
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/index.js +0 -1
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/noAuth.js +0 -1
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/index.js +0 -1
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/memoizeIdentityProvider.js +0 -1
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/config/Endpoint.js +0 -1
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/config/EndpointConfigOptions.js +0 -1
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/config/EndpointMode.js +0 -1
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/config/EndpointModeConfigOptions.js +0 -1
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/error/InstanceMetadataV1FallbackError.js +0 -1
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/fromContainerMetadata.js +0 -1
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/fromInstanceMetadata.js +0 -1
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/ImdsCredentials.js +0 -1
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/RemoteProviderInit.js +0 -1
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/httpRequest.js +0 -1
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/index.js +0 -1
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/retry.js +0 -1
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/types.js +0 -1
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/utils/getExtendedInstanceMetadataCredentials.js +0 -1
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/utils/getInstanceMetadataEndpoint.js +0 -1
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/utils/staticStabilityProvider.js +0 -1
- package/node_modules/@smithy/eventstream-codec/dist-cjs/EventStreamCodec.js +0 -1
- package/node_modules/@smithy/eventstream-codec/dist-cjs/HeaderMarshaller.js +0 -1
- package/node_modules/@smithy/eventstream-codec/dist-cjs/Int64.js +0 -1
- package/node_modules/@smithy/eventstream-codec/dist-cjs/Message.js +0 -1
- package/node_modules/@smithy/eventstream-codec/dist-cjs/MessageDecoderStream.js +0 -1
- package/node_modules/@smithy/eventstream-codec/dist-cjs/MessageEncoderStream.js +0 -1
- package/node_modules/@smithy/eventstream-codec/dist-cjs/SmithyMessageDecoderStream.js +0 -1
- package/node_modules/@smithy/eventstream-codec/dist-cjs/SmithyMessageEncoderStream.js +0 -1
- package/node_modules/@smithy/eventstream-codec/dist-cjs/TestVectors.fixture.js +0 -1
- package/node_modules/@smithy/eventstream-codec/dist-cjs/splitMessage.js +0 -1
- package/node_modules/@smithy/eventstream-codec/dist-cjs/vectorTypes.fixture.js +0 -1
- package/node_modules/@smithy/eventstream-serde-browser/dist-cjs/EventStreamMarshaller.js +0 -1
- package/node_modules/@smithy/eventstream-serde-browser/dist-cjs/provider.js +0 -1
- package/node_modules/@smithy/eventstream-serde-browser/dist-cjs/utils.js +0 -1
- package/node_modules/@smithy/eventstream-serde-config-resolver/dist-cjs/EventStreamSerdeConfig.js +0 -1
- package/node_modules/@smithy/eventstream-serde-node/dist-cjs/EventStreamMarshaller.js +0 -1
- package/node_modules/@smithy/eventstream-serde-node/dist-cjs/provider.js +0 -1
- package/node_modules/@smithy/eventstream-serde-node/dist-cjs/utils.js +0 -1
- package/node_modules/@smithy/eventstream-serde-universal/dist-cjs/EventStreamMarshaller.js +0 -1
- package/node_modules/@smithy/eventstream-serde-universal/dist-cjs/getChunkedStream.js +0 -1
- package/node_modules/@smithy/eventstream-serde-universal/dist-cjs/getUnmarshalledStream.js +0 -1
- package/node_modules/@smithy/eventstream-serde-universal/dist-cjs/provider.js +0 -1
- package/node_modules/@smithy/fetch-http-handler/dist-cjs/create-request.js +0 -1
- package/node_modules/@smithy/fetch-http-handler/dist-cjs/fetch-http-handler.js +0 -1
- package/node_modules/@smithy/fetch-http-handler/dist-cjs/request-timeout.js +0 -1
- package/node_modules/@smithy/fetch-http-handler/dist-cjs/stream-collector.js +0 -1
- package/node_modules/@smithy/hash-stream-node/dist-cjs/HashCalculator.js +0 -1
- package/node_modules/@smithy/hash-stream-node/dist-cjs/fileStreamHasher.js +0 -1
- package/node_modules/@smithy/hash-stream-node/dist-cjs/readableStreamHasher.js +0 -1
- package/node_modules/@smithy/invalid-dependency/dist-cjs/invalidFunction.js +0 -1
- package/node_modules/@smithy/invalid-dependency/dist-cjs/invalidProvider.js +0 -1
- package/node_modules/@smithy/md5-js/dist-cjs/constants.js +0 -1
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/createConfigValueProvider.js +0 -1
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromInstructions.js +0 -1
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/index.js +0 -1
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/toEndpointV1.js +0 -1
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/endpointMiddleware.js +0 -1
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/getEndpointPlugin.js +0 -1
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/resolveEndpointConfig.js +0 -1
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/resolveEndpointRequiredConfig.js +0 -1
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/service-customizations/index.js +0 -1
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/service-customizations/s3.js +0 -1
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/types.js +0 -1
- package/node_modules/@smithy/middleware-retry/dist-cjs/AdaptiveRetryStrategy.js +0 -1
- package/node_modules/@smithy/middleware-retry/dist-cjs/StandardRetryStrategy.js +0 -1
- package/node_modules/@smithy/middleware-retry/dist-cjs/configurations.js +0 -1
- package/node_modules/@smithy/middleware-retry/dist-cjs/defaultRetryQuota.js +0 -1
- package/node_modules/@smithy/middleware-retry/dist-cjs/delayDecider.js +0 -1
- package/node_modules/@smithy/middleware-retry/dist-cjs/omitRetryHeadersMiddleware.js +0 -1
- package/node_modules/@smithy/middleware-retry/dist-cjs/retryDecider.js +0 -1
- package/node_modules/@smithy/middleware-retry/dist-cjs/retryMiddleware.js +0 -1
- package/node_modules/@smithy/middleware-retry/dist-cjs/types.js +0 -1
- package/node_modules/@smithy/middleware-retry/dist-cjs/util.js +0 -1
- package/node_modules/@smithy/middleware-serde/dist-cjs/deserializerMiddleware.js +0 -1
- package/node_modules/@smithy/middleware-serde/dist-cjs/serdePlugin.js +0 -1
- package/node_modules/@smithy/middleware-serde/dist-cjs/serializerMiddleware.js +0 -1
- package/node_modules/@smithy/middleware-stack/dist-cjs/MiddlewareStack.js +0 -1
- package/node_modules/@smithy/middleware-stack/dist-cjs/types.js +0 -1
- package/node_modules/@smithy/node-config-provider/dist-cjs/configLoader.js +0 -1
- package/node_modules/@smithy/node-config-provider/dist-cjs/fromEnv.js +0 -1
- package/node_modules/@smithy/node-config-provider/dist-cjs/fromSharedConfigFiles.js +0 -1
- package/node_modules/@smithy/node-config-provider/dist-cjs/fromStatic.js +0 -1
- package/node_modules/@smithy/node-config-provider/dist-cjs/getSelectorName.js +0 -1
- package/node_modules/@smithy/node-http-handler/dist-cjs/constants.js +0 -1
- package/node_modules/@smithy/node-http-handler/dist-cjs/get-transformed-headers.js +0 -1
- package/node_modules/@smithy/node-http-handler/dist-cjs/node-http-handler.js +0 -1
- package/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-connection-manager.js +0 -1
- package/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-connection-pool.js +0 -1
- package/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-handler.js +0 -1
- package/node_modules/@smithy/node-http-handler/dist-cjs/readable.mock.js +0 -1
- package/node_modules/@smithy/node-http-handler/dist-cjs/server.mock.js +0 -1
- package/node_modules/@smithy/node-http-handler/dist-cjs/set-connection-timeout.js +0 -1
- package/node_modules/@smithy/node-http-handler/dist-cjs/set-socket-keep-alive.js +0 -1
- package/node_modules/@smithy/node-http-handler/dist-cjs/set-socket-timeout.js +0 -1
- package/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/collector.js +0 -1
- package/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/index.js +0 -1
- package/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/readable.mock.js +0 -1
- package/node_modules/@smithy/node-http-handler/dist-cjs/timing.js +0 -1
- package/node_modules/@smithy/node-http-handler/dist-cjs/write-request-body.js +0 -1
- package/node_modules/@smithy/property-provider/dist-cjs/CredentialsProviderError.js +0 -1
- package/node_modules/@smithy/property-provider/dist-cjs/ProviderError.js +0 -1
- package/node_modules/@smithy/property-provider/dist-cjs/TokenProviderError.js +0 -1
- package/node_modules/@smithy/property-provider/dist-cjs/chain.js +0 -1
- package/node_modules/@smithy/property-provider/dist-cjs/fromStatic.js +0 -1
- package/node_modules/@smithy/property-provider/dist-cjs/memoize.js +0 -1
- package/node_modules/@smithy/protocol-http/dist-cjs/Field.js +0 -1
- package/node_modules/@smithy/protocol-http/dist-cjs/Fields.js +0 -1
- package/node_modules/@smithy/protocol-http/dist-cjs/extensions/httpExtensionConfiguration.js +0 -1
- package/node_modules/@smithy/protocol-http/dist-cjs/extensions/index.js +0 -1
- package/node_modules/@smithy/protocol-http/dist-cjs/httpHandler.js +0 -1
- package/node_modules/@smithy/protocol-http/dist-cjs/httpRequest.js +0 -1
- package/node_modules/@smithy/protocol-http/dist-cjs/httpResponse.js +0 -1
- package/node_modules/@smithy/protocol-http/dist-cjs/isValidHostname.js +0 -1
- package/node_modules/@smithy/protocol-http/dist-cjs/types.js +0 -1
- package/node_modules/@smithy/service-error-classification/dist-cjs/constants.js +0 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getConfigData.js +0 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getConfigFilepath.js +0 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getCredentialsFilepath.js +0 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getProfileName.js +0 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSsoSessionData.js +0 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/loadSharedConfigFiles.js +0 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/loadSsoSessionData.js +0 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/mergeConfigFiles.js +0 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/parseIni.js +0 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/parseKnownFiles.js +0 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/types.js +0 -1
- package/node_modules/@smithy/signature-v4/dist-cjs/HeaderFormatter.js +0 -1
- package/node_modules/@smithy/signature-v4/dist-cjs/SignatureV4.js +0 -1
- package/node_modules/@smithy/signature-v4/dist-cjs/SignatureV4Base.js +0 -1
- package/node_modules/@smithy/signature-v4/dist-cjs/constants.js +0 -1
- package/node_modules/@smithy/signature-v4/dist-cjs/credentialDerivation.js +0 -1
- package/node_modules/@smithy/signature-v4/dist-cjs/getCanonicalHeaders.js +0 -1
- package/node_modules/@smithy/signature-v4/dist-cjs/getCanonicalQuery.js +0 -1
- package/node_modules/@smithy/signature-v4/dist-cjs/getPayloadHash.js +0 -1
- package/node_modules/@smithy/signature-v4/dist-cjs/headerUtil.js +0 -1
- package/node_modules/@smithy/signature-v4/dist-cjs/moveHeadersToQuery.js +0 -1
- package/node_modules/@smithy/signature-v4/dist-cjs/prepareRequest.js +0 -1
- package/node_modules/@smithy/signature-v4/dist-cjs/signature-v4a-container.js +0 -1
- package/node_modules/@smithy/signature-v4/dist-cjs/suite.fixture.js +0 -1
- package/node_modules/@smithy/signature-v4/dist-cjs/utilDate.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/NoOpLogger.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/client.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/collect-stream-body.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/command.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/constants.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/create-aggregated-client.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/default-error-handler.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/defaults-mode.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/emitWarningIfUnsupportedVersion.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/exceptions.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/extended-encode-uri-component.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/extensions/checksum.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/extensions/defaultExtensionConfiguration.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/extensions/index.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/extensions/retry.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/get-array-if-single-item.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/get-value-from-text-node.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/is-serializable-header-value.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/object-mapping.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/resolve-path.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/ser-utils.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/serde-json.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/abort-handler.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/abort.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/auth/HttpApiKeyAuth.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/auth/HttpAuthScheme.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/auth/HttpAuthSchemeProvider.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/auth/HttpSigner.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/auth/IdentityProviderConfig.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/auth/auth.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/auth/index.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/blob/blob-payload-input-types.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/checksum.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/client.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/command.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/connection/config.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/connection/index.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/connection/manager.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/connection/pool.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/crypto.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/downlevel-ts3.4/transform/type-transform.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/encode.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/endpoint.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/endpoints/EndpointRuleObject.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/endpoints/ErrorRuleObject.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/endpoints/RuleSetObject.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/endpoints/TreeRuleObject.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/endpoints/index.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/endpoints/shared.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/eventStream.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/extensions/checksum.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/extensions/defaultClientConfiguration.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/extensions/defaultExtensionConfiguration.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/extensions/index.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/extensions/retry.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/externals-check/browser-externals-check.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/feature-ids.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/http/httpHandlerInitialization.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/http.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/identity/apiKeyIdentity.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/identity/awsCredentialIdentity.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/identity/identity.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/identity/index.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/identity/tokenIdentity.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/logger.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/middleware.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/pagination.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/profile.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/response.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/retry.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/schema/schema.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/schema/sentinels.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/schema/traits.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/serde.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/shapes.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/signature.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/stream.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-common-types.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-payload-input-types.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-payload-output-types.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/transfer.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/transform/client-method-transforms.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/transform/client-payload-blob-type-narrow.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/transform/exact.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/transform/mutable.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/transform/no-undefined.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/transform/type-transform.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/uri.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/util.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/waiter.js +0 -1
- package/node_modules/@smithy/util-body-length-browser/dist-cjs/calculateBodyLength.js +0 -1
- package/node_modules/@smithy/util-body-length-node/dist-cjs/calculateBodyLength.js +0 -1
- package/node_modules/@smithy/util-config-provider/dist-cjs/booleanSelector.js +0 -1
- package/node_modules/@smithy/util-config-provider/dist-cjs/numberSelector.js +0 -1
- package/node_modules/@smithy/util-config-provider/dist-cjs/types.js +0 -1
- package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/constants.js +0 -1
- package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/defaultsModeConfig.js +0 -1
- package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/resolveDefaultsModeConfig.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/cache/EndpointCache.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/debug/debugId.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/debug/index.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/debug/toDebugString.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/getEndpointUrlConfig.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/booleanEquals.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/getAttr.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/getAttrPathList.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/index.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/isIpAddress.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/isSet.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/isValidHostLabel.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/not.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/parseURL.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/stringEquals.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/substring.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/uriEncode.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/resolveEndpoint.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/types/EndpointError.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/types/EndpointFunctions.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/types/EndpointRuleObject.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/types/ErrorRuleObject.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/types/RuleSetObject.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/types/TreeRuleObject.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/types/index.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/types/shared.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/callFunction.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/customEndpointFunctions.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/endpointFunctions.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateCondition.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateConditions.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateEndpointRule.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateErrorRule.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateExpression.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateRules.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateTemplate.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateTreeRule.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/getEndpointHeaders.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/getEndpointProperties.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/getEndpointProperty.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/getEndpointUrl.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/getReferenceValue.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/index.js +0 -1
- package/node_modules/@smithy/util-middleware/dist-cjs/getSmithyContext.js +0 -1
- package/node_modules/@smithy/util-middleware/dist-cjs/normalizeProvider.js +0 -1
- package/node_modules/@smithy/util-retry/dist-cjs/AdaptiveRetryStrategy.js +0 -1
- package/node_modules/@smithy/util-retry/dist-cjs/ConfiguredRetryStrategy.js +0 -1
- package/node_modules/@smithy/util-retry/dist-cjs/DefaultRateLimiter.js +0 -1
- package/node_modules/@smithy/util-retry/dist-cjs/StandardRetryStrategy.js +0 -1
- package/node_modules/@smithy/util-retry/dist-cjs/config.js +0 -1
- package/node_modules/@smithy/util-retry/dist-cjs/constants.js +0 -1
- package/node_modules/@smithy/util-retry/dist-cjs/defaultRetryBackoffStrategy.js +0 -1
- package/node_modules/@smithy/util-retry/dist-cjs/defaultRetryToken.js +0 -1
- package/node_modules/@smithy/util-retry/dist-cjs/types.js +0 -1
- package/node_modules/@smithy/util-stream/dist-cjs/blob/Uint8ArrayBlobAdapter.js +0 -1
- package/node_modules/@smithy/util-stream/dist-cjs/blob/transforms.js +0 -1
- package/node_modules/@smithy/util-stream/dist-es/blob/transforms.js +0 -15
- package/node_modules/@smithy/util-stream/dist-types/blob/transforms.d.ts +0 -9
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/blob/transforms.d.ts +0 -9
- package/node_modules/@smithy/util-uri-escape/dist-cjs/escape-uri-path.js +0 -1
- package/node_modules/@smithy/util-uri-escape/dist-cjs/escape-uri.js +0 -1
- package/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.browser.js +0 -1
- package/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.js +0 -1
- package/node_modules/@smithy/util-utf8/dist-cjs/toUint8Array.js +0 -1
- package/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.browser.js +0 -1
- package/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.js +0 -1
- package/node_modules/@smithy/util-waiter/dist-cjs/createWaiter.js +0 -1
- package/node_modules/@smithy/util-waiter/dist-cjs/poller.js +0 -1
- package/node_modules/@smithy/util-waiter/dist-cjs/utils/index.js +0 -1
- package/node_modules/@smithy/util-waiter/dist-cjs/utils/sleep.js +0 -1
- package/node_modules/@smithy/util-waiter/dist-cjs/utils/validate.js +0 -1
- package/node_modules/@smithy/util-waiter/dist-cjs/waiter.js +0 -1
- package/node_modules/@types/uuid/LICENSE +0 -21
- package/node_modules/@types/uuid/README.md +0 -15
- package/node_modules/@types/uuid/index.d.mts +0 -12
- package/node_modules/@types/uuid/index.d.ts +0 -86
- package/node_modules/@types/uuid/package.json +0 -54
- package/node_modules/oidc-token-hash/lib/shake256.js +0 -7
- package/node_modules/uuid/CHANGELOG.md +0 -274
- package/node_modules/uuid/CONTRIBUTING.md +0 -18
- package/node_modules/uuid/LICENSE.md +0 -9
- package/node_modules/uuid/README.md +0 -466
- package/node_modules/uuid/dist/bin/uuid +0 -2
- package/node_modules/uuid/dist/commonjs-browser/index.js +0 -79
- package/node_modules/uuid/dist/commonjs-browser/md5.js +0 -223
- package/node_modules/uuid/dist/commonjs-browser/native.js +0 -11
- package/node_modules/uuid/dist/commonjs-browser/nil.js +0 -8
- package/node_modules/uuid/dist/commonjs-browser/parse.js +0 -45
- package/node_modules/uuid/dist/commonjs-browser/regex.js +0 -8
- package/node_modules/uuid/dist/commonjs-browser/rng.js +0 -25
- package/node_modules/uuid/dist/commonjs-browser/sha1.js +0 -104
- package/node_modules/uuid/dist/commonjs-browser/stringify.js +0 -44
- package/node_modules/uuid/dist/commonjs-browser/v1.js +0 -107
- package/node_modules/uuid/dist/commonjs-browser/v3.js +0 -16
- package/node_modules/uuid/dist/commonjs-browser/v35.js +0 -80
- package/node_modules/uuid/dist/commonjs-browser/v4.js +0 -43
- package/node_modules/uuid/dist/commonjs-browser/v5.js +0 -16
- package/node_modules/uuid/dist/commonjs-browser/validate.js +0 -17
- package/node_modules/uuid/dist/commonjs-browser/version.js +0 -21
- package/node_modules/uuid/dist/esm-browser/index.js +0 -9
- package/node_modules/uuid/dist/esm-browser/md5.js +0 -215
- package/node_modules/uuid/dist/esm-browser/native.js +0 -4
- package/node_modules/uuid/dist/esm-browser/nil.js +0 -1
- package/node_modules/uuid/dist/esm-browser/parse.js +0 -35
- package/node_modules/uuid/dist/esm-browser/regex.js +0 -1
- package/node_modules/uuid/dist/esm-browser/rng.js +0 -18
- package/node_modules/uuid/dist/esm-browser/sha1.js +0 -96
- package/node_modules/uuid/dist/esm-browser/stringify.js +0 -33
- package/node_modules/uuid/dist/esm-browser/v1.js +0 -95
- package/node_modules/uuid/dist/esm-browser/v3.js +0 -4
- package/node_modules/uuid/dist/esm-browser/v35.js +0 -66
- package/node_modules/uuid/dist/esm-browser/v4.js +0 -29
- package/node_modules/uuid/dist/esm-browser/v5.js +0 -4
- package/node_modules/uuid/dist/esm-browser/validate.js +0 -7
- package/node_modules/uuid/dist/esm-browser/version.js +0 -11
- package/node_modules/uuid/dist/esm-node/index.js +0 -9
- package/node_modules/uuid/dist/esm-node/md5.js +0 -13
- package/node_modules/uuid/dist/esm-node/native.js +0 -4
- package/node_modules/uuid/dist/esm-node/nil.js +0 -1
- package/node_modules/uuid/dist/esm-node/parse.js +0 -35
- package/node_modules/uuid/dist/esm-node/regex.js +0 -1
- package/node_modules/uuid/dist/esm-node/rng.js +0 -12
- package/node_modules/uuid/dist/esm-node/sha1.js +0 -13
- package/node_modules/uuid/dist/esm-node/stringify.js +0 -33
- package/node_modules/uuid/dist/esm-node/v1.js +0 -95
- package/node_modules/uuid/dist/esm-node/v3.js +0 -4
- package/node_modules/uuid/dist/esm-node/v35.js +0 -66
- package/node_modules/uuid/dist/esm-node/v4.js +0 -29
- package/node_modules/uuid/dist/esm-node/v5.js +0 -4
- package/node_modules/uuid/dist/esm-node/validate.js +0 -7
- package/node_modules/uuid/dist/esm-node/version.js +0 -11
- package/node_modules/uuid/dist/index.js +0 -79
- package/node_modules/uuid/dist/md5-browser.js +0 -223
- package/node_modules/uuid/dist/md5.js +0 -23
- package/node_modules/uuid/dist/native-browser.js +0 -11
- package/node_modules/uuid/dist/native.js +0 -15
- package/node_modules/uuid/dist/nil.js +0 -8
- package/node_modules/uuid/dist/parse.js +0 -45
- package/node_modules/uuid/dist/regex.js +0 -8
- package/node_modules/uuid/dist/rng-browser.js +0 -25
- package/node_modules/uuid/dist/rng.js +0 -24
- package/node_modules/uuid/dist/sha1-browser.js +0 -104
- package/node_modules/uuid/dist/sha1.js +0 -23
- package/node_modules/uuid/dist/stringify.js +0 -44
- package/node_modules/uuid/dist/uuid-bin.js +0 -85
- package/node_modules/uuid/dist/v1.js +0 -107
- package/node_modules/uuid/dist/v3.js +0 -16
- package/node_modules/uuid/dist/v35.js +0 -80
- package/node_modules/uuid/dist/v4.js +0 -43
- package/node_modules/uuid/dist/v5.js +0 -16
- package/node_modules/uuid/dist/validate.js +0 -17
- package/node_modules/uuid/dist/version.js +0 -21
- package/node_modules/uuid/package.json +0 -135
- package/node_modules/uuid/wrapper.mjs +0 -10
- /package/node_modules/@smithy/core/dist-es/{protocols → request-builder}/requestBuilder.js +0 -0
- /package/node_modules/@smithy/core/dist-types/{protocols → request-builder}/requestBuilder.d.ts +0 -0
- /package/node_modules/@smithy/core/dist-types/ts3.4/{protocols → request-builder}/requestBuilder.d.ts +0 -0
|
@@ -1,1809 +1,1651 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
var
|
|
4
|
-
var
|
|
5
|
-
var
|
|
6
|
-
var
|
|
7
|
-
var
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
var
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
var
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
EncryptionFailure: () => EncryptionFailure,
|
|
34
|
-
FilterNameStringType: () => FilterNameStringType,
|
|
35
|
-
GetRandomPasswordCommand: () => GetRandomPasswordCommand,
|
|
36
|
-
GetRandomPasswordResponseFilterSensitiveLog: () => GetRandomPasswordResponseFilterSensitiveLog,
|
|
37
|
-
GetResourcePolicyCommand: () => GetResourcePolicyCommand,
|
|
38
|
-
GetSecretValueCommand: () => GetSecretValueCommand,
|
|
39
|
-
GetSecretValueResponseFilterSensitiveLog: () => GetSecretValueResponseFilterSensitiveLog,
|
|
40
|
-
InternalServiceError: () => InternalServiceError,
|
|
41
|
-
InvalidNextTokenException: () => InvalidNextTokenException,
|
|
42
|
-
InvalidParameterException: () => InvalidParameterException,
|
|
43
|
-
InvalidRequestException: () => InvalidRequestException,
|
|
44
|
-
LimitExceededException: () => LimitExceededException,
|
|
45
|
-
ListSecretVersionIdsCommand: () => ListSecretVersionIdsCommand,
|
|
46
|
-
ListSecretsCommand: () => ListSecretsCommand,
|
|
47
|
-
MalformedPolicyDocumentException: () => MalformedPolicyDocumentException,
|
|
48
|
-
PreconditionNotMetException: () => PreconditionNotMetException,
|
|
49
|
-
PublicPolicyException: () => PublicPolicyException,
|
|
50
|
-
PutResourcePolicyCommand: () => PutResourcePolicyCommand,
|
|
51
|
-
PutSecretValueCommand: () => PutSecretValueCommand,
|
|
52
|
-
PutSecretValueRequestFilterSensitiveLog: () => PutSecretValueRequestFilterSensitiveLog,
|
|
53
|
-
RemoveRegionsFromReplicationCommand: () => RemoveRegionsFromReplicationCommand,
|
|
54
|
-
ReplicateSecretToRegionsCommand: () => ReplicateSecretToRegionsCommand,
|
|
55
|
-
ResourceExistsException: () => ResourceExistsException,
|
|
56
|
-
ResourceNotFoundException: () => ResourceNotFoundException,
|
|
57
|
-
RestoreSecretCommand: () => RestoreSecretCommand,
|
|
58
|
-
RotateSecretCommand: () => RotateSecretCommand,
|
|
59
|
-
SecretValueEntryFilterSensitiveLog: () => SecretValueEntryFilterSensitiveLog,
|
|
60
|
-
SecretsManager: () => SecretsManager,
|
|
61
|
-
SecretsManagerClient: () => SecretsManagerClient,
|
|
62
|
-
SecretsManagerServiceException: () => SecretsManagerServiceException,
|
|
63
|
-
SortOrderType: () => SortOrderType,
|
|
64
|
-
StatusType: () => StatusType,
|
|
65
|
-
StopReplicationToReplicaCommand: () => StopReplicationToReplicaCommand,
|
|
66
|
-
TagResourceCommand: () => TagResourceCommand,
|
|
67
|
-
UntagResourceCommand: () => UntagResourceCommand,
|
|
68
|
-
UpdateSecretCommand: () => UpdateSecretCommand,
|
|
69
|
-
UpdateSecretRequestFilterSensitiveLog: () => UpdateSecretRequestFilterSensitiveLog,
|
|
70
|
-
UpdateSecretVersionStageCommand: () => UpdateSecretVersionStageCommand,
|
|
71
|
-
ValidateResourcePolicyCommand: () => ValidateResourcePolicyCommand,
|
|
72
|
-
__Client: () => import_smithy_client.Client,
|
|
73
|
-
paginateBatchGetSecretValue: () => paginateBatchGetSecretValue,
|
|
74
|
-
paginateListSecretVersionIds: () => paginateListSecretVersionIds,
|
|
75
|
-
paginateListSecrets: () => paginateListSecrets
|
|
76
|
-
});
|
|
77
|
-
module.exports = __toCommonJS(index_exports);
|
|
78
|
-
|
|
79
|
-
// src/SecretsManagerClient.ts
|
|
80
|
-
var import_middleware_host_header = require("@aws-sdk/middleware-host-header");
|
|
81
|
-
var import_middleware_logger = require("@aws-sdk/middleware-logger");
|
|
82
|
-
var import_middleware_recursion_detection = require("@aws-sdk/middleware-recursion-detection");
|
|
83
|
-
var import_middleware_user_agent = require("@aws-sdk/middleware-user-agent");
|
|
84
|
-
var import_config_resolver = require("@smithy/config-resolver");
|
|
85
|
-
var import_core = require("@smithy/core");
|
|
86
|
-
var import_middleware_content_length = require("@smithy/middleware-content-length");
|
|
87
|
-
var import_middleware_endpoint = require("@smithy/middleware-endpoint");
|
|
88
|
-
var import_middleware_retry = require("@smithy/middleware-retry");
|
|
89
|
-
|
|
90
|
-
var import_httpAuthSchemeProvider = require("./auth/httpAuthSchemeProvider");
|
|
91
|
-
|
|
92
|
-
// src/endpoint/EndpointParameters.ts
|
|
93
|
-
var resolveClientEndpointParameters = /* @__PURE__ */ __name((options) => {
|
|
94
|
-
return Object.assign(options, {
|
|
95
|
-
useDualstackEndpoint: options.useDualstackEndpoint ?? false,
|
|
96
|
-
useFipsEndpoint: options.useFipsEndpoint ?? false,
|
|
97
|
-
defaultSigningName: "secretsmanager"
|
|
98
|
-
});
|
|
99
|
-
}, "resolveClientEndpointParameters");
|
|
100
|
-
var commonParams = {
|
|
101
|
-
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
102
|
-
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
103
|
-
Region: { type: "builtInParams", name: "region" },
|
|
104
|
-
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" }
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var middlewareHostHeader = require('@aws-sdk/middleware-host-header');
|
|
4
|
+
var middlewareLogger = require('@aws-sdk/middleware-logger');
|
|
5
|
+
var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detection');
|
|
6
|
+
var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
|
|
7
|
+
var configResolver = require('@smithy/config-resolver');
|
|
8
|
+
var core = require('@smithy/core');
|
|
9
|
+
var middlewareContentLength = require('@smithy/middleware-content-length');
|
|
10
|
+
var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
11
|
+
var middlewareRetry = require('@smithy/middleware-retry');
|
|
12
|
+
var smithyClient = require('@smithy/smithy-client');
|
|
13
|
+
var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
14
|
+
var runtimeConfig = require('./runtimeConfig');
|
|
15
|
+
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
16
|
+
var protocolHttp = require('@smithy/protocol-http');
|
|
17
|
+
var middlewareSerde = require('@smithy/middleware-serde');
|
|
18
|
+
var core$1 = require('@aws-sdk/core');
|
|
19
|
+
var uuid = require('@smithy/uuid');
|
|
20
|
+
|
|
21
|
+
const resolveClientEndpointParameters = (options) => {
|
|
22
|
+
return Object.assign(options, {
|
|
23
|
+
useDualstackEndpoint: options.useDualstackEndpoint ?? false,
|
|
24
|
+
useFipsEndpoint: options.useFipsEndpoint ?? false,
|
|
25
|
+
defaultSigningName: "secretsmanager",
|
|
26
|
+
});
|
|
27
|
+
};
|
|
28
|
+
const commonParams = {
|
|
29
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
30
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
31
|
+
Region: { type: "builtInParams", name: "region" },
|
|
32
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
105
33
|
};
|
|
106
34
|
|
|
107
|
-
|
|
108
|
-
|
|
35
|
+
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
36
|
+
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
37
|
+
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
38
|
+
let _credentials = runtimeConfig.credentials;
|
|
39
|
+
return {
|
|
40
|
+
setHttpAuthScheme(httpAuthScheme) {
|
|
41
|
+
const index = _httpAuthSchemes.findIndex((scheme) => scheme.schemeId === httpAuthScheme.schemeId);
|
|
42
|
+
if (index === -1) {
|
|
43
|
+
_httpAuthSchemes.push(httpAuthScheme);
|
|
44
|
+
}
|
|
45
|
+
else {
|
|
46
|
+
_httpAuthSchemes.splice(index, 1, httpAuthScheme);
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
httpAuthSchemes() {
|
|
50
|
+
return _httpAuthSchemes;
|
|
51
|
+
},
|
|
52
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider) {
|
|
53
|
+
_httpAuthSchemeProvider = httpAuthSchemeProvider;
|
|
54
|
+
},
|
|
55
|
+
httpAuthSchemeProvider() {
|
|
56
|
+
return _httpAuthSchemeProvider;
|
|
57
|
+
},
|
|
58
|
+
setCredentials(credentials) {
|
|
59
|
+
_credentials = credentials;
|
|
60
|
+
},
|
|
61
|
+
credentials() {
|
|
62
|
+
return _credentials;
|
|
63
|
+
},
|
|
64
|
+
};
|
|
65
|
+
};
|
|
66
|
+
const resolveHttpAuthRuntimeConfig = (config) => {
|
|
67
|
+
return {
|
|
68
|
+
httpAuthSchemes: config.httpAuthSchemes(),
|
|
69
|
+
httpAuthSchemeProvider: config.httpAuthSchemeProvider(),
|
|
70
|
+
credentials: config.credentials(),
|
|
71
|
+
};
|
|
72
|
+
};
|
|
109
73
|
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
74
|
+
const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
75
|
+
const extensionConfiguration = Object.assign(regionConfigResolver.getAwsRegionExtensionConfiguration(runtimeConfig), smithyClient.getDefaultExtensionConfiguration(runtimeConfig), protocolHttp.getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
|
|
76
|
+
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
77
|
+
return Object.assign(runtimeConfig, regionConfigResolver.resolveAwsRegionExtensionConfiguration(extensionConfiguration), smithyClient.resolveDefaultRuntimeConfig(extensionConfiguration), protocolHttp.resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));
|
|
78
|
+
};
|
|
114
79
|
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
80
|
+
class SecretsManagerClient extends smithyClient.Client {
|
|
81
|
+
config;
|
|
82
|
+
constructor(...[configuration]) {
|
|
83
|
+
const _config_0 = runtimeConfig.getRuntimeConfig(configuration || {});
|
|
84
|
+
super(_config_0);
|
|
85
|
+
this.initConfig = _config_0;
|
|
86
|
+
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
87
|
+
const _config_2 = middlewareUserAgent.resolveUserAgentConfig(_config_1);
|
|
88
|
+
const _config_3 = middlewareRetry.resolveRetryConfig(_config_2);
|
|
89
|
+
const _config_4 = configResolver.resolveRegionConfig(_config_3);
|
|
90
|
+
const _config_5 = middlewareHostHeader.resolveHostHeaderConfig(_config_4);
|
|
91
|
+
const _config_6 = middlewareEndpoint.resolveEndpointConfig(_config_5);
|
|
92
|
+
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
93
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
94
|
+
this.config = _config_8;
|
|
95
|
+
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
96
|
+
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
97
|
+
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
98
|
+
this.middlewareStack.use(middlewareHostHeader.getHostHeaderPlugin(this.config));
|
|
99
|
+
this.middlewareStack.use(middlewareLogger.getLoggerPlugin(this.config));
|
|
100
|
+
this.middlewareStack.use(middlewareRecursionDetection.getRecursionDetectionPlugin(this.config));
|
|
101
|
+
this.middlewareStack.use(core.getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
|
|
102
|
+
httpAuthSchemeParametersProvider: httpAuthSchemeProvider.defaultSecretsManagerHttpAuthSchemeParametersProvider,
|
|
103
|
+
identityProviderConfigProvider: async (config) => new core.DefaultIdentityProviderConfig({
|
|
104
|
+
"aws.auth#sigv4": config.credentials,
|
|
105
|
+
}),
|
|
106
|
+
}));
|
|
107
|
+
this.middlewareStack.use(core.getHttpSigningPlugin(this.config));
|
|
108
|
+
}
|
|
109
|
+
destroy() {
|
|
110
|
+
super.destroy();
|
|
143
111
|
}
|
|
144
|
-
|
|
145
|
-
}, "getHttpAuthExtensionConfiguration");
|
|
146
|
-
var resolveHttpAuthRuntimeConfig = /* @__PURE__ */ __name((config) => {
|
|
147
|
-
return {
|
|
148
|
-
httpAuthSchemes: config.httpAuthSchemes(),
|
|
149
|
-
httpAuthSchemeProvider: config.httpAuthSchemeProvider(),
|
|
150
|
-
credentials: config.credentials()
|
|
151
|
-
};
|
|
152
|
-
}, "resolveHttpAuthRuntimeConfig");
|
|
112
|
+
}
|
|
153
113
|
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
getHttpAuthExtensionConfiguration(runtimeConfig)
|
|
161
|
-
);
|
|
162
|
-
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
163
|
-
return Object.assign(
|
|
164
|
-
runtimeConfig,
|
|
165
|
-
(0, import_region_config_resolver.resolveAwsRegionExtensionConfiguration)(extensionConfiguration),
|
|
166
|
-
(0, import_smithy_client.resolveDefaultRuntimeConfig)(extensionConfiguration),
|
|
167
|
-
(0, import_protocol_http.resolveHttpHandlerRuntimeConfig)(extensionConfiguration),
|
|
168
|
-
resolveHttpAuthRuntimeConfig(extensionConfiguration)
|
|
169
|
-
);
|
|
170
|
-
}, "resolveRuntimeExtensions");
|
|
114
|
+
class SecretsManagerServiceException extends smithyClient.ServiceException {
|
|
115
|
+
constructor(options) {
|
|
116
|
+
super(options);
|
|
117
|
+
Object.setPrototypeOf(this, SecretsManagerServiceException.prototype);
|
|
118
|
+
}
|
|
119
|
+
}
|
|
171
120
|
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
config;
|
|
181
|
-
constructor(...[configuration]) {
|
|
182
|
-
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
183
|
-
super(_config_0);
|
|
184
|
-
this.initConfig = _config_0;
|
|
185
|
-
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
186
|
-
const _config_2 = (0, import_middleware_user_agent.resolveUserAgentConfig)(_config_1);
|
|
187
|
-
const _config_3 = (0, import_middleware_retry.resolveRetryConfig)(_config_2);
|
|
188
|
-
const _config_4 = (0, import_config_resolver.resolveRegionConfig)(_config_3);
|
|
189
|
-
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
190
|
-
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
191
|
-
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
192
|
-
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
193
|
-
this.config = _config_8;
|
|
194
|
-
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
195
|
-
this.middlewareStack.use((0, import_middleware_retry.getRetryPlugin)(this.config));
|
|
196
|
-
this.middlewareStack.use((0, import_middleware_content_length.getContentLengthPlugin)(this.config));
|
|
197
|
-
this.middlewareStack.use((0, import_middleware_host_header.getHostHeaderPlugin)(this.config));
|
|
198
|
-
this.middlewareStack.use((0, import_middleware_logger.getLoggerPlugin)(this.config));
|
|
199
|
-
this.middlewareStack.use((0, import_middleware_recursion_detection.getRecursionDetectionPlugin)(this.config));
|
|
200
|
-
this.middlewareStack.use(
|
|
201
|
-
(0, import_core.getHttpAuthSchemeEndpointRuleSetPlugin)(this.config, {
|
|
202
|
-
httpAuthSchemeParametersProvider: import_httpAuthSchemeProvider.defaultSecretsManagerHttpAuthSchemeParametersProvider,
|
|
203
|
-
identityProviderConfigProvider: /* @__PURE__ */ __name(async (config) => new import_core.DefaultIdentityProviderConfig({
|
|
204
|
-
"aws.auth#sigv4": config.credentials
|
|
205
|
-
}), "identityProviderConfigProvider")
|
|
206
|
-
})
|
|
207
|
-
);
|
|
208
|
-
this.middlewareStack.use((0, import_core.getHttpSigningPlugin)(this.config));
|
|
209
|
-
}
|
|
210
|
-
/**
|
|
211
|
-
* Destroy underlying resources, like sockets. It's usually not necessary to do this.
|
|
212
|
-
* However in Node.js, it's best to explicitly shut down the client's agent when it is no longer needed.
|
|
213
|
-
* Otherwise, sockets might stay open for quite a long time before the server terminates them.
|
|
214
|
-
*/
|
|
215
|
-
destroy() {
|
|
216
|
-
super.destroy();
|
|
217
|
-
}
|
|
121
|
+
const FilterNameStringType = {
|
|
122
|
+
all: "all",
|
|
123
|
+
description: "description",
|
|
124
|
+
name: "name",
|
|
125
|
+
owning_service: "owning-service",
|
|
126
|
+
primary_region: "primary-region",
|
|
127
|
+
tag_key: "tag-key",
|
|
128
|
+
tag_value: "tag-value",
|
|
218
129
|
};
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
130
|
+
class DecryptionFailure extends SecretsManagerServiceException {
|
|
131
|
+
name = "DecryptionFailure";
|
|
132
|
+
$fault = "client";
|
|
133
|
+
Message;
|
|
134
|
+
constructor(opts) {
|
|
135
|
+
super({
|
|
136
|
+
name: "DecryptionFailure",
|
|
137
|
+
$fault: "client",
|
|
138
|
+
...opts,
|
|
139
|
+
});
|
|
140
|
+
Object.setPrototypeOf(this, DecryptionFailure.prototype);
|
|
141
|
+
this.Message = opts.Message;
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
class InternalServiceError extends SecretsManagerServiceException {
|
|
145
|
+
name = "InternalServiceError";
|
|
146
|
+
$fault = "server";
|
|
147
|
+
Message;
|
|
148
|
+
constructor(opts) {
|
|
149
|
+
super({
|
|
150
|
+
name: "InternalServiceError",
|
|
151
|
+
$fault: "server",
|
|
152
|
+
...opts,
|
|
153
|
+
});
|
|
154
|
+
Object.setPrototypeOf(this, InternalServiceError.prototype);
|
|
155
|
+
this.Message = opts.Message;
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
class InvalidNextTokenException extends SecretsManagerServiceException {
|
|
159
|
+
name = "InvalidNextTokenException";
|
|
160
|
+
$fault = "client";
|
|
161
|
+
Message;
|
|
162
|
+
constructor(opts) {
|
|
163
|
+
super({
|
|
164
|
+
name: "InvalidNextTokenException",
|
|
165
|
+
$fault: "client",
|
|
166
|
+
...opts,
|
|
167
|
+
});
|
|
168
|
+
Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
|
|
169
|
+
this.Message = opts.Message;
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
class InvalidParameterException extends SecretsManagerServiceException {
|
|
173
|
+
name = "InvalidParameterException";
|
|
174
|
+
$fault = "client";
|
|
175
|
+
Message;
|
|
176
|
+
constructor(opts) {
|
|
177
|
+
super({
|
|
178
|
+
name: "InvalidParameterException",
|
|
179
|
+
$fault: "client",
|
|
180
|
+
...opts,
|
|
181
|
+
});
|
|
182
|
+
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
183
|
+
this.Message = opts.Message;
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
class InvalidRequestException extends SecretsManagerServiceException {
|
|
187
|
+
name = "InvalidRequestException";
|
|
188
|
+
$fault = "client";
|
|
189
|
+
Message;
|
|
190
|
+
constructor(opts) {
|
|
191
|
+
super({
|
|
192
|
+
name: "InvalidRequestException",
|
|
193
|
+
$fault: "client",
|
|
194
|
+
...opts,
|
|
195
|
+
});
|
|
196
|
+
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
197
|
+
this.Message = opts.Message;
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
class ResourceNotFoundException extends SecretsManagerServiceException {
|
|
201
|
+
name = "ResourceNotFoundException";
|
|
202
|
+
$fault = "client";
|
|
203
|
+
Message;
|
|
204
|
+
constructor(opts) {
|
|
205
|
+
super({
|
|
206
|
+
name: "ResourceNotFoundException",
|
|
207
|
+
$fault: "client",
|
|
208
|
+
...opts,
|
|
209
|
+
});
|
|
210
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
211
|
+
this.Message = opts.Message;
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
const StatusType = {
|
|
215
|
+
Failed: "Failed",
|
|
216
|
+
InProgress: "InProgress",
|
|
217
|
+
InSync: "InSync",
|
|
244
218
|
};
|
|
219
|
+
class EncryptionFailure extends SecretsManagerServiceException {
|
|
220
|
+
name = "EncryptionFailure";
|
|
221
|
+
$fault = "client";
|
|
222
|
+
Message;
|
|
223
|
+
constructor(opts) {
|
|
224
|
+
super({
|
|
225
|
+
name: "EncryptionFailure",
|
|
226
|
+
$fault: "client",
|
|
227
|
+
...opts,
|
|
228
|
+
});
|
|
229
|
+
Object.setPrototypeOf(this, EncryptionFailure.prototype);
|
|
230
|
+
this.Message = opts.Message;
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
class LimitExceededException extends SecretsManagerServiceException {
|
|
234
|
+
name = "LimitExceededException";
|
|
235
|
+
$fault = "client";
|
|
236
|
+
Message;
|
|
237
|
+
constructor(opts) {
|
|
238
|
+
super({
|
|
239
|
+
name: "LimitExceededException",
|
|
240
|
+
$fault: "client",
|
|
241
|
+
...opts,
|
|
242
|
+
});
|
|
243
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
244
|
+
this.Message = opts.Message;
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
class MalformedPolicyDocumentException extends SecretsManagerServiceException {
|
|
248
|
+
name = "MalformedPolicyDocumentException";
|
|
249
|
+
$fault = "client";
|
|
250
|
+
Message;
|
|
251
|
+
constructor(opts) {
|
|
252
|
+
super({
|
|
253
|
+
name: "MalformedPolicyDocumentException",
|
|
254
|
+
$fault: "client",
|
|
255
|
+
...opts,
|
|
256
|
+
});
|
|
257
|
+
Object.setPrototypeOf(this, MalformedPolicyDocumentException.prototype);
|
|
258
|
+
this.Message = opts.Message;
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
class PreconditionNotMetException extends SecretsManagerServiceException {
|
|
262
|
+
name = "PreconditionNotMetException";
|
|
263
|
+
$fault = "client";
|
|
264
|
+
Message;
|
|
265
|
+
constructor(opts) {
|
|
266
|
+
super({
|
|
267
|
+
name: "PreconditionNotMetException",
|
|
268
|
+
$fault: "client",
|
|
269
|
+
...opts,
|
|
270
|
+
});
|
|
271
|
+
Object.setPrototypeOf(this, PreconditionNotMetException.prototype);
|
|
272
|
+
this.Message = opts.Message;
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
class ResourceExistsException extends SecretsManagerServiceException {
|
|
276
|
+
name = "ResourceExistsException";
|
|
277
|
+
$fault = "client";
|
|
278
|
+
Message;
|
|
279
|
+
constructor(opts) {
|
|
280
|
+
super({
|
|
281
|
+
name: "ResourceExistsException",
|
|
282
|
+
$fault: "client",
|
|
283
|
+
...opts,
|
|
284
|
+
});
|
|
285
|
+
Object.setPrototypeOf(this, ResourceExistsException.prototype);
|
|
286
|
+
this.Message = opts.Message;
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
const SortOrderType = {
|
|
290
|
+
asc: "asc",
|
|
291
|
+
desc: "desc",
|
|
292
|
+
};
|
|
293
|
+
class PublicPolicyException extends SecretsManagerServiceException {
|
|
294
|
+
name = "PublicPolicyException";
|
|
295
|
+
$fault = "client";
|
|
296
|
+
Message;
|
|
297
|
+
constructor(opts) {
|
|
298
|
+
super({
|
|
299
|
+
name: "PublicPolicyException",
|
|
300
|
+
$fault: "client",
|
|
301
|
+
...opts,
|
|
302
|
+
});
|
|
303
|
+
Object.setPrototypeOf(this, PublicPolicyException.prototype);
|
|
304
|
+
this.Message = opts.Message;
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
const SecretValueEntryFilterSensitiveLog = (obj) => ({
|
|
308
|
+
...obj,
|
|
309
|
+
...(obj.SecretBinary && { SecretBinary: smithyClient.SENSITIVE_STRING }),
|
|
310
|
+
...(obj.SecretString && { SecretString: smithyClient.SENSITIVE_STRING }),
|
|
311
|
+
});
|
|
312
|
+
const BatchGetSecretValueResponseFilterSensitiveLog = (obj) => ({
|
|
313
|
+
...obj,
|
|
314
|
+
...(obj.SecretValues && { SecretValues: obj.SecretValues.map((item) => SecretValueEntryFilterSensitiveLog(item)) }),
|
|
315
|
+
});
|
|
316
|
+
const CreateSecretRequestFilterSensitiveLog = (obj) => ({
|
|
317
|
+
...obj,
|
|
318
|
+
...(obj.SecretBinary && { SecretBinary: smithyClient.SENSITIVE_STRING }),
|
|
319
|
+
...(obj.SecretString && { SecretString: smithyClient.SENSITIVE_STRING }),
|
|
320
|
+
});
|
|
321
|
+
const GetRandomPasswordResponseFilterSensitiveLog = (obj) => ({
|
|
322
|
+
...obj,
|
|
323
|
+
...(obj.RandomPassword && { RandomPassword: smithyClient.SENSITIVE_STRING }),
|
|
324
|
+
});
|
|
325
|
+
const GetSecretValueResponseFilterSensitiveLog = (obj) => ({
|
|
326
|
+
...obj,
|
|
327
|
+
...(obj.SecretBinary && { SecretBinary: smithyClient.SENSITIVE_STRING }),
|
|
328
|
+
...(obj.SecretString && { SecretString: smithyClient.SENSITIVE_STRING }),
|
|
329
|
+
});
|
|
330
|
+
const PutSecretValueRequestFilterSensitiveLog = (obj) => ({
|
|
331
|
+
...obj,
|
|
332
|
+
...(obj.SecretBinary && { SecretBinary: smithyClient.SENSITIVE_STRING }),
|
|
333
|
+
...(obj.SecretString && { SecretString: smithyClient.SENSITIVE_STRING }),
|
|
334
|
+
...(obj.RotationToken && { RotationToken: smithyClient.SENSITIVE_STRING }),
|
|
335
|
+
});
|
|
336
|
+
const UpdateSecretRequestFilterSensitiveLog = (obj) => ({
|
|
337
|
+
...obj,
|
|
338
|
+
...(obj.SecretBinary && { SecretBinary: smithyClient.SENSITIVE_STRING }),
|
|
339
|
+
...(obj.SecretString && { SecretString: smithyClient.SENSITIVE_STRING }),
|
|
340
|
+
});
|
|
245
341
|
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
342
|
+
const se_BatchGetSecretValueCommand = async (input, context) => {
|
|
343
|
+
const headers = sharedHeaders("BatchGetSecretValue");
|
|
344
|
+
let body;
|
|
345
|
+
body = JSON.stringify(smithyClient._json(input));
|
|
346
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
347
|
+
};
|
|
348
|
+
const se_CancelRotateSecretCommand = async (input, context) => {
|
|
349
|
+
const headers = sharedHeaders("CancelRotateSecret");
|
|
350
|
+
let body;
|
|
351
|
+
body = JSON.stringify(smithyClient._json(input));
|
|
352
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
353
|
+
};
|
|
354
|
+
const se_CreateSecretCommand = async (input, context) => {
|
|
355
|
+
const headers = sharedHeaders("CreateSecret");
|
|
356
|
+
let body;
|
|
357
|
+
body = JSON.stringify(se_CreateSecretRequest(input, context));
|
|
358
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
359
|
+
};
|
|
360
|
+
const se_DeleteResourcePolicyCommand = async (input, context) => {
|
|
361
|
+
const headers = sharedHeaders("DeleteResourcePolicy");
|
|
362
|
+
let body;
|
|
363
|
+
body = JSON.stringify(smithyClient._json(input));
|
|
364
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
365
|
+
};
|
|
366
|
+
const se_DeleteSecretCommand = async (input, context) => {
|
|
367
|
+
const headers = sharedHeaders("DeleteSecret");
|
|
368
|
+
let body;
|
|
369
|
+
body = JSON.stringify(smithyClient._json(input));
|
|
370
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
371
|
+
};
|
|
372
|
+
const se_DescribeSecretCommand = async (input, context) => {
|
|
373
|
+
const headers = sharedHeaders("DescribeSecret");
|
|
374
|
+
let body;
|
|
375
|
+
body = JSON.stringify(smithyClient._json(input));
|
|
376
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
377
|
+
};
|
|
378
|
+
const se_GetRandomPasswordCommand = async (input, context) => {
|
|
379
|
+
const headers = sharedHeaders("GetRandomPassword");
|
|
380
|
+
let body;
|
|
381
|
+
body = JSON.stringify(smithyClient._json(input));
|
|
382
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
383
|
+
};
|
|
384
|
+
const se_GetResourcePolicyCommand = async (input, context) => {
|
|
385
|
+
const headers = sharedHeaders("GetResourcePolicy");
|
|
386
|
+
let body;
|
|
387
|
+
body = JSON.stringify(smithyClient._json(input));
|
|
388
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
389
|
+
};
|
|
390
|
+
const se_GetSecretValueCommand = async (input, context) => {
|
|
391
|
+
const headers = sharedHeaders("GetSecretValue");
|
|
392
|
+
let body;
|
|
393
|
+
body = JSON.stringify(smithyClient._json(input));
|
|
394
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
395
|
+
};
|
|
396
|
+
const se_ListSecretsCommand = async (input, context) => {
|
|
397
|
+
const headers = sharedHeaders("ListSecrets");
|
|
398
|
+
let body;
|
|
399
|
+
body = JSON.stringify(smithyClient._json(input));
|
|
400
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
401
|
+
};
|
|
402
|
+
const se_ListSecretVersionIdsCommand = async (input, context) => {
|
|
403
|
+
const headers = sharedHeaders("ListSecretVersionIds");
|
|
404
|
+
let body;
|
|
405
|
+
body = JSON.stringify(smithyClient._json(input));
|
|
406
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
407
|
+
};
|
|
408
|
+
const se_PutResourcePolicyCommand = async (input, context) => {
|
|
409
|
+
const headers = sharedHeaders("PutResourcePolicy");
|
|
410
|
+
let body;
|
|
411
|
+
body = JSON.stringify(smithyClient._json(input));
|
|
412
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
413
|
+
};
|
|
414
|
+
const se_PutSecretValueCommand = async (input, context) => {
|
|
415
|
+
const headers = sharedHeaders("PutSecretValue");
|
|
416
|
+
let body;
|
|
417
|
+
body = JSON.stringify(se_PutSecretValueRequest(input, context));
|
|
418
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
419
|
+
};
|
|
420
|
+
const se_RemoveRegionsFromReplicationCommand = async (input, context) => {
|
|
421
|
+
const headers = sharedHeaders("RemoveRegionsFromReplication");
|
|
422
|
+
let body;
|
|
423
|
+
body = JSON.stringify(smithyClient._json(input));
|
|
424
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
425
|
+
};
|
|
426
|
+
const se_ReplicateSecretToRegionsCommand = async (input, context) => {
|
|
427
|
+
const headers = sharedHeaders("ReplicateSecretToRegions");
|
|
428
|
+
let body;
|
|
429
|
+
body = JSON.stringify(smithyClient._json(input));
|
|
430
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
431
|
+
};
|
|
432
|
+
const se_RestoreSecretCommand = async (input, context) => {
|
|
433
|
+
const headers = sharedHeaders("RestoreSecret");
|
|
434
|
+
let body;
|
|
435
|
+
body = JSON.stringify(smithyClient._json(input));
|
|
436
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
437
|
+
};
|
|
438
|
+
const se_RotateSecretCommand = async (input, context) => {
|
|
439
|
+
const headers = sharedHeaders("RotateSecret");
|
|
440
|
+
let body;
|
|
441
|
+
body = JSON.stringify(se_RotateSecretRequest(input));
|
|
442
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
443
|
+
};
|
|
444
|
+
const se_StopReplicationToReplicaCommand = async (input, context) => {
|
|
445
|
+
const headers = sharedHeaders("StopReplicationToReplica");
|
|
446
|
+
let body;
|
|
447
|
+
body = JSON.stringify(smithyClient._json(input));
|
|
448
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
449
|
+
};
|
|
450
|
+
const se_TagResourceCommand = async (input, context) => {
|
|
451
|
+
const headers = sharedHeaders("TagResource");
|
|
452
|
+
let body;
|
|
453
|
+
body = JSON.stringify(smithyClient._json(input));
|
|
454
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
455
|
+
};
|
|
456
|
+
const se_UntagResourceCommand = async (input, context) => {
|
|
457
|
+
const headers = sharedHeaders("UntagResource");
|
|
458
|
+
let body;
|
|
459
|
+
body = JSON.stringify(smithyClient._json(input));
|
|
460
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
461
|
+
};
|
|
462
|
+
const se_UpdateSecretCommand = async (input, context) => {
|
|
463
|
+
const headers = sharedHeaders("UpdateSecret");
|
|
464
|
+
let body;
|
|
465
|
+
body = JSON.stringify(se_UpdateSecretRequest(input, context));
|
|
466
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
467
|
+
};
|
|
468
|
+
const se_UpdateSecretVersionStageCommand = async (input, context) => {
|
|
469
|
+
const headers = sharedHeaders("UpdateSecretVersionStage");
|
|
470
|
+
let body;
|
|
471
|
+
body = JSON.stringify(smithyClient._json(input));
|
|
472
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
473
|
+
};
|
|
474
|
+
const se_ValidateResourcePolicyCommand = async (input, context) => {
|
|
475
|
+
const headers = sharedHeaders("ValidateResourcePolicy");
|
|
476
|
+
let body;
|
|
477
|
+
body = JSON.stringify(smithyClient._json(input));
|
|
478
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
479
|
+
};
|
|
480
|
+
const de_BatchGetSecretValueCommand = async (output, context) => {
|
|
481
|
+
if (output.statusCode >= 300) {
|
|
482
|
+
return de_CommandError(output, context);
|
|
483
|
+
}
|
|
484
|
+
const data = await core$1.parseJsonBody(output.body, context);
|
|
485
|
+
let contents = {};
|
|
486
|
+
contents = de_BatchGetSecretValueResponse(data, context);
|
|
487
|
+
const response = {
|
|
488
|
+
$metadata: deserializeMetadata(output),
|
|
489
|
+
...contents,
|
|
490
|
+
};
|
|
491
|
+
return response;
|
|
492
|
+
};
|
|
493
|
+
const de_CancelRotateSecretCommand = async (output, context) => {
|
|
494
|
+
if (output.statusCode >= 300) {
|
|
495
|
+
return de_CommandError(output, context);
|
|
496
|
+
}
|
|
497
|
+
const data = await core$1.parseJsonBody(output.body, context);
|
|
498
|
+
let contents = {};
|
|
499
|
+
contents = smithyClient._json(data);
|
|
500
|
+
const response = {
|
|
501
|
+
$metadata: deserializeMetadata(output),
|
|
502
|
+
...contents,
|
|
503
|
+
};
|
|
504
|
+
return response;
|
|
505
|
+
};
|
|
506
|
+
const de_CreateSecretCommand = async (output, context) => {
|
|
507
|
+
if (output.statusCode >= 300) {
|
|
508
|
+
return de_CommandError(output, context);
|
|
509
|
+
}
|
|
510
|
+
const data = await core$1.parseJsonBody(output.body, context);
|
|
511
|
+
let contents = {};
|
|
512
|
+
contents = de_CreateSecretResponse(data);
|
|
513
|
+
const response = {
|
|
514
|
+
$metadata: deserializeMetadata(output),
|
|
515
|
+
...contents,
|
|
516
|
+
};
|
|
517
|
+
return response;
|
|
518
|
+
};
|
|
519
|
+
const de_DeleteResourcePolicyCommand = async (output, context) => {
|
|
520
|
+
if (output.statusCode >= 300) {
|
|
521
|
+
return de_CommandError(output, context);
|
|
522
|
+
}
|
|
523
|
+
const data = await core$1.parseJsonBody(output.body, context);
|
|
524
|
+
let contents = {};
|
|
525
|
+
contents = smithyClient._json(data);
|
|
526
|
+
const response = {
|
|
527
|
+
$metadata: deserializeMetadata(output),
|
|
528
|
+
...contents,
|
|
529
|
+
};
|
|
530
|
+
return response;
|
|
531
|
+
};
|
|
532
|
+
const de_DeleteSecretCommand = async (output, context) => {
|
|
533
|
+
if (output.statusCode >= 300) {
|
|
534
|
+
return de_CommandError(output, context);
|
|
535
|
+
}
|
|
536
|
+
const data = await core$1.parseJsonBody(output.body, context);
|
|
537
|
+
let contents = {};
|
|
538
|
+
contents = de_DeleteSecretResponse(data);
|
|
539
|
+
const response = {
|
|
540
|
+
$metadata: deserializeMetadata(output),
|
|
541
|
+
...contents,
|
|
542
|
+
};
|
|
543
|
+
return response;
|
|
544
|
+
};
|
|
545
|
+
const de_DescribeSecretCommand = async (output, context) => {
|
|
546
|
+
if (output.statusCode >= 300) {
|
|
547
|
+
return de_CommandError(output, context);
|
|
548
|
+
}
|
|
549
|
+
const data = await core$1.parseJsonBody(output.body, context);
|
|
550
|
+
let contents = {};
|
|
551
|
+
contents = de_DescribeSecretResponse(data);
|
|
552
|
+
const response = {
|
|
553
|
+
$metadata: deserializeMetadata(output),
|
|
554
|
+
...contents,
|
|
555
|
+
};
|
|
556
|
+
return response;
|
|
557
|
+
};
|
|
558
|
+
const de_GetRandomPasswordCommand = async (output, context) => {
|
|
559
|
+
if (output.statusCode >= 300) {
|
|
560
|
+
return de_CommandError(output, context);
|
|
561
|
+
}
|
|
562
|
+
const data = await core$1.parseJsonBody(output.body, context);
|
|
563
|
+
let contents = {};
|
|
564
|
+
contents = smithyClient._json(data);
|
|
565
|
+
const response = {
|
|
566
|
+
$metadata: deserializeMetadata(output),
|
|
567
|
+
...contents,
|
|
568
|
+
};
|
|
569
|
+
return response;
|
|
570
|
+
};
|
|
571
|
+
const de_GetResourcePolicyCommand = async (output, context) => {
|
|
572
|
+
if (output.statusCode >= 300) {
|
|
573
|
+
return de_CommandError(output, context);
|
|
574
|
+
}
|
|
575
|
+
const data = await core$1.parseJsonBody(output.body, context);
|
|
576
|
+
let contents = {};
|
|
577
|
+
contents = smithyClient._json(data);
|
|
578
|
+
const response = {
|
|
579
|
+
$metadata: deserializeMetadata(output),
|
|
580
|
+
...contents,
|
|
581
|
+
};
|
|
582
|
+
return response;
|
|
583
|
+
};
|
|
584
|
+
const de_GetSecretValueCommand = async (output, context) => {
|
|
585
|
+
if (output.statusCode >= 300) {
|
|
586
|
+
return de_CommandError(output, context);
|
|
587
|
+
}
|
|
588
|
+
const data = await core$1.parseJsonBody(output.body, context);
|
|
589
|
+
let contents = {};
|
|
590
|
+
contents = de_GetSecretValueResponse(data, context);
|
|
591
|
+
const response = {
|
|
592
|
+
$metadata: deserializeMetadata(output),
|
|
593
|
+
...contents,
|
|
594
|
+
};
|
|
595
|
+
return response;
|
|
596
|
+
};
|
|
597
|
+
const de_ListSecretsCommand = async (output, context) => {
|
|
598
|
+
if (output.statusCode >= 300) {
|
|
599
|
+
return de_CommandError(output, context);
|
|
600
|
+
}
|
|
601
|
+
const data = await core$1.parseJsonBody(output.body, context);
|
|
602
|
+
let contents = {};
|
|
603
|
+
contents = de_ListSecretsResponse(data);
|
|
604
|
+
const response = {
|
|
605
|
+
$metadata: deserializeMetadata(output),
|
|
606
|
+
...contents,
|
|
607
|
+
};
|
|
608
|
+
return response;
|
|
609
|
+
};
|
|
610
|
+
const de_ListSecretVersionIdsCommand = async (output, context) => {
|
|
611
|
+
if (output.statusCode >= 300) {
|
|
612
|
+
return de_CommandError(output, context);
|
|
613
|
+
}
|
|
614
|
+
const data = await core$1.parseJsonBody(output.body, context);
|
|
615
|
+
let contents = {};
|
|
616
|
+
contents = de_ListSecretVersionIdsResponse(data);
|
|
617
|
+
const response = {
|
|
618
|
+
$metadata: deserializeMetadata(output),
|
|
619
|
+
...contents,
|
|
620
|
+
};
|
|
621
|
+
return response;
|
|
622
|
+
};
|
|
623
|
+
const de_PutResourcePolicyCommand = async (output, context) => {
|
|
624
|
+
if (output.statusCode >= 300) {
|
|
625
|
+
return de_CommandError(output, context);
|
|
626
|
+
}
|
|
627
|
+
const data = await core$1.parseJsonBody(output.body, context);
|
|
628
|
+
let contents = {};
|
|
629
|
+
contents = smithyClient._json(data);
|
|
630
|
+
const response = {
|
|
631
|
+
$metadata: deserializeMetadata(output),
|
|
632
|
+
...contents,
|
|
633
|
+
};
|
|
634
|
+
return response;
|
|
635
|
+
};
|
|
636
|
+
const de_PutSecretValueCommand = async (output, context) => {
|
|
637
|
+
if (output.statusCode >= 300) {
|
|
638
|
+
return de_CommandError(output, context);
|
|
639
|
+
}
|
|
640
|
+
const data = await core$1.parseJsonBody(output.body, context);
|
|
641
|
+
let contents = {};
|
|
642
|
+
contents = smithyClient._json(data);
|
|
643
|
+
const response = {
|
|
644
|
+
$metadata: deserializeMetadata(output),
|
|
645
|
+
...contents,
|
|
646
|
+
};
|
|
647
|
+
return response;
|
|
648
|
+
};
|
|
649
|
+
const de_RemoveRegionsFromReplicationCommand = async (output, context) => {
|
|
650
|
+
if (output.statusCode >= 300) {
|
|
651
|
+
return de_CommandError(output, context);
|
|
652
|
+
}
|
|
653
|
+
const data = await core$1.parseJsonBody(output.body, context);
|
|
654
|
+
let contents = {};
|
|
655
|
+
contents = de_RemoveRegionsFromReplicationResponse(data);
|
|
656
|
+
const response = {
|
|
657
|
+
$metadata: deserializeMetadata(output),
|
|
658
|
+
...contents,
|
|
659
|
+
};
|
|
660
|
+
return response;
|
|
661
|
+
};
|
|
662
|
+
const de_ReplicateSecretToRegionsCommand = async (output, context) => {
|
|
663
|
+
if (output.statusCode >= 300) {
|
|
664
|
+
return de_CommandError(output, context);
|
|
665
|
+
}
|
|
666
|
+
const data = await core$1.parseJsonBody(output.body, context);
|
|
667
|
+
let contents = {};
|
|
668
|
+
contents = de_ReplicateSecretToRegionsResponse(data);
|
|
669
|
+
const response = {
|
|
670
|
+
$metadata: deserializeMetadata(output),
|
|
671
|
+
...contents,
|
|
672
|
+
};
|
|
673
|
+
return response;
|
|
674
|
+
};
|
|
675
|
+
const de_RestoreSecretCommand = async (output, context) => {
|
|
676
|
+
if (output.statusCode >= 300) {
|
|
677
|
+
return de_CommandError(output, context);
|
|
678
|
+
}
|
|
679
|
+
const data = await core$1.parseJsonBody(output.body, context);
|
|
680
|
+
let contents = {};
|
|
681
|
+
contents = smithyClient._json(data);
|
|
682
|
+
const response = {
|
|
683
|
+
$metadata: deserializeMetadata(output),
|
|
684
|
+
...contents,
|
|
685
|
+
};
|
|
686
|
+
return response;
|
|
687
|
+
};
|
|
688
|
+
const de_RotateSecretCommand = async (output, context) => {
|
|
689
|
+
if (output.statusCode >= 300) {
|
|
690
|
+
return de_CommandError(output, context);
|
|
691
|
+
}
|
|
692
|
+
const data = await core$1.parseJsonBody(output.body, context);
|
|
693
|
+
let contents = {};
|
|
694
|
+
contents = smithyClient._json(data);
|
|
695
|
+
const response = {
|
|
696
|
+
$metadata: deserializeMetadata(output),
|
|
697
|
+
...contents,
|
|
698
|
+
};
|
|
699
|
+
return response;
|
|
700
|
+
};
|
|
701
|
+
const de_StopReplicationToReplicaCommand = async (output, context) => {
|
|
702
|
+
if (output.statusCode >= 300) {
|
|
703
|
+
return de_CommandError(output, context);
|
|
704
|
+
}
|
|
705
|
+
const data = await core$1.parseJsonBody(output.body, context);
|
|
706
|
+
let contents = {};
|
|
707
|
+
contents = smithyClient._json(data);
|
|
708
|
+
const response = {
|
|
709
|
+
$metadata: deserializeMetadata(output),
|
|
710
|
+
...contents,
|
|
711
|
+
};
|
|
712
|
+
return response;
|
|
713
|
+
};
|
|
714
|
+
const de_TagResourceCommand = async (output, context) => {
|
|
715
|
+
if (output.statusCode >= 300) {
|
|
716
|
+
return de_CommandError(output, context);
|
|
717
|
+
}
|
|
718
|
+
await smithyClient.collectBody(output.body, context);
|
|
719
|
+
const response = {
|
|
720
|
+
$metadata: deserializeMetadata(output),
|
|
721
|
+
};
|
|
722
|
+
return response;
|
|
723
|
+
};
|
|
724
|
+
const de_UntagResourceCommand = async (output, context) => {
|
|
725
|
+
if (output.statusCode >= 300) {
|
|
726
|
+
return de_CommandError(output, context);
|
|
727
|
+
}
|
|
728
|
+
await smithyClient.collectBody(output.body, context);
|
|
729
|
+
const response = {
|
|
730
|
+
$metadata: deserializeMetadata(output),
|
|
731
|
+
};
|
|
732
|
+
return response;
|
|
733
|
+
};
|
|
734
|
+
const de_UpdateSecretCommand = async (output, context) => {
|
|
735
|
+
if (output.statusCode >= 300) {
|
|
736
|
+
return de_CommandError(output, context);
|
|
737
|
+
}
|
|
738
|
+
const data = await core$1.parseJsonBody(output.body, context);
|
|
739
|
+
let contents = {};
|
|
740
|
+
contents = smithyClient._json(data);
|
|
741
|
+
const response = {
|
|
742
|
+
$metadata: deserializeMetadata(output),
|
|
743
|
+
...contents,
|
|
744
|
+
};
|
|
745
|
+
return response;
|
|
746
|
+
};
|
|
747
|
+
const de_UpdateSecretVersionStageCommand = async (output, context) => {
|
|
748
|
+
if (output.statusCode >= 300) {
|
|
749
|
+
return de_CommandError(output, context);
|
|
750
|
+
}
|
|
751
|
+
const data = await core$1.parseJsonBody(output.body, context);
|
|
752
|
+
let contents = {};
|
|
753
|
+
contents = smithyClient._json(data);
|
|
754
|
+
const response = {
|
|
755
|
+
$metadata: deserializeMetadata(output),
|
|
756
|
+
...contents,
|
|
757
|
+
};
|
|
758
|
+
return response;
|
|
759
|
+
};
|
|
760
|
+
const de_ValidateResourcePolicyCommand = async (output, context) => {
|
|
761
|
+
if (output.statusCode >= 300) {
|
|
762
|
+
return de_CommandError(output, context);
|
|
763
|
+
}
|
|
764
|
+
const data = await core$1.parseJsonBody(output.body, context);
|
|
765
|
+
let contents = {};
|
|
766
|
+
contents = smithyClient._json(data);
|
|
767
|
+
const response = {
|
|
768
|
+
$metadata: deserializeMetadata(output),
|
|
769
|
+
...contents,
|
|
770
|
+
};
|
|
771
|
+
return response;
|
|
772
|
+
};
|
|
773
|
+
const de_CommandError = async (output, context) => {
|
|
774
|
+
const parsedOutput = {
|
|
775
|
+
...output,
|
|
776
|
+
body: await core$1.parseJsonErrorBody(output.body, context),
|
|
777
|
+
};
|
|
778
|
+
const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
|
|
779
|
+
switch (errorCode) {
|
|
780
|
+
case "DecryptionFailure":
|
|
781
|
+
case "com.amazonaws.secretsmanager#DecryptionFailure":
|
|
782
|
+
throw await de_DecryptionFailureRes(parsedOutput);
|
|
783
|
+
case "InternalServiceError":
|
|
784
|
+
case "com.amazonaws.secretsmanager#InternalServiceError":
|
|
785
|
+
throw await de_InternalServiceErrorRes(parsedOutput);
|
|
786
|
+
case "InvalidNextTokenException":
|
|
787
|
+
case "com.amazonaws.secretsmanager#InvalidNextTokenException":
|
|
788
|
+
throw await de_InvalidNextTokenExceptionRes(parsedOutput);
|
|
789
|
+
case "InvalidParameterException":
|
|
790
|
+
case "com.amazonaws.secretsmanager#InvalidParameterException":
|
|
791
|
+
throw await de_InvalidParameterExceptionRes(parsedOutput);
|
|
792
|
+
case "InvalidRequestException":
|
|
793
|
+
case "com.amazonaws.secretsmanager#InvalidRequestException":
|
|
794
|
+
throw await de_InvalidRequestExceptionRes(parsedOutput);
|
|
795
|
+
case "ResourceNotFoundException":
|
|
796
|
+
case "com.amazonaws.secretsmanager#ResourceNotFoundException":
|
|
797
|
+
throw await de_ResourceNotFoundExceptionRes(parsedOutput);
|
|
798
|
+
case "EncryptionFailure":
|
|
799
|
+
case "com.amazonaws.secretsmanager#EncryptionFailure":
|
|
800
|
+
throw await de_EncryptionFailureRes(parsedOutput);
|
|
801
|
+
case "LimitExceededException":
|
|
802
|
+
case "com.amazonaws.secretsmanager#LimitExceededException":
|
|
803
|
+
throw await de_LimitExceededExceptionRes(parsedOutput);
|
|
804
|
+
case "MalformedPolicyDocumentException":
|
|
805
|
+
case "com.amazonaws.secretsmanager#MalformedPolicyDocumentException":
|
|
806
|
+
throw await de_MalformedPolicyDocumentExceptionRes(parsedOutput);
|
|
807
|
+
case "PreconditionNotMetException":
|
|
808
|
+
case "com.amazonaws.secretsmanager#PreconditionNotMetException":
|
|
809
|
+
throw await de_PreconditionNotMetExceptionRes(parsedOutput);
|
|
810
|
+
case "ResourceExistsException":
|
|
811
|
+
case "com.amazonaws.secretsmanager#ResourceExistsException":
|
|
812
|
+
throw await de_ResourceExistsExceptionRes(parsedOutput);
|
|
813
|
+
case "PublicPolicyException":
|
|
814
|
+
case "com.amazonaws.secretsmanager#PublicPolicyException":
|
|
815
|
+
throw await de_PublicPolicyExceptionRes(parsedOutput);
|
|
816
|
+
default:
|
|
817
|
+
const parsedBody = parsedOutput.body;
|
|
818
|
+
return throwDefaultError({
|
|
819
|
+
output,
|
|
820
|
+
parsedBody,
|
|
821
|
+
errorCode,
|
|
822
|
+
});
|
|
823
|
+
}
|
|
824
|
+
};
|
|
825
|
+
const de_DecryptionFailureRes = async (parsedOutput, context) => {
|
|
826
|
+
const body = parsedOutput.body;
|
|
827
|
+
const deserialized = smithyClient._json(body);
|
|
828
|
+
const exception = new DecryptionFailure({
|
|
829
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
830
|
+
...deserialized,
|
|
271
831
|
});
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
name = "InternalServiceError";
|
|
281
|
-
$fault = "server";
|
|
282
|
-
Message;
|
|
283
|
-
/**
|
|
284
|
-
* @internal
|
|
285
|
-
*/
|
|
286
|
-
constructor(opts) {
|
|
287
|
-
super({
|
|
288
|
-
name: "InternalServiceError",
|
|
289
|
-
$fault: "server",
|
|
290
|
-
...opts
|
|
832
|
+
return smithyClient.decorateServiceException(exception, body);
|
|
833
|
+
};
|
|
834
|
+
const de_EncryptionFailureRes = async (parsedOutput, context) => {
|
|
835
|
+
const body = parsedOutput.body;
|
|
836
|
+
const deserialized = smithyClient._json(body);
|
|
837
|
+
const exception = new EncryptionFailure({
|
|
838
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
839
|
+
...deserialized,
|
|
291
840
|
});
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
name = "InvalidNextTokenException";
|
|
301
|
-
$fault = "client";
|
|
302
|
-
Message;
|
|
303
|
-
/**
|
|
304
|
-
* @internal
|
|
305
|
-
*/
|
|
306
|
-
constructor(opts) {
|
|
307
|
-
super({
|
|
308
|
-
name: "InvalidNextTokenException",
|
|
309
|
-
$fault: "client",
|
|
310
|
-
...opts
|
|
841
|
+
return smithyClient.decorateServiceException(exception, body);
|
|
842
|
+
};
|
|
843
|
+
const de_InternalServiceErrorRes = async (parsedOutput, context) => {
|
|
844
|
+
const body = parsedOutput.body;
|
|
845
|
+
const deserialized = smithyClient._json(body);
|
|
846
|
+
const exception = new InternalServiceError({
|
|
847
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
848
|
+
...deserialized,
|
|
311
849
|
});
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
name = "InvalidParameterException";
|
|
321
|
-
$fault = "client";
|
|
322
|
-
Message;
|
|
323
|
-
/**
|
|
324
|
-
* @internal
|
|
325
|
-
*/
|
|
326
|
-
constructor(opts) {
|
|
327
|
-
super({
|
|
328
|
-
name: "InvalidParameterException",
|
|
329
|
-
$fault: "client",
|
|
330
|
-
...opts
|
|
850
|
+
return smithyClient.decorateServiceException(exception, body);
|
|
851
|
+
};
|
|
852
|
+
const de_InvalidNextTokenExceptionRes = async (parsedOutput, context) => {
|
|
853
|
+
const body = parsedOutput.body;
|
|
854
|
+
const deserialized = smithyClient._json(body);
|
|
855
|
+
const exception = new InvalidNextTokenException({
|
|
856
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
857
|
+
...deserialized,
|
|
331
858
|
});
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
name = "InvalidRequestException";
|
|
341
|
-
$fault = "client";
|
|
342
|
-
Message;
|
|
343
|
-
/**
|
|
344
|
-
* @internal
|
|
345
|
-
*/
|
|
346
|
-
constructor(opts) {
|
|
347
|
-
super({
|
|
348
|
-
name: "InvalidRequestException",
|
|
349
|
-
$fault: "client",
|
|
350
|
-
...opts
|
|
859
|
+
return smithyClient.decorateServiceException(exception, body);
|
|
860
|
+
};
|
|
861
|
+
const de_InvalidParameterExceptionRes = async (parsedOutput, context) => {
|
|
862
|
+
const body = parsedOutput.body;
|
|
863
|
+
const deserialized = smithyClient._json(body);
|
|
864
|
+
const exception = new InvalidParameterException({
|
|
865
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
866
|
+
...deserialized,
|
|
351
867
|
});
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
name = "ResourceNotFoundException";
|
|
361
|
-
$fault = "client";
|
|
362
|
-
Message;
|
|
363
|
-
/**
|
|
364
|
-
* @internal
|
|
365
|
-
*/
|
|
366
|
-
constructor(opts) {
|
|
367
|
-
super({
|
|
368
|
-
name: "ResourceNotFoundException",
|
|
369
|
-
$fault: "client",
|
|
370
|
-
...opts
|
|
868
|
+
return smithyClient.decorateServiceException(exception, body);
|
|
869
|
+
};
|
|
870
|
+
const de_InvalidRequestExceptionRes = async (parsedOutput, context) => {
|
|
871
|
+
const body = parsedOutput.body;
|
|
872
|
+
const deserialized = smithyClient._json(body);
|
|
873
|
+
const exception = new InvalidRequestException({
|
|
874
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
875
|
+
...deserialized,
|
|
371
876
|
});
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
};
|
|
381
|
-
var EncryptionFailure = class _EncryptionFailure extends SecretsManagerServiceException {
|
|
382
|
-
static {
|
|
383
|
-
__name(this, "EncryptionFailure");
|
|
384
|
-
}
|
|
385
|
-
name = "EncryptionFailure";
|
|
386
|
-
$fault = "client";
|
|
387
|
-
Message;
|
|
388
|
-
/**
|
|
389
|
-
* @internal
|
|
390
|
-
*/
|
|
391
|
-
constructor(opts) {
|
|
392
|
-
super({
|
|
393
|
-
name: "EncryptionFailure",
|
|
394
|
-
$fault: "client",
|
|
395
|
-
...opts
|
|
877
|
+
return smithyClient.decorateServiceException(exception, body);
|
|
878
|
+
};
|
|
879
|
+
const de_LimitExceededExceptionRes = async (parsedOutput, context) => {
|
|
880
|
+
const body = parsedOutput.body;
|
|
881
|
+
const deserialized = smithyClient._json(body);
|
|
882
|
+
const exception = new LimitExceededException({
|
|
883
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
884
|
+
...deserialized,
|
|
396
885
|
});
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
name = "LimitExceededException";
|
|
406
|
-
$fault = "client";
|
|
407
|
-
Message;
|
|
408
|
-
/**
|
|
409
|
-
* @internal
|
|
410
|
-
*/
|
|
411
|
-
constructor(opts) {
|
|
412
|
-
super({
|
|
413
|
-
name: "LimitExceededException",
|
|
414
|
-
$fault: "client",
|
|
415
|
-
...opts
|
|
886
|
+
return smithyClient.decorateServiceException(exception, body);
|
|
887
|
+
};
|
|
888
|
+
const de_MalformedPolicyDocumentExceptionRes = async (parsedOutput, context) => {
|
|
889
|
+
const body = parsedOutput.body;
|
|
890
|
+
const deserialized = smithyClient._json(body);
|
|
891
|
+
const exception = new MalformedPolicyDocumentException({
|
|
892
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
893
|
+
...deserialized,
|
|
416
894
|
});
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
name = "MalformedPolicyDocumentException";
|
|
426
|
-
$fault = "client";
|
|
427
|
-
Message;
|
|
428
|
-
/**
|
|
429
|
-
* @internal
|
|
430
|
-
*/
|
|
431
|
-
constructor(opts) {
|
|
432
|
-
super({
|
|
433
|
-
name: "MalformedPolicyDocumentException",
|
|
434
|
-
$fault: "client",
|
|
435
|
-
...opts
|
|
895
|
+
return smithyClient.decorateServiceException(exception, body);
|
|
896
|
+
};
|
|
897
|
+
const de_PreconditionNotMetExceptionRes = async (parsedOutput, context) => {
|
|
898
|
+
const body = parsedOutput.body;
|
|
899
|
+
const deserialized = smithyClient._json(body);
|
|
900
|
+
const exception = new PreconditionNotMetException({
|
|
901
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
902
|
+
...deserialized,
|
|
436
903
|
});
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
name = "PreconditionNotMetException";
|
|
446
|
-
$fault = "client";
|
|
447
|
-
Message;
|
|
448
|
-
/**
|
|
449
|
-
* @internal
|
|
450
|
-
*/
|
|
451
|
-
constructor(opts) {
|
|
452
|
-
super({
|
|
453
|
-
name: "PreconditionNotMetException",
|
|
454
|
-
$fault: "client",
|
|
455
|
-
...opts
|
|
904
|
+
return smithyClient.decorateServiceException(exception, body);
|
|
905
|
+
};
|
|
906
|
+
const de_PublicPolicyExceptionRes = async (parsedOutput, context) => {
|
|
907
|
+
const body = parsedOutput.body;
|
|
908
|
+
const deserialized = smithyClient._json(body);
|
|
909
|
+
const exception = new PublicPolicyException({
|
|
910
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
911
|
+
...deserialized,
|
|
456
912
|
});
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
name = "ResourceExistsException";
|
|
466
|
-
$fault = "client";
|
|
467
|
-
Message;
|
|
468
|
-
/**
|
|
469
|
-
* @internal
|
|
470
|
-
*/
|
|
471
|
-
constructor(opts) {
|
|
472
|
-
super({
|
|
473
|
-
name: "ResourceExistsException",
|
|
474
|
-
$fault: "client",
|
|
475
|
-
...opts
|
|
913
|
+
return smithyClient.decorateServiceException(exception, body);
|
|
914
|
+
};
|
|
915
|
+
const de_ResourceExistsExceptionRes = async (parsedOutput, context) => {
|
|
916
|
+
const body = parsedOutput.body;
|
|
917
|
+
const deserialized = smithyClient._json(body);
|
|
918
|
+
const exception = new ResourceExistsException({
|
|
919
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
920
|
+
...deserialized,
|
|
476
921
|
});
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
var PublicPolicyException = class _PublicPolicyException extends SecretsManagerServiceException {
|
|
486
|
-
static {
|
|
487
|
-
__name(this, "PublicPolicyException");
|
|
488
|
-
}
|
|
489
|
-
name = "PublicPolicyException";
|
|
490
|
-
$fault = "client";
|
|
491
|
-
Message;
|
|
492
|
-
/**
|
|
493
|
-
* @internal
|
|
494
|
-
*/
|
|
495
|
-
constructor(opts) {
|
|
496
|
-
super({
|
|
497
|
-
name: "PublicPolicyException",
|
|
498
|
-
$fault: "client",
|
|
499
|
-
...opts
|
|
922
|
+
return smithyClient.decorateServiceException(exception, body);
|
|
923
|
+
};
|
|
924
|
+
const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
|
|
925
|
+
const body = parsedOutput.body;
|
|
926
|
+
const deserialized = smithyClient._json(body);
|
|
927
|
+
const exception = new ResourceNotFoundException({
|
|
928
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
929
|
+
...deserialized,
|
|
500
930
|
});
|
|
501
|
-
|
|
502
|
-
this.Message = opts.Message;
|
|
503
|
-
}
|
|
504
|
-
};
|
|
505
|
-
var SecretValueEntryFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
506
|
-
...obj,
|
|
507
|
-
...obj.SecretBinary && { SecretBinary: import_smithy_client.SENSITIVE_STRING },
|
|
508
|
-
...obj.SecretString && { SecretString: import_smithy_client.SENSITIVE_STRING }
|
|
509
|
-
}), "SecretValueEntryFilterSensitiveLog");
|
|
510
|
-
var BatchGetSecretValueResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
511
|
-
...obj,
|
|
512
|
-
...obj.SecretValues && { SecretValues: obj.SecretValues.map((item) => SecretValueEntryFilterSensitiveLog(item)) }
|
|
513
|
-
}), "BatchGetSecretValueResponseFilterSensitiveLog");
|
|
514
|
-
var CreateSecretRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
515
|
-
...obj,
|
|
516
|
-
...obj.SecretBinary && { SecretBinary: import_smithy_client.SENSITIVE_STRING },
|
|
517
|
-
...obj.SecretString && { SecretString: import_smithy_client.SENSITIVE_STRING }
|
|
518
|
-
}), "CreateSecretRequestFilterSensitiveLog");
|
|
519
|
-
var GetRandomPasswordResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
520
|
-
...obj,
|
|
521
|
-
...obj.RandomPassword && { RandomPassword: import_smithy_client.SENSITIVE_STRING }
|
|
522
|
-
}), "GetRandomPasswordResponseFilterSensitiveLog");
|
|
523
|
-
var GetSecretValueResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
524
|
-
...obj,
|
|
525
|
-
...obj.SecretBinary && { SecretBinary: import_smithy_client.SENSITIVE_STRING },
|
|
526
|
-
...obj.SecretString && { SecretString: import_smithy_client.SENSITIVE_STRING }
|
|
527
|
-
}), "GetSecretValueResponseFilterSensitiveLog");
|
|
528
|
-
var PutSecretValueRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
529
|
-
...obj,
|
|
530
|
-
...obj.SecretBinary && { SecretBinary: import_smithy_client.SENSITIVE_STRING },
|
|
531
|
-
...obj.SecretString && { SecretString: import_smithy_client.SENSITIVE_STRING },
|
|
532
|
-
...obj.RotationToken && { RotationToken: import_smithy_client.SENSITIVE_STRING }
|
|
533
|
-
}), "PutSecretValueRequestFilterSensitiveLog");
|
|
534
|
-
var UpdateSecretRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
535
|
-
...obj,
|
|
536
|
-
...obj.SecretBinary && { SecretBinary: import_smithy_client.SENSITIVE_STRING },
|
|
537
|
-
...obj.SecretString && { SecretString: import_smithy_client.SENSITIVE_STRING }
|
|
538
|
-
}), "UpdateSecretRequestFilterSensitiveLog");
|
|
539
|
-
|
|
540
|
-
// src/protocols/Aws_json1_1.ts
|
|
541
|
-
var import_core2 = require("@aws-sdk/core");
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
var import_uuid = require("uuid");
|
|
545
|
-
var se_BatchGetSecretValueCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
546
|
-
const headers = sharedHeaders("BatchGetSecretValue");
|
|
547
|
-
let body;
|
|
548
|
-
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
549
|
-
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
550
|
-
}, "se_BatchGetSecretValueCommand");
|
|
551
|
-
var se_CancelRotateSecretCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
552
|
-
const headers = sharedHeaders("CancelRotateSecret");
|
|
553
|
-
let body;
|
|
554
|
-
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
555
|
-
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
556
|
-
}, "se_CancelRotateSecretCommand");
|
|
557
|
-
var se_CreateSecretCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
558
|
-
const headers = sharedHeaders("CreateSecret");
|
|
559
|
-
let body;
|
|
560
|
-
body = JSON.stringify(se_CreateSecretRequest(input, context));
|
|
561
|
-
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
562
|
-
}, "se_CreateSecretCommand");
|
|
563
|
-
var se_DeleteResourcePolicyCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
564
|
-
const headers = sharedHeaders("DeleteResourcePolicy");
|
|
565
|
-
let body;
|
|
566
|
-
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
567
|
-
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
568
|
-
}, "se_DeleteResourcePolicyCommand");
|
|
569
|
-
var se_DeleteSecretCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
570
|
-
const headers = sharedHeaders("DeleteSecret");
|
|
571
|
-
let body;
|
|
572
|
-
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
573
|
-
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
574
|
-
}, "se_DeleteSecretCommand");
|
|
575
|
-
var se_DescribeSecretCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
576
|
-
const headers = sharedHeaders("DescribeSecret");
|
|
577
|
-
let body;
|
|
578
|
-
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
579
|
-
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
580
|
-
}, "se_DescribeSecretCommand");
|
|
581
|
-
var se_GetRandomPasswordCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
582
|
-
const headers = sharedHeaders("GetRandomPassword");
|
|
583
|
-
let body;
|
|
584
|
-
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
585
|
-
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
586
|
-
}, "se_GetRandomPasswordCommand");
|
|
587
|
-
var se_GetResourcePolicyCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
588
|
-
const headers = sharedHeaders("GetResourcePolicy");
|
|
589
|
-
let body;
|
|
590
|
-
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
591
|
-
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
592
|
-
}, "se_GetResourcePolicyCommand");
|
|
593
|
-
var se_GetSecretValueCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
594
|
-
const headers = sharedHeaders("GetSecretValue");
|
|
595
|
-
let body;
|
|
596
|
-
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
597
|
-
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
598
|
-
}, "se_GetSecretValueCommand");
|
|
599
|
-
var se_ListSecretsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
600
|
-
const headers = sharedHeaders("ListSecrets");
|
|
601
|
-
let body;
|
|
602
|
-
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
603
|
-
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
604
|
-
}, "se_ListSecretsCommand");
|
|
605
|
-
var se_ListSecretVersionIdsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
606
|
-
const headers = sharedHeaders("ListSecretVersionIds");
|
|
607
|
-
let body;
|
|
608
|
-
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
609
|
-
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
610
|
-
}, "se_ListSecretVersionIdsCommand");
|
|
611
|
-
var se_PutResourcePolicyCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
612
|
-
const headers = sharedHeaders("PutResourcePolicy");
|
|
613
|
-
let body;
|
|
614
|
-
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
615
|
-
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
616
|
-
}, "se_PutResourcePolicyCommand");
|
|
617
|
-
var se_PutSecretValueCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
618
|
-
const headers = sharedHeaders("PutSecretValue");
|
|
619
|
-
let body;
|
|
620
|
-
body = JSON.stringify(se_PutSecretValueRequest(input, context));
|
|
621
|
-
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
622
|
-
}, "se_PutSecretValueCommand");
|
|
623
|
-
var se_RemoveRegionsFromReplicationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
624
|
-
const headers = sharedHeaders("RemoveRegionsFromReplication");
|
|
625
|
-
let body;
|
|
626
|
-
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
627
|
-
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
628
|
-
}, "se_RemoveRegionsFromReplicationCommand");
|
|
629
|
-
var se_ReplicateSecretToRegionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
630
|
-
const headers = sharedHeaders("ReplicateSecretToRegions");
|
|
631
|
-
let body;
|
|
632
|
-
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
633
|
-
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
634
|
-
}, "se_ReplicateSecretToRegionsCommand");
|
|
635
|
-
var se_RestoreSecretCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
636
|
-
const headers = sharedHeaders("RestoreSecret");
|
|
637
|
-
let body;
|
|
638
|
-
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
639
|
-
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
640
|
-
}, "se_RestoreSecretCommand");
|
|
641
|
-
var se_RotateSecretCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
642
|
-
const headers = sharedHeaders("RotateSecret");
|
|
643
|
-
let body;
|
|
644
|
-
body = JSON.stringify(se_RotateSecretRequest(input, context));
|
|
645
|
-
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
646
|
-
}, "se_RotateSecretCommand");
|
|
647
|
-
var se_StopReplicationToReplicaCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
648
|
-
const headers = sharedHeaders("StopReplicationToReplica");
|
|
649
|
-
let body;
|
|
650
|
-
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
651
|
-
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
652
|
-
}, "se_StopReplicationToReplicaCommand");
|
|
653
|
-
var se_TagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
654
|
-
const headers = sharedHeaders("TagResource");
|
|
655
|
-
let body;
|
|
656
|
-
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
657
|
-
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
658
|
-
}, "se_TagResourceCommand");
|
|
659
|
-
var se_UntagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
660
|
-
const headers = sharedHeaders("UntagResource");
|
|
661
|
-
let body;
|
|
662
|
-
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
663
|
-
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
664
|
-
}, "se_UntagResourceCommand");
|
|
665
|
-
var se_UpdateSecretCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
666
|
-
const headers = sharedHeaders("UpdateSecret");
|
|
667
|
-
let body;
|
|
668
|
-
body = JSON.stringify(se_UpdateSecretRequest(input, context));
|
|
669
|
-
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
670
|
-
}, "se_UpdateSecretCommand");
|
|
671
|
-
var se_UpdateSecretVersionStageCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
672
|
-
const headers = sharedHeaders("UpdateSecretVersionStage");
|
|
673
|
-
let body;
|
|
674
|
-
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
675
|
-
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
676
|
-
}, "se_UpdateSecretVersionStageCommand");
|
|
677
|
-
var se_ValidateResourcePolicyCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
678
|
-
const headers = sharedHeaders("ValidateResourcePolicy");
|
|
679
|
-
let body;
|
|
680
|
-
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
681
|
-
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
682
|
-
}, "se_ValidateResourcePolicyCommand");
|
|
683
|
-
var de_BatchGetSecretValueCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
684
|
-
if (output.statusCode >= 300) {
|
|
685
|
-
return de_CommandError(output, context);
|
|
686
|
-
}
|
|
687
|
-
const data = await (0, import_core2.parseJsonBody)(output.body, context);
|
|
688
|
-
let contents = {};
|
|
689
|
-
contents = de_BatchGetSecretValueResponse(data, context);
|
|
690
|
-
const response = {
|
|
691
|
-
$metadata: deserializeMetadata(output),
|
|
692
|
-
...contents
|
|
693
|
-
};
|
|
694
|
-
return response;
|
|
695
|
-
}, "de_BatchGetSecretValueCommand");
|
|
696
|
-
var de_CancelRotateSecretCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
697
|
-
if (output.statusCode >= 300) {
|
|
698
|
-
return de_CommandError(output, context);
|
|
699
|
-
}
|
|
700
|
-
const data = await (0, import_core2.parseJsonBody)(output.body, context);
|
|
701
|
-
let contents = {};
|
|
702
|
-
contents = (0, import_smithy_client._json)(data);
|
|
703
|
-
const response = {
|
|
704
|
-
$metadata: deserializeMetadata(output),
|
|
705
|
-
...contents
|
|
706
|
-
};
|
|
707
|
-
return response;
|
|
708
|
-
}, "de_CancelRotateSecretCommand");
|
|
709
|
-
var de_CreateSecretCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
710
|
-
if (output.statusCode >= 300) {
|
|
711
|
-
return de_CommandError(output, context);
|
|
712
|
-
}
|
|
713
|
-
const data = await (0, import_core2.parseJsonBody)(output.body, context);
|
|
714
|
-
let contents = {};
|
|
715
|
-
contents = de_CreateSecretResponse(data, context);
|
|
716
|
-
const response = {
|
|
717
|
-
$metadata: deserializeMetadata(output),
|
|
718
|
-
...contents
|
|
719
|
-
};
|
|
720
|
-
return response;
|
|
721
|
-
}, "de_CreateSecretCommand");
|
|
722
|
-
var de_DeleteResourcePolicyCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
723
|
-
if (output.statusCode >= 300) {
|
|
724
|
-
return de_CommandError(output, context);
|
|
725
|
-
}
|
|
726
|
-
const data = await (0, import_core2.parseJsonBody)(output.body, context);
|
|
727
|
-
let contents = {};
|
|
728
|
-
contents = (0, import_smithy_client._json)(data);
|
|
729
|
-
const response = {
|
|
730
|
-
$metadata: deserializeMetadata(output),
|
|
731
|
-
...contents
|
|
732
|
-
};
|
|
733
|
-
return response;
|
|
734
|
-
}, "de_DeleteResourcePolicyCommand");
|
|
735
|
-
var de_DeleteSecretCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
736
|
-
if (output.statusCode >= 300) {
|
|
737
|
-
return de_CommandError(output, context);
|
|
738
|
-
}
|
|
739
|
-
const data = await (0, import_core2.parseJsonBody)(output.body, context);
|
|
740
|
-
let contents = {};
|
|
741
|
-
contents = de_DeleteSecretResponse(data, context);
|
|
742
|
-
const response = {
|
|
743
|
-
$metadata: deserializeMetadata(output),
|
|
744
|
-
...contents
|
|
745
|
-
};
|
|
746
|
-
return response;
|
|
747
|
-
}, "de_DeleteSecretCommand");
|
|
748
|
-
var de_DescribeSecretCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
749
|
-
if (output.statusCode >= 300) {
|
|
750
|
-
return de_CommandError(output, context);
|
|
751
|
-
}
|
|
752
|
-
const data = await (0, import_core2.parseJsonBody)(output.body, context);
|
|
753
|
-
let contents = {};
|
|
754
|
-
contents = de_DescribeSecretResponse(data, context);
|
|
755
|
-
const response = {
|
|
756
|
-
$metadata: deserializeMetadata(output),
|
|
757
|
-
...contents
|
|
758
|
-
};
|
|
759
|
-
return response;
|
|
760
|
-
}, "de_DescribeSecretCommand");
|
|
761
|
-
var de_GetRandomPasswordCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
762
|
-
if (output.statusCode >= 300) {
|
|
763
|
-
return de_CommandError(output, context);
|
|
764
|
-
}
|
|
765
|
-
const data = await (0, import_core2.parseJsonBody)(output.body, context);
|
|
766
|
-
let contents = {};
|
|
767
|
-
contents = (0, import_smithy_client._json)(data);
|
|
768
|
-
const response = {
|
|
769
|
-
$metadata: deserializeMetadata(output),
|
|
770
|
-
...contents
|
|
771
|
-
};
|
|
772
|
-
return response;
|
|
773
|
-
}, "de_GetRandomPasswordCommand");
|
|
774
|
-
var de_GetResourcePolicyCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
775
|
-
if (output.statusCode >= 300) {
|
|
776
|
-
return de_CommandError(output, context);
|
|
777
|
-
}
|
|
778
|
-
const data = await (0, import_core2.parseJsonBody)(output.body, context);
|
|
779
|
-
let contents = {};
|
|
780
|
-
contents = (0, import_smithy_client._json)(data);
|
|
781
|
-
const response = {
|
|
782
|
-
$metadata: deserializeMetadata(output),
|
|
783
|
-
...contents
|
|
784
|
-
};
|
|
785
|
-
return response;
|
|
786
|
-
}, "de_GetResourcePolicyCommand");
|
|
787
|
-
var de_GetSecretValueCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
788
|
-
if (output.statusCode >= 300) {
|
|
789
|
-
return de_CommandError(output, context);
|
|
790
|
-
}
|
|
791
|
-
const data = await (0, import_core2.parseJsonBody)(output.body, context);
|
|
792
|
-
let contents = {};
|
|
793
|
-
contents = de_GetSecretValueResponse(data, context);
|
|
794
|
-
const response = {
|
|
795
|
-
$metadata: deserializeMetadata(output),
|
|
796
|
-
...contents
|
|
797
|
-
};
|
|
798
|
-
return response;
|
|
799
|
-
}, "de_GetSecretValueCommand");
|
|
800
|
-
var de_ListSecretsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
801
|
-
if (output.statusCode >= 300) {
|
|
802
|
-
return de_CommandError(output, context);
|
|
803
|
-
}
|
|
804
|
-
const data = await (0, import_core2.parseJsonBody)(output.body, context);
|
|
805
|
-
let contents = {};
|
|
806
|
-
contents = de_ListSecretsResponse(data, context);
|
|
807
|
-
const response = {
|
|
808
|
-
$metadata: deserializeMetadata(output),
|
|
809
|
-
...contents
|
|
810
|
-
};
|
|
811
|
-
return response;
|
|
812
|
-
}, "de_ListSecretsCommand");
|
|
813
|
-
var de_ListSecretVersionIdsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
814
|
-
if (output.statusCode >= 300) {
|
|
815
|
-
return de_CommandError(output, context);
|
|
816
|
-
}
|
|
817
|
-
const data = await (0, import_core2.parseJsonBody)(output.body, context);
|
|
818
|
-
let contents = {};
|
|
819
|
-
contents = de_ListSecretVersionIdsResponse(data, context);
|
|
820
|
-
const response = {
|
|
821
|
-
$metadata: deserializeMetadata(output),
|
|
822
|
-
...contents
|
|
823
|
-
};
|
|
824
|
-
return response;
|
|
825
|
-
}, "de_ListSecretVersionIdsCommand");
|
|
826
|
-
var de_PutResourcePolicyCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
827
|
-
if (output.statusCode >= 300) {
|
|
828
|
-
return de_CommandError(output, context);
|
|
829
|
-
}
|
|
830
|
-
const data = await (0, import_core2.parseJsonBody)(output.body, context);
|
|
831
|
-
let contents = {};
|
|
832
|
-
contents = (0, import_smithy_client._json)(data);
|
|
833
|
-
const response = {
|
|
834
|
-
$metadata: deserializeMetadata(output),
|
|
835
|
-
...contents
|
|
836
|
-
};
|
|
837
|
-
return response;
|
|
838
|
-
}, "de_PutResourcePolicyCommand");
|
|
839
|
-
var de_PutSecretValueCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
840
|
-
if (output.statusCode >= 300) {
|
|
841
|
-
return de_CommandError(output, context);
|
|
842
|
-
}
|
|
843
|
-
const data = await (0, import_core2.parseJsonBody)(output.body, context);
|
|
844
|
-
let contents = {};
|
|
845
|
-
contents = (0, import_smithy_client._json)(data);
|
|
846
|
-
const response = {
|
|
847
|
-
$metadata: deserializeMetadata(output),
|
|
848
|
-
...contents
|
|
849
|
-
};
|
|
850
|
-
return response;
|
|
851
|
-
}, "de_PutSecretValueCommand");
|
|
852
|
-
var de_RemoveRegionsFromReplicationCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
853
|
-
if (output.statusCode >= 300) {
|
|
854
|
-
return de_CommandError(output, context);
|
|
855
|
-
}
|
|
856
|
-
const data = await (0, import_core2.parseJsonBody)(output.body, context);
|
|
857
|
-
let contents = {};
|
|
858
|
-
contents = de_RemoveRegionsFromReplicationResponse(data, context);
|
|
859
|
-
const response = {
|
|
860
|
-
$metadata: deserializeMetadata(output),
|
|
861
|
-
...contents
|
|
862
|
-
};
|
|
863
|
-
return response;
|
|
864
|
-
}, "de_RemoveRegionsFromReplicationCommand");
|
|
865
|
-
var de_ReplicateSecretToRegionsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
866
|
-
if (output.statusCode >= 300) {
|
|
867
|
-
return de_CommandError(output, context);
|
|
868
|
-
}
|
|
869
|
-
const data = await (0, import_core2.parseJsonBody)(output.body, context);
|
|
870
|
-
let contents = {};
|
|
871
|
-
contents = de_ReplicateSecretToRegionsResponse(data, context);
|
|
872
|
-
const response = {
|
|
873
|
-
$metadata: deserializeMetadata(output),
|
|
874
|
-
...contents
|
|
875
|
-
};
|
|
876
|
-
return response;
|
|
877
|
-
}, "de_ReplicateSecretToRegionsCommand");
|
|
878
|
-
var de_RestoreSecretCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
879
|
-
if (output.statusCode >= 300) {
|
|
880
|
-
return de_CommandError(output, context);
|
|
881
|
-
}
|
|
882
|
-
const data = await (0, import_core2.parseJsonBody)(output.body, context);
|
|
883
|
-
let contents = {};
|
|
884
|
-
contents = (0, import_smithy_client._json)(data);
|
|
885
|
-
const response = {
|
|
886
|
-
$metadata: deserializeMetadata(output),
|
|
887
|
-
...contents
|
|
888
|
-
};
|
|
889
|
-
return response;
|
|
890
|
-
}, "de_RestoreSecretCommand");
|
|
891
|
-
var de_RotateSecretCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
892
|
-
if (output.statusCode >= 300) {
|
|
893
|
-
return de_CommandError(output, context);
|
|
894
|
-
}
|
|
895
|
-
const data = await (0, import_core2.parseJsonBody)(output.body, context);
|
|
896
|
-
let contents = {};
|
|
897
|
-
contents = (0, import_smithy_client._json)(data);
|
|
898
|
-
const response = {
|
|
899
|
-
$metadata: deserializeMetadata(output),
|
|
900
|
-
...contents
|
|
901
|
-
};
|
|
902
|
-
return response;
|
|
903
|
-
}, "de_RotateSecretCommand");
|
|
904
|
-
var de_StopReplicationToReplicaCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
905
|
-
if (output.statusCode >= 300) {
|
|
906
|
-
return de_CommandError(output, context);
|
|
907
|
-
}
|
|
908
|
-
const data = await (0, import_core2.parseJsonBody)(output.body, context);
|
|
909
|
-
let contents = {};
|
|
910
|
-
contents = (0, import_smithy_client._json)(data);
|
|
911
|
-
const response = {
|
|
912
|
-
$metadata: deserializeMetadata(output),
|
|
913
|
-
...contents
|
|
914
|
-
};
|
|
915
|
-
return response;
|
|
916
|
-
}, "de_StopReplicationToReplicaCommand");
|
|
917
|
-
var de_TagResourceCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
918
|
-
if (output.statusCode >= 300) {
|
|
919
|
-
return de_CommandError(output, context);
|
|
920
|
-
}
|
|
921
|
-
await (0, import_smithy_client.collectBody)(output.body, context);
|
|
922
|
-
const response = {
|
|
923
|
-
$metadata: deserializeMetadata(output)
|
|
924
|
-
};
|
|
925
|
-
return response;
|
|
926
|
-
}, "de_TagResourceCommand");
|
|
927
|
-
var de_UntagResourceCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
928
|
-
if (output.statusCode >= 300) {
|
|
929
|
-
return de_CommandError(output, context);
|
|
930
|
-
}
|
|
931
|
-
await (0, import_smithy_client.collectBody)(output.body, context);
|
|
932
|
-
const response = {
|
|
933
|
-
$metadata: deserializeMetadata(output)
|
|
934
|
-
};
|
|
935
|
-
return response;
|
|
936
|
-
}, "de_UntagResourceCommand");
|
|
937
|
-
var de_UpdateSecretCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
938
|
-
if (output.statusCode >= 300) {
|
|
939
|
-
return de_CommandError(output, context);
|
|
940
|
-
}
|
|
941
|
-
const data = await (0, import_core2.parseJsonBody)(output.body, context);
|
|
942
|
-
let contents = {};
|
|
943
|
-
contents = (0, import_smithy_client._json)(data);
|
|
944
|
-
const response = {
|
|
945
|
-
$metadata: deserializeMetadata(output),
|
|
946
|
-
...contents
|
|
947
|
-
};
|
|
948
|
-
return response;
|
|
949
|
-
}, "de_UpdateSecretCommand");
|
|
950
|
-
var de_UpdateSecretVersionStageCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
951
|
-
if (output.statusCode >= 300) {
|
|
952
|
-
return de_CommandError(output, context);
|
|
953
|
-
}
|
|
954
|
-
const data = await (0, import_core2.parseJsonBody)(output.body, context);
|
|
955
|
-
let contents = {};
|
|
956
|
-
contents = (0, import_smithy_client._json)(data);
|
|
957
|
-
const response = {
|
|
958
|
-
$metadata: deserializeMetadata(output),
|
|
959
|
-
...contents
|
|
960
|
-
};
|
|
961
|
-
return response;
|
|
962
|
-
}, "de_UpdateSecretVersionStageCommand");
|
|
963
|
-
var de_ValidateResourcePolicyCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
964
|
-
if (output.statusCode >= 300) {
|
|
965
|
-
return de_CommandError(output, context);
|
|
966
|
-
}
|
|
967
|
-
const data = await (0, import_core2.parseJsonBody)(output.body, context);
|
|
968
|
-
let contents = {};
|
|
969
|
-
contents = (0, import_smithy_client._json)(data);
|
|
970
|
-
const response = {
|
|
971
|
-
$metadata: deserializeMetadata(output),
|
|
972
|
-
...contents
|
|
973
|
-
};
|
|
974
|
-
return response;
|
|
975
|
-
}, "de_ValidateResourcePolicyCommand");
|
|
976
|
-
var de_CommandError = /* @__PURE__ */ __name(async (output, context) => {
|
|
977
|
-
const parsedOutput = {
|
|
978
|
-
...output,
|
|
979
|
-
body: await (0, import_core2.parseJsonErrorBody)(output.body, context)
|
|
980
|
-
};
|
|
981
|
-
const errorCode = (0, import_core2.loadRestJsonErrorCode)(output, parsedOutput.body);
|
|
982
|
-
switch (errorCode) {
|
|
983
|
-
case "DecryptionFailure":
|
|
984
|
-
case "com.amazonaws.secretsmanager#DecryptionFailure":
|
|
985
|
-
throw await de_DecryptionFailureRes(parsedOutput, context);
|
|
986
|
-
case "InternalServiceError":
|
|
987
|
-
case "com.amazonaws.secretsmanager#InternalServiceError":
|
|
988
|
-
throw await de_InternalServiceErrorRes(parsedOutput, context);
|
|
989
|
-
case "InvalidNextTokenException":
|
|
990
|
-
case "com.amazonaws.secretsmanager#InvalidNextTokenException":
|
|
991
|
-
throw await de_InvalidNextTokenExceptionRes(parsedOutput, context);
|
|
992
|
-
case "InvalidParameterException":
|
|
993
|
-
case "com.amazonaws.secretsmanager#InvalidParameterException":
|
|
994
|
-
throw await de_InvalidParameterExceptionRes(parsedOutput, context);
|
|
995
|
-
case "InvalidRequestException":
|
|
996
|
-
case "com.amazonaws.secretsmanager#InvalidRequestException":
|
|
997
|
-
throw await de_InvalidRequestExceptionRes(parsedOutput, context);
|
|
998
|
-
case "ResourceNotFoundException":
|
|
999
|
-
case "com.amazonaws.secretsmanager#ResourceNotFoundException":
|
|
1000
|
-
throw await de_ResourceNotFoundExceptionRes(parsedOutput, context);
|
|
1001
|
-
case "EncryptionFailure":
|
|
1002
|
-
case "com.amazonaws.secretsmanager#EncryptionFailure":
|
|
1003
|
-
throw await de_EncryptionFailureRes(parsedOutput, context);
|
|
1004
|
-
case "LimitExceededException":
|
|
1005
|
-
case "com.amazonaws.secretsmanager#LimitExceededException":
|
|
1006
|
-
throw await de_LimitExceededExceptionRes(parsedOutput, context);
|
|
1007
|
-
case "MalformedPolicyDocumentException":
|
|
1008
|
-
case "com.amazonaws.secretsmanager#MalformedPolicyDocumentException":
|
|
1009
|
-
throw await de_MalformedPolicyDocumentExceptionRes(parsedOutput, context);
|
|
1010
|
-
case "PreconditionNotMetException":
|
|
1011
|
-
case "com.amazonaws.secretsmanager#PreconditionNotMetException":
|
|
1012
|
-
throw await de_PreconditionNotMetExceptionRes(parsedOutput, context);
|
|
1013
|
-
case "ResourceExistsException":
|
|
1014
|
-
case "com.amazonaws.secretsmanager#ResourceExistsException":
|
|
1015
|
-
throw await de_ResourceExistsExceptionRes(parsedOutput, context);
|
|
1016
|
-
case "PublicPolicyException":
|
|
1017
|
-
case "com.amazonaws.secretsmanager#PublicPolicyException":
|
|
1018
|
-
throw await de_PublicPolicyExceptionRes(parsedOutput, context);
|
|
1019
|
-
default:
|
|
1020
|
-
const parsedBody = parsedOutput.body;
|
|
1021
|
-
return throwDefaultError({
|
|
1022
|
-
output,
|
|
1023
|
-
parsedBody,
|
|
1024
|
-
errorCode
|
|
1025
|
-
});
|
|
1026
|
-
}
|
|
1027
|
-
}, "de_CommandError");
|
|
1028
|
-
var de_DecryptionFailureRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
|
|
1029
|
-
const body = parsedOutput.body;
|
|
1030
|
-
const deserialized = (0, import_smithy_client._json)(body);
|
|
1031
|
-
const exception = new DecryptionFailure({
|
|
1032
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1033
|
-
...deserialized
|
|
1034
|
-
});
|
|
1035
|
-
return (0, import_smithy_client.decorateServiceException)(exception, body);
|
|
1036
|
-
}, "de_DecryptionFailureRes");
|
|
1037
|
-
var de_EncryptionFailureRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
|
|
1038
|
-
const body = parsedOutput.body;
|
|
1039
|
-
const deserialized = (0, import_smithy_client._json)(body);
|
|
1040
|
-
const exception = new EncryptionFailure({
|
|
1041
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1042
|
-
...deserialized
|
|
1043
|
-
});
|
|
1044
|
-
return (0, import_smithy_client.decorateServiceException)(exception, body);
|
|
1045
|
-
}, "de_EncryptionFailureRes");
|
|
1046
|
-
var de_InternalServiceErrorRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
|
|
1047
|
-
const body = parsedOutput.body;
|
|
1048
|
-
const deserialized = (0, import_smithy_client._json)(body);
|
|
1049
|
-
const exception = new InternalServiceError({
|
|
1050
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1051
|
-
...deserialized
|
|
1052
|
-
});
|
|
1053
|
-
return (0, import_smithy_client.decorateServiceException)(exception, body);
|
|
1054
|
-
}, "de_InternalServiceErrorRes");
|
|
1055
|
-
var de_InvalidNextTokenExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
|
|
1056
|
-
const body = parsedOutput.body;
|
|
1057
|
-
const deserialized = (0, import_smithy_client._json)(body);
|
|
1058
|
-
const exception = new InvalidNextTokenException({
|
|
1059
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1060
|
-
...deserialized
|
|
1061
|
-
});
|
|
1062
|
-
return (0, import_smithy_client.decorateServiceException)(exception, body);
|
|
1063
|
-
}, "de_InvalidNextTokenExceptionRes");
|
|
1064
|
-
var de_InvalidParameterExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
|
|
1065
|
-
const body = parsedOutput.body;
|
|
1066
|
-
const deserialized = (0, import_smithy_client._json)(body);
|
|
1067
|
-
const exception = new InvalidParameterException({
|
|
1068
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1069
|
-
...deserialized
|
|
1070
|
-
});
|
|
1071
|
-
return (0, import_smithy_client.decorateServiceException)(exception, body);
|
|
1072
|
-
}, "de_InvalidParameterExceptionRes");
|
|
1073
|
-
var de_InvalidRequestExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
|
|
1074
|
-
const body = parsedOutput.body;
|
|
1075
|
-
const deserialized = (0, import_smithy_client._json)(body);
|
|
1076
|
-
const exception = new InvalidRequestException({
|
|
1077
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1078
|
-
...deserialized
|
|
1079
|
-
});
|
|
1080
|
-
return (0, import_smithy_client.decorateServiceException)(exception, body);
|
|
1081
|
-
}, "de_InvalidRequestExceptionRes");
|
|
1082
|
-
var de_LimitExceededExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
|
|
1083
|
-
const body = parsedOutput.body;
|
|
1084
|
-
const deserialized = (0, import_smithy_client._json)(body);
|
|
1085
|
-
const exception = new LimitExceededException({
|
|
1086
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1087
|
-
...deserialized
|
|
1088
|
-
});
|
|
1089
|
-
return (0, import_smithy_client.decorateServiceException)(exception, body);
|
|
1090
|
-
}, "de_LimitExceededExceptionRes");
|
|
1091
|
-
var de_MalformedPolicyDocumentExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
|
|
1092
|
-
const body = parsedOutput.body;
|
|
1093
|
-
const deserialized = (0, import_smithy_client._json)(body);
|
|
1094
|
-
const exception = new MalformedPolicyDocumentException({
|
|
1095
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1096
|
-
...deserialized
|
|
1097
|
-
});
|
|
1098
|
-
return (0, import_smithy_client.decorateServiceException)(exception, body);
|
|
1099
|
-
}, "de_MalformedPolicyDocumentExceptionRes");
|
|
1100
|
-
var de_PreconditionNotMetExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
|
|
1101
|
-
const body = parsedOutput.body;
|
|
1102
|
-
const deserialized = (0, import_smithy_client._json)(body);
|
|
1103
|
-
const exception = new PreconditionNotMetException({
|
|
1104
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1105
|
-
...deserialized
|
|
1106
|
-
});
|
|
1107
|
-
return (0, import_smithy_client.decorateServiceException)(exception, body);
|
|
1108
|
-
}, "de_PreconditionNotMetExceptionRes");
|
|
1109
|
-
var de_PublicPolicyExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
|
|
1110
|
-
const body = parsedOutput.body;
|
|
1111
|
-
const deserialized = (0, import_smithy_client._json)(body);
|
|
1112
|
-
const exception = new PublicPolicyException({
|
|
1113
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1114
|
-
...deserialized
|
|
1115
|
-
});
|
|
1116
|
-
return (0, import_smithy_client.decorateServiceException)(exception, body);
|
|
1117
|
-
}, "de_PublicPolicyExceptionRes");
|
|
1118
|
-
var de_ResourceExistsExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
|
|
1119
|
-
const body = parsedOutput.body;
|
|
1120
|
-
const deserialized = (0, import_smithy_client._json)(body);
|
|
1121
|
-
const exception = new ResourceExistsException({
|
|
1122
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1123
|
-
...deserialized
|
|
1124
|
-
});
|
|
1125
|
-
return (0, import_smithy_client.decorateServiceException)(exception, body);
|
|
1126
|
-
}, "de_ResourceExistsExceptionRes");
|
|
1127
|
-
var de_ResourceNotFoundExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
|
|
1128
|
-
const body = parsedOutput.body;
|
|
1129
|
-
const deserialized = (0, import_smithy_client._json)(body);
|
|
1130
|
-
const exception = new ResourceNotFoundException({
|
|
1131
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1132
|
-
...deserialized
|
|
1133
|
-
});
|
|
1134
|
-
return (0, import_smithy_client.decorateServiceException)(exception, body);
|
|
1135
|
-
}, "de_ResourceNotFoundExceptionRes");
|
|
1136
|
-
var se_CreateSecretRequest = /* @__PURE__ */ __name((input, context) => {
|
|
1137
|
-
return (0, import_smithy_client.take)(input, {
|
|
1138
|
-
AddReplicaRegions: import_smithy_client._json,
|
|
1139
|
-
ClientRequestToken: [true, (_) => _ ?? (0, import_uuid.v4)()],
|
|
1140
|
-
Description: [],
|
|
1141
|
-
ForceOverwriteReplicaSecret: [],
|
|
1142
|
-
KmsKeyId: [],
|
|
1143
|
-
Name: [],
|
|
1144
|
-
SecretBinary: context.base64Encoder,
|
|
1145
|
-
SecretString: [],
|
|
1146
|
-
Tags: import_smithy_client._json
|
|
1147
|
-
});
|
|
1148
|
-
}, "se_CreateSecretRequest");
|
|
1149
|
-
var se_PutSecretValueRequest = /* @__PURE__ */ __name((input, context) => {
|
|
1150
|
-
return (0, import_smithy_client.take)(input, {
|
|
1151
|
-
ClientRequestToken: [true, (_) => _ ?? (0, import_uuid.v4)()],
|
|
1152
|
-
RotationToken: [],
|
|
1153
|
-
SecretBinary: context.base64Encoder,
|
|
1154
|
-
SecretId: [],
|
|
1155
|
-
SecretString: [],
|
|
1156
|
-
VersionStages: import_smithy_client._json
|
|
1157
|
-
});
|
|
1158
|
-
}, "se_PutSecretValueRequest");
|
|
1159
|
-
var se_RotateSecretRequest = /* @__PURE__ */ __name((input, context) => {
|
|
1160
|
-
return (0, import_smithy_client.take)(input, {
|
|
1161
|
-
ClientRequestToken: [true, (_) => _ ?? (0, import_uuid.v4)()],
|
|
1162
|
-
RotateImmediately: [],
|
|
1163
|
-
RotationLambdaARN: [],
|
|
1164
|
-
RotationRules: import_smithy_client._json,
|
|
1165
|
-
SecretId: []
|
|
1166
|
-
});
|
|
1167
|
-
}, "se_RotateSecretRequest");
|
|
1168
|
-
var se_UpdateSecretRequest = /* @__PURE__ */ __name((input, context) => {
|
|
1169
|
-
return (0, import_smithy_client.take)(input, {
|
|
1170
|
-
ClientRequestToken: [true, (_) => _ ?? (0, import_uuid.v4)()],
|
|
1171
|
-
Description: [],
|
|
1172
|
-
KmsKeyId: [],
|
|
1173
|
-
SecretBinary: context.base64Encoder,
|
|
1174
|
-
SecretId: [],
|
|
1175
|
-
SecretString: []
|
|
1176
|
-
});
|
|
1177
|
-
}, "se_UpdateSecretRequest");
|
|
1178
|
-
var de_BatchGetSecretValueResponse = /* @__PURE__ */ __name((output, context) => {
|
|
1179
|
-
return (0, import_smithy_client.take)(output, {
|
|
1180
|
-
Errors: import_smithy_client._json,
|
|
1181
|
-
NextToken: import_smithy_client.expectString,
|
|
1182
|
-
SecretValues: /* @__PURE__ */ __name((_) => de_SecretValuesType(_, context), "SecretValues")
|
|
1183
|
-
});
|
|
1184
|
-
}, "de_BatchGetSecretValueResponse");
|
|
1185
|
-
var de_CreateSecretResponse = /* @__PURE__ */ __name((output, context) => {
|
|
1186
|
-
return (0, import_smithy_client.take)(output, {
|
|
1187
|
-
ARN: import_smithy_client.expectString,
|
|
1188
|
-
Name: import_smithy_client.expectString,
|
|
1189
|
-
ReplicationStatus: /* @__PURE__ */ __name((_) => de_ReplicationStatusListType(_, context), "ReplicationStatus"),
|
|
1190
|
-
VersionId: import_smithy_client.expectString
|
|
1191
|
-
});
|
|
1192
|
-
}, "de_CreateSecretResponse");
|
|
1193
|
-
var de_DeleteSecretResponse = /* @__PURE__ */ __name((output, context) => {
|
|
1194
|
-
return (0, import_smithy_client.take)(output, {
|
|
1195
|
-
ARN: import_smithy_client.expectString,
|
|
1196
|
-
DeletionDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "DeletionDate"),
|
|
1197
|
-
Name: import_smithy_client.expectString
|
|
1198
|
-
});
|
|
1199
|
-
}, "de_DeleteSecretResponse");
|
|
1200
|
-
var de_DescribeSecretResponse = /* @__PURE__ */ __name((output, context) => {
|
|
1201
|
-
return (0, import_smithy_client.take)(output, {
|
|
1202
|
-
ARN: import_smithy_client.expectString,
|
|
1203
|
-
CreatedDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "CreatedDate"),
|
|
1204
|
-
DeletedDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "DeletedDate"),
|
|
1205
|
-
Description: import_smithy_client.expectString,
|
|
1206
|
-
KmsKeyId: import_smithy_client.expectString,
|
|
1207
|
-
LastAccessedDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastAccessedDate"),
|
|
1208
|
-
LastChangedDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastChangedDate"),
|
|
1209
|
-
LastRotatedDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastRotatedDate"),
|
|
1210
|
-
Name: import_smithy_client.expectString,
|
|
1211
|
-
NextRotationDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "NextRotationDate"),
|
|
1212
|
-
OwningService: import_smithy_client.expectString,
|
|
1213
|
-
PrimaryRegion: import_smithy_client.expectString,
|
|
1214
|
-
ReplicationStatus: /* @__PURE__ */ __name((_) => de_ReplicationStatusListType(_, context), "ReplicationStatus"),
|
|
1215
|
-
RotationEnabled: import_smithy_client.expectBoolean,
|
|
1216
|
-
RotationLambdaARN: import_smithy_client.expectString,
|
|
1217
|
-
RotationRules: import_smithy_client._json,
|
|
1218
|
-
Tags: import_smithy_client._json,
|
|
1219
|
-
VersionIdsToStages: import_smithy_client._json
|
|
1220
|
-
});
|
|
1221
|
-
}, "de_DescribeSecretResponse");
|
|
1222
|
-
var de_GetSecretValueResponse = /* @__PURE__ */ __name((output, context) => {
|
|
1223
|
-
return (0, import_smithy_client.take)(output, {
|
|
1224
|
-
ARN: import_smithy_client.expectString,
|
|
1225
|
-
CreatedDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "CreatedDate"),
|
|
1226
|
-
Name: import_smithy_client.expectString,
|
|
1227
|
-
SecretBinary: context.base64Decoder,
|
|
1228
|
-
SecretString: import_smithy_client.expectString,
|
|
1229
|
-
VersionId: import_smithy_client.expectString,
|
|
1230
|
-
VersionStages: import_smithy_client._json
|
|
1231
|
-
});
|
|
1232
|
-
}, "de_GetSecretValueResponse");
|
|
1233
|
-
var de_ListSecretsResponse = /* @__PURE__ */ __name((output, context) => {
|
|
1234
|
-
return (0, import_smithy_client.take)(output, {
|
|
1235
|
-
NextToken: import_smithy_client.expectString,
|
|
1236
|
-
SecretList: /* @__PURE__ */ __name((_) => de_SecretListType(_, context), "SecretList")
|
|
1237
|
-
});
|
|
1238
|
-
}, "de_ListSecretsResponse");
|
|
1239
|
-
var de_ListSecretVersionIdsResponse = /* @__PURE__ */ __name((output, context) => {
|
|
1240
|
-
return (0, import_smithy_client.take)(output, {
|
|
1241
|
-
ARN: import_smithy_client.expectString,
|
|
1242
|
-
Name: import_smithy_client.expectString,
|
|
1243
|
-
NextToken: import_smithy_client.expectString,
|
|
1244
|
-
Versions: /* @__PURE__ */ __name((_) => de_SecretVersionsListType(_, context), "Versions")
|
|
1245
|
-
});
|
|
1246
|
-
}, "de_ListSecretVersionIdsResponse");
|
|
1247
|
-
var de_RemoveRegionsFromReplicationResponse = /* @__PURE__ */ __name((output, context) => {
|
|
1248
|
-
return (0, import_smithy_client.take)(output, {
|
|
1249
|
-
ARN: import_smithy_client.expectString,
|
|
1250
|
-
ReplicationStatus: /* @__PURE__ */ __name((_) => de_ReplicationStatusListType(_, context), "ReplicationStatus")
|
|
1251
|
-
});
|
|
1252
|
-
}, "de_RemoveRegionsFromReplicationResponse");
|
|
1253
|
-
var de_ReplicateSecretToRegionsResponse = /* @__PURE__ */ __name((output, context) => {
|
|
1254
|
-
return (0, import_smithy_client.take)(output, {
|
|
1255
|
-
ARN: import_smithy_client.expectString,
|
|
1256
|
-
ReplicationStatus: /* @__PURE__ */ __name((_) => de_ReplicationStatusListType(_, context), "ReplicationStatus")
|
|
1257
|
-
});
|
|
1258
|
-
}, "de_ReplicateSecretToRegionsResponse");
|
|
1259
|
-
var de_ReplicationStatusListType = /* @__PURE__ */ __name((output, context) => {
|
|
1260
|
-
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
1261
|
-
return de_ReplicationStatusType(entry, context);
|
|
1262
|
-
});
|
|
1263
|
-
return retVal;
|
|
1264
|
-
}, "de_ReplicationStatusListType");
|
|
1265
|
-
var de_ReplicationStatusType = /* @__PURE__ */ __name((output, context) => {
|
|
1266
|
-
return (0, import_smithy_client.take)(output, {
|
|
1267
|
-
KmsKeyId: import_smithy_client.expectString,
|
|
1268
|
-
LastAccessedDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastAccessedDate"),
|
|
1269
|
-
Region: import_smithy_client.expectString,
|
|
1270
|
-
Status: import_smithy_client.expectString,
|
|
1271
|
-
StatusMessage: import_smithy_client.expectString
|
|
1272
|
-
});
|
|
1273
|
-
}, "de_ReplicationStatusType");
|
|
1274
|
-
var de_SecretListEntry = /* @__PURE__ */ __name((output, context) => {
|
|
1275
|
-
return (0, import_smithy_client.take)(output, {
|
|
1276
|
-
ARN: import_smithy_client.expectString,
|
|
1277
|
-
CreatedDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "CreatedDate"),
|
|
1278
|
-
DeletedDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "DeletedDate"),
|
|
1279
|
-
Description: import_smithy_client.expectString,
|
|
1280
|
-
KmsKeyId: import_smithy_client.expectString,
|
|
1281
|
-
LastAccessedDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastAccessedDate"),
|
|
1282
|
-
LastChangedDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastChangedDate"),
|
|
1283
|
-
LastRotatedDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastRotatedDate"),
|
|
1284
|
-
Name: import_smithy_client.expectString,
|
|
1285
|
-
NextRotationDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "NextRotationDate"),
|
|
1286
|
-
OwningService: import_smithy_client.expectString,
|
|
1287
|
-
PrimaryRegion: import_smithy_client.expectString,
|
|
1288
|
-
RotationEnabled: import_smithy_client.expectBoolean,
|
|
1289
|
-
RotationLambdaARN: import_smithy_client.expectString,
|
|
1290
|
-
RotationRules: import_smithy_client._json,
|
|
1291
|
-
SecretVersionsToStages: import_smithy_client._json,
|
|
1292
|
-
Tags: import_smithy_client._json
|
|
1293
|
-
});
|
|
1294
|
-
}, "de_SecretListEntry");
|
|
1295
|
-
var de_SecretListType = /* @__PURE__ */ __name((output, context) => {
|
|
1296
|
-
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
1297
|
-
return de_SecretListEntry(entry, context);
|
|
1298
|
-
});
|
|
1299
|
-
return retVal;
|
|
1300
|
-
}, "de_SecretListType");
|
|
1301
|
-
var de_SecretValueEntry = /* @__PURE__ */ __name((output, context) => {
|
|
1302
|
-
return (0, import_smithy_client.take)(output, {
|
|
1303
|
-
ARN: import_smithy_client.expectString,
|
|
1304
|
-
CreatedDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "CreatedDate"),
|
|
1305
|
-
Name: import_smithy_client.expectString,
|
|
1306
|
-
SecretBinary: context.base64Decoder,
|
|
1307
|
-
SecretString: import_smithy_client.expectString,
|
|
1308
|
-
VersionId: import_smithy_client.expectString,
|
|
1309
|
-
VersionStages: import_smithy_client._json
|
|
1310
|
-
});
|
|
1311
|
-
}, "de_SecretValueEntry");
|
|
1312
|
-
var de_SecretValuesType = /* @__PURE__ */ __name((output, context) => {
|
|
1313
|
-
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
1314
|
-
return de_SecretValueEntry(entry, context);
|
|
1315
|
-
});
|
|
1316
|
-
return retVal;
|
|
1317
|
-
}, "de_SecretValuesType");
|
|
1318
|
-
var de_SecretVersionsListEntry = /* @__PURE__ */ __name((output, context) => {
|
|
1319
|
-
return (0, import_smithy_client.take)(output, {
|
|
1320
|
-
CreatedDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "CreatedDate"),
|
|
1321
|
-
KmsKeyIds: import_smithy_client._json,
|
|
1322
|
-
LastAccessedDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastAccessedDate"),
|
|
1323
|
-
VersionId: import_smithy_client.expectString,
|
|
1324
|
-
VersionStages: import_smithy_client._json
|
|
1325
|
-
});
|
|
1326
|
-
}, "de_SecretVersionsListEntry");
|
|
1327
|
-
var de_SecretVersionsListType = /* @__PURE__ */ __name((output, context) => {
|
|
1328
|
-
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
1329
|
-
return de_SecretVersionsListEntry(entry, context);
|
|
1330
|
-
});
|
|
1331
|
-
return retVal;
|
|
1332
|
-
}, "de_SecretVersionsListType");
|
|
1333
|
-
var deserializeMetadata = /* @__PURE__ */ __name((output) => ({
|
|
1334
|
-
httpStatusCode: output.statusCode,
|
|
1335
|
-
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
1336
|
-
extendedRequestId: output.headers["x-amz-id-2"],
|
|
1337
|
-
cfId: output.headers["x-amz-cf-id"]
|
|
1338
|
-
}), "deserializeMetadata");
|
|
1339
|
-
var throwDefaultError = (0, import_smithy_client.withBaseException)(SecretsManagerServiceException);
|
|
1340
|
-
var buildHttpRpcRequest = /* @__PURE__ */ __name(async (context, headers, path, resolvedHostname, body) => {
|
|
1341
|
-
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
1342
|
-
const contents = {
|
|
1343
|
-
protocol,
|
|
1344
|
-
hostname,
|
|
1345
|
-
port,
|
|
1346
|
-
method: "POST",
|
|
1347
|
-
path: basePath.endsWith("/") ? basePath.slice(0, -1) + path : basePath + path,
|
|
1348
|
-
headers
|
|
1349
|
-
};
|
|
1350
|
-
if (resolvedHostname !== void 0) {
|
|
1351
|
-
contents.hostname = resolvedHostname;
|
|
1352
|
-
}
|
|
1353
|
-
if (body !== void 0) {
|
|
1354
|
-
contents.body = body;
|
|
1355
|
-
}
|
|
1356
|
-
return new import_protocol_http.HttpRequest(contents);
|
|
1357
|
-
}, "buildHttpRpcRequest");
|
|
1358
|
-
function sharedHeaders(operation) {
|
|
1359
|
-
return {
|
|
1360
|
-
"content-type": "application/x-amz-json-1.1",
|
|
1361
|
-
"x-amz-target": `secretsmanager.${operation}`
|
|
1362
|
-
};
|
|
1363
|
-
}
|
|
1364
|
-
__name(sharedHeaders, "sharedHeaders");
|
|
1365
|
-
|
|
1366
|
-
// src/commands/BatchGetSecretValueCommand.ts
|
|
1367
|
-
var BatchGetSecretValueCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1368
|
-
return [
|
|
1369
|
-
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1370
|
-
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1371
|
-
];
|
|
1372
|
-
}).s("secretsmanager", "BatchGetSecretValue", {}).n("SecretsManagerClient", "BatchGetSecretValueCommand").f(void 0, BatchGetSecretValueResponseFilterSensitiveLog).ser(se_BatchGetSecretValueCommand).de(de_BatchGetSecretValueCommand).build() {
|
|
1373
|
-
static {
|
|
1374
|
-
__name(this, "BatchGetSecretValueCommand");
|
|
1375
|
-
}
|
|
931
|
+
return smithyClient.decorateServiceException(exception, body);
|
|
1376
932
|
};
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
__name(this, "CancelRotateSecretCommand");
|
|
1390
|
-
}
|
|
933
|
+
const se_CreateSecretRequest = (input, context) => {
|
|
934
|
+
return smithyClient.take(input, {
|
|
935
|
+
AddReplicaRegions: smithyClient._json,
|
|
936
|
+
ClientRequestToken: [true, (_) => _ ?? uuid.v4()],
|
|
937
|
+
Description: [],
|
|
938
|
+
ForceOverwriteReplicaSecret: [],
|
|
939
|
+
KmsKeyId: [],
|
|
940
|
+
Name: [],
|
|
941
|
+
SecretBinary: context.base64Encoder,
|
|
942
|
+
SecretString: [],
|
|
943
|
+
Tags: smithyClient._json,
|
|
944
|
+
});
|
|
1391
945
|
};
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
];
|
|
1402
|
-
}).s("secretsmanager", "CreateSecret", {}).n("SecretsManagerClient", "CreateSecretCommand").f(CreateSecretRequestFilterSensitiveLog, void 0).ser(se_CreateSecretCommand).de(de_CreateSecretCommand).build() {
|
|
1403
|
-
static {
|
|
1404
|
-
__name(this, "CreateSecretCommand");
|
|
1405
|
-
}
|
|
946
|
+
const se_PutSecretValueRequest = (input, context) => {
|
|
947
|
+
return smithyClient.take(input, {
|
|
948
|
+
ClientRequestToken: [true, (_) => _ ?? uuid.v4()],
|
|
949
|
+
RotationToken: [],
|
|
950
|
+
SecretBinary: context.base64Encoder,
|
|
951
|
+
SecretId: [],
|
|
952
|
+
SecretString: [],
|
|
953
|
+
VersionStages: smithyClient._json,
|
|
954
|
+
});
|
|
1406
955
|
};
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1416
|
-
];
|
|
1417
|
-
}).s("secretsmanager", "DeleteResourcePolicy", {}).n("SecretsManagerClient", "DeleteResourcePolicyCommand").f(void 0, void 0).ser(se_DeleteResourcePolicyCommand).de(de_DeleteResourcePolicyCommand).build() {
|
|
1418
|
-
static {
|
|
1419
|
-
__name(this, "DeleteResourcePolicyCommand");
|
|
1420
|
-
}
|
|
956
|
+
const se_RotateSecretRequest = (input, context) => {
|
|
957
|
+
return smithyClient.take(input, {
|
|
958
|
+
ClientRequestToken: [true, (_) => _ ?? uuid.v4()],
|
|
959
|
+
RotateImmediately: [],
|
|
960
|
+
RotationLambdaARN: [],
|
|
961
|
+
RotationRules: smithyClient._json,
|
|
962
|
+
SecretId: [],
|
|
963
|
+
});
|
|
1421
964
|
};
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
];
|
|
1432
|
-
}).s("secretsmanager", "DeleteSecret", {}).n("SecretsManagerClient", "DeleteSecretCommand").f(void 0, void 0).ser(se_DeleteSecretCommand).de(de_DeleteSecretCommand).build() {
|
|
1433
|
-
static {
|
|
1434
|
-
__name(this, "DeleteSecretCommand");
|
|
1435
|
-
}
|
|
965
|
+
const se_UpdateSecretRequest = (input, context) => {
|
|
966
|
+
return smithyClient.take(input, {
|
|
967
|
+
ClientRequestToken: [true, (_) => _ ?? uuid.v4()],
|
|
968
|
+
Description: [],
|
|
969
|
+
KmsKeyId: [],
|
|
970
|
+
SecretBinary: context.base64Encoder,
|
|
971
|
+
SecretId: [],
|
|
972
|
+
SecretString: [],
|
|
973
|
+
});
|
|
1436
974
|
};
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
return [
|
|
1444
|
-
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1445
|
-
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1446
|
-
];
|
|
1447
|
-
}).s("secretsmanager", "DescribeSecret", {}).n("SecretsManagerClient", "DescribeSecretCommand").f(void 0, void 0).ser(se_DescribeSecretCommand).de(de_DescribeSecretCommand).build() {
|
|
1448
|
-
static {
|
|
1449
|
-
__name(this, "DescribeSecretCommand");
|
|
1450
|
-
}
|
|
975
|
+
const de_BatchGetSecretValueResponse = (output, context) => {
|
|
976
|
+
return smithyClient.take(output, {
|
|
977
|
+
Errors: smithyClient._json,
|
|
978
|
+
NextToken: smithyClient.expectString,
|
|
979
|
+
SecretValues: (_) => de_SecretValuesType(_, context),
|
|
980
|
+
});
|
|
1451
981
|
};
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1460
|
-
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1461
|
-
];
|
|
1462
|
-
}).s("secretsmanager", "GetRandomPassword", {}).n("SecretsManagerClient", "GetRandomPasswordCommand").f(void 0, GetRandomPasswordResponseFilterSensitiveLog).ser(se_GetRandomPasswordCommand).de(de_GetRandomPasswordCommand).build() {
|
|
1463
|
-
static {
|
|
1464
|
-
__name(this, "GetRandomPasswordCommand");
|
|
1465
|
-
}
|
|
982
|
+
const de_CreateSecretResponse = (output, context) => {
|
|
983
|
+
return smithyClient.take(output, {
|
|
984
|
+
ARN: smithyClient.expectString,
|
|
985
|
+
Name: smithyClient.expectString,
|
|
986
|
+
ReplicationStatus: (_) => de_ReplicationStatusListType(_),
|
|
987
|
+
VersionId: smithyClient.expectString,
|
|
988
|
+
});
|
|
1466
989
|
};
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
return [
|
|
1474
|
-
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1475
|
-
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1476
|
-
];
|
|
1477
|
-
}).s("secretsmanager", "GetResourcePolicy", {}).n("SecretsManagerClient", "GetResourcePolicyCommand").f(void 0, void 0).ser(se_GetResourcePolicyCommand).de(de_GetResourcePolicyCommand).build() {
|
|
1478
|
-
static {
|
|
1479
|
-
__name(this, "GetResourcePolicyCommand");
|
|
1480
|
-
}
|
|
990
|
+
const de_DeleteSecretResponse = (output, context) => {
|
|
991
|
+
return smithyClient.take(output, {
|
|
992
|
+
ARN: smithyClient.expectString,
|
|
993
|
+
DeletionDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
994
|
+
Name: smithyClient.expectString,
|
|
995
|
+
});
|
|
1481
996
|
};
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
997
|
+
const de_DescribeSecretResponse = (output, context) => {
|
|
998
|
+
return smithyClient.take(output, {
|
|
999
|
+
ARN: smithyClient.expectString,
|
|
1000
|
+
CreatedDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1001
|
+
DeletedDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1002
|
+
Description: smithyClient.expectString,
|
|
1003
|
+
KmsKeyId: smithyClient.expectString,
|
|
1004
|
+
LastAccessedDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1005
|
+
LastChangedDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1006
|
+
LastRotatedDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1007
|
+
Name: smithyClient.expectString,
|
|
1008
|
+
NextRotationDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1009
|
+
OwningService: smithyClient.expectString,
|
|
1010
|
+
PrimaryRegion: smithyClient.expectString,
|
|
1011
|
+
ReplicationStatus: (_) => de_ReplicationStatusListType(_),
|
|
1012
|
+
RotationEnabled: smithyClient.expectBoolean,
|
|
1013
|
+
RotationLambdaARN: smithyClient.expectString,
|
|
1014
|
+
RotationRules: smithyClient._json,
|
|
1015
|
+
Tags: smithyClient._json,
|
|
1016
|
+
VersionIdsToStages: smithyClient._json,
|
|
1017
|
+
});
|
|
1496
1018
|
};
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
}).s("secretsmanager", "ListSecrets", {}).n("SecretsManagerClient", "ListSecretsCommand").f(void 0, void 0).ser(se_ListSecretsCommand).de(de_ListSecretsCommand).build() {
|
|
1508
|
-
static {
|
|
1509
|
-
__name(this, "ListSecretsCommand");
|
|
1510
|
-
}
|
|
1019
|
+
const de_GetSecretValueResponse = (output, context) => {
|
|
1020
|
+
return smithyClient.take(output, {
|
|
1021
|
+
ARN: smithyClient.expectString,
|
|
1022
|
+
CreatedDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1023
|
+
Name: smithyClient.expectString,
|
|
1024
|
+
SecretBinary: context.base64Decoder,
|
|
1025
|
+
SecretString: smithyClient.expectString,
|
|
1026
|
+
VersionId: smithyClient.expectString,
|
|
1027
|
+
VersionStages: smithyClient._json,
|
|
1028
|
+
});
|
|
1511
1029
|
};
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
var ListSecretVersionIdsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1518
|
-
return [
|
|
1519
|
-
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1520
|
-
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1521
|
-
];
|
|
1522
|
-
}).s("secretsmanager", "ListSecretVersionIds", {}).n("SecretsManagerClient", "ListSecretVersionIdsCommand").f(void 0, void 0).ser(se_ListSecretVersionIdsCommand).de(de_ListSecretVersionIdsCommand).build() {
|
|
1523
|
-
static {
|
|
1524
|
-
__name(this, "ListSecretVersionIdsCommand");
|
|
1525
|
-
}
|
|
1030
|
+
const de_ListSecretsResponse = (output, context) => {
|
|
1031
|
+
return smithyClient.take(output, {
|
|
1032
|
+
NextToken: smithyClient.expectString,
|
|
1033
|
+
SecretList: (_) => de_SecretListType(_),
|
|
1034
|
+
});
|
|
1526
1035
|
};
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1535
|
-
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1536
|
-
];
|
|
1537
|
-
}).s("secretsmanager", "PutResourcePolicy", {}).n("SecretsManagerClient", "PutResourcePolicyCommand").f(void 0, void 0).ser(se_PutResourcePolicyCommand).de(de_PutResourcePolicyCommand).build() {
|
|
1538
|
-
static {
|
|
1539
|
-
__name(this, "PutResourcePolicyCommand");
|
|
1540
|
-
}
|
|
1036
|
+
const de_ListSecretVersionIdsResponse = (output, context) => {
|
|
1037
|
+
return smithyClient.take(output, {
|
|
1038
|
+
ARN: smithyClient.expectString,
|
|
1039
|
+
Name: smithyClient.expectString,
|
|
1040
|
+
NextToken: smithyClient.expectString,
|
|
1041
|
+
Versions: (_) => de_SecretVersionsListType(_),
|
|
1042
|
+
});
|
|
1541
1043
|
};
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
var PutSecretValueCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1548
|
-
return [
|
|
1549
|
-
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1550
|
-
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1551
|
-
];
|
|
1552
|
-
}).s("secretsmanager", "PutSecretValue", {}).n("SecretsManagerClient", "PutSecretValueCommand").f(PutSecretValueRequestFilterSensitiveLog, void 0).ser(se_PutSecretValueCommand).de(de_PutSecretValueCommand).build() {
|
|
1553
|
-
static {
|
|
1554
|
-
__name(this, "PutSecretValueCommand");
|
|
1555
|
-
}
|
|
1044
|
+
const de_RemoveRegionsFromReplicationResponse = (output, context) => {
|
|
1045
|
+
return smithyClient.take(output, {
|
|
1046
|
+
ARN: smithyClient.expectString,
|
|
1047
|
+
ReplicationStatus: (_) => de_ReplicationStatusListType(_),
|
|
1048
|
+
});
|
|
1556
1049
|
};
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
var RemoveRegionsFromReplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1563
|
-
return [
|
|
1564
|
-
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1565
|
-
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1566
|
-
];
|
|
1567
|
-
}).s("secretsmanager", "RemoveRegionsFromReplication", {}).n("SecretsManagerClient", "RemoveRegionsFromReplicationCommand").f(void 0, void 0).ser(se_RemoveRegionsFromReplicationCommand).de(de_RemoveRegionsFromReplicationCommand).build() {
|
|
1568
|
-
static {
|
|
1569
|
-
__name(this, "RemoveRegionsFromReplicationCommand");
|
|
1570
|
-
}
|
|
1050
|
+
const de_ReplicateSecretToRegionsResponse = (output, context) => {
|
|
1051
|
+
return smithyClient.take(output, {
|
|
1052
|
+
ARN: smithyClient.expectString,
|
|
1053
|
+
ReplicationStatus: (_) => de_ReplicationStatusListType(_),
|
|
1054
|
+
});
|
|
1571
1055
|
};
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1580
|
-
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1581
|
-
];
|
|
1582
|
-
}).s("secretsmanager", "ReplicateSecretToRegions", {}).n("SecretsManagerClient", "ReplicateSecretToRegionsCommand").f(void 0, void 0).ser(se_ReplicateSecretToRegionsCommand).de(de_ReplicateSecretToRegionsCommand).build() {
|
|
1583
|
-
static {
|
|
1584
|
-
__name(this, "ReplicateSecretToRegionsCommand");
|
|
1585
|
-
}
|
|
1056
|
+
const de_ReplicationStatusListType = (output, context) => {
|
|
1057
|
+
const retVal = (output || [])
|
|
1058
|
+
.filter((e) => e != null)
|
|
1059
|
+
.map((entry) => {
|
|
1060
|
+
return de_ReplicationStatusType(entry);
|
|
1061
|
+
});
|
|
1062
|
+
return retVal;
|
|
1586
1063
|
};
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1596
|
-
];
|
|
1597
|
-
}).s("secretsmanager", "RestoreSecret", {}).n("SecretsManagerClient", "RestoreSecretCommand").f(void 0, void 0).ser(se_RestoreSecretCommand).de(de_RestoreSecretCommand).build() {
|
|
1598
|
-
static {
|
|
1599
|
-
__name(this, "RestoreSecretCommand");
|
|
1600
|
-
}
|
|
1064
|
+
const de_ReplicationStatusType = (output, context) => {
|
|
1065
|
+
return smithyClient.take(output, {
|
|
1066
|
+
KmsKeyId: smithyClient.expectString,
|
|
1067
|
+
LastAccessedDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1068
|
+
Region: smithyClient.expectString,
|
|
1069
|
+
Status: smithyClient.expectString,
|
|
1070
|
+
StatusMessage: smithyClient.expectString,
|
|
1071
|
+
});
|
|
1601
1072
|
};
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1611
|
-
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1073
|
+
const de_SecretListEntry = (output, context) => {
|
|
1074
|
+
return smithyClient.take(output, {
|
|
1075
|
+
ARN: smithyClient.expectString,
|
|
1076
|
+
CreatedDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1077
|
+
DeletedDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1078
|
+
Description: smithyClient.expectString,
|
|
1079
|
+
KmsKeyId: smithyClient.expectString,
|
|
1080
|
+
LastAccessedDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1081
|
+
LastChangedDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1082
|
+
LastRotatedDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1083
|
+
Name: smithyClient.expectString,
|
|
1084
|
+
NextRotationDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1085
|
+
OwningService: smithyClient.expectString,
|
|
1086
|
+
PrimaryRegion: smithyClient.expectString,
|
|
1087
|
+
RotationEnabled: smithyClient.expectBoolean,
|
|
1088
|
+
RotationLambdaARN: smithyClient.expectString,
|
|
1089
|
+
RotationRules: smithyClient._json,
|
|
1090
|
+
SecretVersionsToStages: smithyClient._json,
|
|
1091
|
+
Tags: smithyClient._json,
|
|
1092
|
+
});
|
|
1616
1093
|
};
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
|
|
1094
|
+
const de_SecretListType = (output, context) => {
|
|
1095
|
+
const retVal = (output || [])
|
|
1096
|
+
.filter((e) => e != null)
|
|
1097
|
+
.map((entry) => {
|
|
1098
|
+
return de_SecretListEntry(entry);
|
|
1099
|
+
});
|
|
1100
|
+
return retVal;
|
|
1101
|
+
};
|
|
1102
|
+
const de_SecretValueEntry = (output, context) => {
|
|
1103
|
+
return smithyClient.take(output, {
|
|
1104
|
+
ARN: smithyClient.expectString,
|
|
1105
|
+
CreatedDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1106
|
+
Name: smithyClient.expectString,
|
|
1107
|
+
SecretBinary: context.base64Decoder,
|
|
1108
|
+
SecretString: smithyClient.expectString,
|
|
1109
|
+
VersionId: smithyClient.expectString,
|
|
1110
|
+
VersionStages: smithyClient._json,
|
|
1111
|
+
});
|
|
1112
|
+
};
|
|
1113
|
+
const de_SecretValuesType = (output, context) => {
|
|
1114
|
+
const retVal = (output || [])
|
|
1115
|
+
.filter((e) => e != null)
|
|
1116
|
+
.map((entry) => {
|
|
1117
|
+
return de_SecretValueEntry(entry, context);
|
|
1118
|
+
});
|
|
1119
|
+
return retVal;
|
|
1120
|
+
};
|
|
1121
|
+
const de_SecretVersionsListEntry = (output, context) => {
|
|
1122
|
+
return smithyClient.take(output, {
|
|
1123
|
+
CreatedDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1124
|
+
KmsKeyIds: smithyClient._json,
|
|
1125
|
+
LastAccessedDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1126
|
+
VersionId: smithyClient.expectString,
|
|
1127
|
+
VersionStages: smithyClient._json,
|
|
1128
|
+
});
|
|
1129
|
+
};
|
|
1130
|
+
const de_SecretVersionsListType = (output, context) => {
|
|
1131
|
+
const retVal = (output || [])
|
|
1132
|
+
.filter((e) => e != null)
|
|
1133
|
+
.map((entry) => {
|
|
1134
|
+
return de_SecretVersionsListEntry(entry);
|
|
1135
|
+
});
|
|
1136
|
+
return retVal;
|
|
1137
|
+
};
|
|
1138
|
+
const deserializeMetadata = (output) => ({
|
|
1139
|
+
httpStatusCode: output.statusCode,
|
|
1140
|
+
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
1141
|
+
extendedRequestId: output.headers["x-amz-id-2"],
|
|
1142
|
+
cfId: output.headers["x-amz-cf-id"],
|
|
1143
|
+
});
|
|
1144
|
+
const throwDefaultError = smithyClient.withBaseException(SecretsManagerServiceException);
|
|
1145
|
+
const buildHttpRpcRequest = async (context, headers, path, resolvedHostname, body) => {
|
|
1146
|
+
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
1147
|
+
const contents = {
|
|
1148
|
+
protocol,
|
|
1149
|
+
hostname,
|
|
1150
|
+
port,
|
|
1151
|
+
method: "POST",
|
|
1152
|
+
path: basePath.endsWith("/") ? basePath.slice(0, -1) + path : basePath + path,
|
|
1153
|
+
headers,
|
|
1154
|
+
};
|
|
1155
|
+
if (body !== undefined) {
|
|
1156
|
+
contents.body = body;
|
|
1157
|
+
}
|
|
1158
|
+
return new protocolHttp.HttpRequest(contents);
|
|
1631
1159
|
};
|
|
1160
|
+
function sharedHeaders(operation) {
|
|
1161
|
+
return {
|
|
1162
|
+
"content-type": "application/x-amz-json-1.1",
|
|
1163
|
+
"x-amz-target": `secretsmanager.${operation}`,
|
|
1164
|
+
};
|
|
1165
|
+
}
|
|
1632
1166
|
|
|
1633
|
-
|
|
1167
|
+
class BatchGetSecretValueCommand extends smithyClient.Command
|
|
1168
|
+
.classBuilder()
|
|
1169
|
+
.ep(commonParams)
|
|
1170
|
+
.m(function (Command, cs, config, o) {
|
|
1171
|
+
return [
|
|
1172
|
+
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1173
|
+
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1174
|
+
];
|
|
1175
|
+
})
|
|
1176
|
+
.s("secretsmanager", "BatchGetSecretValue", {})
|
|
1177
|
+
.n("SecretsManagerClient", "BatchGetSecretValueCommand")
|
|
1178
|
+
.f(void 0, BatchGetSecretValueResponseFilterSensitiveLog)
|
|
1179
|
+
.ser(se_BatchGetSecretValueCommand)
|
|
1180
|
+
.de(de_BatchGetSecretValueCommand)
|
|
1181
|
+
.build() {
|
|
1182
|
+
}
|
|
1634
1183
|
|
|
1184
|
+
class CancelRotateSecretCommand extends smithyClient.Command
|
|
1185
|
+
.classBuilder()
|
|
1186
|
+
.ep(commonParams)
|
|
1187
|
+
.m(function (Command, cs, config, o) {
|
|
1188
|
+
return [
|
|
1189
|
+
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1190
|
+
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1191
|
+
];
|
|
1192
|
+
})
|
|
1193
|
+
.s("secretsmanager", "CancelRotateSecret", {})
|
|
1194
|
+
.n("SecretsManagerClient", "CancelRotateSecretCommand")
|
|
1195
|
+
.f(void 0, void 0)
|
|
1196
|
+
.ser(se_CancelRotateSecretCommand)
|
|
1197
|
+
.de(de_CancelRotateSecretCommand)
|
|
1198
|
+
.build() {
|
|
1199
|
+
}
|
|
1635
1200
|
|
|
1201
|
+
class CreateSecretCommand extends smithyClient.Command
|
|
1202
|
+
.classBuilder()
|
|
1203
|
+
.ep(commonParams)
|
|
1204
|
+
.m(function (Command, cs, config, o) {
|
|
1205
|
+
return [
|
|
1206
|
+
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1207
|
+
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1208
|
+
];
|
|
1209
|
+
})
|
|
1210
|
+
.s("secretsmanager", "CreateSecret", {})
|
|
1211
|
+
.n("SecretsManagerClient", "CreateSecretCommand")
|
|
1212
|
+
.f(CreateSecretRequestFilterSensitiveLog, void 0)
|
|
1213
|
+
.ser(se_CreateSecretCommand)
|
|
1214
|
+
.de(de_CreateSecretCommand)
|
|
1215
|
+
.build() {
|
|
1216
|
+
}
|
|
1636
1217
|
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1640
|
-
(
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
|
|
1645
|
-
|
|
1646
|
-
}
|
|
1218
|
+
class DeleteResourcePolicyCommand extends smithyClient.Command
|
|
1219
|
+
.classBuilder()
|
|
1220
|
+
.ep(commonParams)
|
|
1221
|
+
.m(function (Command, cs, config, o) {
|
|
1222
|
+
return [
|
|
1223
|
+
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1224
|
+
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1225
|
+
];
|
|
1226
|
+
})
|
|
1227
|
+
.s("secretsmanager", "DeleteResourcePolicy", {})
|
|
1228
|
+
.n("SecretsManagerClient", "DeleteResourcePolicyCommand")
|
|
1229
|
+
.f(void 0, void 0)
|
|
1230
|
+
.ser(se_DeleteResourcePolicyCommand)
|
|
1231
|
+
.de(de_DeleteResourcePolicyCommand)
|
|
1232
|
+
.build() {
|
|
1233
|
+
}
|
|
1647
1234
|
|
|
1648
|
-
|
|
1235
|
+
class DeleteSecretCommand extends smithyClient.Command
|
|
1236
|
+
.classBuilder()
|
|
1237
|
+
.ep(commonParams)
|
|
1238
|
+
.m(function (Command, cs, config, o) {
|
|
1239
|
+
return [
|
|
1240
|
+
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1241
|
+
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1242
|
+
];
|
|
1243
|
+
})
|
|
1244
|
+
.s("secretsmanager", "DeleteSecret", {})
|
|
1245
|
+
.n("SecretsManagerClient", "DeleteSecretCommand")
|
|
1246
|
+
.f(void 0, void 0)
|
|
1247
|
+
.ser(se_DeleteSecretCommand)
|
|
1248
|
+
.de(de_DeleteSecretCommand)
|
|
1249
|
+
.build() {
|
|
1250
|
+
}
|
|
1649
1251
|
|
|
1252
|
+
class DescribeSecretCommand extends smithyClient.Command
|
|
1253
|
+
.classBuilder()
|
|
1254
|
+
.ep(commonParams)
|
|
1255
|
+
.m(function (Command, cs, config, o) {
|
|
1256
|
+
return [
|
|
1257
|
+
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1258
|
+
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1259
|
+
];
|
|
1260
|
+
})
|
|
1261
|
+
.s("secretsmanager", "DescribeSecret", {})
|
|
1262
|
+
.n("SecretsManagerClient", "DescribeSecretCommand")
|
|
1263
|
+
.f(void 0, void 0)
|
|
1264
|
+
.ser(se_DescribeSecretCommand)
|
|
1265
|
+
.de(de_DescribeSecretCommand)
|
|
1266
|
+
.build() {
|
|
1267
|
+
}
|
|
1650
1268
|
|
|
1269
|
+
class GetRandomPasswordCommand extends smithyClient.Command
|
|
1270
|
+
.classBuilder()
|
|
1271
|
+
.ep(commonParams)
|
|
1272
|
+
.m(function (Command, cs, config, o) {
|
|
1273
|
+
return [
|
|
1274
|
+
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1275
|
+
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1276
|
+
];
|
|
1277
|
+
})
|
|
1278
|
+
.s("secretsmanager", "GetRandomPassword", {})
|
|
1279
|
+
.n("SecretsManagerClient", "GetRandomPasswordCommand")
|
|
1280
|
+
.f(void 0, GetRandomPasswordResponseFilterSensitiveLog)
|
|
1281
|
+
.ser(se_GetRandomPasswordCommand)
|
|
1282
|
+
.de(de_GetRandomPasswordCommand)
|
|
1283
|
+
.build() {
|
|
1284
|
+
}
|
|
1651
1285
|
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
(
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
}
|
|
1286
|
+
class GetResourcePolicyCommand extends smithyClient.Command
|
|
1287
|
+
.classBuilder()
|
|
1288
|
+
.ep(commonParams)
|
|
1289
|
+
.m(function (Command, cs, config, o) {
|
|
1290
|
+
return [
|
|
1291
|
+
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1292
|
+
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1293
|
+
];
|
|
1294
|
+
})
|
|
1295
|
+
.s("secretsmanager", "GetResourcePolicy", {})
|
|
1296
|
+
.n("SecretsManagerClient", "GetResourcePolicyCommand")
|
|
1297
|
+
.f(void 0, void 0)
|
|
1298
|
+
.ser(se_GetResourcePolicyCommand)
|
|
1299
|
+
.de(de_GetResourcePolicyCommand)
|
|
1300
|
+
.build() {
|
|
1301
|
+
}
|
|
1662
1302
|
|
|
1663
|
-
|
|
1303
|
+
class GetSecretValueCommand extends smithyClient.Command
|
|
1304
|
+
.classBuilder()
|
|
1305
|
+
.ep(commonParams)
|
|
1306
|
+
.m(function (Command, cs, config, o) {
|
|
1307
|
+
return [
|
|
1308
|
+
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1309
|
+
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1310
|
+
];
|
|
1311
|
+
})
|
|
1312
|
+
.s("secretsmanager", "GetSecretValue", {})
|
|
1313
|
+
.n("SecretsManagerClient", "GetSecretValueCommand")
|
|
1314
|
+
.f(void 0, GetSecretValueResponseFilterSensitiveLog)
|
|
1315
|
+
.ser(se_GetSecretValueCommand)
|
|
1316
|
+
.de(de_GetSecretValueCommand)
|
|
1317
|
+
.build() {
|
|
1318
|
+
}
|
|
1664
1319
|
|
|
1320
|
+
class ListSecretsCommand extends smithyClient.Command
|
|
1321
|
+
.classBuilder()
|
|
1322
|
+
.ep(commonParams)
|
|
1323
|
+
.m(function (Command, cs, config, o) {
|
|
1324
|
+
return [
|
|
1325
|
+
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1326
|
+
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1327
|
+
];
|
|
1328
|
+
})
|
|
1329
|
+
.s("secretsmanager", "ListSecrets", {})
|
|
1330
|
+
.n("SecretsManagerClient", "ListSecretsCommand")
|
|
1331
|
+
.f(void 0, void 0)
|
|
1332
|
+
.ser(se_ListSecretsCommand)
|
|
1333
|
+
.de(de_ListSecretsCommand)
|
|
1334
|
+
.build() {
|
|
1335
|
+
}
|
|
1665
1336
|
|
|
1337
|
+
class ListSecretVersionIdsCommand extends smithyClient.Command
|
|
1338
|
+
.classBuilder()
|
|
1339
|
+
.ep(commonParams)
|
|
1340
|
+
.m(function (Command, cs, config, o) {
|
|
1341
|
+
return [
|
|
1342
|
+
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1343
|
+
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1344
|
+
];
|
|
1345
|
+
})
|
|
1346
|
+
.s("secretsmanager", "ListSecretVersionIds", {})
|
|
1347
|
+
.n("SecretsManagerClient", "ListSecretVersionIdsCommand")
|
|
1348
|
+
.f(void 0, void 0)
|
|
1349
|
+
.ser(se_ListSecretVersionIdsCommand)
|
|
1350
|
+
.de(de_ListSecretVersionIdsCommand)
|
|
1351
|
+
.build() {
|
|
1352
|
+
}
|
|
1666
1353
|
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
(
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
}
|
|
1354
|
+
class PutResourcePolicyCommand extends smithyClient.Command
|
|
1355
|
+
.classBuilder()
|
|
1356
|
+
.ep(commonParams)
|
|
1357
|
+
.m(function (Command, cs, config, o) {
|
|
1358
|
+
return [
|
|
1359
|
+
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1360
|
+
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1361
|
+
];
|
|
1362
|
+
})
|
|
1363
|
+
.s("secretsmanager", "PutResourcePolicy", {})
|
|
1364
|
+
.n("SecretsManagerClient", "PutResourcePolicyCommand")
|
|
1365
|
+
.f(void 0, void 0)
|
|
1366
|
+
.ser(se_PutResourcePolicyCommand)
|
|
1367
|
+
.de(de_PutResourcePolicyCommand)
|
|
1368
|
+
.build() {
|
|
1369
|
+
}
|
|
1677
1370
|
|
|
1678
|
-
|
|
1371
|
+
class PutSecretValueCommand extends smithyClient.Command
|
|
1372
|
+
.classBuilder()
|
|
1373
|
+
.ep(commonParams)
|
|
1374
|
+
.m(function (Command, cs, config, o) {
|
|
1375
|
+
return [
|
|
1376
|
+
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1377
|
+
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1378
|
+
];
|
|
1379
|
+
})
|
|
1380
|
+
.s("secretsmanager", "PutSecretValue", {})
|
|
1381
|
+
.n("SecretsManagerClient", "PutSecretValueCommand")
|
|
1382
|
+
.f(PutSecretValueRequestFilterSensitiveLog, void 0)
|
|
1383
|
+
.ser(se_PutSecretValueCommand)
|
|
1384
|
+
.de(de_PutSecretValueCommand)
|
|
1385
|
+
.build() {
|
|
1386
|
+
}
|
|
1679
1387
|
|
|
1388
|
+
class RemoveRegionsFromReplicationCommand extends smithyClient.Command
|
|
1389
|
+
.classBuilder()
|
|
1390
|
+
.ep(commonParams)
|
|
1391
|
+
.m(function (Command, cs, config, o) {
|
|
1392
|
+
return [
|
|
1393
|
+
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1394
|
+
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1395
|
+
];
|
|
1396
|
+
})
|
|
1397
|
+
.s("secretsmanager", "RemoveRegionsFromReplication", {})
|
|
1398
|
+
.n("SecretsManagerClient", "RemoveRegionsFromReplicationCommand")
|
|
1399
|
+
.f(void 0, void 0)
|
|
1400
|
+
.ser(se_RemoveRegionsFromReplicationCommand)
|
|
1401
|
+
.de(de_RemoveRegionsFromReplicationCommand)
|
|
1402
|
+
.build() {
|
|
1403
|
+
}
|
|
1680
1404
|
|
|
1405
|
+
class ReplicateSecretToRegionsCommand extends smithyClient.Command
|
|
1406
|
+
.classBuilder()
|
|
1407
|
+
.ep(commonParams)
|
|
1408
|
+
.m(function (Command, cs, config, o) {
|
|
1409
|
+
return [
|
|
1410
|
+
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1411
|
+
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1412
|
+
];
|
|
1413
|
+
})
|
|
1414
|
+
.s("secretsmanager", "ReplicateSecretToRegions", {})
|
|
1415
|
+
.n("SecretsManagerClient", "ReplicateSecretToRegionsCommand")
|
|
1416
|
+
.f(void 0, void 0)
|
|
1417
|
+
.ser(se_ReplicateSecretToRegionsCommand)
|
|
1418
|
+
.de(de_ReplicateSecretToRegionsCommand)
|
|
1419
|
+
.build() {
|
|
1420
|
+
}
|
|
1681
1421
|
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
(
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
}
|
|
1422
|
+
class RestoreSecretCommand extends smithyClient.Command
|
|
1423
|
+
.classBuilder()
|
|
1424
|
+
.ep(commonParams)
|
|
1425
|
+
.m(function (Command, cs, config, o) {
|
|
1426
|
+
return [
|
|
1427
|
+
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1428
|
+
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1429
|
+
];
|
|
1430
|
+
})
|
|
1431
|
+
.s("secretsmanager", "RestoreSecret", {})
|
|
1432
|
+
.n("SecretsManagerClient", "RestoreSecretCommand")
|
|
1433
|
+
.f(void 0, void 0)
|
|
1434
|
+
.ser(se_RestoreSecretCommand)
|
|
1435
|
+
.de(de_RestoreSecretCommand)
|
|
1436
|
+
.build() {
|
|
1437
|
+
}
|
|
1692
1438
|
|
|
1693
|
-
|
|
1439
|
+
class RotateSecretCommand extends smithyClient.Command
|
|
1440
|
+
.classBuilder()
|
|
1441
|
+
.ep(commonParams)
|
|
1442
|
+
.m(function (Command, cs, config, o) {
|
|
1443
|
+
return [
|
|
1444
|
+
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1445
|
+
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1446
|
+
];
|
|
1447
|
+
})
|
|
1448
|
+
.s("secretsmanager", "RotateSecret", {})
|
|
1449
|
+
.n("SecretsManagerClient", "RotateSecretCommand")
|
|
1450
|
+
.f(void 0, void 0)
|
|
1451
|
+
.ser(se_RotateSecretCommand)
|
|
1452
|
+
.de(de_RotateSecretCommand)
|
|
1453
|
+
.build() {
|
|
1454
|
+
}
|
|
1694
1455
|
|
|
1456
|
+
class StopReplicationToReplicaCommand extends smithyClient.Command
|
|
1457
|
+
.classBuilder()
|
|
1458
|
+
.ep(commonParams)
|
|
1459
|
+
.m(function (Command, cs, config, o) {
|
|
1460
|
+
return [
|
|
1461
|
+
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1462
|
+
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1463
|
+
];
|
|
1464
|
+
})
|
|
1465
|
+
.s("secretsmanager", "StopReplicationToReplica", {})
|
|
1466
|
+
.n("SecretsManagerClient", "StopReplicationToReplicaCommand")
|
|
1467
|
+
.f(void 0, void 0)
|
|
1468
|
+
.ser(se_StopReplicationToReplicaCommand)
|
|
1469
|
+
.de(de_StopReplicationToReplicaCommand)
|
|
1470
|
+
.build() {
|
|
1471
|
+
}
|
|
1695
1472
|
|
|
1473
|
+
class TagResourceCommand extends smithyClient.Command
|
|
1474
|
+
.classBuilder()
|
|
1475
|
+
.ep(commonParams)
|
|
1476
|
+
.m(function (Command, cs, config, o) {
|
|
1477
|
+
return [
|
|
1478
|
+
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1479
|
+
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1480
|
+
];
|
|
1481
|
+
})
|
|
1482
|
+
.s("secretsmanager", "TagResource", {})
|
|
1483
|
+
.n("SecretsManagerClient", "TagResourceCommand")
|
|
1484
|
+
.f(void 0, void 0)
|
|
1485
|
+
.ser(se_TagResourceCommand)
|
|
1486
|
+
.de(de_TagResourceCommand)
|
|
1487
|
+
.build() {
|
|
1488
|
+
}
|
|
1696
1489
|
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
(
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
1705
|
-
|
|
1706
|
-
}
|
|
1490
|
+
class UntagResourceCommand extends smithyClient.Command
|
|
1491
|
+
.classBuilder()
|
|
1492
|
+
.ep(commonParams)
|
|
1493
|
+
.m(function (Command, cs, config, o) {
|
|
1494
|
+
return [
|
|
1495
|
+
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1496
|
+
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1497
|
+
];
|
|
1498
|
+
})
|
|
1499
|
+
.s("secretsmanager", "UntagResource", {})
|
|
1500
|
+
.n("SecretsManagerClient", "UntagResourceCommand")
|
|
1501
|
+
.f(void 0, void 0)
|
|
1502
|
+
.ser(se_UntagResourceCommand)
|
|
1503
|
+
.de(de_UntagResourceCommand)
|
|
1504
|
+
.build() {
|
|
1505
|
+
}
|
|
1707
1506
|
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
ReplicateSecretToRegionsCommand,
|
|
1725
|
-
RestoreSecretCommand,
|
|
1726
|
-
RotateSecretCommand,
|
|
1727
|
-
StopReplicationToReplicaCommand,
|
|
1728
|
-
TagResourceCommand,
|
|
1729
|
-
UntagResourceCommand,
|
|
1730
|
-
UpdateSecretCommand,
|
|
1731
|
-
UpdateSecretVersionStageCommand,
|
|
1732
|
-
ValidateResourcePolicyCommand
|
|
1733
|
-
};
|
|
1734
|
-
var SecretsManager = class extends SecretsManagerClient {
|
|
1735
|
-
static {
|
|
1736
|
-
__name(this, "SecretsManager");
|
|
1737
|
-
}
|
|
1738
|
-
};
|
|
1739
|
-
(0, import_smithy_client.createAggregatedClient)(commands, SecretsManager);
|
|
1507
|
+
class UpdateSecretCommand extends smithyClient.Command
|
|
1508
|
+
.classBuilder()
|
|
1509
|
+
.ep(commonParams)
|
|
1510
|
+
.m(function (Command, cs, config, o) {
|
|
1511
|
+
return [
|
|
1512
|
+
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1513
|
+
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1514
|
+
];
|
|
1515
|
+
})
|
|
1516
|
+
.s("secretsmanager", "UpdateSecret", {})
|
|
1517
|
+
.n("SecretsManagerClient", "UpdateSecretCommand")
|
|
1518
|
+
.f(UpdateSecretRequestFilterSensitiveLog, void 0)
|
|
1519
|
+
.ser(se_UpdateSecretCommand)
|
|
1520
|
+
.de(de_UpdateSecretCommand)
|
|
1521
|
+
.build() {
|
|
1522
|
+
}
|
|
1740
1523
|
|
|
1741
|
-
|
|
1524
|
+
class UpdateSecretVersionStageCommand extends smithyClient.Command
|
|
1525
|
+
.classBuilder()
|
|
1526
|
+
.ep(commonParams)
|
|
1527
|
+
.m(function (Command, cs, config, o) {
|
|
1528
|
+
return [
|
|
1529
|
+
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1530
|
+
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1531
|
+
];
|
|
1532
|
+
})
|
|
1533
|
+
.s("secretsmanager", "UpdateSecretVersionStage", {})
|
|
1534
|
+
.n("SecretsManagerClient", "UpdateSecretVersionStageCommand")
|
|
1535
|
+
.f(void 0, void 0)
|
|
1536
|
+
.ser(se_UpdateSecretVersionStageCommand)
|
|
1537
|
+
.de(de_UpdateSecretVersionStageCommand)
|
|
1538
|
+
.build() {
|
|
1539
|
+
}
|
|
1742
1540
|
|
|
1743
|
-
|
|
1541
|
+
class ValidateResourcePolicyCommand extends smithyClient.Command
|
|
1542
|
+
.classBuilder()
|
|
1543
|
+
.ep(commonParams)
|
|
1544
|
+
.m(function (Command, cs, config, o) {
|
|
1545
|
+
return [
|
|
1546
|
+
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1547
|
+
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1548
|
+
];
|
|
1549
|
+
})
|
|
1550
|
+
.s("secretsmanager", "ValidateResourcePolicy", {})
|
|
1551
|
+
.n("SecretsManagerClient", "ValidateResourcePolicyCommand")
|
|
1552
|
+
.f(void 0, void 0)
|
|
1553
|
+
.ser(se_ValidateResourcePolicyCommand)
|
|
1554
|
+
.de(de_ValidateResourcePolicyCommand)
|
|
1555
|
+
.build() {
|
|
1556
|
+
}
|
|
1744
1557
|
|
|
1745
|
-
|
|
1558
|
+
const commands = {
|
|
1559
|
+
BatchGetSecretValueCommand,
|
|
1560
|
+
CancelRotateSecretCommand,
|
|
1561
|
+
CreateSecretCommand,
|
|
1562
|
+
DeleteResourcePolicyCommand,
|
|
1563
|
+
DeleteSecretCommand,
|
|
1564
|
+
DescribeSecretCommand,
|
|
1565
|
+
GetRandomPasswordCommand,
|
|
1566
|
+
GetResourcePolicyCommand,
|
|
1567
|
+
GetSecretValueCommand,
|
|
1568
|
+
ListSecretsCommand,
|
|
1569
|
+
ListSecretVersionIdsCommand,
|
|
1570
|
+
PutResourcePolicyCommand,
|
|
1571
|
+
PutSecretValueCommand,
|
|
1572
|
+
RemoveRegionsFromReplicationCommand,
|
|
1573
|
+
ReplicateSecretToRegionsCommand,
|
|
1574
|
+
RestoreSecretCommand,
|
|
1575
|
+
RotateSecretCommand,
|
|
1576
|
+
StopReplicationToReplicaCommand,
|
|
1577
|
+
TagResourceCommand,
|
|
1578
|
+
UntagResourceCommand,
|
|
1579
|
+
UpdateSecretCommand,
|
|
1580
|
+
UpdateSecretVersionStageCommand,
|
|
1581
|
+
ValidateResourcePolicyCommand,
|
|
1582
|
+
};
|
|
1583
|
+
class SecretsManager extends SecretsManagerClient {
|
|
1584
|
+
}
|
|
1585
|
+
smithyClient.createAggregatedClient(commands, SecretsManager);
|
|
1746
1586
|
|
|
1747
|
-
|
|
1587
|
+
const paginateBatchGetSecretValue = core.createPaginator(SecretsManagerClient, BatchGetSecretValueCommand, "NextToken", "NextToken", "MaxResults");
|
|
1748
1588
|
|
|
1749
|
-
|
|
1589
|
+
const paginateListSecretVersionIds = core.createPaginator(SecretsManagerClient, ListSecretVersionIdsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1750
1590
|
|
|
1751
|
-
|
|
1752
|
-
// Annotate the CommonJS export names for ESM import in node:
|
|
1591
|
+
const paginateListSecrets = core.createPaginator(SecretsManagerClient, ListSecretsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1753
1592
|
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
SecretsManagerClient,
|
|
1758
|
-
SecretsManager,
|
|
1759
|
-
$Command,
|
|
1760
|
-
BatchGetSecretValueCommand,
|
|
1761
|
-
CancelRotateSecretCommand,
|
|
1762
|
-
CreateSecretCommand,
|
|
1763
|
-
DeleteResourcePolicyCommand,
|
|
1764
|
-
DeleteSecretCommand,
|
|
1765
|
-
DescribeSecretCommand,
|
|
1766
|
-
GetRandomPasswordCommand,
|
|
1767
|
-
GetResourcePolicyCommand,
|
|
1768
|
-
GetSecretValueCommand,
|
|
1769
|
-
ListSecretVersionIdsCommand,
|
|
1770
|
-
ListSecretsCommand,
|
|
1771
|
-
PutResourcePolicyCommand,
|
|
1772
|
-
PutSecretValueCommand,
|
|
1773
|
-
RemoveRegionsFromReplicationCommand,
|
|
1774
|
-
ReplicateSecretToRegionsCommand,
|
|
1775
|
-
RestoreSecretCommand,
|
|
1776
|
-
RotateSecretCommand,
|
|
1777
|
-
StopReplicationToReplicaCommand,
|
|
1778
|
-
TagResourceCommand,
|
|
1779
|
-
UntagResourceCommand,
|
|
1780
|
-
UpdateSecretCommand,
|
|
1781
|
-
UpdateSecretVersionStageCommand,
|
|
1782
|
-
ValidateResourcePolicyCommand,
|
|
1783
|
-
paginateBatchGetSecretValue,
|
|
1784
|
-
paginateListSecretVersionIds,
|
|
1785
|
-
paginateListSecrets,
|
|
1786
|
-
FilterNameStringType,
|
|
1787
|
-
DecryptionFailure,
|
|
1788
|
-
InternalServiceError,
|
|
1789
|
-
InvalidNextTokenException,
|
|
1790
|
-
InvalidParameterException,
|
|
1791
|
-
InvalidRequestException,
|
|
1792
|
-
ResourceNotFoundException,
|
|
1793
|
-
StatusType,
|
|
1794
|
-
EncryptionFailure,
|
|
1795
|
-
LimitExceededException,
|
|
1796
|
-
MalformedPolicyDocumentException,
|
|
1797
|
-
PreconditionNotMetException,
|
|
1798
|
-
ResourceExistsException,
|
|
1799
|
-
SortOrderType,
|
|
1800
|
-
PublicPolicyException,
|
|
1801
|
-
SecretValueEntryFilterSensitiveLog,
|
|
1802
|
-
BatchGetSecretValueResponseFilterSensitiveLog,
|
|
1803
|
-
CreateSecretRequestFilterSensitiveLog,
|
|
1804
|
-
GetRandomPasswordResponseFilterSensitiveLog,
|
|
1805
|
-
GetSecretValueResponseFilterSensitiveLog,
|
|
1806
|
-
PutSecretValueRequestFilterSensitiveLog,
|
|
1807
|
-
UpdateSecretRequestFilterSensitiveLog
|
|
1593
|
+
Object.defineProperty(exports, "$Command", {
|
|
1594
|
+
enumerable: true,
|
|
1595
|
+
get: function () { return smithyClient.Command; }
|
|
1808
1596
|
});
|
|
1809
|
-
|
|
1597
|
+
Object.defineProperty(exports, "__Client", {
|
|
1598
|
+
enumerable: true,
|
|
1599
|
+
get: function () { return smithyClient.Client; }
|
|
1600
|
+
});
|
|
1601
|
+
exports.BatchGetSecretValueCommand = BatchGetSecretValueCommand;
|
|
1602
|
+
exports.BatchGetSecretValueResponseFilterSensitiveLog = BatchGetSecretValueResponseFilterSensitiveLog;
|
|
1603
|
+
exports.CancelRotateSecretCommand = CancelRotateSecretCommand;
|
|
1604
|
+
exports.CreateSecretCommand = CreateSecretCommand;
|
|
1605
|
+
exports.CreateSecretRequestFilterSensitiveLog = CreateSecretRequestFilterSensitiveLog;
|
|
1606
|
+
exports.DecryptionFailure = DecryptionFailure;
|
|
1607
|
+
exports.DeleteResourcePolicyCommand = DeleteResourcePolicyCommand;
|
|
1608
|
+
exports.DeleteSecretCommand = DeleteSecretCommand;
|
|
1609
|
+
exports.DescribeSecretCommand = DescribeSecretCommand;
|
|
1610
|
+
exports.EncryptionFailure = EncryptionFailure;
|
|
1611
|
+
exports.FilterNameStringType = FilterNameStringType;
|
|
1612
|
+
exports.GetRandomPasswordCommand = GetRandomPasswordCommand;
|
|
1613
|
+
exports.GetRandomPasswordResponseFilterSensitiveLog = GetRandomPasswordResponseFilterSensitiveLog;
|
|
1614
|
+
exports.GetResourcePolicyCommand = GetResourcePolicyCommand;
|
|
1615
|
+
exports.GetSecretValueCommand = GetSecretValueCommand;
|
|
1616
|
+
exports.GetSecretValueResponseFilterSensitiveLog = GetSecretValueResponseFilterSensitiveLog;
|
|
1617
|
+
exports.InternalServiceError = InternalServiceError;
|
|
1618
|
+
exports.InvalidNextTokenException = InvalidNextTokenException;
|
|
1619
|
+
exports.InvalidParameterException = InvalidParameterException;
|
|
1620
|
+
exports.InvalidRequestException = InvalidRequestException;
|
|
1621
|
+
exports.LimitExceededException = LimitExceededException;
|
|
1622
|
+
exports.ListSecretVersionIdsCommand = ListSecretVersionIdsCommand;
|
|
1623
|
+
exports.ListSecretsCommand = ListSecretsCommand;
|
|
1624
|
+
exports.MalformedPolicyDocumentException = MalformedPolicyDocumentException;
|
|
1625
|
+
exports.PreconditionNotMetException = PreconditionNotMetException;
|
|
1626
|
+
exports.PublicPolicyException = PublicPolicyException;
|
|
1627
|
+
exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
|
|
1628
|
+
exports.PutSecretValueCommand = PutSecretValueCommand;
|
|
1629
|
+
exports.PutSecretValueRequestFilterSensitiveLog = PutSecretValueRequestFilterSensitiveLog;
|
|
1630
|
+
exports.RemoveRegionsFromReplicationCommand = RemoveRegionsFromReplicationCommand;
|
|
1631
|
+
exports.ReplicateSecretToRegionsCommand = ReplicateSecretToRegionsCommand;
|
|
1632
|
+
exports.ResourceExistsException = ResourceExistsException;
|
|
1633
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1634
|
+
exports.RestoreSecretCommand = RestoreSecretCommand;
|
|
1635
|
+
exports.RotateSecretCommand = RotateSecretCommand;
|
|
1636
|
+
exports.SecretValueEntryFilterSensitiveLog = SecretValueEntryFilterSensitiveLog;
|
|
1637
|
+
exports.SecretsManager = SecretsManager;
|
|
1638
|
+
exports.SecretsManagerClient = SecretsManagerClient;
|
|
1639
|
+
exports.SecretsManagerServiceException = SecretsManagerServiceException;
|
|
1640
|
+
exports.SortOrderType = SortOrderType;
|
|
1641
|
+
exports.StatusType = StatusType;
|
|
1642
|
+
exports.StopReplicationToReplicaCommand = StopReplicationToReplicaCommand;
|
|
1643
|
+
exports.TagResourceCommand = TagResourceCommand;
|
|
1644
|
+
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1645
|
+
exports.UpdateSecretCommand = UpdateSecretCommand;
|
|
1646
|
+
exports.UpdateSecretRequestFilterSensitiveLog = UpdateSecretRequestFilterSensitiveLog;
|
|
1647
|
+
exports.UpdateSecretVersionStageCommand = UpdateSecretVersionStageCommand;
|
|
1648
|
+
exports.ValidateResourcePolicyCommand = ValidateResourcePolicyCommand;
|
|
1649
|
+
exports.paginateBatchGetSecretValue = paginateBatchGetSecretValue;
|
|
1650
|
+
exports.paginateListSecretVersionIds = paginateListSecretVersionIds;
|
|
1651
|
+
exports.paginateListSecrets = paginateListSecrets;
|