@alliander-opensource/aws-jwt-sts 0.3.4 → 0.3.6
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 +8951 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +12 -5
- package/dist/index.sign.d.ts +1 -1
- package/dist/index.sign.js +2 -2
- package/dist/test/index.test.js +27 -5
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/node_modules/@aws/lambda-invoke-store/LICENSE +175 -0
- package/node_modules/@aws/lambda-invoke-store/README.md +198 -0
- package/node_modules/@aws/lambda-invoke-store/dist-cjs/invoke-store.js +119 -0
- package/node_modules/@aws/lambda-invoke-store/dist-es/invoke-store.js +117 -0
- package/node_modules/@aws/lambda-invoke-store/dist-types/invoke-store.benchmark.d.ts +1 -0
- package/node_modules/@aws/lambda-invoke-store/dist-types/invoke-store.d.ts +49 -0
- package/node_modules/@aws/lambda-invoke-store/package.json +55 -0
- package/node_modules/@aws-lambda-powertools/commons/README.md +7 -15
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/LRUCache.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/LRUCache.js +3 -2
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/Utility.d.ts +3 -3
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/Utility.js +3 -3
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/awsSdkUtils.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/awsSdkUtils.js +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/constants.d.ts +2 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/constants.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/constants.js +3 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/deepMerge.d.ts +23 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/deepMerge.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/deepMerge.js +130 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/envUtils.d.ts +14 -6
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/envUtils.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/envUtils.js +28 -12
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/index.d.ts +5 -5
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/index.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/index.js +27 -21
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/typeUtils.d.ts +43 -11
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/typeUtils.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/typeUtils.js +59 -15
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/index.d.ts +6 -6
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/index.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/middy.d.ts +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/middy.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/unmarshallDynamoDB.js +2 -2
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/version.d.ts +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/version.js +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/LRUCache.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/LRUCache.js +3 -2
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/Utility.d.ts +3 -3
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/Utility.js +3 -3
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/awsSdkUtils.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/awsSdkUtils.js +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/constants.d.ts +2 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/constants.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/constants.js +2 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/deepMerge.d.ts +23 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/deepMerge.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/deepMerge.js +127 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/envUtils.d.ts +14 -6
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/envUtils.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/envUtils.js +28 -13
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/index.d.ts +5 -5
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/index.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/index.js +11 -7
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/typeUtils.d.ts +43 -11
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/typeUtils.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/typeUtils.js +57 -15
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/index.d.ts +6 -6
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/index.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/middy.d.ts +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/middy.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/unmarshallDynamoDB.js +2 -2
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/version.d.ts +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/version.js +1 -1
- package/node_modules/@aws-lambda-powertools/commons/package.json +12 -1
- package/node_modules/@aws-lambda-powertools/logger/README.md +6 -3
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/LogAttributesStore.d.ts +23 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/LogAttributesStore.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/LogAttributesStore.js +134 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/Logger.d.ts +8 -27
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/Logger.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/Logger.js +113 -138
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/formatter/LogFormatter.d.ts +1 -10
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/formatter/LogFormatter.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/formatter/LogFormatter.js +11 -20
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/formatter/LogItem.js +2 -5
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/formatter/PowertoolsLogFormatter.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/formatter/PowertoolsLogFormatter.js +2 -1
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/logBuffer.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/logBuffer.js +6 -2
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/middleware/middy.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/middleware/middy.js +7 -4
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/ConfigServiceInterface.d.ts +1 -1
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/Logger.d.ts +4 -3
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/Logger.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/formatters.d.ts +2 -12
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/formatters.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/logKeys.d.ts +10 -4
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/logKeys.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/LogAttributesStore.d.ts +23 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/LogAttributesStore.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/LogAttributesStore.js +131 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/Logger.d.ts +8 -27
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/Logger.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/Logger.js +114 -136
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/formatter/LogFormatter.d.ts +1 -10
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/formatter/LogFormatter.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/formatter/LogFormatter.js +11 -20
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/formatter/LogItem.js +2 -2
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/formatter/PowertoolsLogFormatter.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/formatter/PowertoolsLogFormatter.js +2 -1
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/logBuffer.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/logBuffer.js +6 -2
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/middleware/middy.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/middleware/middy.js +7 -4
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/ConfigServiceInterface.d.ts +1 -1
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/Logger.d.ts +4 -3
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/Logger.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/formatters.d.ts +2 -12
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/formatters.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/logKeys.d.ts +10 -4
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/logKeys.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/logger/package.json +5 -5
- package/node_modules/@aws-sdk/client-kms/README.md +3 -60
- package/node_modules/@aws-sdk/client-kms/dist-cjs/auth/httpAuthSchemeProvider.js +3 -4
- package/node_modules/@aws-sdk/client-kms/dist-cjs/endpoint/ruleset.js +1 -1
- package/node_modules/@aws-sdk/client-kms/dist-cjs/index.js +3294 -4498
- package/node_modules/@aws-sdk/client-kms/dist-cjs/runtimeConfig.browser.js +3 -4
- package/node_modules/@aws-sdk/client-kms/dist-cjs/runtimeConfig.js +5 -8
- package/node_modules/@aws-sdk/client-kms/dist-cjs/runtimeConfig.shared.js +8 -0
- package/node_modules/@aws-sdk/client-kms/dist-es/KMS.js +19 -1
- package/node_modules/@aws-sdk/client-kms/dist-es/KMSClient.js +4 -2
- package/node_modules/@aws-sdk/client-kms/dist-es/auth/httpAuthSchemeProvider.js +3 -4
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/CancelKeyDeletionCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/ConnectCustomKeyStoreCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/CreateAliasCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/CreateCustomKeyStoreCommand.js +3 -10
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/CreateGrantCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/CreateKeyCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/DecryptCommand.js +3 -10
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/DeleteAliasCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/DeleteCustomKeyStoreCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/DeleteImportedKeyMaterialCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/DeriveSharedSecretCommand.js +3 -10
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/DescribeCustomKeyStoresCommand.js +3 -10
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/DescribeKeyCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/DisableKeyCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/DisableKeyRotationCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/DisconnectCustomKeyStoreCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/EnableKeyCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/EnableKeyRotationCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/EncryptCommand.js +3 -10
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/GenerateDataKeyCommand.js +3 -10
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/GenerateDataKeyPairCommand.js +3 -10
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/GenerateDataKeyPairWithoutPlaintextCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/GenerateDataKeyWithoutPlaintextCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/GenerateMacCommand.js +3 -10
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/GenerateRandomCommand.js +3 -10
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/GetKeyPolicyCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/GetKeyRotationStatusCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/GetParametersForImportCommand.js +3 -10
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/GetPublicKeyCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/ImportKeyMaterialCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/ListAliasesCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/ListGrantsCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/ListKeyPoliciesCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/ListKeyRotationsCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/ListKeysCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/ListResourceTagsCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/ListRetirableGrantsCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/PutKeyPolicyCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/ReEncryptCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/ReplicateKeyCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/RetireGrantCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/RevokeGrantCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/RotateKeyOnDemandCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/ScheduleKeyDeletionCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/SignCommand.js +3 -10
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/TagResourceCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/UntagResourceCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/UpdateAliasCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/UpdateCustomKeyStoreCommand.js +3 -10
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/UpdateKeyDescriptionCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/UpdatePrimaryRegionCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/VerifyCommand.js +3 -10
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/VerifyMacCommand.js +3 -10
- package/node_modules/@aws-sdk/client-kms/dist-es/endpoint/ruleset.js +1 -1
- package/node_modules/@aws-sdk/client-kms/dist-es/index.js +4 -1
- package/node_modules/@aws-sdk/client-kms/dist-es/models/enums.js +211 -0
- package/node_modules/@aws-sdk/client-kms/dist-es/models/errors.js +577 -0
- package/node_modules/@aws-sdk/client-kms/dist-es/models/models_0.js +1 -863
- package/node_modules/@aws-sdk/client-kms/dist-es/pagination/index.js +1 -1
- package/node_modules/@aws-sdk/client-kms/dist-es/runtimeConfig.browser.js +3 -4
- package/node_modules/@aws-sdk/client-kms/dist-es/runtimeConfig.js +6 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/runtimeConfig.shared.js +8 -0
- package/node_modules/@aws-sdk/client-kms/dist-es/schemas/schemas_0.js +1379 -0
- package/node_modules/@aws-sdk/client-kms/dist-types/KMS.d.ts +59 -2
- package/node_modules/@aws-sdk/client-kms/dist-types/KMSClient.d.ts +12 -11
- package/node_modules/@aws-sdk/client-kms/dist-types/auth/httpAuthExtensionConfiguration.d.ts +2 -2
- package/node_modules/@aws-sdk/client-kms/dist-types/auth/httpAuthSchemeProvider.d.ts +3 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/CancelKeyDeletionCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/ConnectCustomKeyStoreCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/CreateAliasCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/CreateCustomKeyStoreCommand.d.ts +6 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/CreateGrantCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/CreateKeyCommand.d.ts +11 -8
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/DecryptCommand.d.ts +11 -9
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/DeleteAliasCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/DeleteCustomKeyStoreCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/DeleteImportedKeyMaterialCommand.d.ts +19 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/DeriveSharedSecretCommand.d.ts +10 -8
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/DescribeCustomKeyStoresCommand.d.ts +6 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/DescribeKeyCommand.d.ts +10 -8
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/DisableKeyCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/DisableKeyRotationCommand.d.ts +7 -5
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/DisconnectCustomKeyStoreCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/EnableKeyCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/EnableKeyRotationCommand.d.ts +8 -6
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/EncryptCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/GenerateDataKeyCommand.d.ts +11 -9
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/GenerateDataKeyPairCommand.d.ts +14 -12
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/GenerateDataKeyPairWithoutPlaintextCommand.d.ts +7 -5
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/GenerateDataKeyWithoutPlaintextCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/GenerateMacCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/GenerateRandomCommand.d.ts +10 -8
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/GetKeyPolicyCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/GetKeyRotationStatusCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/GetParametersForImportCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/GetPublicKeyCommand.d.ts +7 -5
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/ImportKeyMaterialCommand.d.ts +35 -15
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/ListAliasesCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/ListGrantsCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/ListKeyPoliciesCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/ListKeyRotationsCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/ListKeysCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/ListResourceTagsCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/ListRetirableGrantsCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/PutKeyPolicyCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/ReEncryptCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/ReplicateKeyCommand.d.ts +7 -5
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/RetireGrantCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/RevokeGrantCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/RotateKeyOnDemandCommand.d.ts +13 -12
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/ScheduleKeyDeletionCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/SignCommand.d.ts +7 -5
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/TagResourceCommand.d.ts +8 -7
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/UntagResourceCommand.d.ts +7 -5
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/UpdateAliasCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/UpdateCustomKeyStoreCommand.d.ts +6 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/UpdateKeyDescriptionCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/UpdatePrimaryRegionCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/VerifyCommand.d.ts +7 -5
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/VerifyMacCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/endpoint/EndpointParameters.d.ts +13 -1
- package/node_modules/@aws-sdk/client-kms/dist-types/endpoint/endpointResolver.d.ts +5 -2
- package/node_modules/@aws-sdk/client-kms/dist-types/extensionConfiguration.d.ts +4 -4
- package/node_modules/@aws-sdk/client-kms/dist-types/index.d.ts +6 -2
- package/node_modules/@aws-sdk/client-kms/dist-types/models/KMSServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/client-kms/dist-types/models/enums.d.ts +435 -0
- package/node_modules/@aws-sdk/client-kms/dist-types/models/errors.d.ts +769 -0
- package/node_modules/@aws-sdk/client-kms/dist-types/models/models_0.d.ts +196 -1381
- package/node_modules/@aws-sdk/client-kms/dist-types/pagination/DescribeCustomKeyStoresPaginator.d.ts +1 -1
- package/node_modules/@aws-sdk/client-kms/dist-types/pagination/Interfaces.d.ts +1 -1
- package/node_modules/@aws-sdk/client-kms/dist-types/pagination/ListAliasesPaginator.d.ts +1 -1
- package/node_modules/@aws-sdk/client-kms/dist-types/pagination/ListGrantsPaginator.d.ts +1 -1
- package/node_modules/@aws-sdk/client-kms/dist-types/pagination/ListKeyPoliciesPaginator.d.ts +1 -1
- package/node_modules/@aws-sdk/client-kms/dist-types/pagination/ListKeyRotationsPaginator.d.ts +1 -1
- package/node_modules/@aws-sdk/client-kms/dist-types/pagination/ListKeysPaginator.d.ts +1 -1
- package/node_modules/@aws-sdk/client-kms/dist-types/pagination/ListResourceTagsPaginator.d.ts +1 -1
- package/node_modules/@aws-sdk/client-kms/dist-types/pagination/ListRetirableGrantsPaginator.d.ts +1 -1
- package/node_modules/@aws-sdk/client-kms/dist-types/pagination/index.d.ts +1 -1
- package/node_modules/@aws-sdk/client-kms/dist-types/runtimeConfig.browser.d.ts +7 -2
- package/node_modules/@aws-sdk/client-kms/dist-types/runtimeConfig.d.ts +8 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/runtimeConfig.native.d.ts +7 -2
- package/node_modules/@aws-sdk/client-kms/dist-types/runtimeConfig.shared.d.ts +7 -1
- package/node_modules/@aws-sdk/client-kms/dist-types/runtimeExtensions.d.ts +1 -1
- package/node_modules/@aws-sdk/client-kms/dist-types/schemas/schemas_0.d.ts +208 -0
- package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/KMS.d.ts +61 -1
- package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/KMSClient.d.ts +3 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/index.d.ts +4 -1
- package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/models/KMSServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/models/enums.d.ts +257 -0
- package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/models/errors.d.ts +381 -0
- package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/models/models_0.d.ts +33 -682
- package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/pagination/index.d.ts +1 -1
- package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -1
- package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/runtimeConfig.d.ts +10 -4
- package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -1
- package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -0
- package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/schemas/schemas_0.d.ts +212 -0
- package/node_modules/@aws-sdk/client-kms/package.json +48 -45
- package/node_modules/@aws-sdk/client-s3/README.md +51 -98
- package/node_modules/@aws-sdk/client-s3/dist-cjs/auth/httpAuthSchemeProvider.js +8 -9
- package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/ruleset.js +3 -3
- package/node_modules/@aws-sdk/client-s3/dist-cjs/index.js +6893 -11519
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.browser.js +3 -4
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.js +7 -12
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.shared.js +8 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/S3.js +37 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/S3Client.js +4 -2
- package/node_modules/@aws-sdk/client-s3/dist-es/auth/httpAuthSchemeProvider.js +8 -9
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/AbortMultipartUploadCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CompleteMultipartUploadCommand.js +2 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CopyObjectCommand.js +2 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateBucketCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateBucketMetadataConfigurationCommand.js +27 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateBucketMetadataTableConfigurationCommand.js +3 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateMultipartUploadCommand.js +2 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateSessionCommand.js +2 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketAnalyticsConfigurationCommand.js +3 -9
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketCommand.js +3 -9
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketCorsCommand.js +3 -9
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketEncryptionCommand.js +3 -9
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketIntelligentTieringConfigurationCommand.js +3 -9
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketInventoryConfigurationCommand.js +3 -9
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketLifecycleCommand.js +3 -9
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketMetadataConfigurationCommand.js +20 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketMetadataTableConfigurationCommand.js +3 -9
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketMetricsConfigurationCommand.js +3 -9
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketOwnershipControlsCommand.js +3 -9
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketPolicyCommand.js +3 -9
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketReplicationCommand.js +3 -9
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketTaggingCommand.js +3 -9
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketWebsiteCommand.js +3 -9
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectTaggingCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectsCommand.js +3 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeletePublicAccessBlockCommand.js +3 -9
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAbacCommand.js +23 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAccelerateConfigurationCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAclCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAnalyticsConfigurationCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketCorsCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketEncryptionCommand.js +2 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketIntelligentTieringConfigurationCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketInventoryConfigurationCommand.js +2 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLifecycleConfigurationCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLocationCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLoggingCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetadataConfigurationCommand.js +24 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetadataTableConfigurationCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetricsConfigurationCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketNotificationConfigurationCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketOwnershipControlsCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketPolicyCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketPolicyStatusCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketReplicationCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketRequestPaymentCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketTaggingCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketVersioningCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketWebsiteCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAclCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAttributesCommand.js +2 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectCommand.js +4 -9
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectLegalHoldCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectLockConfigurationCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectRetentionCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectTaggingCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectTorrentCommand.js +3 -10
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetPublicAccessBlockCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/HeadBucketCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/HeadObjectCommand.js +2 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketAnalyticsConfigurationsCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketIntelligentTieringConfigurationsCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketInventoryConfigurationsCommand.js +2 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketMetricsConfigurationsCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketsCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListDirectoryBucketsCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListMultipartUploadsCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectVersionsCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectsCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectsV2Command.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListPartsCommand.js +2 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAbacCommand.js +26 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAccelerateConfigurationCommand.js +3 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAclCommand.js +3 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAnalyticsConfigurationCommand.js +3 -9
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketCorsCommand.js +3 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketEncryptionCommand.js +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketIntelligentTieringConfigurationCommand.js +3 -9
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketInventoryConfigurationCommand.js +3 -10
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketLifecycleConfigurationCommand.js +3 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketLoggingCommand.js +3 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketMetricsConfigurationCommand.js +3 -9
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketNotificationConfigurationCommand.js +3 -9
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketOwnershipControlsCommand.js +3 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketPolicyCommand.js +3 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketReplicationCommand.js +3 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketRequestPaymentCommand.js +3 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketTaggingCommand.js +3 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketVersioningCommand.js +3 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketWebsiteCommand.js +3 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectAclCommand.js +3 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectCommand.js +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectLegalHoldCommand.js +3 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectLockConfigurationCommand.js +3 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectRetentionCommand.js +3 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectTaggingCommand.js +3 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutPublicAccessBlockCommand.js +3 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/RenameObjectCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/RestoreObjectCommand.js +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/SelectObjectContentCommand.js +2 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateBucketMetadataInventoryTableConfigurationCommand.js +27 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateBucketMetadataJournalTableConfigurationCommand.js +27 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateObjectEncryptionCommand.js +28 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/UploadPartCommand.js +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/UploadPartCopyCommand.js +2 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/WriteGetObjectResponseCommand.js +3 -10
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/index.js +8 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/endpoint/EndpointParameters.js +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/endpoint/ruleset.js +3 -3
- package/node_modules/@aws-sdk/client-s3/dist-es/index.js +5 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/models/enums.js +399 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/models/errors.js +185 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/models/models_0.js +1 -595
- package/node_modules/@aws-sdk/client-s3/dist-es/models/models_1.js +1 -210
- package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.browser.js +3 -4
- package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.js +8 -13
- package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.shared.js +8 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/schemas/schemas_0.js +3238 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForBucketExists.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForBucketNotExists.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForObjectExists.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForObjectNotExists.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/S3.d.ts +110 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/S3Client.d.ts +22 -14
- package/node_modules/@aws-sdk/client-s3/dist-types/auth/httpAuthExtensionConfiguration.d.ts +2 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/auth/httpAuthSchemeProvider.d.ts +2 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/AbortMultipartUploadCommand.d.ts +25 -25
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CompleteMultipartUploadCommand.d.ts +54 -60
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CopyObjectCommand.d.ts +111 -118
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketCommand.d.ts +86 -101
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketMetadataConfigurationCommand.d.ts +187 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketMetadataTableConfigurationCommand.d.ts +33 -15
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateMultipartUploadCommand.d.ts +100 -123
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateSessionCommand.d.ts +53 -53
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketAnalyticsConfigurationCommand.d.ts +15 -12
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketCommand.d.ts +18 -15
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketCorsCommand.d.ts +12 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketEncryptionCommand.d.ts +24 -21
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketIntelligentTieringConfigurationCommand.d.ts +8 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketInventoryConfigurationCommand.d.ts +12 -9
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketLifecycleCommand.d.ts +31 -31
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetadataConfigurationCommand.d.ts +119 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetadataTableConfigurationCommand.d.ts +34 -11
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetricsConfigurationCommand.d.ts +17 -15
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketOwnershipControlsCommand.d.ts +13 -9
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketPolicyCommand.d.ts +28 -26
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketReplicationCommand.d.ts +13 -10
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketTaggingCommand.d.ts +12 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketWebsiteCommand.d.ts +17 -13
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectCommand.d.ts +53 -26
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectTaggingCommand.d.ts +15 -10
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectsCommand.d.ts +50 -47
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeletePublicAccessBlockCommand.d.ts +16 -9
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAbacCommand.d.ts +77 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAccelerateConfigurationCommand.d.ts +22 -20
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAclCommand.d.ts +18 -22
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAnalyticsConfigurationCommand.d.ts +16 -14
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketCorsCommand.d.ts +12 -9
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketEncryptionCommand.d.ts +29 -22
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketIntelligentTieringConfigurationCommand.d.ts +8 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketInventoryConfigurationCommand.d.ts +15 -12
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLifecycleConfigurationCommand.d.ts +36 -40
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLocationCommand.d.ts +26 -11
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLoggingCommand.d.ts +11 -13
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetadataConfigurationCommand.d.ts +151 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetadataTableConfigurationCommand.d.ts +33 -11
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetricsConfigurationCommand.d.ts +18 -14
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketNotificationConfigurationCommand.d.ts +15 -11
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketOwnershipControlsCommand.d.ts +17 -11
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketPolicyCommand.d.ts +33 -33
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketPolicyStatusCommand.d.ts +13 -9
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketReplicationCommand.d.ts +20 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketRequestPaymentCommand.d.ts +10 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketTaggingCommand.d.ts +12 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketVersioningCommand.d.ts +11 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketWebsiteCommand.d.ts +14 -10
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAclCommand.d.ts +17 -14
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAttributesCommand.d.ts +64 -74
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectCommand.d.ts +75 -85
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectLegalHoldCommand.d.ts +9 -5
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectLockConfigurationCommand.d.ts +11 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectRetentionCommand.d.ts +9 -5
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectTaggingCommand.d.ts +16 -13
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectTorrentCommand.d.ts +12 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetPublicAccessBlockCommand.d.ts +23 -15
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/HeadBucketCommand.d.ts +45 -38
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/HeadObjectCommand.d.ts +59 -66
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketAnalyticsConfigurationsCommand.d.ts +22 -20
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketIntelligentTieringConfigurationsCommand.d.ts +8 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketInventoryConfigurationsCommand.d.ts +21 -19
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketMetricsConfigurationsCommand.d.ts +23 -21
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketsCommand.d.ts +20 -20
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListDirectoryBucketsCommand.d.ts +18 -12
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListMultipartUploadsCommand.d.ts +50 -60
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectVersionsCommand.d.ts +15 -19
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectsCommand.d.ts +17 -18
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectsV2Command.d.ts +36 -34
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListPartsCommand.d.ts +30 -35
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAbacCommand.d.ts +78 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAccelerateConfigurationCommand.d.ts +21 -20
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAclCommand.d.ts +61 -70
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAnalyticsConfigurationCommand.d.ts +30 -27
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketCorsCommand.d.ts +31 -30
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketEncryptionCommand.d.ts +53 -51
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketIntelligentTieringConfigurationCommand.d.ts +19 -15
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketInventoryConfigurationCommand.d.ts +42 -41
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketLifecycleConfigurationCommand.d.ts +61 -65
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketLoggingCommand.d.ts +37 -42
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketMetricsConfigurationCommand.d.ts +20 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketNotificationConfigurationCommand.d.ts +37 -38
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketOwnershipControlsCommand.d.ts +12 -9
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketPolicyCommand.d.ts +32 -32
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketReplicationCommand.d.ts +40 -42
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketRequestPaymentCommand.d.ts +12 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketTaggingCommand.d.ts +30 -31
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketVersioningCommand.d.ts +28 -26
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketWebsiteCommand.d.ts +27 -21
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectAclCommand.d.ts +67 -65
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectCommand.d.ts +87 -85
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectLegalHoldCommand.d.ts +9 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectLockConfigurationCommand.d.ts +18 -14
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectRetentionCommand.d.ts +12 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectTaggingCommand.d.ts +26 -27
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutPublicAccessBlockCommand.d.ts +20 -15
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/RenameObjectCommand.d.ts +42 -43
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/RestoreObjectCommand.d.ts +86 -89
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/SelectObjectContentCommand.d.ts +58 -62
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateBucketMetadataInventoryTableConfigurationCommand.d.ts +166 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateBucketMetadataJournalTableConfigurationCommand.d.ts +118 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateObjectEncryptionCommand.d.ts +259 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UploadPartCommand.d.ts +75 -77
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UploadPartCopyCommand.d.ts +91 -99
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/WriteGetObjectResponseCommand.d.ts +37 -36
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/endpoint/EndpointParameters.d.ts +16 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/endpoint/endpointResolver.d.ts +5 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/extensionConfiguration.d.ts +4 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/index.d.ts +5 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/models/S3ServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/models/enums.d.ts +975 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/models/errors.d.ts +208 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/models/models_0.d.ts +5432 -3703
- package/node_modules/@aws-sdk/client-s3/dist-types/models/models_1.d.ts +611 -2914
- package/node_modules/@aws-sdk/client-s3/dist-types/pagination/Interfaces.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/pagination/ListBucketsPaginator.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/pagination/ListDirectoryBucketsPaginator.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/pagination/ListObjectsV2Paginator.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/pagination/ListPartsPaginator.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.browser.d.ts +12 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.d.ts +13 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.native.d.ts +12 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.shared.d.ts +9 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/runtimeExtensions.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/schemas/schemas_0.d.ts +457 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3.d.ts +231 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3Client.d.ts +54 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +3 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateBucketMetadataConfigurationCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketMetadataConfigurationCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAbacCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketMetadataConfigurationCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectTorrentCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAbacCommand.d.ts +45 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketCorsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketEncryptionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketIntelligentTieringConfigurationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketInventoryConfigurationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketLifecycleConfigurationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketLoggingCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketMetricsConfigurationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketNotificationConfigurationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketOwnershipControlsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketPolicyCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketReplicationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketRequestPaymentCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketTaggingCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketVersioningCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketWebsiteCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectAclCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectLegalHoldCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectLockConfigurationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectRetentionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectTaggingCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutPublicAccessBlockCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/RenameObjectCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/RestoreObjectCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateBucketMetadataInventoryTableConfigurationCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateBucketMetadataJournalTableConfigurationCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateObjectEncryptionCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +6 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/index.d.ts +5 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/S3ServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/enums.d.ts +523 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/errors.d.ts +92 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_0.d.ts +505 -574
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_1.d.ts +70 -495
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.browser.d.ts +17 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.d.ts +18 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.native.d.ts +17 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/schemas/schemas_0.d.ts +462 -0
- package/node_modules/@aws-sdk/client-s3/package.json +68 -70
- package/node_modules/@aws-sdk/client-sso/README.md +1 -9
- package/node_modules/@aws-sdk/client-sso/dist-cjs/auth/httpAuthSchemeProvider.js +27 -20
- package/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/ruleset.js +1 -1
- package/node_modules/@aws-sdk/client-sso/dist-cjs/index.js +410 -611
- package/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.browser.js +3 -4
- package/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.js +5 -8
- package/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.shared.js +7 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/SSO.js +7 -1
- package/node_modules/@aws-sdk/client-sso/dist-es/SSOClient.js +4 -2
- package/node_modules/@aws-sdk/client-sso/dist-es/auth/httpAuthSchemeProvider.js +27 -20
- package/node_modules/@aws-sdk/client-sso/dist-es/commands/GetRoleCredentialsCommand.js +3 -10
- package/node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountRolesCommand.js +3 -10
- package/node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountsCommand.js +3 -10
- package/node_modules/@aws-sdk/client-sso/dist-es/commands/LogoutCommand.js +3 -10
- package/node_modules/@aws-sdk/client-sso/dist-es/endpoint/ruleset.js +1 -1
- package/node_modules/@aws-sdk/client-sso/dist-es/index.js +3 -1
- package/node_modules/@aws-sdk/client-sso/dist-es/models/errors.js +49 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/models/models_0.js +1 -75
- package/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.browser.js +3 -4
- package/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.js +6 -9
- package/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.shared.js +7 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/schemas/schemas_0.js +152 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/SSO.d.ts +15 -1
- package/node_modules/@aws-sdk/client-sso/dist-types/SSOClient.d.ts +10 -10
- package/node_modules/@aws-sdk/client-sso/dist-types/auth/httpAuthExtensionConfiguration.d.ts +2 -2
- package/node_modules/@aws-sdk/client-sso/dist-types/auth/httpAuthSchemeProvider.d.ts +3 -3
- package/node_modules/@aws-sdk/client-sso/dist-types/commands/GetRoleCredentialsCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountRolesCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountsCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-sso/dist-types/commands/LogoutCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-sso/dist-types/endpoint/EndpointParameters.d.ts +13 -1
- package/node_modules/@aws-sdk/client-sso/dist-types/endpoint/endpointResolver.d.ts +5 -2
- package/node_modules/@aws-sdk/client-sso/dist-types/extensionConfiguration.d.ts +4 -4
- package/node_modules/@aws-sdk/client-sso/dist-types/index.d.ts +3 -1
- package/node_modules/@aws-sdk/client-sso/dist-types/models/SSOServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/client-sso/dist-types/models/errors.d.ts +53 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/models/models_0.d.ts +0 -77
- package/node_modules/@aws-sdk/client-sso/dist-types/pagination/Interfaces.d.ts +1 -1
- package/node_modules/@aws-sdk/client-sso/dist-types/pagination/ListAccountRolesPaginator.d.ts +1 -1
- package/node_modules/@aws-sdk/client-sso/dist-types/pagination/ListAccountsPaginator.d.ts +1 -1
- package/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.browser.d.ts +7 -2
- package/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.d.ts +7 -2
- package/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.native.d.ts +7 -2
- package/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.shared.d.ts +8 -2
- package/node_modules/@aws-sdk/client-sso/dist-types/runtimeExtensions.d.ts +1 -1
- package/node_modules/@aws-sdk/client-sso/dist-types/schemas/schemas_0.d.ts +20 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSO.d.ts +19 -1
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSOClient.d.ts +2 -2
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/index.d.ts +3 -1
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/SSOServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/errors.d.ts +30 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/models_0.d.ts +0 -48
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -1
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.d.ts +9 -1
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -1
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/schemas/schemas_0.d.ts +24 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/README.md +6 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js +415 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partitions.json +267 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-es/aws.js +10 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-es/index.js +6 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/index.js +3 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/isVirtualHostableS3Bucket.js +25 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/parseArn.js +18 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partition.js +41 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partitions.json +267 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-es/lib/isIpAddress.js +1 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-es/resolveDefaultAwsRegionalEndpointsConfig.js +21 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-es/resolveEndpoint.js +1 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointError.js +1 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointRuleObject.js +1 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-es/types/ErrorRuleObject.js +1 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-es/types/RuleSetObject.js +1 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-es/types/TreeRuleObject.js +1 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-es/types/index.js +6 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-es/types/shared.js +1 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/aws.d.ts +2 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/isVirtualHostableS3Bucket.d.ts +5 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/parseArn.d.ts +7 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/partition.d.ts +38 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/lib/isIpAddress.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/resolveDefaultAwsRegionalEndpointsConfig.d.ts +56 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/resolveEndpoint.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/aws.d.ts +2 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/isVirtualHostableS3Bucket.d.ts +4 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/parseArn.d.ts +2 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/partition.d.ts +28 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveDefaultAwsRegionalEndpointsConfig.d.ts +35 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveEndpoint.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointError.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointRuleObject.d.ts +6 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/ErrorRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/RuleSetObject.d.ts +5 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/TreeRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/shared.d.ts +12 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointError.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/types/RuleSetObject.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/types/TreeRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/dist-types/types/shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints/package.json +60 -0
- package/node_modules/@aws-sdk/client-sso/package.json +45 -44
- package/node_modules/@aws-sdk/core/LICENSE +201 -0
- package/node_modules/@aws-sdk/core/account-id-endpoint.js +0 -1
- package/node_modules/@aws-sdk/core/dist-cjs/index.js +2196 -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 +39 -66
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/httpAuthSchemes/index.js +281 -365
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +1801 -1670
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/emitWarningIfUnsupportedVersion.js +3 -3
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/index.js +1 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/setTokenFeature.js +7 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.js +9 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/ProtocolLib.js +122 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/UnionSerde.js +23 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.js +49 -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 +7 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJson1_1Protocol.js +7 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJsonRpcProtocol.js +36 -44
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsRestJsonProtocol.js +25 -61
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeDeserializer.js +87 -37
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeSerializer.js +131 -61
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/experimental/SinglePassJsonShapeSerializer.js +135 -0
- 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 +31 -42
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/QueryShapeSerializer.js +36 -7
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/AwsRestXmlProtocol.js +29 -73
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeDeserializer.js +24 -23
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeSerializer.js +36 -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/client/index.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/setTokenFeature.d.ts +7 -0
- 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 +61 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/UnionSerde.d.ts +24 -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 +10 -2
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJson1_1Protocol.d.ts +10 -2
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJsonRpcProtocol.d.ts +13 -4
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsRestJsonProtocol.d.ts +17 -2
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonCodec.d.ts +2 -2
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonShapeDeserializer.d.ts +3 -3
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonShapeSerializer.d.ts +19 -6
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/experimental/SinglePassJsonShapeSerializer.d.ts +27 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/jsonReviver.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/AwsEc2QueryProtocol.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/AwsQueryProtocol.d.ts +10 -3
- 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/query/QueryShapeSerializer.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/AwsRestXmlProtocol.d.ts +11 -3
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlCodec.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlShapeDeserializer.d.ts +3 -3
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlShapeSerializer.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/index.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/setTokenFeature.d.ts +6 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/ProtocolLib.d.ts +47 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/UnionSerde.d.ts +9 -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 +13 -1
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJson1_1Protocol.d.ts +13 -1
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJsonRpcProtocol.d.ts +15 -2
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsRestJsonProtocol.d.ts +8 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonShapeDeserializer.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonShapeSerializer.d.ts +10 -3
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/experimental/SinglePassJsonShapeSerializer.d.ts +17 -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 +4 -1
- package/node_modules/@aws-sdk/core/package.json +24 -26
- package/node_modules/@aws-sdk/crc64-nvme/LICENSE +201 -0
- package/node_modules/@aws-sdk/crc64-nvme/README.md +61 -0
- package/node_modules/@aws-sdk/crc64-nvme/dist-cjs/index.js +101 -0
- package/node_modules/@aws-sdk/crc64-nvme/dist-es/Crc64Nvme.js +92 -0
- package/node_modules/@aws-sdk/crc64-nvme/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/crc64-nvme/dist-types/Crc64Nvme.d.ts +24 -0
- package/node_modules/@aws-sdk/crc64-nvme/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/crc64-nvme/dist-types/ts3.4/Crc64Nvme.d.ts +9 -0
- package/node_modules/@aws-sdk/crc64-nvme/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/crc64-nvme/package.json +50 -0
- package/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js +38 -73
- package/node_modules/@aws-sdk/credential-provider-env/package.json +14 -13
- 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 +19 -18
- package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +207 -259
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/fromIni.js +3 -10
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveAssumeRoleCredentials.js +4 -4
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveLoginCredentials.js +12 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProfileData.js +8 -4
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveSsoCredentials.js +4 -2
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveWebIdentityCredentials.js +4 -2
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/fromIni.d.ts +6 -6
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveAssumeRoleCredentials.d.ts +4 -3
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveLoginCredentials.d.ts +11 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProfileData.d.ts +6 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveSsoCredentials.d.ts +2 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveWebIdentityCredentials.d.ts +2 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/fromIni.d.ts +8 -4
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveAssumeRoleCredentials.d.ts +5 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveLoginCredentials.d.ts +9 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProfileData.d.ts +3 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveSsoCredentials.d.ts +3 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveWebIdentityCredentials.d.ts +3 -1
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +25 -23
- package/node_modules/@aws-sdk/credential-provider-login/README.md +7 -0
- package/node_modules/@aws-sdk/credential-provider-login/dist-cjs/index.js +286 -0
- package/node_modules/@aws-sdk/credential-provider-login/dist-es/LoginCredentialsFetcher.js +262 -0
- package/node_modules/@aws-sdk/credential-provider-login/dist-es/fromLoginCredentials.js +21 -0
- package/node_modules/@aws-sdk/credential-provider-login/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/credential-provider-login/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-login/dist-types/LoginCredentialsFetcher.d.ts +42 -0
- package/node_modules/@aws-sdk/credential-provider-login/dist-types/fromLoginCredentials.d.ts +7 -0
- package/node_modules/@aws-sdk/credential-provider-login/dist-types/index.d.ts +8 -0
- package/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/LoginCredentialsFetcher.d.ts +24 -0
- package/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/fromLoginCredentials.d.ts +5 -0
- package/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/types.d.ts +39 -0
- package/node_modules/@aws-sdk/credential-provider-login/dist-types/types.d.ts +59 -0
- package/node_modules/@aws-sdk/credential-provider-login/package.json +68 -0
- package/node_modules/@aws-sdk/credential-provider-node/README.md +3 -3
- package/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +133 -124
- package/node_modules/@aws-sdk/credential-provider-node/dist-es/defaultProvider.js +55 -44
- package/node_modules/@aws-sdk/credential-provider-node/dist-es/runtime/memoize-chain.js +60 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/defaultProvider.d.ts +3 -2
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/runtime/memoize-chain.d.ts +18 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/defaultProvider.d.ts +3 -2
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/runtime/memoize-chain.d.ts +19 -0
- package/node_modules/@aws-sdk/credential-provider-node/package.json +25 -23
- 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 +15 -14
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +179 -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 +10 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/resolveSSOCredentials.js +9 -3
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/fromSSO.d.ts +2 -1
- 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/fromSSO.d.ts +2 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/resolveSSOCredentials.d.ts +4 -0
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +17 -16
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js +5 -3
- 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 +5 -3
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromTokenFile.d.ts +2 -3
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromTokenFile.d.ts +5 -3
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +16 -14
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-cjs/index.js +334 -450
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/package.json +15 -14
- package/node_modules/@aws-sdk/middleware-expect-continue/dist-cjs/index.js +42 -60
- package/node_modules/@aws-sdk/middleware-expect-continue/dist-es/index.js +18 -6
- package/node_modules/@aws-sdk/middleware-expect-continue/dist-types/index.d.ts +3 -1
- package/node_modules/@aws-sdk/middleware-expect-continue/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@aws-sdk/middleware-expect-continue/package.json +14 -13
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-cjs/index.js +390 -479
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/flexibleChecksumsMiddleware.js +25 -9
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/index.js +0 -1
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/selectChecksumAlgorithmFunction.js +2 -6
- 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/index.d.ts +0 -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/index.d.ts +0 -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 +24 -22
- package/node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js +35 -63
- package/node_modules/@aws-sdk/middleware-host-header/package.json +14 -13
- 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 +13 -12
- 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 +14 -13
- 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 +33 -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 +29 -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 +20 -14
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.js +513 -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/dist-es/s3Configuration.js +2 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3Configuration.d.ts +17 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3Configuration.d.ts +2 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +26 -25
- package/node_modules/@aws-sdk/middleware-ssec/dist-cjs/index.js +65 -92
- package/node_modules/@aws-sdk/middleware-ssec/package.json +13 -12
- package/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js +170 -203
- package/node_modules/@aws-sdk/middleware-user-agent/dist-es/constants.js +2 -2
- package/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js +1 -1
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/LICENSE +201 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/README.md +6 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js +415 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partitions.json +267 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-es/aws.js +10 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-es/index.js +6 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/index.js +3 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/isVirtualHostableS3Bucket.js +25 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/parseArn.js +18 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partition.js +41 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partitions.json +267 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-es/lib/isIpAddress.js +1 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-es/resolveDefaultAwsRegionalEndpointsConfig.js +21 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-es/resolveEndpoint.js +1 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointError.js +1 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointRuleObject.js +1 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-es/types/ErrorRuleObject.js +1 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-es/types/RuleSetObject.js +1 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-es/types/TreeRuleObject.js +1 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-es/types/index.js +6 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-es/types/shared.js +1 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/aws.d.ts +2 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/index.d.ts +3 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/isVirtualHostableS3Bucket.d.ts +5 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/parseArn.d.ts +7 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/partition.d.ts +38 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/lib/isIpAddress.d.ts +1 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/resolveDefaultAwsRegionalEndpointsConfig.d.ts +56 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/resolveEndpoint.d.ts +1 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/aws.d.ts +2 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/index.d.ts +6 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/index.d.ts +3 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/isVirtualHostableS3Bucket.d.ts +4 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/parseArn.d.ts +2 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/partition.d.ts +28 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts +1 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveDefaultAwsRegionalEndpointsConfig.d.ts +35 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveEndpoint.d.ts +1 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointError.d.ts +1 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointRuleObject.d.ts +6 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/ErrorRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/RuleSetObject.d.ts +5 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/TreeRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/shared.d.ts +12 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointError.d.ts +1 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/types/RuleSetObject.d.ts +1 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/types/TreeRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/dist-types/types/shared.d.ts +1 -0
- package/node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints/package.json +60 -0
- package/node_modules/@aws-sdk/middleware-user-agent/package.json +17 -16
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/index.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/auth/httpAuthSchemeProvider.js +56 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/endpointResolver.js +18 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js +349 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.browser.js +39 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.js +53 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.shared.js +47 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/ruleset.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js +482 -854
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.browser.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.js +3 -4
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.shared.js +7 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/STSClient.js +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/ruleset.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js +463 -931
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.browser.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.js +3 -4
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.shared.js +8 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/Signin.js +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/SigninClient.js +50 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/auth/httpAuthSchemeProvider.js +50 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commands/CreateOAuth2TokenCommand.js +16 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commands/index.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/EndpointParameters.js +13 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/endpointResolver.js +14 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/index.js +8 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/SigninServiceException.js +8 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/enums.js +8 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/errors.js +57 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/models_0.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.browser.js +34 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.js +48 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.shared.js +43 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeExtensions.js +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/schemas/schemas_0.js +119 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/SSOOIDCClient.js +4 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/commands/CreateTokenCommand.js +3 -10
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/ruleset.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/index.js +4 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/enums.js +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/errors.js +181 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/models_0.js +1 -190
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.browser.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.js +4 -5
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.shared.js +7 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/schemas/schemas_0.js +134 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STSClient.js +4 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleCommand.js +3 -10
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.js +3 -10
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/defaultStsRoleAssumers.js +22 -10
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/ruleset.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/index.js +3 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/errors.js +85 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/models_0.js +1 -102
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.browser.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.js +4 -5
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.shared.js +8 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/schemas/schemas_0.js +189 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/Signin.d.ts +18 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/SigninClient.d.ts +189 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +157 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/commands/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/EndpointParameters.d.ts +50 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/index.d.ts +17 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/SigninServiceException.d.ts +14 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/enums.d.ts +34 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/errors.d.ts +102 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/models_0.d.ts +142 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.browser.d.ts +63 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.d.ts +63 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.native.d.ts +62 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.shared.d.ts +38 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/schemas/schemas_0.d.ts +12 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/SSOOIDC.d.ts +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/SSOOIDCClient.d.ts +11 -11
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.d.ts +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/auth/httpAuthSchemeProvider.d.ts +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/EndpointParameters.d.ts +13 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/endpointResolver.d.ts +5 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/extensionConfiguration.d.ts +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/index.d.ts +5 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/SSOOIDCServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/enums.d.ts +25 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/errors.d.ts +279 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/models_0.d.ts +1 -279
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.browser.d.ts +7 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.d.ts +7 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.native.d.ts +7 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.shared.d.ts +8 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeExtensions.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/schemas/schemas_0.d.ts +16 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/STS.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/STSClient.d.ts +10 -10
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/auth/httpAuthExtensionConfiguration.d.ts +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/auth/httpAuthSchemeProvider.d.ts +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleCommand.d.ts +8 -7
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +10 -8
- 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/submodules/sts/endpoint/EndpointParameters.d.ts +13 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/endpointResolver.d.ts +5 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/extensionConfiguration.d.ts +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/index.d.ts +3 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/STSServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/errors.d.ts +107 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/models_0.d.ts +7 -131
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.browser.d.ts +7 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.d.ts +8 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.native.d.ts +7 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.shared.d.ts +8 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeExtensions.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/schemas/schemas_0.d.ts +20 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/Signin.d.ts +22 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/SigninClient.d.ts +123 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/commands/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/EndpointParameters.d.ts +51 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/index.d.ts +11 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/SigninServiceException.d.ts +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/enums.d.ts +10 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/errors.d.ts +35 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/models_0.d.ts +26 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.browser.d.ts +125 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.d.ts +118 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.native.d.ts +129 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.shared.d.ts +58 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/schemas/schemas_0.d.ts +16 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/SSOOIDCClient.d.ts +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/index.d.ts +4 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/SSOOIDCServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/enums.d.ts +13 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/errors.d.ts +105 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/models_0.d.ts +0 -105
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.browser.d.ts +9 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.d.ts +9 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.native.d.ts +9 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.shared.d.ts +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/schemas/schemas_0.d.ts +20 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/STSClient.d.ts +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/auth/httpAuthSchemeProvider.d.ts +1 -1
- 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/dist-types/ts3.4/submodules/sts/index.d.ts +3 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/STSServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/errors.d.ts +54 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/models_0.d.ts +0 -64
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.browser.d.ts +9 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.d.ts +9 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.native.d.ts +9 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.shared.d.ts +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/schemas/schemas_0.d.ts +24 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/LICENSE +201 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/README.md +6 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js +415 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partitions.json +267 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-es/aws.js +10 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-es/index.js +6 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/index.js +3 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/isVirtualHostableS3Bucket.js +25 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/parseArn.js +18 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partition.js +41 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partitions.json +267 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-es/lib/isIpAddress.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-es/resolveDefaultAwsRegionalEndpointsConfig.js +21 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-es/resolveEndpoint.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointError.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointRuleObject.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-es/types/ErrorRuleObject.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-es/types/RuleSetObject.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-es/types/TreeRuleObject.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-es/types/index.js +6 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-es/types/shared.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/aws.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/index.d.ts +3 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/isVirtualHostableS3Bucket.d.ts +5 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/parseArn.d.ts +7 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/partition.d.ts +38 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/lib/isIpAddress.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/resolveDefaultAwsRegionalEndpointsConfig.d.ts +56 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/resolveEndpoint.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/aws.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/index.d.ts +6 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/index.d.ts +3 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/isVirtualHostableS3Bucket.d.ts +4 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/parseArn.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/partition.d.ts +28 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveDefaultAwsRegionalEndpointsConfig.d.ts +35 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveEndpoint.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointError.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointRuleObject.d.ts +6 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/ErrorRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/RuleSetObject.d.ts +5 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/TreeRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/shared.d.ts +12 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointError.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/types/RuleSetObject.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/types/TreeRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/dist-types/types/shared.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints/package.json +60 -0
- package/node_modules/@aws-sdk/nested-clients/package.json +53 -41
- package/node_modules/@aws-sdk/nested-clients/signin.d.ts +7 -0
- package/node_modules/@aws-sdk/nested-clients/signin.js +5 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/index.js +44 -100
- package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/stsRegionDefaultResolver.js +20 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/stsRegionDefaultResolver.native.js +6 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/index.js +2 -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-es/regionConfig/stsRegionDefaultResolver.browser.js +3 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/stsRegionDefaultResolver.js +16 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/stsRegionDefaultResolver.native.js +3 -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 +2 -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/regionConfig/stsRegionDefaultResolver.browser.d.ts +4 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/stsRegionDefaultResolver.d.ts +14 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/stsRegionDefaultResolver.native.d.ts +4 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/index.d.ts +2 -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/dist-types/ts3.4/regionConfig/stsRegionDefaultResolver.browser.d.ts +1 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/stsRegionDefaultResolver.d.ts +7 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/stsRegionDefaultResolver.native.d.ts +1 -0
- package/node_modules/@aws-sdk/region-config-resolver/package.json +18 -15
- 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 +14 -13
- package/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +143 -220
- package/node_modules/@aws-sdk/token-providers/dist-es/fromEnvSigningName.js +5 -2
- package/node_modules/@aws-sdk/token-providers/dist-es/fromSso.js +2 -9
- package/node_modules/@aws-sdk/token-providers/dist-es/getNewSsoOidcToken.js +2 -2
- package/node_modules/@aws-sdk/token-providers/dist-es/getSsoOidcClient.js +4 -2
- package/node_modules/@aws-sdk/token-providers/dist-types/fromSso.d.ts +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/getNewSsoOidcToken.d.ts +3 -2
- package/node_modules/@aws-sdk/token-providers/dist-types/getSsoOidcClient.d.ts +2 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromSso.d.ts +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getNewSsoOidcToken.d.ts +3 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getSsoOidcClient.d.ts +3 -1
- package/node_modules/@aws-sdk/token-providers/package.json +17 -15
- package/node_modules/@aws-sdk/types/dist-cjs/index.js +18 -290
- package/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +2 -0
- package/node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts +9 -1
- package/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +10 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +2 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/feature-ids.d.ts +7 -1
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +5 -0
- package/node_modules/@aws-sdk/types/package.json +10 -9
- package/node_modules/@aws-sdk/util-arn-parser/dist-cjs/index.js +24 -61
- package/node_modules/@aws-sdk/util-arn-parser/dist-types/index.d.ts +9 -0
- package/node_modules/@aws-sdk/util-arn-parser/package.json +10 -9
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js +398 -436
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partitions.json +43 -37
- package/node_modules/@aws-sdk/util-endpoints/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partitions.json +43 -37
- package/node_modules/@aws-sdk/util-endpoints/dist-es/resolveDefaultAwsRegionalEndpointsConfig.js +21 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/resolveDefaultAwsRegionalEndpointsConfig.d.ts +56 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveDefaultAwsRegionalEndpointsConfig.d.ts +35 -0
- package/node_modules/@aws-sdk/util-endpoints/package.json +13 -11
- 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 +10 -9
- 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 +14 -13
- 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 +19 -10
- 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 +4 -3
- 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 +172 -214
- package/node_modules/@smithy/config-resolver/dist-es/regionConfig/checkRegion.js +15 -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 +8 -6
- package/node_modules/@smithy/core/dist-cjs/index.js +308 -413
- package/node_modules/@smithy/core/dist-cjs/submodules/cbor/index.js +1030 -927
- package/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.js +256 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +816 -799
- package/node_modules/@smithy/core/dist-cjs/submodules/schema/index.js +600 -732
- package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.js +662 -716
- 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 +129 -53
- package/node_modules/@smithy/core/dist-es/submodules/cbor/SmithyRpcV2CborProtocol.js +41 -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 +38 -23
- 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 +251 -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 +130 -37
- package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpProtocol.js +55 -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 +16 -12
- 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 +6 -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 -14
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/ListSchema.js +11 -12
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/MapSchema.js +13 -13
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/NormalizedSchema.js +169 -189
- 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 -12
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/StructureSchema.js +13 -19
- 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 +101 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/value/NumericValue.js +7 -21
- 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 +18 -14
- package/node_modules/@smithy/core/dist-types/submodules/cbor/SmithyRpcV2CborProtocol.d.ts +3 -3
- 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 +15 -3
- package/node_modules/@smithy/core/dist-types/submodules/protocols/HttpProtocol.d.ts +48 -5
- package/node_modules/@smithy/core/dist-types/submodules/protocols/RpcProtocol.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/submodules/protocols/SerdeContext.d.ts +16 -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 +4 -5
- package/node_modules/@smithy/core/dist-types/submodules/protocols/serde/HttpInterceptingShapeDeserializer.d.ts +7 -4
- package/node_modules/@smithy/core/dist-types/submodules/protocols/serde/HttpInterceptingShapeSerializer.d.ts +6 -3
- package/node_modules/@smithy/core/dist-types/submodules/protocols/serde/ToStringShapeSerializer.d.ts +4 -5
- 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 +15 -6
- 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 +11 -12
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/ListSchema.d.ts +6 -3
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/MapSchema.d.ts +6 -7
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/NormalizedSchema.d.ts +38 -28
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/OperationSchema.d.ts +6 -3
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/Schema.d.ts +7 -2
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/SimpleSchema.d.ts +12 -4
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/StructureSchema.d.ts +6 -4
- 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 +4 -2
- 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/submodules/serde/value/NumericValue.d.ts +1 -1
- 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 +18 -14
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/SmithyRpcV2CborProtocol.d.ts +3 -3
- 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 +15 -3
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/HttpProtocol.d.ts +48 -5
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/RpcProtocol.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/SerdeContext.d.ts +16 -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 +4 -5
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/HttpInterceptingShapeDeserializer.d.ts +6 -3
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/HttpInterceptingShapeSerializer.d.ts +6 -3
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/ToStringShapeSerializer.d.ts +4 -5
- 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 +14 -5
- 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 +11 -12
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/ListSchema.d.ts +6 -3
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/MapSchema.d.ts +6 -7
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/NormalizedSchema.d.ts +38 -28
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/OperationSchema.d.ts +6 -3
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/Schema.d.ts +7 -2
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/SimpleSchema.d.ts +11 -3
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/StructureSchema.d.ts +6 -7
- 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 +3 -1
- 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/ts3.4/submodules/serde/value/NumericValue.d.ts +1 -1
- 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 +38 -24
- 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 +7 -6
- 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 +6 -5
- 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 +5 -4
- 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 +4 -3
- 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 +5 -4
- 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 +9 -6
- 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 +6 -4
- 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 +4 -3
- 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 +3 -2
- package/node_modules/@smithy/fetch-http-handler/package.json +10 -9
- 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 +7 -6
- 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 +6 -5
- 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 +6 -5
- 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 +4 -3
- 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 +7 -6
- 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 +7 -6
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.js +1 -1
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/index.js +226 -272
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/createConfigValueProvider.js +13 -2
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromInstructions.js +3 -2
- package/node_modules/@smithy/middleware-endpoint/dist-es/endpointMiddleware.js +1 -1
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/createConfigValueProvider.d.ts +2 -1
- 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 +6 -3
- 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/dist-types/ts3.4/adaptors/createConfigValueProvider.d.ts +2 -1
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/resolveEndpointConfig.d.ts +5 -2
- package/node_modules/@smithy/middleware-endpoint/package.json +13 -12
- 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 +17 -17
- package/node_modules/@smithy/middleware-serde/dist-cjs/index.js +92 -118
- package/node_modules/@smithy/middleware-serde/dist-es/deserializerMiddleware.js +3 -0
- 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 +7 -6
- 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 +4 -3
- 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 +6 -5
- package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +694 -768
- package/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +31 -16
- 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 +11 -8
- 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 +4 -4
- 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 +5 -4
- 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 +4 -3
- 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 +5 -4
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +3 -2
- 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/ts3.4/write-request-body.d.ts +2 -1
- package/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +5 -4
- package/node_modules/@smithy/node-http-handler/package.json +7 -6
- 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 +4 -3
- 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 +4 -3
- 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 +5 -4
- 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 +4 -3
- 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 +4 -3
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFromFile.js +7 -4
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/index.js +177 -189
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/readFile.js +16 -0
- 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 +5 -2
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/index.js +3 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/loadSharedConfigFiles.js +4 -4
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/loadSsoSessionData.js +2 -2
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/parseIni.js +1 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/readFile.js +12 -0
- 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 +7 -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 +3 -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/readFile.d.ts +21 -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 +7 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/index.d.ts +3 -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/readFile.d.ts +21 -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 +7 -6
- 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 +10 -9
- package/node_modules/@smithy/smithy-client/dist-cjs/index.js +589 -714
- package/node_modules/@smithy/smithy-client/dist-es/client.js +10 -1
- package/node_modules/@smithy/smithy-client/dist-es/command.js +23 -20
- package/node_modules/@smithy/smithy-client/dist-es/create-aggregated-client.js +29 -3
- 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 +33 -7
- 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 +9 -2
- 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/client.d.ts +33 -7
- 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/create-aggregated-client.d.ts +8 -1
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/schemaLogFilter.d.ts +9 -0
- package/node_modules/@smithy/smithy-client/package.json +12 -11
- package/node_modules/@smithy/types/dist-cjs/index.js +80 -133
- package/node_modules/@smithy/types/dist-es/index.js +3 -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 +3 -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 +143 -0
- package/node_modules/@smithy/types/dist-types/schema/schema.d.ts +33 -58
- package/node_modules/@smithy/types/dist-types/schema/static-schemas.d.ts +99 -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 +3 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/schema/schema-deprecated.d.ts +149 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/schema/schema.d.ts +37 -62
- package/node_modules/@smithy/types/dist-types/ts3.4/schema/static-schemas.d.ts +118 -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 +3 -2
- 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 +5 -4
- 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 +9 -9
- 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 +12 -11
- 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 +7 -6
- 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 +4 -3
- 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 +8 -5
- 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/getAwsChunkedEncodingStream.js +20 -9
- 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 +80 -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/getAwsChunkedEncodingStream.js +19 -7
- package/node_modules/@smithy/util-stream/dist-es/headStream.js +3 -6
- package/node_modules/@smithy/util-stream/dist-es/index.js +1 -1
- 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 +10 -9
- package/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.browser.d.ts +3 -4
- package/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.d.ts +7 -5
- package/node_modules/@smithy/util-stream/dist-types/createBufferedReadable.d.ts +4 -1
- 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 +7 -3
- package/node_modules/@smithy/util-stream/dist-types/headStream.browser.d.ts +1 -2
- package/node_modules/@smithy/util-stream/dist-types/headStream.d.ts +3 -3
- package/node_modules/@smithy/util-stream/dist-types/index.d.ts +4 -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/splitStream.d.ts +3 -0
- package/node_modules/@smithy/util-stream/dist-types/stream-type-check.d.ts +2 -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 +9 -8
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/createChecksumStream.browser.d.ts +2 -3
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/createChecksumStream.d.ts +4 -2
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/createBufferedReadable.d.ts +4 -1
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/getAwsChunkedEncodingStream.d.ts +7 -3
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/headStream.browser.d.ts +1 -2
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/headStream.d.ts +2 -2
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/index.d.ts +4 -1
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/splitStream.d.ts +3 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/stream-type-check.d.ts +2 -1
- package/node_modules/@smithy/util-stream/package.json +14 -13
- 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 +165 -171
- package/node_modules/@smithy/util-waiter/dist-es/circularReplacer.js +12 -0
- package/node_modules/@smithy/util-waiter/dist-es/createWaiter.js +27 -8
- package/node_modules/@smithy/util-waiter/dist-es/poller.js +2 -1
- package/node_modules/@smithy/util-waiter/dist-es/waiter.js +4 -3
- package/node_modules/@smithy/util-waiter/dist-types/circularReplacer.d.ts +6 -0
- package/node_modules/@smithy/util-waiter/dist-types/createWaiter.d.ts +1 -1
- package/node_modules/@smithy/util-waiter/dist-types/poller.d.ts +2 -2
- package/node_modules/@smithy/util-waiter/dist-types/ts3.4/circularReplacer.d.ts +6 -0
- package/node_modules/@smithy/util-waiter/dist-types/ts3.4/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 +5 -4
- 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/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 +8 -3
- package/node_modules/bowser/src/constants.js +71 -18
- package/node_modules/bowser/src/parser-browsers.js +394 -0
- package/node_modules/bowser/src/parser-os.js +12 -0
- package/node_modules/bowser/src/parser-platforms.js +259 -1
- package/node_modules/bowser/src/parser.js +20 -5
- package/node_modules/bowser/src/utils.js +33 -15
- package/node_modules/fast-xml-parser/CHANGELOG.md +93 -0
- package/node_modules/fast-xml-parser/README.md +40 -52
- package/node_modules/fast-xml-parser/lib/fxbuilder.min.js +2 -0
- package/node_modules/fast-xml-parser/lib/fxbuilder.min.js.map +1 -0
- package/node_modules/fast-xml-parser/lib/fxp.cjs +1 -0
- package/node_modules/fast-xml-parser/lib/fxp.d.cts +458 -0
- package/node_modules/fast-xml-parser/lib/fxp.min.js +2 -0
- package/node_modules/fast-xml-parser/lib/fxp.min.js.map +1 -0
- package/node_modules/fast-xml-parser/lib/fxparser.min.js +2 -0
- package/node_modules/fast-xml-parser/lib/fxparser.min.js.map +1 -0
- package/node_modules/fast-xml-parser/lib/fxvalidator.min.js +2 -0
- package/node_modules/fast-xml-parser/lib/fxvalidator.min.js.map +1 -0
- package/node_modules/fast-xml-parser/package.json +38 -20
- package/node_modules/fast-xml-parser/src/cli/cli.js +16 -12
- package/node_modules/fast-xml-parser/src/cli/man.js +6 -1
- package/node_modules/fast-xml-parser/src/cli/read.js +30 -79
- package/node_modules/fast-xml-parser/src/fxp.d.ts +54 -11
- package/node_modules/fast-xml-parser/src/fxp.js +11 -8
- package/node_modules/fast-xml-parser/src/ignoreAttributes.js +18 -0
- package/node_modules/fast-xml-parser/src/util.js +14 -18
- package/node_modules/fast-xml-parser/src/v6/CharsSymbol.js +16 -0
- package/node_modules/fast-xml-parser/src/v6/EntitiesParser.js +104 -0
- package/node_modules/fast-xml-parser/src/v6/OptionsBuilder.js +61 -0
- package/node_modules/fast-xml-parser/src/v6/OutputBuilders/BaseOutputBuilder.js +69 -0
- package/node_modules/fast-xml-parser/src/v6/OutputBuilders/JsArrBuilder.js +103 -0
- package/node_modules/fast-xml-parser/src/v6/OutputBuilders/JsMinArrBuilder.js +100 -0
- package/node_modules/fast-xml-parser/src/v6/OutputBuilders/JsObjBuilder.js +154 -0
- package/node_modules/fast-xml-parser/src/v6/OutputBuilders/ParserOptionsBuilder.js +94 -0
- package/node_modules/fast-xml-parser/src/v6/TagPath.js +81 -0
- package/node_modules/fast-xml-parser/src/v6/TagPathMatcher.js +13 -0
- package/node_modules/fast-xml-parser/src/v6/XMLParser.js +83 -0
- package/node_modules/fast-xml-parser/src/v6/Xml2JsParser.js +235 -0
- package/node_modules/fast-xml-parser/src/v6/XmlPartReader.js +210 -0
- package/node_modules/fast-xml-parser/src/v6/XmlSpecialTagsReader.js +111 -0
- package/node_modules/fast-xml-parser/src/v6/inputSource/BufferSource.js +116 -0
- package/node_modules/fast-xml-parser/src/v6/inputSource/StringSource.js +121 -0
- package/node_modules/fast-xml-parser/src/v6/valueParsers/EntitiesParser.js +105 -0
- package/node_modules/fast-xml-parser/src/v6/valueParsers/booleanParser.js +22 -0
- package/node_modules/fast-xml-parser/src/v6/valueParsers/booleanParserExt.js +19 -0
- package/node_modules/fast-xml-parser/src/v6/valueParsers/currency.js +38 -0
- package/node_modules/fast-xml-parser/src/v6/valueParsers/join.js +13 -0
- package/node_modules/fast-xml-parser/src/v6/valueParsers/number.js +14 -0
- package/node_modules/fast-xml-parser/src/v6/valueParsers/trim.js +6 -0
- package/node_modules/fast-xml-parser/src/validator.js +5 -5
- package/node_modules/fast-xml-parser/src/xmlbuilder/json2xml.js +17 -13
- package/node_modules/fast-xml-parser/src/xmlbuilder/orderedJs2Xml.js +1 -2
- package/node_modules/fast-xml-parser/src/xmlparser/DocTypeReader.js +355 -128
- package/node_modules/fast-xml-parser/src/xmlparser/OptionsBuilder.js +3 -5
- package/node_modules/fast-xml-parser/src/xmlparser/OrderedObjParser.js +78 -40
- package/node_modules/fast-xml-parser/src/xmlparser/XMLParser.js +25 -12
- package/node_modules/fast-xml-parser/src/xmlparser/node2json.js +8 -2
- package/node_modules/fast-xml-parser/src/xmlparser/xmlNode.js +22 -7
- package/node_modules/strnum/.github/SECURITY.md +5 -0
- package/node_modules/strnum/CHANGELOG.md +11 -0
- package/node_modules/strnum/README.md +6 -0
- package/node_modules/strnum/algo.stflow +84 -0
- package/node_modules/strnum/package.json +2 -1
- package/node_modules/strnum/strnum.js +53 -35
- package/node_modules/strnum/strnum.test.js +9 -1
- package/node_modules/strnum/test.js +9 -0
- package/package.json +34 -39
- package/node_modules/@aws-lambda-powertools/commons/LICENSE +0 -14
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/config/EnvironmentVariablesService.d.ts +0 -78
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/config/EnvironmentVariablesService.d.ts.map +0 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/config/EnvironmentVariablesService.js +0 -96
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/config/EnvironmentVariablesService.d.ts +0 -78
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/config/EnvironmentVariablesService.d.ts.map +0 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/config/EnvironmentVariablesService.js +0 -93
- package/node_modules/@aws-lambda-powertools/logger/LICENSE +0 -14
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/config/EnvironmentVariablesService.d.ts +0 -78
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/config/EnvironmentVariablesService.d.ts.map +0 -1
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/config/EnvironmentVariablesService.js +0 -107
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/config/EnvironmentVariablesService.d.ts +0 -78
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/config/EnvironmentVariablesService.d.ts.map +0 -1
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/config/EnvironmentVariablesService.js +0 -104
- package/node_modules/@aws-sdk/client-kms/dist-es/models/index.js +0 -1
- package/node_modules/@aws-sdk/client-kms/dist-es/protocols/Aws_json1_1.js +0 -2008
- package/node_modules/@aws-sdk/client-kms/dist-types/models/index.d.ts +0 -1
- package/node_modules/@aws-sdk/client-kms/dist-types/protocols/Aws_json1_1.d.ts +0 -479
- package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/models/index.d.ts +0 -1
- package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +0 -638
- package/node_modules/@aws-sdk/client-s3/dist-es/models/index.js +0 -2
- package/node_modules/@aws-sdk/client-s3/dist-es/protocols/Aws_restXml.js +0 -7771
- package/node_modules/@aws-sdk/client-s3/dist-types/models/index.d.ts +0 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/protocols/Aws_restXml.d.ts +0 -893
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/index.d.ts +0 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/protocols/Aws_restXml.d.ts +0 -1197
- package/node_modules/@aws-sdk/client-sso/dist-es/models/index.js +0 -1
- package/node_modules/@aws-sdk/client-sso/dist-es/protocols/Aws_restJson1.js +0 -210
- package/node_modules/@aws-sdk/client-sso/dist-types/models/index.d.ts +0 -1
- package/node_modules/@aws-sdk/client-sso/dist-types/protocols/Aws_restJson1.d.ts +0 -38
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/index.d.ts +0 -1
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -53
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/index.js +0 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/protocols/Aws_restJson1.js +0 -255
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/index.js +0 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/protocols/Aws_query.js +0 -528
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/index.d.ts +0 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/protocols/Aws_restJson1.d.ts +0 -11
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/index.d.ts +0 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/protocols/Aws_query.d.ts +0 -20
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/index.d.ts +0 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/protocols/Aws_restJson1.d.ts +0 -17
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/index.d.ts +0 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/protocols/Aws_query.d.ts +0 -29
- 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/@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/slurpFile.js +0 -13
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/types.js +0 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/slurpFile.js +0 -9
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/slurpFile.d.ts +0 -5
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/slurpFile.d.ts +0 -5
- 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/fast-xml-parser/src/v5/CharsSymbol.js +0 -16
- package/node_modules/fast-xml-parser/src/v5/EntitiesParser.js +0 -107
- package/node_modules/fast-xml-parser/src/v5/OptionsBuilder.js +0 -64
- package/node_modules/fast-xml-parser/src/v5/OutputBuilders/BaseOutputBuilder.js +0 -71
- package/node_modules/fast-xml-parser/src/v5/OutputBuilders/JsArrBuilder.js +0 -103
- package/node_modules/fast-xml-parser/src/v5/OutputBuilders/JsMinArrBuilder.js +0 -102
- package/node_modules/fast-xml-parser/src/v5/OutputBuilders/JsObjBuilder.js +0 -156
- package/node_modules/fast-xml-parser/src/v5/OutputBuilders/ParserOptionsBuilder.js +0 -99
- package/node_modules/fast-xml-parser/src/v5/TagPath.js +0 -81
- package/node_modules/fast-xml-parser/src/v5/TagPathMatcher.js +0 -15
- package/node_modules/fast-xml-parser/src/v5/XMLParser.js +0 -85
- package/node_modules/fast-xml-parser/src/v5/Xml2JsParser.js +0 -237
- package/node_modules/fast-xml-parser/src/v5/XmlPartReader.js +0 -212
- package/node_modules/fast-xml-parser/src/v5/XmlSpecialTagsReader.js +0 -118
- package/node_modules/fast-xml-parser/src/v5/inputSource/BufferSource.js +0 -118
- package/node_modules/fast-xml-parser/src/v5/inputSource/StringSource.js +0 -123
- package/node_modules/fast-xml-parser/src/v5/valueParsers/EntitiesParser.js +0 -107
- package/node_modules/fast-xml-parser/src/v5/valueParsers/booleanParser.js +0 -23
- package/node_modules/fast-xml-parser/src/v5/valueParsers/booleanParserExt.js +0 -20
- package/node_modules/fast-xml-parser/src/v5/valueParsers/currency.js +0 -40
- package/node_modules/fast-xml-parser/src/v5/valueParsers/join.js +0 -14
- package/node_modules/fast-xml-parser/src/v5/valueParsers/number.js +0 -16
- package/node_modules/fast-xml-parser/src/v5/valueParsers/trim.js +0 -8
- package/node_modules/lodash.merge/LICENSE +0 -47
- package/node_modules/lodash.merge/README.md +0 -18
- package/node_modules/lodash.merge/index.js +0 -1977
- package/node_modules/lodash.merge/package.json +0 -16
- 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/@aws-sdk/{middleware-flexible-checksums → crc64-nvme}/dist-es/crc64-nvme-crt-container.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums → crc64-nvme}/dist-types/crc64-nvme-crt-container.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums → crc64-nvme}/dist-types/ts3.4/crc64-nvme-crt-container.d.ts +0 -0
- /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
- /package/node_modules/fast-xml-parser/src/{v5 → v6}/Report.js +0 -0
|
@@ -0,0 +1,1379 @@
|
|
|
1
|
+
const _A = "Arn";
|
|
2
|
+
const _AA = "AliasArn";
|
|
3
|
+
const _AD = "AttestationDocument";
|
|
4
|
+
const _AEE = "AlreadyExistsException";
|
|
5
|
+
const _AKI = "AccessKeyId";
|
|
6
|
+
const _AL = "AliasList";
|
|
7
|
+
const _ALE = "AliasListEntry";
|
|
8
|
+
const _AN = "AliasName";
|
|
9
|
+
const _AWSAI = "AWSAccountId";
|
|
10
|
+
const _Al = "Aliases";
|
|
11
|
+
const _BPLSC = "BypassPolicyLockoutSafetyCheck";
|
|
12
|
+
const _C = "Constraints";
|
|
13
|
+
const _CA = "CreateAlias";
|
|
14
|
+
const _CAR = "CreateAliasRequest";
|
|
15
|
+
const _CB = "CiphertextBlob";
|
|
16
|
+
const _CCKS = "ConnectCustomKeyStore";
|
|
17
|
+
const _CCKSR = "ConnectCustomKeyStoreRequest";
|
|
18
|
+
const _CCKSRo = "ConnectCustomKeyStoreResponse";
|
|
19
|
+
const _CCKSRr = "CreateCustomKeyStoreRequest";
|
|
20
|
+
const _CCKSRre = "CreateCustomKeyStoreResponse";
|
|
21
|
+
const _CCKSr = "CreateCustomKeyStore";
|
|
22
|
+
const _CD = "CreationDate";
|
|
23
|
+
const _CE = "ConflictException";
|
|
24
|
+
const _CEC = "ConnectionErrorCode";
|
|
25
|
+
const _CFR = "CiphertextForRecipient";
|
|
26
|
+
const _CG = "CreateGrant";
|
|
27
|
+
const _CGR = "CreateGrantRequest";
|
|
28
|
+
const _CGRr = "CreateGrantResponse";
|
|
29
|
+
const _CHCI = "CloudHsmClusterId";
|
|
30
|
+
const _CHCICE = "CloudHsmClusterInvalidConfigurationException";
|
|
31
|
+
const _CHCIUE = "CloudHsmClusterInUseException";
|
|
32
|
+
const _CHCNAE = "CloudHsmClusterNotActiveException";
|
|
33
|
+
const _CHCNFE = "CloudHsmClusterNotFoundException";
|
|
34
|
+
const _CHCNRE = "CloudHsmClusterNotRelatedException";
|
|
35
|
+
const _CK = "CreateKey";
|
|
36
|
+
const _CKD = "CancelKeyDeletion";
|
|
37
|
+
const _CKDR = "CancelKeyDeletionRequest";
|
|
38
|
+
const _CKDRa = "CancelKeyDeletionResponse";
|
|
39
|
+
const _CKMI = "CurrentKeyMaterialId";
|
|
40
|
+
const _CKR = "CreateKeyRequest";
|
|
41
|
+
const _CKRr = "CreateKeyResponse";
|
|
42
|
+
const _CKS = "CustomKeyStores";
|
|
43
|
+
const _CKSHCMKE = "CustomKeyStoreHasCMKsException";
|
|
44
|
+
const _CKSI = "CustomKeyStoreId";
|
|
45
|
+
const _CKSISE = "CustomKeyStoreInvalidStateException";
|
|
46
|
+
const _CKSL = "CustomKeyStoresList";
|
|
47
|
+
const _CKSLE = "CustomKeyStoresListEntry";
|
|
48
|
+
const _CKSN = "CustomKeyStoreName";
|
|
49
|
+
const _CKSNFE = "CustomKeyStoreNotFoundException";
|
|
50
|
+
const _CKSNIUE = "CustomKeyStoreNameInUseException";
|
|
51
|
+
const _CKST = "CustomKeyStoreType";
|
|
52
|
+
const _CMKS = "CustomerMasterKeySpec";
|
|
53
|
+
const _CS = "ConnectionState";
|
|
54
|
+
const _Co = "Connectivity";
|
|
55
|
+
const _D = "Description";
|
|
56
|
+
const _DA = "DeleteAlias";
|
|
57
|
+
const _DAR = "DeleteAliasRequest";
|
|
58
|
+
const _DCKS = "DeleteCustomKeyStore";
|
|
59
|
+
const _DCKSR = "DeleteCustomKeyStoreRequest";
|
|
60
|
+
const _DCKSRe = "DeleteCustomKeyStoreResponse";
|
|
61
|
+
const _DCKSRes = "DescribeCustomKeyStoresRequest";
|
|
62
|
+
const _DCKSResc = "DescribeCustomKeyStoresResponse";
|
|
63
|
+
const _DCKSRi = "DisconnectCustomKeyStoreRequest";
|
|
64
|
+
const _DCKSRis = "DisconnectCustomKeyStoreResponse";
|
|
65
|
+
const _DCKSe = "DescribeCustomKeyStores";
|
|
66
|
+
const _DCKSi = "DisconnectCustomKeyStore";
|
|
67
|
+
const _DD = "DeletionDate";
|
|
68
|
+
const _DE = "DisabledException";
|
|
69
|
+
const _DEA = "DestinationEncryptionAlgorithm";
|
|
70
|
+
const _DEC = "DestinationEncryptionContext";
|
|
71
|
+
const _DIKM = "DeleteImportedKeyMaterial";
|
|
72
|
+
const _DIKMR = "DeleteImportedKeyMaterialRequest";
|
|
73
|
+
const _DIKMRe = "DeleteImportedKeyMaterialResponse";
|
|
74
|
+
const _DK = "DescribeKey";
|
|
75
|
+
const _DKI = "DestinationKeyId";
|
|
76
|
+
const _DKMI = "DestinationKeyMaterialId";
|
|
77
|
+
const _DKR = "DescribeKeyRequest";
|
|
78
|
+
const _DKRR = "DisableKeyRotationRequest";
|
|
79
|
+
const _DKRe = "DescribeKeyResponse";
|
|
80
|
+
const _DKRi = "DisableKeyRequest";
|
|
81
|
+
const _DKRis = "DisableKeyRotation";
|
|
82
|
+
const _DKi = "DisableKey";
|
|
83
|
+
const _DR = "DryRun";
|
|
84
|
+
const _DROE = "DryRunOperationException";
|
|
85
|
+
const _DRe = "DecryptRequest";
|
|
86
|
+
const _DRec = "DecryptResponse";
|
|
87
|
+
const _DSS = "DeriveSharedSecret";
|
|
88
|
+
const _DSSR = "DeriveSharedSecretRequest";
|
|
89
|
+
const _DSSRe = "DeriveSharedSecretResponse";
|
|
90
|
+
const _DTE = "DependencyTimeoutException";
|
|
91
|
+
const _De = "Decrypt";
|
|
92
|
+
const _E = "Enabled";
|
|
93
|
+
const _EA = "EncryptionAlgorithm";
|
|
94
|
+
const _EAn = "EncryptionAlgorithms";
|
|
95
|
+
const _EC = "EncryptionContext";
|
|
96
|
+
const _ECE = "EncryptionContextEquals";
|
|
97
|
+
const _ECS = "EncryptionContextSubset";
|
|
98
|
+
const _EITE = "ExpiredImportTokenException";
|
|
99
|
+
const _EK = "EnableKey";
|
|
100
|
+
const _EKM = "EncryptedKeyMaterial";
|
|
101
|
+
const _EKR = "EnableKeyRequest";
|
|
102
|
+
const _EKRR = "EnableKeyRotationRequest";
|
|
103
|
+
const _EKRn = "EnableKeyRotation";
|
|
104
|
+
const _EM = "ExpirationModel";
|
|
105
|
+
const _ER = "EncryptRequest";
|
|
106
|
+
const _ERn = "EncryptResponse";
|
|
107
|
+
const _En = "Encrypt";
|
|
108
|
+
const _G = "Grants";
|
|
109
|
+
const _GC = "GrantConstraints";
|
|
110
|
+
const _GDK = "GenerateDataKey";
|
|
111
|
+
const _GDKP = "GenerateDataKeyPair";
|
|
112
|
+
const _GDKPR = "GenerateDataKeyPairRequest";
|
|
113
|
+
const _GDKPRe = "GenerateDataKeyPairResponse";
|
|
114
|
+
const _GDKPWP = "GenerateDataKeyPairWithoutPlaintext";
|
|
115
|
+
const _GDKPWPR = "GenerateDataKeyPairWithoutPlaintextRequest";
|
|
116
|
+
const _GDKPWPRe = "GenerateDataKeyPairWithoutPlaintextResponse";
|
|
117
|
+
const _GDKR = "GenerateDataKeyRequest";
|
|
118
|
+
const _GDKRe = "GenerateDataKeyResponse";
|
|
119
|
+
const _GDKWP = "GenerateDataKeyWithoutPlaintext";
|
|
120
|
+
const _GDKWPR = "GenerateDataKeyWithoutPlaintextRequest";
|
|
121
|
+
const _GDKWPRe = "GenerateDataKeyWithoutPlaintextResponse";
|
|
122
|
+
const _GI = "GrantId";
|
|
123
|
+
const _GKP = "GetKeyPolicy";
|
|
124
|
+
const _GKPR = "GetKeyPolicyRequest";
|
|
125
|
+
const _GKPRe = "GetKeyPolicyResponse";
|
|
126
|
+
const _GKRS = "GetKeyRotationStatus";
|
|
127
|
+
const _GKRSR = "GetKeyRotationStatusRequest";
|
|
128
|
+
const _GKRSRe = "GetKeyRotationStatusResponse";
|
|
129
|
+
const _GL = "GrantList";
|
|
130
|
+
const _GLE = "GrantListEntry";
|
|
131
|
+
const _GM = "GenerateMac";
|
|
132
|
+
const _GMR = "GenerateMacRequest";
|
|
133
|
+
const _GMRe = "GenerateMacResponse";
|
|
134
|
+
const _GP = "GranteePrincipal";
|
|
135
|
+
const _GPFI = "GetParametersForImport";
|
|
136
|
+
const _GPFIR = "GetParametersForImportRequest";
|
|
137
|
+
const _GPFIRe = "GetParametersForImportResponse";
|
|
138
|
+
const _GPK = "GetPublicKey";
|
|
139
|
+
const _GPKR = "GetPublicKeyRequest";
|
|
140
|
+
const _GPKRe = "GetPublicKeyResponse";
|
|
141
|
+
const _GR = "GenerateRandom";
|
|
142
|
+
const _GRR = "GenerateRandomRequest";
|
|
143
|
+
const _GRRe = "GenerateRandomResponse";
|
|
144
|
+
const _GT = "GrantTokens";
|
|
145
|
+
const _GTr = "GrantToken";
|
|
146
|
+
const _I = "Id";
|
|
147
|
+
const _IA = "IssuingAccount";
|
|
148
|
+
const _IAE = "InvalidArnException";
|
|
149
|
+
const _IANE = "InvalidAliasNameException";
|
|
150
|
+
const _ICE = "InvalidCiphertextException";
|
|
151
|
+
const _IGIE = "InvalidGrantIdException";
|
|
152
|
+
const _IGTE = "InvalidGrantTokenException";
|
|
153
|
+
const _IITE = "InvalidImportTokenException";
|
|
154
|
+
const _IKE = "IncorrectKeyException";
|
|
155
|
+
const _IKM = "IncludeKeyMaterial";
|
|
156
|
+
const _IKME = "IncorrectKeyMaterialException";
|
|
157
|
+
const _IKMR = "ImportKeyMaterialRequest";
|
|
158
|
+
const _IKMRm = "ImportKeyMaterialResponse";
|
|
159
|
+
const _IKMm = "ImportKeyMaterial";
|
|
160
|
+
const _IKUE = "InvalidKeyUsageException";
|
|
161
|
+
const _IME = "InvalidMarkerException";
|
|
162
|
+
const _IS = "ImportState";
|
|
163
|
+
const _IT = "ImportToken";
|
|
164
|
+
const _ITAE = "IncorrectTrustAnchorException";
|
|
165
|
+
const _ITm = "ImportType";
|
|
166
|
+
const _K = "Keys";
|
|
167
|
+
const _KA = "KeyArn";
|
|
168
|
+
const _KAA = "KeyAgreementAlgorithm";
|
|
169
|
+
const _KAAe = "KeyAgreementAlgorithms";
|
|
170
|
+
const _KEA = "KeyEncryptionAlgorithm";
|
|
171
|
+
const _KI = "KeyId";
|
|
172
|
+
const _KL = "KeyList";
|
|
173
|
+
const _KLE = "KeyListEntry";
|
|
174
|
+
const _KM = "KeyMetadata";
|
|
175
|
+
const _KMD = "KeyMaterialDescription";
|
|
176
|
+
const _KMI = "KeyMaterialId";
|
|
177
|
+
const _KMS = "KeyMaterialState";
|
|
178
|
+
const _KMSIE = "KMSInternalException";
|
|
179
|
+
const _KMSIME = "KMSInvalidMacException";
|
|
180
|
+
const _KMSISE = "KMSInvalidSignatureException";
|
|
181
|
+
const _KMSISEn = "KMSInvalidStateException";
|
|
182
|
+
const _KMe = "KeyManager";
|
|
183
|
+
const _KO = "KeyOrigin";
|
|
184
|
+
const _KPS = "KeyPairSpec";
|
|
185
|
+
const _KRE = "KeyRotationEnabled";
|
|
186
|
+
const _KS = "KeySpec";
|
|
187
|
+
const _KSP = "KeyStorePassword";
|
|
188
|
+
const _KSPT = "KeyStorePasswordType";
|
|
189
|
+
const _KSe = "KeyState";
|
|
190
|
+
const _KU = "KeyUsage";
|
|
191
|
+
const _KUE = "KeyUnavailableException";
|
|
192
|
+
const _L = "Limit";
|
|
193
|
+
const _LA = "ListAliases";
|
|
194
|
+
const _LAR = "ListAliasesRequest";
|
|
195
|
+
const _LARi = "ListAliasesResponse";
|
|
196
|
+
const _LEE = "LimitExceededException";
|
|
197
|
+
const _LG = "ListGrants";
|
|
198
|
+
const _LGR = "ListGrantsRequest";
|
|
199
|
+
const _LGRi = "ListGrantsResponse";
|
|
200
|
+
const _LK = "ListKeys";
|
|
201
|
+
const _LKP = "ListKeyPolicies";
|
|
202
|
+
const _LKPR = "ListKeyPoliciesRequest";
|
|
203
|
+
const _LKPRi = "ListKeyPoliciesResponse";
|
|
204
|
+
const _LKR = "ListKeysRequest";
|
|
205
|
+
const _LKRR = "ListKeyRotationsRequest";
|
|
206
|
+
const _LKRRi = "ListKeyRotationsResponse";
|
|
207
|
+
const _LKRi = "ListKeysResponse";
|
|
208
|
+
const _LKRis = "ListKeyRotations";
|
|
209
|
+
const _LRG = "ListRetirableGrants";
|
|
210
|
+
const _LRGR = "ListRetirableGrantsRequest";
|
|
211
|
+
const _LRT = "ListResourceTags";
|
|
212
|
+
const _LRTR = "ListResourceTagsRequest";
|
|
213
|
+
const _LRTRi = "ListResourceTagsResponse";
|
|
214
|
+
const _LUD = "LastUpdatedDate";
|
|
215
|
+
const _M = "Marker";
|
|
216
|
+
const _MA = "MacAlgorithm";
|
|
217
|
+
const _MAa = "MacAlgorithms";
|
|
218
|
+
const _MPDE = "MalformedPolicyDocumentException";
|
|
219
|
+
const _MR = "MultiRegion";
|
|
220
|
+
const _MRC = "MultiRegionConfiguration";
|
|
221
|
+
const _MRK = "MultiRegionKey";
|
|
222
|
+
const _MRKL = "MultiRegionKeyList";
|
|
223
|
+
const _MRKT = "MultiRegionKeyType";
|
|
224
|
+
const _MT = "MessageType";
|
|
225
|
+
const _MV = "MacValid";
|
|
226
|
+
const _Ma = "Mac";
|
|
227
|
+
const _Me = "Message";
|
|
228
|
+
const _N = "Name";
|
|
229
|
+
const _NCKSN = "NewCustomKeyStoreName";
|
|
230
|
+
const _NFE = "NotFoundException";
|
|
231
|
+
const _NM = "NextMarker";
|
|
232
|
+
const _NOB = "NumberOfBytes";
|
|
233
|
+
const _NRD = "NextRotationDate";
|
|
234
|
+
const _O = "Operations";
|
|
235
|
+
const _ODRSD = "OnDemandRotationStartDate";
|
|
236
|
+
const _Or = "Origin";
|
|
237
|
+
const _P = "Policy";
|
|
238
|
+
const _PDWID = "PendingDeletionWindowInDays";
|
|
239
|
+
const _PK = "PublicKey";
|
|
240
|
+
const _PKCB = "PrivateKeyCiphertextBlob";
|
|
241
|
+
const _PKP = "PrivateKeyPlaintext";
|
|
242
|
+
const _PKPR = "PutKeyPolicyRequest";
|
|
243
|
+
const _PKPu = "PutKeyPolicy";
|
|
244
|
+
const _PKr = "PrimaryKey";
|
|
245
|
+
const _PN = "PolicyName";
|
|
246
|
+
const _PNo = "PolicyNames";
|
|
247
|
+
const _PR = "PrimaryRegion";
|
|
248
|
+
const _PT = "PlaintextType";
|
|
249
|
+
const _PVT = "ParametersValidTo";
|
|
250
|
+
const _PWID = "PendingWindowInDays";
|
|
251
|
+
const _Pl = "Plaintext";
|
|
252
|
+
const _R = "Recipient";
|
|
253
|
+
const _RD = "RotationDate";
|
|
254
|
+
const _RE = "ReEncrypt";
|
|
255
|
+
const _RER = "ReEncryptRequest";
|
|
256
|
+
const _RERe = "ReEncryptResponse";
|
|
257
|
+
const _RG = "RetireGrant";
|
|
258
|
+
const _RGR = "RetireGrantRequest";
|
|
259
|
+
const _RGRe = "RevokeGrantRequest";
|
|
260
|
+
const _RGe = "RevokeGrant";
|
|
261
|
+
const _RI = "RecipientInfo";
|
|
262
|
+
const _RK = "ReplicaKeys";
|
|
263
|
+
const _RKM = "ReplicaKeyMetadata";
|
|
264
|
+
const _RKOD = "RotateKeyOnDemand";
|
|
265
|
+
const _RKODR = "RotateKeyOnDemandRequest";
|
|
266
|
+
const _RKODRo = "RotateKeyOnDemandResponse";
|
|
267
|
+
const _RKR = "ReplicateKeyRequest";
|
|
268
|
+
const _RKRe = "ReplicateKeyResponse";
|
|
269
|
+
const _RKe = "ReplicateKey";
|
|
270
|
+
const _RL = "RotationsList";
|
|
271
|
+
const _RLE = "RotationsListEntry";
|
|
272
|
+
const _RP = "RetiringPrincipal";
|
|
273
|
+
const _RPID = "RotationPeriodInDays";
|
|
274
|
+
const _RPe = "ReplicaPolicy";
|
|
275
|
+
const _RR = "ReplicaRegion";
|
|
276
|
+
const _RSAK = "RawSecretAccessKey";
|
|
277
|
+
const _RT = "ReplicaTags";
|
|
278
|
+
const _RTo = "RotationType";
|
|
279
|
+
const _Re = "Region";
|
|
280
|
+
const _Ro = "Rotations";
|
|
281
|
+
const _S = "Signature";
|
|
282
|
+
const _SA = "SigningAlgorithms";
|
|
283
|
+
const _SAi = "SigningAlgorithm";
|
|
284
|
+
const _SEA = "SourceEncryptionAlgorithm";
|
|
285
|
+
const _SEC = "SourceEncryptionContext";
|
|
286
|
+
const _SKD = "ScheduleKeyDeletion";
|
|
287
|
+
const _SKDR = "ScheduleKeyDeletionRequest";
|
|
288
|
+
const _SKDRc = "ScheduleKeyDeletionResponse";
|
|
289
|
+
const _SKI = "SourceKeyId";
|
|
290
|
+
const _SKMI = "SourceKeyMaterialId";
|
|
291
|
+
const _SR = "SignRequest";
|
|
292
|
+
const _SRi = "SignResponse";
|
|
293
|
+
const _SS = "SharedSecret";
|
|
294
|
+
const _SV = "SignatureValid";
|
|
295
|
+
const _Si = "Sign";
|
|
296
|
+
const _T = "Tags";
|
|
297
|
+
const _TAC = "TrustAnchorCertificate";
|
|
298
|
+
const _TE = "TagException";
|
|
299
|
+
const _TK = "TagKey";
|
|
300
|
+
const _TKI = "TargetKeyId";
|
|
301
|
+
const _TKa = "TagKeys";
|
|
302
|
+
const _TL = "TagList";
|
|
303
|
+
const _TR = "TagResource";
|
|
304
|
+
const _TRR = "TagResourceRequest";
|
|
305
|
+
const _TV = "TagValue";
|
|
306
|
+
const _Ta = "Tag";
|
|
307
|
+
const _Tr = "Truncated";
|
|
308
|
+
const _UA = "UpdateAlias";
|
|
309
|
+
const _UAR = "UpdateAliasRequest";
|
|
310
|
+
const _UCKS = "UpdateCustomKeyStore";
|
|
311
|
+
const _UCKSR = "UpdateCustomKeyStoreRequest";
|
|
312
|
+
const _UCKSRp = "UpdateCustomKeyStoreResponse";
|
|
313
|
+
const _UE = "UriEndpoint";
|
|
314
|
+
const _UKD = "UpdateKeyDescription";
|
|
315
|
+
const _UKDR = "UpdateKeyDescriptionRequest";
|
|
316
|
+
const _UOE = "UnsupportedOperationException";
|
|
317
|
+
const _UP = "UriPath";
|
|
318
|
+
const _UPR = "UpdatePrimaryRegion";
|
|
319
|
+
const _UPRR = "UpdatePrimaryRegionRequest";
|
|
320
|
+
const _UR = "UntagResource";
|
|
321
|
+
const _URR = "UntagResourceRequest";
|
|
322
|
+
const _V = "Verify";
|
|
323
|
+
const _VESN = "VpcEndpointServiceName";
|
|
324
|
+
const _VESO = "VpcEndpointServiceOwner";
|
|
325
|
+
const _VM = "VerifyMac";
|
|
326
|
+
const _VMR = "VerifyMacRequest";
|
|
327
|
+
const _VMRe = "VerifyMacResponse";
|
|
328
|
+
const _VR = "VerifyRequest";
|
|
329
|
+
const _VRe = "VerifyResponse";
|
|
330
|
+
const _VT = "ValidTo";
|
|
331
|
+
const _WA = "WrappingAlgorithm";
|
|
332
|
+
const _WKS = "WrappingKeySpec";
|
|
333
|
+
const _XKAIUE = "XksKeyAlreadyInUseException";
|
|
334
|
+
const _XKC = "XksKeyConfiguration";
|
|
335
|
+
const _XKCT = "XksKeyConfigurationType";
|
|
336
|
+
const _XKI = "XksKeyId";
|
|
337
|
+
const _XKICE = "XksKeyInvalidConfigurationException";
|
|
338
|
+
const _XKNFE = "XksKeyNotFoundException";
|
|
339
|
+
const _XPAAKIT = "XksProxyAuthenticationAccessKeyIdType";
|
|
340
|
+
const _XPAC = "XksProxyAuthenticationCredential";
|
|
341
|
+
const _XPACT = "XksProxyAuthenticationCredentialType";
|
|
342
|
+
const _XPARSAKT = "XksProxyAuthenticationRawSecretAccessKeyType";
|
|
343
|
+
const _XPC = "XksProxyConnectivity";
|
|
344
|
+
const _XPCT = "XksProxyConfigurationType";
|
|
345
|
+
const _XPCk = "XksProxyConfiguration";
|
|
346
|
+
const _XPIACE = "XksProxyIncorrectAuthenticationCredentialException";
|
|
347
|
+
const _XPICE = "XksProxyInvalidConfigurationException";
|
|
348
|
+
const _XPIRE = "XksProxyInvalidResponseException";
|
|
349
|
+
const _XPUE = "XksProxyUriEndpoint";
|
|
350
|
+
const _XPUEIUE = "XksProxyUriEndpointInUseException";
|
|
351
|
+
const _XPUIUE = "XksProxyUriInUseException";
|
|
352
|
+
const _XPUP = "XksProxyUriPath";
|
|
353
|
+
const _XPUUE = "XksProxyUriUnreachableException";
|
|
354
|
+
const _XPVESICE = "XksProxyVpcEndpointServiceInvalidConfigurationException";
|
|
355
|
+
const _XPVESIUE = "XksProxyVpcEndpointServiceInUseException";
|
|
356
|
+
const _XPVESN = "XksProxyVpcEndpointServiceName";
|
|
357
|
+
const _XPVESNFE = "XksProxyVpcEndpointServiceNotFoundException";
|
|
358
|
+
const _XPVESO = "XksProxyVpcEndpointServiceOwner";
|
|
359
|
+
const _aQE = "awsQueryError";
|
|
360
|
+
const _c = "client";
|
|
361
|
+
const _e = "error";
|
|
362
|
+
const _hE = "httpError";
|
|
363
|
+
const _m = "message";
|
|
364
|
+
const _s = "server";
|
|
365
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.kms";
|
|
366
|
+
const n0 = "com.amazonaws.kms";
|
|
367
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
368
|
+
import { AlreadyExistsException, CloudHsmClusterInUseException, CloudHsmClusterInvalidConfigurationException, CloudHsmClusterNotActiveException, CloudHsmClusterNotFoundException, CloudHsmClusterNotRelatedException, ConflictException, CustomKeyStoreHasCMKsException, CustomKeyStoreInvalidStateException, CustomKeyStoreNameInUseException, CustomKeyStoreNotFoundException, DependencyTimeoutException, DisabledException, DryRunOperationException, ExpiredImportTokenException, IncorrectKeyException, IncorrectKeyMaterialException, IncorrectTrustAnchorException, InvalidAliasNameException, InvalidArnException, InvalidCiphertextException, InvalidGrantIdException, InvalidGrantTokenException, InvalidImportTokenException, InvalidKeyUsageException, InvalidMarkerException, KeyUnavailableException, KMSInternalException, KMSInvalidMacException, KMSInvalidSignatureException, KMSInvalidStateException, LimitExceededException, MalformedPolicyDocumentException, NotFoundException, TagException, UnsupportedOperationException, XksKeyAlreadyInUseException, XksKeyInvalidConfigurationException, XksKeyNotFoundException, XksProxyIncorrectAuthenticationCredentialException, XksProxyInvalidConfigurationException, XksProxyInvalidResponseException, XksProxyUriEndpointInUseException, XksProxyUriInUseException, XksProxyUriUnreachableException, XksProxyVpcEndpointServiceInUseException, XksProxyVpcEndpointServiceInvalidConfigurationException, XksProxyVpcEndpointServiceNotFoundException, } from "../models/errors";
|
|
369
|
+
import { KMSServiceException } from "../models/KMSServiceException";
|
|
370
|
+
var KeyStorePasswordType = [0, n0, _KSPT, 8, 0];
|
|
371
|
+
var PlaintextType = [0, n0, _PT, 8, 21];
|
|
372
|
+
var XksProxyAuthenticationAccessKeyIdType = [0, n0, _XPAAKIT, 8, 0];
|
|
373
|
+
var XksProxyAuthenticationRawSecretAccessKeyType = [0, n0, _XPARSAKT, 8, 0];
|
|
374
|
+
export var AliasListEntry$ = [3, n0, _ALE,
|
|
375
|
+
0,
|
|
376
|
+
[_AN, _AA, _TKI, _CD, _LUD],
|
|
377
|
+
[0, 0, 0, 4, 4]
|
|
378
|
+
];
|
|
379
|
+
export var AlreadyExistsException$ = [-3, n0, _AEE,
|
|
380
|
+
{ [_aQE]: [`AlreadyExists`, 409], [_e]: _c, [_hE]: 409 },
|
|
381
|
+
[_m],
|
|
382
|
+
[0]
|
|
383
|
+
];
|
|
384
|
+
TypeRegistry.for(n0).registerError(AlreadyExistsException$, AlreadyExistsException);
|
|
385
|
+
export var CancelKeyDeletionRequest$ = [3, n0, _CKDR,
|
|
386
|
+
0,
|
|
387
|
+
[_KI],
|
|
388
|
+
[0], 1
|
|
389
|
+
];
|
|
390
|
+
export var CancelKeyDeletionResponse$ = [3, n0, _CKDRa,
|
|
391
|
+
0,
|
|
392
|
+
[_KI],
|
|
393
|
+
[0]
|
|
394
|
+
];
|
|
395
|
+
export var CloudHsmClusterInUseException$ = [-3, n0, _CHCIUE,
|
|
396
|
+
{ [_aQE]: [`CloudHsmClusterInUseException`, 400], [_e]: _c, [_hE]: 400 },
|
|
397
|
+
[_m],
|
|
398
|
+
[0]
|
|
399
|
+
];
|
|
400
|
+
TypeRegistry.for(n0).registerError(CloudHsmClusterInUseException$, CloudHsmClusterInUseException);
|
|
401
|
+
export var CloudHsmClusterInvalidConfigurationException$ = [-3, n0, _CHCICE,
|
|
402
|
+
{ [_aQE]: [`CloudHsmClusterInvalidConfigurationException`, 400], [_e]: _c, [_hE]: 400 },
|
|
403
|
+
[_m],
|
|
404
|
+
[0]
|
|
405
|
+
];
|
|
406
|
+
TypeRegistry.for(n0).registerError(CloudHsmClusterInvalidConfigurationException$, CloudHsmClusterInvalidConfigurationException);
|
|
407
|
+
export var CloudHsmClusterNotActiveException$ = [-3, n0, _CHCNAE,
|
|
408
|
+
{ [_aQE]: [`CloudHsmClusterNotActiveException`, 400], [_e]: _c, [_hE]: 400 },
|
|
409
|
+
[_m],
|
|
410
|
+
[0]
|
|
411
|
+
];
|
|
412
|
+
TypeRegistry.for(n0).registerError(CloudHsmClusterNotActiveException$, CloudHsmClusterNotActiveException);
|
|
413
|
+
export var CloudHsmClusterNotFoundException$ = [-3, n0, _CHCNFE,
|
|
414
|
+
{ [_aQE]: [`CloudHsmClusterNotFoundException`, 400], [_e]: _c, [_hE]: 400 },
|
|
415
|
+
[_m],
|
|
416
|
+
[0]
|
|
417
|
+
];
|
|
418
|
+
TypeRegistry.for(n0).registerError(CloudHsmClusterNotFoundException$, CloudHsmClusterNotFoundException);
|
|
419
|
+
export var CloudHsmClusterNotRelatedException$ = [-3, n0, _CHCNRE,
|
|
420
|
+
{ [_aQE]: [`CloudHsmClusterNotRelatedException`, 400], [_e]: _c, [_hE]: 400 },
|
|
421
|
+
[_m],
|
|
422
|
+
[0]
|
|
423
|
+
];
|
|
424
|
+
TypeRegistry.for(n0).registerError(CloudHsmClusterNotRelatedException$, CloudHsmClusterNotRelatedException);
|
|
425
|
+
export var ConflictException$ = [-3, n0, _CE,
|
|
426
|
+
{ [_aQE]: [`ConflictException`, 409], [_e]: _c, [_hE]: 409 },
|
|
427
|
+
[_m],
|
|
428
|
+
[0]
|
|
429
|
+
];
|
|
430
|
+
TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
431
|
+
export var ConnectCustomKeyStoreRequest$ = [3, n0, _CCKSR,
|
|
432
|
+
0,
|
|
433
|
+
[_CKSI],
|
|
434
|
+
[0], 1
|
|
435
|
+
];
|
|
436
|
+
export var ConnectCustomKeyStoreResponse$ = [3, n0, _CCKSRo,
|
|
437
|
+
0,
|
|
438
|
+
[],
|
|
439
|
+
[]
|
|
440
|
+
];
|
|
441
|
+
export var CreateAliasRequest$ = [3, n0, _CAR,
|
|
442
|
+
0,
|
|
443
|
+
[_AN, _TKI],
|
|
444
|
+
[0, 0], 2
|
|
445
|
+
];
|
|
446
|
+
export var CreateCustomKeyStoreRequest$ = [3, n0, _CCKSRr,
|
|
447
|
+
0,
|
|
448
|
+
[_CKSN, _CHCI, _TAC, _KSP, _CKST, _XPUE, _XPUP, _XPVESN, _XPVESO, _XPAC, _XPC],
|
|
449
|
+
[0, 0, 0, [() => KeyStorePasswordType, 0], 0, 0, 0, 0, 0, [() => XksProxyAuthenticationCredentialType$, 0], 0], 1
|
|
450
|
+
];
|
|
451
|
+
export var CreateCustomKeyStoreResponse$ = [3, n0, _CCKSRre,
|
|
452
|
+
0,
|
|
453
|
+
[_CKSI],
|
|
454
|
+
[0]
|
|
455
|
+
];
|
|
456
|
+
export var CreateGrantRequest$ = [3, n0, _CGR,
|
|
457
|
+
0,
|
|
458
|
+
[_KI, _GP, _O, _RP, _C, _GT, _N, _DR],
|
|
459
|
+
[0, 0, 64 | 0, 0, () => GrantConstraints$, 64 | 0, 0, 2], 3
|
|
460
|
+
];
|
|
461
|
+
export var CreateGrantResponse$ = [3, n0, _CGRr,
|
|
462
|
+
0,
|
|
463
|
+
[_GTr, _GI],
|
|
464
|
+
[0, 0]
|
|
465
|
+
];
|
|
466
|
+
export var CreateKeyRequest$ = [3, n0, _CKR,
|
|
467
|
+
0,
|
|
468
|
+
[_P, _D, _KU, _CMKS, _KS, _Or, _CKSI, _BPLSC, _T, _MR, _XKI],
|
|
469
|
+
[0, 0, 0, 0, 0, 0, 0, 2, () => TagList, 2, 0]
|
|
470
|
+
];
|
|
471
|
+
export var CreateKeyResponse$ = [3, n0, _CKRr,
|
|
472
|
+
0,
|
|
473
|
+
[_KM],
|
|
474
|
+
[() => KeyMetadata$]
|
|
475
|
+
];
|
|
476
|
+
export var CustomKeyStoreHasCMKsException$ = [-3, n0, _CKSHCMKE,
|
|
477
|
+
{ [_aQE]: [`CustomKeyStoreHasCMKsException`, 400], [_e]: _c, [_hE]: 400 },
|
|
478
|
+
[_m],
|
|
479
|
+
[0]
|
|
480
|
+
];
|
|
481
|
+
TypeRegistry.for(n0).registerError(CustomKeyStoreHasCMKsException$, CustomKeyStoreHasCMKsException);
|
|
482
|
+
export var CustomKeyStoreInvalidStateException$ = [-3, n0, _CKSISE,
|
|
483
|
+
{ [_aQE]: [`CustomKeyStoreInvalidStateException`, 400], [_e]: _c, [_hE]: 400 },
|
|
484
|
+
[_m],
|
|
485
|
+
[0]
|
|
486
|
+
];
|
|
487
|
+
TypeRegistry.for(n0).registerError(CustomKeyStoreInvalidStateException$, CustomKeyStoreInvalidStateException);
|
|
488
|
+
export var CustomKeyStoreNameInUseException$ = [-3, n0, _CKSNIUE,
|
|
489
|
+
{ [_aQE]: [`CustomKeyStoreNameInUseException`, 400], [_e]: _c, [_hE]: 400 },
|
|
490
|
+
[_m],
|
|
491
|
+
[0]
|
|
492
|
+
];
|
|
493
|
+
TypeRegistry.for(n0).registerError(CustomKeyStoreNameInUseException$, CustomKeyStoreNameInUseException);
|
|
494
|
+
export var CustomKeyStoreNotFoundException$ = [-3, n0, _CKSNFE,
|
|
495
|
+
{ [_aQE]: [`CustomKeyStoreNotFoundException`, 400], [_e]: _c, [_hE]: 400 },
|
|
496
|
+
[_m],
|
|
497
|
+
[0]
|
|
498
|
+
];
|
|
499
|
+
TypeRegistry.for(n0).registerError(CustomKeyStoreNotFoundException$, CustomKeyStoreNotFoundException);
|
|
500
|
+
export var CustomKeyStoresListEntry$ = [3, n0, _CKSLE,
|
|
501
|
+
0,
|
|
502
|
+
[_CKSI, _CKSN, _CHCI, _TAC, _CS, _CEC, _CD, _CKST, _XPCk],
|
|
503
|
+
[0, 0, 0, 0, 0, 0, 4, 0, [() => XksProxyConfigurationType$, 0]]
|
|
504
|
+
];
|
|
505
|
+
export var DecryptRequest$ = [3, n0, _DRe,
|
|
506
|
+
0,
|
|
507
|
+
[_CB, _EC, _GT, _KI, _EA, _R, _DR],
|
|
508
|
+
[21, 128 | 0, 64 | 0, 0, 0, () => RecipientInfo$, 2], 1
|
|
509
|
+
];
|
|
510
|
+
export var DecryptResponse$ = [3, n0, _DRec,
|
|
511
|
+
0,
|
|
512
|
+
[_KI, _Pl, _EA, _CFR, _KMI],
|
|
513
|
+
[0, [() => PlaintextType, 0], 0, 21, 0]
|
|
514
|
+
];
|
|
515
|
+
export var DeleteAliasRequest$ = [3, n0, _DAR,
|
|
516
|
+
0,
|
|
517
|
+
[_AN],
|
|
518
|
+
[0], 1
|
|
519
|
+
];
|
|
520
|
+
export var DeleteCustomKeyStoreRequest$ = [3, n0, _DCKSR,
|
|
521
|
+
0,
|
|
522
|
+
[_CKSI],
|
|
523
|
+
[0], 1
|
|
524
|
+
];
|
|
525
|
+
export var DeleteCustomKeyStoreResponse$ = [3, n0, _DCKSRe,
|
|
526
|
+
0,
|
|
527
|
+
[],
|
|
528
|
+
[]
|
|
529
|
+
];
|
|
530
|
+
export var DeleteImportedKeyMaterialRequest$ = [3, n0, _DIKMR,
|
|
531
|
+
0,
|
|
532
|
+
[_KI, _KMI],
|
|
533
|
+
[0, 0], 1
|
|
534
|
+
];
|
|
535
|
+
export var DeleteImportedKeyMaterialResponse$ = [3, n0, _DIKMRe,
|
|
536
|
+
0,
|
|
537
|
+
[_KI, _KMI],
|
|
538
|
+
[0, 0]
|
|
539
|
+
];
|
|
540
|
+
export var DependencyTimeoutException$ = [-3, n0, _DTE,
|
|
541
|
+
{ [_aQE]: [`DependencyTimeout`, 503], [_e]: _s, [_hE]: 503 },
|
|
542
|
+
[_m],
|
|
543
|
+
[0]
|
|
544
|
+
];
|
|
545
|
+
TypeRegistry.for(n0).registerError(DependencyTimeoutException$, DependencyTimeoutException);
|
|
546
|
+
export var DeriveSharedSecretRequest$ = [3, n0, _DSSR,
|
|
547
|
+
0,
|
|
548
|
+
[_KI, _KAA, _PK, _GT, _DR, _R],
|
|
549
|
+
[0, 0, 21, 64 | 0, 2, () => RecipientInfo$], 3
|
|
550
|
+
];
|
|
551
|
+
export var DeriveSharedSecretResponse$ = [3, n0, _DSSRe,
|
|
552
|
+
0,
|
|
553
|
+
[_KI, _SS, _CFR, _KAA, _KO],
|
|
554
|
+
[0, [() => PlaintextType, 0], 21, 0, 0]
|
|
555
|
+
];
|
|
556
|
+
export var DescribeCustomKeyStoresRequest$ = [3, n0, _DCKSRes,
|
|
557
|
+
0,
|
|
558
|
+
[_CKSI, _CKSN, _L, _M],
|
|
559
|
+
[0, 0, 1, 0]
|
|
560
|
+
];
|
|
561
|
+
export var DescribeCustomKeyStoresResponse$ = [3, n0, _DCKSResc,
|
|
562
|
+
0,
|
|
563
|
+
[_CKS, _NM, _Tr],
|
|
564
|
+
[[() => CustomKeyStoresList, 0], 0, 2]
|
|
565
|
+
];
|
|
566
|
+
export var DescribeKeyRequest$ = [3, n0, _DKR,
|
|
567
|
+
0,
|
|
568
|
+
[_KI, _GT],
|
|
569
|
+
[0, 64 | 0], 1
|
|
570
|
+
];
|
|
571
|
+
export var DescribeKeyResponse$ = [3, n0, _DKRe,
|
|
572
|
+
0,
|
|
573
|
+
[_KM],
|
|
574
|
+
[() => KeyMetadata$]
|
|
575
|
+
];
|
|
576
|
+
export var DisabledException$ = [-3, n0, _DE,
|
|
577
|
+
{ [_aQE]: [`Disabled`, 409], [_e]: _c, [_hE]: 409 },
|
|
578
|
+
[_m],
|
|
579
|
+
[0]
|
|
580
|
+
];
|
|
581
|
+
TypeRegistry.for(n0).registerError(DisabledException$, DisabledException);
|
|
582
|
+
export var DisableKeyRequest$ = [3, n0, _DKRi,
|
|
583
|
+
0,
|
|
584
|
+
[_KI],
|
|
585
|
+
[0], 1
|
|
586
|
+
];
|
|
587
|
+
export var DisableKeyRotationRequest$ = [3, n0, _DKRR,
|
|
588
|
+
0,
|
|
589
|
+
[_KI],
|
|
590
|
+
[0], 1
|
|
591
|
+
];
|
|
592
|
+
export var DisconnectCustomKeyStoreRequest$ = [3, n0, _DCKSRi,
|
|
593
|
+
0,
|
|
594
|
+
[_CKSI],
|
|
595
|
+
[0], 1
|
|
596
|
+
];
|
|
597
|
+
export var DisconnectCustomKeyStoreResponse$ = [3, n0, _DCKSRis,
|
|
598
|
+
0,
|
|
599
|
+
[],
|
|
600
|
+
[]
|
|
601
|
+
];
|
|
602
|
+
export var DryRunOperationException$ = [-3, n0, _DROE,
|
|
603
|
+
{ [_aQE]: [`DryRunOperation`, 412], [_e]: _c, [_hE]: 412 },
|
|
604
|
+
[_m],
|
|
605
|
+
[0]
|
|
606
|
+
];
|
|
607
|
+
TypeRegistry.for(n0).registerError(DryRunOperationException$, DryRunOperationException);
|
|
608
|
+
export var EnableKeyRequest$ = [3, n0, _EKR,
|
|
609
|
+
0,
|
|
610
|
+
[_KI],
|
|
611
|
+
[0], 1
|
|
612
|
+
];
|
|
613
|
+
export var EnableKeyRotationRequest$ = [3, n0, _EKRR,
|
|
614
|
+
0,
|
|
615
|
+
[_KI, _RPID],
|
|
616
|
+
[0, 1], 1
|
|
617
|
+
];
|
|
618
|
+
export var EncryptRequest$ = [3, n0, _ER,
|
|
619
|
+
0,
|
|
620
|
+
[_KI, _Pl, _EC, _GT, _EA, _DR],
|
|
621
|
+
[0, [() => PlaintextType, 0], 128 | 0, 64 | 0, 0, 2], 2
|
|
622
|
+
];
|
|
623
|
+
export var EncryptResponse$ = [3, n0, _ERn,
|
|
624
|
+
0,
|
|
625
|
+
[_CB, _KI, _EA],
|
|
626
|
+
[21, 0, 0]
|
|
627
|
+
];
|
|
628
|
+
export var ExpiredImportTokenException$ = [-3, n0, _EITE,
|
|
629
|
+
{ [_aQE]: [`ExpiredImportTokenException`, 400], [_e]: _c, [_hE]: 400 },
|
|
630
|
+
[_m],
|
|
631
|
+
[0]
|
|
632
|
+
];
|
|
633
|
+
TypeRegistry.for(n0).registerError(ExpiredImportTokenException$, ExpiredImportTokenException);
|
|
634
|
+
export var GenerateDataKeyPairRequest$ = [3, n0, _GDKPR,
|
|
635
|
+
0,
|
|
636
|
+
[_KI, _KPS, _EC, _GT, _R, _DR],
|
|
637
|
+
[0, 0, 128 | 0, 64 | 0, () => RecipientInfo$, 2], 2
|
|
638
|
+
];
|
|
639
|
+
export var GenerateDataKeyPairResponse$ = [3, n0, _GDKPRe,
|
|
640
|
+
0,
|
|
641
|
+
[_PKCB, _PKP, _PK, _KI, _KPS, _CFR, _KMI],
|
|
642
|
+
[21, [() => PlaintextType, 0], 21, 0, 0, 21, 0]
|
|
643
|
+
];
|
|
644
|
+
export var GenerateDataKeyPairWithoutPlaintextRequest$ = [3, n0, _GDKPWPR,
|
|
645
|
+
0,
|
|
646
|
+
[_KI, _KPS, _EC, _GT, _DR],
|
|
647
|
+
[0, 0, 128 | 0, 64 | 0, 2], 2
|
|
648
|
+
];
|
|
649
|
+
export var GenerateDataKeyPairWithoutPlaintextResponse$ = [3, n0, _GDKPWPRe,
|
|
650
|
+
0,
|
|
651
|
+
[_PKCB, _PK, _KI, _KPS, _KMI],
|
|
652
|
+
[21, 21, 0, 0, 0]
|
|
653
|
+
];
|
|
654
|
+
export var GenerateDataKeyRequest$ = [3, n0, _GDKR,
|
|
655
|
+
0,
|
|
656
|
+
[_KI, _EC, _NOB, _KS, _GT, _R, _DR],
|
|
657
|
+
[0, 128 | 0, 1, 0, 64 | 0, () => RecipientInfo$, 2], 1
|
|
658
|
+
];
|
|
659
|
+
export var GenerateDataKeyResponse$ = [3, n0, _GDKRe,
|
|
660
|
+
0,
|
|
661
|
+
[_CB, _Pl, _KI, _CFR, _KMI],
|
|
662
|
+
[21, [() => PlaintextType, 0], 0, 21, 0]
|
|
663
|
+
];
|
|
664
|
+
export var GenerateDataKeyWithoutPlaintextRequest$ = [3, n0, _GDKWPR,
|
|
665
|
+
0,
|
|
666
|
+
[_KI, _EC, _KS, _NOB, _GT, _DR],
|
|
667
|
+
[0, 128 | 0, 0, 1, 64 | 0, 2], 1
|
|
668
|
+
];
|
|
669
|
+
export var GenerateDataKeyWithoutPlaintextResponse$ = [3, n0, _GDKWPRe,
|
|
670
|
+
0,
|
|
671
|
+
[_CB, _KI, _KMI],
|
|
672
|
+
[21, 0, 0]
|
|
673
|
+
];
|
|
674
|
+
export var GenerateMacRequest$ = [3, n0, _GMR,
|
|
675
|
+
0,
|
|
676
|
+
[_Me, _KI, _MA, _GT, _DR],
|
|
677
|
+
[[() => PlaintextType, 0], 0, 0, 64 | 0, 2], 3
|
|
678
|
+
];
|
|
679
|
+
export var GenerateMacResponse$ = [3, n0, _GMRe,
|
|
680
|
+
0,
|
|
681
|
+
[_Ma, _MA, _KI],
|
|
682
|
+
[21, 0, 0]
|
|
683
|
+
];
|
|
684
|
+
export var GenerateRandomRequest$ = [3, n0, _GRR,
|
|
685
|
+
0,
|
|
686
|
+
[_NOB, _CKSI, _R],
|
|
687
|
+
[1, 0, () => RecipientInfo$]
|
|
688
|
+
];
|
|
689
|
+
export var GenerateRandomResponse$ = [3, n0, _GRRe,
|
|
690
|
+
0,
|
|
691
|
+
[_Pl, _CFR],
|
|
692
|
+
[[() => PlaintextType, 0], 21]
|
|
693
|
+
];
|
|
694
|
+
export var GetKeyPolicyRequest$ = [3, n0, _GKPR,
|
|
695
|
+
0,
|
|
696
|
+
[_KI, _PN],
|
|
697
|
+
[0, 0], 1
|
|
698
|
+
];
|
|
699
|
+
export var GetKeyPolicyResponse$ = [3, n0, _GKPRe,
|
|
700
|
+
0,
|
|
701
|
+
[_P, _PN],
|
|
702
|
+
[0, 0]
|
|
703
|
+
];
|
|
704
|
+
export var GetKeyRotationStatusRequest$ = [3, n0, _GKRSR,
|
|
705
|
+
0,
|
|
706
|
+
[_KI],
|
|
707
|
+
[0], 1
|
|
708
|
+
];
|
|
709
|
+
export var GetKeyRotationStatusResponse$ = [3, n0, _GKRSRe,
|
|
710
|
+
0,
|
|
711
|
+
[_KRE, _KI, _RPID, _NRD, _ODRSD],
|
|
712
|
+
[2, 0, 1, 4, 4]
|
|
713
|
+
];
|
|
714
|
+
export var GetParametersForImportRequest$ = [3, n0, _GPFIR,
|
|
715
|
+
0,
|
|
716
|
+
[_KI, _WA, _WKS],
|
|
717
|
+
[0, 0, 0], 3
|
|
718
|
+
];
|
|
719
|
+
export var GetParametersForImportResponse$ = [3, n0, _GPFIRe,
|
|
720
|
+
0,
|
|
721
|
+
[_KI, _IT, _PK, _PVT],
|
|
722
|
+
[0, 21, [() => PlaintextType, 0], 4]
|
|
723
|
+
];
|
|
724
|
+
export var GetPublicKeyRequest$ = [3, n0, _GPKR,
|
|
725
|
+
0,
|
|
726
|
+
[_KI, _GT],
|
|
727
|
+
[0, 64 | 0], 1
|
|
728
|
+
];
|
|
729
|
+
export var GetPublicKeyResponse$ = [3, n0, _GPKRe,
|
|
730
|
+
0,
|
|
731
|
+
[_KI, _PK, _CMKS, _KS, _KU, _EAn, _SA, _KAAe],
|
|
732
|
+
[0, 21, 0, 0, 0, 64 | 0, 64 | 0, 64 | 0]
|
|
733
|
+
];
|
|
734
|
+
export var GrantConstraints$ = [3, n0, _GC,
|
|
735
|
+
0,
|
|
736
|
+
[_ECS, _ECE],
|
|
737
|
+
[128 | 0, 128 | 0]
|
|
738
|
+
];
|
|
739
|
+
export var GrantListEntry$ = [3, n0, _GLE,
|
|
740
|
+
0,
|
|
741
|
+
[_KI, _GI, _N, _CD, _GP, _RP, _IA, _O, _C],
|
|
742
|
+
[0, 0, 0, 4, 0, 0, 0, 64 | 0, () => GrantConstraints$]
|
|
743
|
+
];
|
|
744
|
+
export var ImportKeyMaterialRequest$ = [3, n0, _IKMR,
|
|
745
|
+
0,
|
|
746
|
+
[_KI, _IT, _EKM, _VT, _EM, _ITm, _KMD, _KMI],
|
|
747
|
+
[0, 21, 21, 4, 0, 0, 0, 0], 3
|
|
748
|
+
];
|
|
749
|
+
export var ImportKeyMaterialResponse$ = [3, n0, _IKMRm,
|
|
750
|
+
0,
|
|
751
|
+
[_KI, _KMI],
|
|
752
|
+
[0, 0]
|
|
753
|
+
];
|
|
754
|
+
export var IncorrectKeyException$ = [-3, n0, _IKE,
|
|
755
|
+
{ [_aQE]: [`IncorrectKeyException`, 400], [_e]: _c, [_hE]: 400 },
|
|
756
|
+
[_m],
|
|
757
|
+
[0]
|
|
758
|
+
];
|
|
759
|
+
TypeRegistry.for(n0).registerError(IncorrectKeyException$, IncorrectKeyException);
|
|
760
|
+
export var IncorrectKeyMaterialException$ = [-3, n0, _IKME,
|
|
761
|
+
{ [_aQE]: [`IncorrectKeyMaterialException`, 400], [_e]: _c, [_hE]: 400 },
|
|
762
|
+
[_m],
|
|
763
|
+
[0]
|
|
764
|
+
];
|
|
765
|
+
TypeRegistry.for(n0).registerError(IncorrectKeyMaterialException$, IncorrectKeyMaterialException);
|
|
766
|
+
export var IncorrectTrustAnchorException$ = [-3, n0, _ITAE,
|
|
767
|
+
{ [_aQE]: [`IncorrectTrustAnchorException`, 400], [_e]: _c, [_hE]: 400 },
|
|
768
|
+
[_m],
|
|
769
|
+
[0]
|
|
770
|
+
];
|
|
771
|
+
TypeRegistry.for(n0).registerError(IncorrectTrustAnchorException$, IncorrectTrustAnchorException);
|
|
772
|
+
export var InvalidAliasNameException$ = [-3, n0, _IANE,
|
|
773
|
+
{ [_aQE]: [`InvalidAliasName`, 400], [_e]: _c, [_hE]: 400 },
|
|
774
|
+
[_m],
|
|
775
|
+
[0]
|
|
776
|
+
];
|
|
777
|
+
TypeRegistry.for(n0).registerError(InvalidAliasNameException$, InvalidAliasNameException);
|
|
778
|
+
export var InvalidArnException$ = [-3, n0, _IAE,
|
|
779
|
+
{ [_aQE]: [`InvalidArn`, 400], [_e]: _c, [_hE]: 400 },
|
|
780
|
+
[_m],
|
|
781
|
+
[0]
|
|
782
|
+
];
|
|
783
|
+
TypeRegistry.for(n0).registerError(InvalidArnException$, InvalidArnException);
|
|
784
|
+
export var InvalidCiphertextException$ = [-3, n0, _ICE,
|
|
785
|
+
{ [_aQE]: [`InvalidCiphertext`, 400], [_e]: _c, [_hE]: 400 },
|
|
786
|
+
[_m],
|
|
787
|
+
[0]
|
|
788
|
+
];
|
|
789
|
+
TypeRegistry.for(n0).registerError(InvalidCiphertextException$, InvalidCiphertextException);
|
|
790
|
+
export var InvalidGrantIdException$ = [-3, n0, _IGIE,
|
|
791
|
+
{ [_aQE]: [`InvalidGrantId`, 400], [_e]: _c, [_hE]: 400 },
|
|
792
|
+
[_m],
|
|
793
|
+
[0]
|
|
794
|
+
];
|
|
795
|
+
TypeRegistry.for(n0).registerError(InvalidGrantIdException$, InvalidGrantIdException);
|
|
796
|
+
export var InvalidGrantTokenException$ = [-3, n0, _IGTE,
|
|
797
|
+
{ [_aQE]: [`InvalidGrantToken`, 400], [_e]: _c, [_hE]: 400 },
|
|
798
|
+
[_m],
|
|
799
|
+
[0]
|
|
800
|
+
];
|
|
801
|
+
TypeRegistry.for(n0).registerError(InvalidGrantTokenException$, InvalidGrantTokenException);
|
|
802
|
+
export var InvalidImportTokenException$ = [-3, n0, _IITE,
|
|
803
|
+
{ [_aQE]: [`InvalidImportTokenException`, 400], [_e]: _c, [_hE]: 400 },
|
|
804
|
+
[_m],
|
|
805
|
+
[0]
|
|
806
|
+
];
|
|
807
|
+
TypeRegistry.for(n0).registerError(InvalidImportTokenException$, InvalidImportTokenException);
|
|
808
|
+
export var InvalidKeyUsageException$ = [-3, n0, _IKUE,
|
|
809
|
+
{ [_aQE]: [`InvalidKeyUsage`, 400], [_e]: _c, [_hE]: 400 },
|
|
810
|
+
[_m],
|
|
811
|
+
[0]
|
|
812
|
+
];
|
|
813
|
+
TypeRegistry.for(n0).registerError(InvalidKeyUsageException$, InvalidKeyUsageException);
|
|
814
|
+
export var InvalidMarkerException$ = [-3, n0, _IME,
|
|
815
|
+
{ [_aQE]: [`InvalidMarker`, 400], [_e]: _c, [_hE]: 400 },
|
|
816
|
+
[_m],
|
|
817
|
+
[0]
|
|
818
|
+
];
|
|
819
|
+
TypeRegistry.for(n0).registerError(InvalidMarkerException$, InvalidMarkerException);
|
|
820
|
+
export var KeyListEntry$ = [3, n0, _KLE,
|
|
821
|
+
0,
|
|
822
|
+
[_KI, _KA],
|
|
823
|
+
[0, 0]
|
|
824
|
+
];
|
|
825
|
+
export var KeyMetadata$ = [3, n0, _KM,
|
|
826
|
+
0,
|
|
827
|
+
[_KI, _AWSAI, _A, _CD, _E, _D, _KU, _KSe, _DD, _VT, _Or, _CKSI, _CHCI, _EM, _KMe, _CMKS, _KS, _EAn, _SA, _KAAe, _MR, _MRC, _PDWID, _MAa, _XKC, _CKMI],
|
|
828
|
+
[0, 0, 0, 4, 2, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 64 | 0, 64 | 0, 64 | 0, 2, () => MultiRegionConfiguration$, 1, 64 | 0, () => XksKeyConfigurationType$, 0], 1
|
|
829
|
+
];
|
|
830
|
+
export var KeyUnavailableException$ = [-3, n0, _KUE,
|
|
831
|
+
{ [_aQE]: [`KeyUnavailable`, 500], [_e]: _s, [_hE]: 500 },
|
|
832
|
+
[_m],
|
|
833
|
+
[0]
|
|
834
|
+
];
|
|
835
|
+
TypeRegistry.for(n0).registerError(KeyUnavailableException$, KeyUnavailableException);
|
|
836
|
+
export var KMSInternalException$ = [-3, n0, _KMSIE,
|
|
837
|
+
{ [_aQE]: [`KMSInternal`, 500], [_e]: _s, [_hE]: 500 },
|
|
838
|
+
[_m],
|
|
839
|
+
[0]
|
|
840
|
+
];
|
|
841
|
+
TypeRegistry.for(n0).registerError(KMSInternalException$, KMSInternalException);
|
|
842
|
+
export var KMSInvalidMacException$ = [-3, n0, _KMSIME,
|
|
843
|
+
{ [_aQE]: [`KMSInvalidMac`, 400], [_e]: _c, [_hE]: 400 },
|
|
844
|
+
[_m],
|
|
845
|
+
[0]
|
|
846
|
+
];
|
|
847
|
+
TypeRegistry.for(n0).registerError(KMSInvalidMacException$, KMSInvalidMacException);
|
|
848
|
+
export var KMSInvalidSignatureException$ = [-3, n0, _KMSISE,
|
|
849
|
+
{ [_aQE]: [`KMSInvalidSignature`, 400], [_e]: _c, [_hE]: 400 },
|
|
850
|
+
[_m],
|
|
851
|
+
[0]
|
|
852
|
+
];
|
|
853
|
+
TypeRegistry.for(n0).registerError(KMSInvalidSignatureException$, KMSInvalidSignatureException);
|
|
854
|
+
export var KMSInvalidStateException$ = [-3, n0, _KMSISEn,
|
|
855
|
+
{ [_aQE]: [`KMSInvalidStateException`, 409], [_e]: _c, [_hE]: 409 },
|
|
856
|
+
[_m],
|
|
857
|
+
[0]
|
|
858
|
+
];
|
|
859
|
+
TypeRegistry.for(n0).registerError(KMSInvalidStateException$, KMSInvalidStateException);
|
|
860
|
+
export var LimitExceededException$ = [-3, n0, _LEE,
|
|
861
|
+
{ [_aQE]: [`LimitExceeded`, 400], [_e]: _c, [_hE]: 400 },
|
|
862
|
+
[_m],
|
|
863
|
+
[0]
|
|
864
|
+
];
|
|
865
|
+
TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
|
|
866
|
+
export var ListAliasesRequest$ = [3, n0, _LAR,
|
|
867
|
+
0,
|
|
868
|
+
[_KI, _L, _M],
|
|
869
|
+
[0, 1, 0]
|
|
870
|
+
];
|
|
871
|
+
export var ListAliasesResponse$ = [3, n0, _LARi,
|
|
872
|
+
0,
|
|
873
|
+
[_Al, _NM, _Tr],
|
|
874
|
+
[() => AliasList, 0, 2]
|
|
875
|
+
];
|
|
876
|
+
export var ListGrantsRequest$ = [3, n0, _LGR,
|
|
877
|
+
0,
|
|
878
|
+
[_KI, _L, _M, _GI, _GP],
|
|
879
|
+
[0, 1, 0, 0, 0], 1
|
|
880
|
+
];
|
|
881
|
+
export var ListGrantsResponse$ = [3, n0, _LGRi,
|
|
882
|
+
0,
|
|
883
|
+
[_G, _NM, _Tr],
|
|
884
|
+
[() => GrantList, 0, 2]
|
|
885
|
+
];
|
|
886
|
+
export var ListKeyPoliciesRequest$ = [3, n0, _LKPR,
|
|
887
|
+
0,
|
|
888
|
+
[_KI, _L, _M],
|
|
889
|
+
[0, 1, 0], 1
|
|
890
|
+
];
|
|
891
|
+
export var ListKeyPoliciesResponse$ = [3, n0, _LKPRi,
|
|
892
|
+
0,
|
|
893
|
+
[_PNo, _NM, _Tr],
|
|
894
|
+
[64 | 0, 0, 2]
|
|
895
|
+
];
|
|
896
|
+
export var ListKeyRotationsRequest$ = [3, n0, _LKRR,
|
|
897
|
+
0,
|
|
898
|
+
[_KI, _IKM, _L, _M],
|
|
899
|
+
[0, 0, 1, 0], 1
|
|
900
|
+
];
|
|
901
|
+
export var ListKeyRotationsResponse$ = [3, n0, _LKRRi,
|
|
902
|
+
0,
|
|
903
|
+
[_Ro, _NM, _Tr],
|
|
904
|
+
[() => RotationsList, 0, 2]
|
|
905
|
+
];
|
|
906
|
+
export var ListKeysRequest$ = [3, n0, _LKR,
|
|
907
|
+
0,
|
|
908
|
+
[_L, _M],
|
|
909
|
+
[1, 0]
|
|
910
|
+
];
|
|
911
|
+
export var ListKeysResponse$ = [3, n0, _LKRi,
|
|
912
|
+
0,
|
|
913
|
+
[_K, _NM, _Tr],
|
|
914
|
+
[() => KeyList, 0, 2]
|
|
915
|
+
];
|
|
916
|
+
export var ListResourceTagsRequest$ = [3, n0, _LRTR,
|
|
917
|
+
0,
|
|
918
|
+
[_KI, _L, _M],
|
|
919
|
+
[0, 1, 0], 1
|
|
920
|
+
];
|
|
921
|
+
export var ListResourceTagsResponse$ = [3, n0, _LRTRi,
|
|
922
|
+
0,
|
|
923
|
+
[_T, _NM, _Tr],
|
|
924
|
+
[() => TagList, 0, 2]
|
|
925
|
+
];
|
|
926
|
+
export var ListRetirableGrantsRequest$ = [3, n0, _LRGR,
|
|
927
|
+
0,
|
|
928
|
+
[_RP, _L, _M],
|
|
929
|
+
[0, 1, 0], 1
|
|
930
|
+
];
|
|
931
|
+
export var MalformedPolicyDocumentException$ = [-3, n0, _MPDE,
|
|
932
|
+
{ [_aQE]: [`MalformedPolicyDocument`, 400], [_e]: _c, [_hE]: 400 },
|
|
933
|
+
[_m],
|
|
934
|
+
[0]
|
|
935
|
+
];
|
|
936
|
+
TypeRegistry.for(n0).registerError(MalformedPolicyDocumentException$, MalformedPolicyDocumentException);
|
|
937
|
+
export var MultiRegionConfiguration$ = [3, n0, _MRC,
|
|
938
|
+
0,
|
|
939
|
+
[_MRKT, _PKr, _RK],
|
|
940
|
+
[0, () => MultiRegionKey$, () => MultiRegionKeyList]
|
|
941
|
+
];
|
|
942
|
+
export var MultiRegionKey$ = [3, n0, _MRK,
|
|
943
|
+
0,
|
|
944
|
+
[_A, _Re],
|
|
945
|
+
[0, 0]
|
|
946
|
+
];
|
|
947
|
+
export var NotFoundException$ = [-3, n0, _NFE,
|
|
948
|
+
{ [_aQE]: [`NotFound`, 404], [_e]: _c, [_hE]: 404 },
|
|
949
|
+
[_m],
|
|
950
|
+
[0]
|
|
951
|
+
];
|
|
952
|
+
TypeRegistry.for(n0).registerError(NotFoundException$, NotFoundException);
|
|
953
|
+
export var PutKeyPolicyRequest$ = [3, n0, _PKPR,
|
|
954
|
+
0,
|
|
955
|
+
[_KI, _P, _PN, _BPLSC],
|
|
956
|
+
[0, 0, 0, 2], 2
|
|
957
|
+
];
|
|
958
|
+
export var RecipientInfo$ = [3, n0, _RI,
|
|
959
|
+
0,
|
|
960
|
+
[_KEA, _AD],
|
|
961
|
+
[0, 21]
|
|
962
|
+
];
|
|
963
|
+
export var ReEncryptRequest$ = [3, n0, _RER,
|
|
964
|
+
0,
|
|
965
|
+
[_CB, _DKI, _SEC, _SKI, _DEC, _SEA, _DEA, _GT, _DR],
|
|
966
|
+
[21, 0, 128 | 0, 0, 128 | 0, 0, 0, 64 | 0, 2], 2
|
|
967
|
+
];
|
|
968
|
+
export var ReEncryptResponse$ = [3, n0, _RERe,
|
|
969
|
+
0,
|
|
970
|
+
[_CB, _SKI, _KI, _SEA, _DEA, _SKMI, _DKMI],
|
|
971
|
+
[21, 0, 0, 0, 0, 0, 0]
|
|
972
|
+
];
|
|
973
|
+
export var ReplicateKeyRequest$ = [3, n0, _RKR,
|
|
974
|
+
0,
|
|
975
|
+
[_KI, _RR, _P, _BPLSC, _D, _T],
|
|
976
|
+
[0, 0, 0, 2, 0, () => TagList], 2
|
|
977
|
+
];
|
|
978
|
+
export var ReplicateKeyResponse$ = [3, n0, _RKRe,
|
|
979
|
+
0,
|
|
980
|
+
[_RKM, _RPe, _RT],
|
|
981
|
+
[() => KeyMetadata$, 0, () => TagList]
|
|
982
|
+
];
|
|
983
|
+
export var RetireGrantRequest$ = [3, n0, _RGR,
|
|
984
|
+
0,
|
|
985
|
+
[_GTr, _KI, _GI, _DR],
|
|
986
|
+
[0, 0, 0, 2]
|
|
987
|
+
];
|
|
988
|
+
export var RevokeGrantRequest$ = [3, n0, _RGRe,
|
|
989
|
+
0,
|
|
990
|
+
[_KI, _GI, _DR],
|
|
991
|
+
[0, 0, 2], 2
|
|
992
|
+
];
|
|
993
|
+
export var RotateKeyOnDemandRequest$ = [3, n0, _RKODR,
|
|
994
|
+
0,
|
|
995
|
+
[_KI],
|
|
996
|
+
[0], 1
|
|
997
|
+
];
|
|
998
|
+
export var RotateKeyOnDemandResponse$ = [3, n0, _RKODRo,
|
|
999
|
+
0,
|
|
1000
|
+
[_KI],
|
|
1001
|
+
[0]
|
|
1002
|
+
];
|
|
1003
|
+
export var RotationsListEntry$ = [3, n0, _RLE,
|
|
1004
|
+
0,
|
|
1005
|
+
[_KI, _KMI, _KMD, _IS, _KMS, _EM, _VT, _RD, _RTo],
|
|
1006
|
+
[0, 0, 0, 0, 0, 0, 4, 4, 0]
|
|
1007
|
+
];
|
|
1008
|
+
export var ScheduleKeyDeletionRequest$ = [3, n0, _SKDR,
|
|
1009
|
+
0,
|
|
1010
|
+
[_KI, _PWID],
|
|
1011
|
+
[0, 1], 1
|
|
1012
|
+
];
|
|
1013
|
+
export var ScheduleKeyDeletionResponse$ = [3, n0, _SKDRc,
|
|
1014
|
+
0,
|
|
1015
|
+
[_KI, _DD, _KSe, _PWID],
|
|
1016
|
+
[0, 4, 0, 1]
|
|
1017
|
+
];
|
|
1018
|
+
export var SignRequest$ = [3, n0, _SR,
|
|
1019
|
+
0,
|
|
1020
|
+
[_KI, _Me, _SAi, _MT, _GT, _DR],
|
|
1021
|
+
[0, [() => PlaintextType, 0], 0, 0, 64 | 0, 2], 3
|
|
1022
|
+
];
|
|
1023
|
+
export var SignResponse$ = [3, n0, _SRi,
|
|
1024
|
+
0,
|
|
1025
|
+
[_KI, _S, _SAi],
|
|
1026
|
+
[0, 21, 0]
|
|
1027
|
+
];
|
|
1028
|
+
export var Tag$ = [3, n0, _Ta,
|
|
1029
|
+
0,
|
|
1030
|
+
[_TK, _TV],
|
|
1031
|
+
[0, 0], 2
|
|
1032
|
+
];
|
|
1033
|
+
export var TagException$ = [-3, n0, _TE,
|
|
1034
|
+
{ [_aQE]: [`TagException`, 400], [_e]: _c, [_hE]: 400 },
|
|
1035
|
+
[_m],
|
|
1036
|
+
[0]
|
|
1037
|
+
];
|
|
1038
|
+
TypeRegistry.for(n0).registerError(TagException$, TagException);
|
|
1039
|
+
export var TagResourceRequest$ = [3, n0, _TRR,
|
|
1040
|
+
0,
|
|
1041
|
+
[_KI, _T],
|
|
1042
|
+
[0, () => TagList], 2
|
|
1043
|
+
];
|
|
1044
|
+
export var UnsupportedOperationException$ = [-3, n0, _UOE,
|
|
1045
|
+
{ [_aQE]: [`UnsupportedOperation`, 400], [_e]: _c, [_hE]: 400 },
|
|
1046
|
+
[_m],
|
|
1047
|
+
[0]
|
|
1048
|
+
];
|
|
1049
|
+
TypeRegistry.for(n0).registerError(UnsupportedOperationException$, UnsupportedOperationException);
|
|
1050
|
+
export var UntagResourceRequest$ = [3, n0, _URR,
|
|
1051
|
+
0,
|
|
1052
|
+
[_KI, _TKa],
|
|
1053
|
+
[0, 64 | 0], 2
|
|
1054
|
+
];
|
|
1055
|
+
export var UpdateAliasRequest$ = [3, n0, _UAR,
|
|
1056
|
+
0,
|
|
1057
|
+
[_AN, _TKI],
|
|
1058
|
+
[0, 0], 2
|
|
1059
|
+
];
|
|
1060
|
+
export var UpdateCustomKeyStoreRequest$ = [3, n0, _UCKSR,
|
|
1061
|
+
0,
|
|
1062
|
+
[_CKSI, _NCKSN, _KSP, _CHCI, _XPUE, _XPUP, _XPVESN, _XPVESO, _XPAC, _XPC],
|
|
1063
|
+
[0, 0, [() => KeyStorePasswordType, 0], 0, 0, 0, 0, 0, [() => XksProxyAuthenticationCredentialType$, 0], 0], 1
|
|
1064
|
+
];
|
|
1065
|
+
export var UpdateCustomKeyStoreResponse$ = [3, n0, _UCKSRp,
|
|
1066
|
+
0,
|
|
1067
|
+
[],
|
|
1068
|
+
[]
|
|
1069
|
+
];
|
|
1070
|
+
export var UpdateKeyDescriptionRequest$ = [3, n0, _UKDR,
|
|
1071
|
+
0,
|
|
1072
|
+
[_KI, _D],
|
|
1073
|
+
[0, 0], 2
|
|
1074
|
+
];
|
|
1075
|
+
export var UpdatePrimaryRegionRequest$ = [3, n0, _UPRR,
|
|
1076
|
+
0,
|
|
1077
|
+
[_KI, _PR],
|
|
1078
|
+
[0, 0], 2
|
|
1079
|
+
];
|
|
1080
|
+
export var VerifyMacRequest$ = [3, n0, _VMR,
|
|
1081
|
+
0,
|
|
1082
|
+
[_Me, _KI, _MA, _Ma, _GT, _DR],
|
|
1083
|
+
[[() => PlaintextType, 0], 0, 0, 21, 64 | 0, 2], 4
|
|
1084
|
+
];
|
|
1085
|
+
export var VerifyMacResponse$ = [3, n0, _VMRe,
|
|
1086
|
+
0,
|
|
1087
|
+
[_KI, _MV, _MA],
|
|
1088
|
+
[0, 2, 0]
|
|
1089
|
+
];
|
|
1090
|
+
export var VerifyRequest$ = [3, n0, _VR,
|
|
1091
|
+
0,
|
|
1092
|
+
[_KI, _Me, _S, _SAi, _MT, _GT, _DR],
|
|
1093
|
+
[0, [() => PlaintextType, 0], 21, 0, 0, 64 | 0, 2], 4
|
|
1094
|
+
];
|
|
1095
|
+
export var VerifyResponse$ = [3, n0, _VRe,
|
|
1096
|
+
0,
|
|
1097
|
+
[_KI, _SV, _SAi],
|
|
1098
|
+
[0, 2, 0]
|
|
1099
|
+
];
|
|
1100
|
+
export var XksKeyAlreadyInUseException$ = [-3, n0, _XKAIUE,
|
|
1101
|
+
{ [_aQE]: [`XksKeyAlreadyInUse`, 400], [_e]: _c, [_hE]: 400 },
|
|
1102
|
+
[_m],
|
|
1103
|
+
[0]
|
|
1104
|
+
];
|
|
1105
|
+
TypeRegistry.for(n0).registerError(XksKeyAlreadyInUseException$, XksKeyAlreadyInUseException);
|
|
1106
|
+
export var XksKeyConfigurationType$ = [3, n0, _XKCT,
|
|
1107
|
+
0,
|
|
1108
|
+
[_I],
|
|
1109
|
+
[0]
|
|
1110
|
+
];
|
|
1111
|
+
export var XksKeyInvalidConfigurationException$ = [-3, n0, _XKICE,
|
|
1112
|
+
{ [_aQE]: [`XksKeyInvalidConfiguration`, 400], [_e]: _c, [_hE]: 400 },
|
|
1113
|
+
[_m],
|
|
1114
|
+
[0]
|
|
1115
|
+
];
|
|
1116
|
+
TypeRegistry.for(n0).registerError(XksKeyInvalidConfigurationException$, XksKeyInvalidConfigurationException);
|
|
1117
|
+
export var XksKeyNotFoundException$ = [-3, n0, _XKNFE,
|
|
1118
|
+
{ [_aQE]: [`XksKeyNotFoundException`, 400], [_e]: _c, [_hE]: 400 },
|
|
1119
|
+
[_m],
|
|
1120
|
+
[0]
|
|
1121
|
+
];
|
|
1122
|
+
TypeRegistry.for(n0).registerError(XksKeyNotFoundException$, XksKeyNotFoundException);
|
|
1123
|
+
export var XksProxyAuthenticationCredentialType$ = [3, n0, _XPACT,
|
|
1124
|
+
0,
|
|
1125
|
+
[_AKI, _RSAK],
|
|
1126
|
+
[[() => XksProxyAuthenticationAccessKeyIdType, 0], [() => XksProxyAuthenticationRawSecretAccessKeyType, 0]], 2
|
|
1127
|
+
];
|
|
1128
|
+
export var XksProxyConfigurationType$ = [3, n0, _XPCT,
|
|
1129
|
+
0,
|
|
1130
|
+
[_Co, _AKI, _UE, _UP, _VESN, _VESO],
|
|
1131
|
+
[0, [() => XksProxyAuthenticationAccessKeyIdType, 0], 0, 0, 0, 0]
|
|
1132
|
+
];
|
|
1133
|
+
export var XksProxyIncorrectAuthenticationCredentialException$ = [-3, n0, _XPIACE,
|
|
1134
|
+
{ [_aQE]: [`XksProxyIncorrectAuthenticationCredentialException`, 400], [_e]: _c, [_hE]: 400 },
|
|
1135
|
+
[_m],
|
|
1136
|
+
[0]
|
|
1137
|
+
];
|
|
1138
|
+
TypeRegistry.for(n0).registerError(XksProxyIncorrectAuthenticationCredentialException$, XksProxyIncorrectAuthenticationCredentialException);
|
|
1139
|
+
export var XksProxyInvalidConfigurationException$ = [-3, n0, _XPICE,
|
|
1140
|
+
{ [_aQE]: [`XksProxyInvalidConfigurationException`, 400], [_e]: _c, [_hE]: 400 },
|
|
1141
|
+
[_m],
|
|
1142
|
+
[0]
|
|
1143
|
+
];
|
|
1144
|
+
TypeRegistry.for(n0).registerError(XksProxyInvalidConfigurationException$, XksProxyInvalidConfigurationException);
|
|
1145
|
+
export var XksProxyInvalidResponseException$ = [-3, n0, _XPIRE,
|
|
1146
|
+
{ [_aQE]: [`XksProxyInvalidResponseException`, 400], [_e]: _c, [_hE]: 400 },
|
|
1147
|
+
[_m],
|
|
1148
|
+
[0]
|
|
1149
|
+
];
|
|
1150
|
+
TypeRegistry.for(n0).registerError(XksProxyInvalidResponseException$, XksProxyInvalidResponseException);
|
|
1151
|
+
export var XksProxyUriEndpointInUseException$ = [-3, n0, _XPUEIUE,
|
|
1152
|
+
{ [_aQE]: [`XksProxyUriEndpointInUseException`, 400], [_e]: _c, [_hE]: 400 },
|
|
1153
|
+
[_m],
|
|
1154
|
+
[0]
|
|
1155
|
+
];
|
|
1156
|
+
TypeRegistry.for(n0).registerError(XksProxyUriEndpointInUseException$, XksProxyUriEndpointInUseException);
|
|
1157
|
+
export var XksProxyUriInUseException$ = [-3, n0, _XPUIUE,
|
|
1158
|
+
{ [_aQE]: [`XksProxyUriInUseException`, 400], [_e]: _c, [_hE]: 400 },
|
|
1159
|
+
[_m],
|
|
1160
|
+
[0]
|
|
1161
|
+
];
|
|
1162
|
+
TypeRegistry.for(n0).registerError(XksProxyUriInUseException$, XksProxyUriInUseException);
|
|
1163
|
+
export var XksProxyUriUnreachableException$ = [-3, n0, _XPUUE,
|
|
1164
|
+
{ [_aQE]: [`XksProxyUriUnreachableException`, 400], [_e]: _c, [_hE]: 400 },
|
|
1165
|
+
[_m],
|
|
1166
|
+
[0]
|
|
1167
|
+
];
|
|
1168
|
+
TypeRegistry.for(n0).registerError(XksProxyUriUnreachableException$, XksProxyUriUnreachableException);
|
|
1169
|
+
export var XksProxyVpcEndpointServiceInUseException$ = [-3, n0, _XPVESIUE,
|
|
1170
|
+
{ [_aQE]: [`XksProxyVpcEndpointServiceInUseException`, 400], [_e]: _c, [_hE]: 400 },
|
|
1171
|
+
[_m],
|
|
1172
|
+
[0]
|
|
1173
|
+
];
|
|
1174
|
+
TypeRegistry.for(n0).registerError(XksProxyVpcEndpointServiceInUseException$, XksProxyVpcEndpointServiceInUseException);
|
|
1175
|
+
export var XksProxyVpcEndpointServiceInvalidConfigurationException$ = [-3, n0, _XPVESICE,
|
|
1176
|
+
{ [_aQE]: [`XksProxyVpcEndpointServiceInvalidConfigurationException`, 400], [_e]: _c, [_hE]: 400 },
|
|
1177
|
+
[_m],
|
|
1178
|
+
[0]
|
|
1179
|
+
];
|
|
1180
|
+
TypeRegistry.for(n0).registerError(XksProxyVpcEndpointServiceInvalidConfigurationException$, XksProxyVpcEndpointServiceInvalidConfigurationException);
|
|
1181
|
+
export var XksProxyVpcEndpointServiceNotFoundException$ = [-3, n0, _XPVESNFE,
|
|
1182
|
+
{ [_aQE]: [`XksProxyVpcEndpointServiceNotFoundException`, 400], [_e]: _c, [_hE]: 400 },
|
|
1183
|
+
[_m],
|
|
1184
|
+
[0]
|
|
1185
|
+
];
|
|
1186
|
+
TypeRegistry.for(n0).registerError(XksProxyVpcEndpointServiceNotFoundException$, XksProxyVpcEndpointServiceNotFoundException);
|
|
1187
|
+
var __Unit = "unit";
|
|
1188
|
+
export var KMSServiceException$ = [-3, _sm, "KMSServiceException", 0, [], []];
|
|
1189
|
+
TypeRegistry.for(_sm).registerError(KMSServiceException$, KMSServiceException);
|
|
1190
|
+
var AliasList = [1, n0, _AL,
|
|
1191
|
+
0, () => AliasListEntry$
|
|
1192
|
+
];
|
|
1193
|
+
var CustomKeyStoresList = [1, n0, _CKSL,
|
|
1194
|
+
0, [() => CustomKeyStoresListEntry$,
|
|
1195
|
+
0]
|
|
1196
|
+
];
|
|
1197
|
+
var EncryptionAlgorithmSpecList = 64 | 0;
|
|
1198
|
+
var GrantList = [1, n0, _GL,
|
|
1199
|
+
0, () => GrantListEntry$
|
|
1200
|
+
];
|
|
1201
|
+
var GrantOperationList = 64 | 0;
|
|
1202
|
+
var GrantTokenList = 64 | 0;
|
|
1203
|
+
var KeyAgreementAlgorithmSpecList = 64 | 0;
|
|
1204
|
+
var KeyList = [1, n0, _KL,
|
|
1205
|
+
0, () => KeyListEntry$
|
|
1206
|
+
];
|
|
1207
|
+
var MacAlgorithmSpecList = 64 | 0;
|
|
1208
|
+
var MultiRegionKeyList = [1, n0, _MRKL,
|
|
1209
|
+
0, () => MultiRegionKey$
|
|
1210
|
+
];
|
|
1211
|
+
var PolicyNameList = 64 | 0;
|
|
1212
|
+
var RotationsList = [1, n0, _RL,
|
|
1213
|
+
0, () => RotationsListEntry$
|
|
1214
|
+
];
|
|
1215
|
+
var SigningAlgorithmSpecList = 64 | 0;
|
|
1216
|
+
var TagKeyList = 64 | 0;
|
|
1217
|
+
var TagList = [1, n0, _TL,
|
|
1218
|
+
0, () => Tag$
|
|
1219
|
+
];
|
|
1220
|
+
var EncryptionContextType = 128 | 0;
|
|
1221
|
+
export var CancelKeyDeletion$ = [9, n0, _CKD,
|
|
1222
|
+
0, () => CancelKeyDeletionRequest$, () => CancelKeyDeletionResponse$
|
|
1223
|
+
];
|
|
1224
|
+
export var ConnectCustomKeyStore$ = [9, n0, _CCKS,
|
|
1225
|
+
0, () => ConnectCustomKeyStoreRequest$, () => ConnectCustomKeyStoreResponse$
|
|
1226
|
+
];
|
|
1227
|
+
export var CreateAlias$ = [9, n0, _CA,
|
|
1228
|
+
0, () => CreateAliasRequest$, () => __Unit
|
|
1229
|
+
];
|
|
1230
|
+
export var CreateCustomKeyStore$ = [9, n0, _CCKSr,
|
|
1231
|
+
0, () => CreateCustomKeyStoreRequest$, () => CreateCustomKeyStoreResponse$
|
|
1232
|
+
];
|
|
1233
|
+
export var CreateGrant$ = [9, n0, _CG,
|
|
1234
|
+
0, () => CreateGrantRequest$, () => CreateGrantResponse$
|
|
1235
|
+
];
|
|
1236
|
+
export var CreateKey$ = [9, n0, _CK,
|
|
1237
|
+
0, () => CreateKeyRequest$, () => CreateKeyResponse$
|
|
1238
|
+
];
|
|
1239
|
+
export var Decrypt$ = [9, n0, _De,
|
|
1240
|
+
0, () => DecryptRequest$, () => DecryptResponse$
|
|
1241
|
+
];
|
|
1242
|
+
export var DeleteAlias$ = [9, n0, _DA,
|
|
1243
|
+
0, () => DeleteAliasRequest$, () => __Unit
|
|
1244
|
+
];
|
|
1245
|
+
export var DeleteCustomKeyStore$ = [9, n0, _DCKS,
|
|
1246
|
+
0, () => DeleteCustomKeyStoreRequest$, () => DeleteCustomKeyStoreResponse$
|
|
1247
|
+
];
|
|
1248
|
+
export var DeleteImportedKeyMaterial$ = [9, n0, _DIKM,
|
|
1249
|
+
0, () => DeleteImportedKeyMaterialRequest$, () => DeleteImportedKeyMaterialResponse$
|
|
1250
|
+
];
|
|
1251
|
+
export var DeriveSharedSecret$ = [9, n0, _DSS,
|
|
1252
|
+
0, () => DeriveSharedSecretRequest$, () => DeriveSharedSecretResponse$
|
|
1253
|
+
];
|
|
1254
|
+
export var DescribeCustomKeyStores$ = [9, n0, _DCKSe,
|
|
1255
|
+
0, () => DescribeCustomKeyStoresRequest$, () => DescribeCustomKeyStoresResponse$
|
|
1256
|
+
];
|
|
1257
|
+
export var DescribeKey$ = [9, n0, _DK,
|
|
1258
|
+
0, () => DescribeKeyRequest$, () => DescribeKeyResponse$
|
|
1259
|
+
];
|
|
1260
|
+
export var DisableKey$ = [9, n0, _DKi,
|
|
1261
|
+
0, () => DisableKeyRequest$, () => __Unit
|
|
1262
|
+
];
|
|
1263
|
+
export var DisableKeyRotation$ = [9, n0, _DKRis,
|
|
1264
|
+
0, () => DisableKeyRotationRequest$, () => __Unit
|
|
1265
|
+
];
|
|
1266
|
+
export var DisconnectCustomKeyStore$ = [9, n0, _DCKSi,
|
|
1267
|
+
0, () => DisconnectCustomKeyStoreRequest$, () => DisconnectCustomKeyStoreResponse$
|
|
1268
|
+
];
|
|
1269
|
+
export var EnableKey$ = [9, n0, _EK,
|
|
1270
|
+
0, () => EnableKeyRequest$, () => __Unit
|
|
1271
|
+
];
|
|
1272
|
+
export var EnableKeyRotation$ = [9, n0, _EKRn,
|
|
1273
|
+
0, () => EnableKeyRotationRequest$, () => __Unit
|
|
1274
|
+
];
|
|
1275
|
+
export var Encrypt$ = [9, n0, _En,
|
|
1276
|
+
0, () => EncryptRequest$, () => EncryptResponse$
|
|
1277
|
+
];
|
|
1278
|
+
export var GenerateDataKey$ = [9, n0, _GDK,
|
|
1279
|
+
0, () => GenerateDataKeyRequest$, () => GenerateDataKeyResponse$
|
|
1280
|
+
];
|
|
1281
|
+
export var GenerateDataKeyPair$ = [9, n0, _GDKP,
|
|
1282
|
+
0, () => GenerateDataKeyPairRequest$, () => GenerateDataKeyPairResponse$
|
|
1283
|
+
];
|
|
1284
|
+
export var GenerateDataKeyPairWithoutPlaintext$ = [9, n0, _GDKPWP,
|
|
1285
|
+
0, () => GenerateDataKeyPairWithoutPlaintextRequest$, () => GenerateDataKeyPairWithoutPlaintextResponse$
|
|
1286
|
+
];
|
|
1287
|
+
export var GenerateDataKeyWithoutPlaintext$ = [9, n0, _GDKWP,
|
|
1288
|
+
0, () => GenerateDataKeyWithoutPlaintextRequest$, () => GenerateDataKeyWithoutPlaintextResponse$
|
|
1289
|
+
];
|
|
1290
|
+
export var GenerateMac$ = [9, n0, _GM,
|
|
1291
|
+
0, () => GenerateMacRequest$, () => GenerateMacResponse$
|
|
1292
|
+
];
|
|
1293
|
+
export var GenerateRandom$ = [9, n0, _GR,
|
|
1294
|
+
0, () => GenerateRandomRequest$, () => GenerateRandomResponse$
|
|
1295
|
+
];
|
|
1296
|
+
export var GetKeyPolicy$ = [9, n0, _GKP,
|
|
1297
|
+
0, () => GetKeyPolicyRequest$, () => GetKeyPolicyResponse$
|
|
1298
|
+
];
|
|
1299
|
+
export var GetKeyRotationStatus$ = [9, n0, _GKRS,
|
|
1300
|
+
0, () => GetKeyRotationStatusRequest$, () => GetKeyRotationStatusResponse$
|
|
1301
|
+
];
|
|
1302
|
+
export var GetParametersForImport$ = [9, n0, _GPFI,
|
|
1303
|
+
0, () => GetParametersForImportRequest$, () => GetParametersForImportResponse$
|
|
1304
|
+
];
|
|
1305
|
+
export var GetPublicKey$ = [9, n0, _GPK,
|
|
1306
|
+
0, () => GetPublicKeyRequest$, () => GetPublicKeyResponse$
|
|
1307
|
+
];
|
|
1308
|
+
export var ImportKeyMaterial$ = [9, n0, _IKMm,
|
|
1309
|
+
0, () => ImportKeyMaterialRequest$, () => ImportKeyMaterialResponse$
|
|
1310
|
+
];
|
|
1311
|
+
export var ListAliases$ = [9, n0, _LA,
|
|
1312
|
+
0, () => ListAliasesRequest$, () => ListAliasesResponse$
|
|
1313
|
+
];
|
|
1314
|
+
export var ListGrants$ = [9, n0, _LG,
|
|
1315
|
+
0, () => ListGrantsRequest$, () => ListGrantsResponse$
|
|
1316
|
+
];
|
|
1317
|
+
export var ListKeyPolicies$ = [9, n0, _LKP,
|
|
1318
|
+
0, () => ListKeyPoliciesRequest$, () => ListKeyPoliciesResponse$
|
|
1319
|
+
];
|
|
1320
|
+
export var ListKeyRotations$ = [9, n0, _LKRis,
|
|
1321
|
+
0, () => ListKeyRotationsRequest$, () => ListKeyRotationsResponse$
|
|
1322
|
+
];
|
|
1323
|
+
export var ListKeys$ = [9, n0, _LK,
|
|
1324
|
+
0, () => ListKeysRequest$, () => ListKeysResponse$
|
|
1325
|
+
];
|
|
1326
|
+
export var ListResourceTags$ = [9, n0, _LRT,
|
|
1327
|
+
0, () => ListResourceTagsRequest$, () => ListResourceTagsResponse$
|
|
1328
|
+
];
|
|
1329
|
+
export var ListRetirableGrants$ = [9, n0, _LRG,
|
|
1330
|
+
0, () => ListRetirableGrantsRequest$, () => ListGrantsResponse$
|
|
1331
|
+
];
|
|
1332
|
+
export var PutKeyPolicy$ = [9, n0, _PKPu,
|
|
1333
|
+
0, () => PutKeyPolicyRequest$, () => __Unit
|
|
1334
|
+
];
|
|
1335
|
+
export var ReEncrypt$ = [9, n0, _RE,
|
|
1336
|
+
0, () => ReEncryptRequest$, () => ReEncryptResponse$
|
|
1337
|
+
];
|
|
1338
|
+
export var ReplicateKey$ = [9, n0, _RKe,
|
|
1339
|
+
0, () => ReplicateKeyRequest$, () => ReplicateKeyResponse$
|
|
1340
|
+
];
|
|
1341
|
+
export var RetireGrant$ = [9, n0, _RG,
|
|
1342
|
+
0, () => RetireGrantRequest$, () => __Unit
|
|
1343
|
+
];
|
|
1344
|
+
export var RevokeGrant$ = [9, n0, _RGe,
|
|
1345
|
+
0, () => RevokeGrantRequest$, () => __Unit
|
|
1346
|
+
];
|
|
1347
|
+
export var RotateKeyOnDemand$ = [9, n0, _RKOD,
|
|
1348
|
+
0, () => RotateKeyOnDemandRequest$, () => RotateKeyOnDemandResponse$
|
|
1349
|
+
];
|
|
1350
|
+
export var ScheduleKeyDeletion$ = [9, n0, _SKD,
|
|
1351
|
+
0, () => ScheduleKeyDeletionRequest$, () => ScheduleKeyDeletionResponse$
|
|
1352
|
+
];
|
|
1353
|
+
export var Sign$ = [9, n0, _Si,
|
|
1354
|
+
0, () => SignRequest$, () => SignResponse$
|
|
1355
|
+
];
|
|
1356
|
+
export var TagResource$ = [9, n0, _TR,
|
|
1357
|
+
0, () => TagResourceRequest$, () => __Unit
|
|
1358
|
+
];
|
|
1359
|
+
export var UntagResource$ = [9, n0, _UR,
|
|
1360
|
+
0, () => UntagResourceRequest$, () => __Unit
|
|
1361
|
+
];
|
|
1362
|
+
export var UpdateAlias$ = [9, n0, _UA,
|
|
1363
|
+
0, () => UpdateAliasRequest$, () => __Unit
|
|
1364
|
+
];
|
|
1365
|
+
export var UpdateCustomKeyStore$ = [9, n0, _UCKS,
|
|
1366
|
+
0, () => UpdateCustomKeyStoreRequest$, () => UpdateCustomKeyStoreResponse$
|
|
1367
|
+
];
|
|
1368
|
+
export var UpdateKeyDescription$ = [9, n0, _UKD,
|
|
1369
|
+
0, () => UpdateKeyDescriptionRequest$, () => __Unit
|
|
1370
|
+
];
|
|
1371
|
+
export var UpdatePrimaryRegion$ = [9, n0, _UPR,
|
|
1372
|
+
0, () => UpdatePrimaryRegionRequest$, () => __Unit
|
|
1373
|
+
];
|
|
1374
|
+
export var Verify$ = [9, n0, _V,
|
|
1375
|
+
0, () => VerifyRequest$, () => VerifyResponse$
|
|
1376
|
+
];
|
|
1377
|
+
export var VerifyMac$ = [9, n0, _VM,
|
|
1378
|
+
0, () => VerifyMacRequest$, () => VerifyMacResponse$
|
|
1379
|
+
];
|