@gemeentenijmegen/webapp 0.0.1
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 +4519 -0
- package/API.md +762 -0
- package/LICENSE +287 -0
- package/README.md +1 -0
- package/assets/webapp/auth/auth.lambda/index.js +12295 -0
- package/assets/webapp/configuration-layer/authentication.json +1 -0
- package/assets/webapp/login/login.lambda/index.js +10242 -0
- package/assets/webapp/logout/logout.lambda/index.js +1141 -0
- package/lib/index.d.ts +4 -0
- package/lib/index.js +17 -0
- package/lib/webapp/Api.d.ts +63 -0
- package/lib/webapp/Api.js +140 -0
- package/lib/webapp/Cloudfront.d.ts +86 -0
- package/lib/webapp/Cloudfront.js +259 -0
- package/lib/webapp/OIDCConnectionProfile.d.ts +40 -0
- package/lib/webapp/OIDCConnectionProfile.js +3 -0
- package/lib/webapp/SessionsTable.d.ts +10 -0
- package/lib/webapp/SessionsTable.js +22 -0
- package/lib/webapp/Webapp.d.ts +20 -0
- package/lib/webapp/Webapp.js +57 -0
- package/lib/webapp/WebappOptions.d.ts +69 -0
- package/lib/webapp/WebappOptions.js +3 -0
- package/lib/webapp/Webpage.d.ts +49 -0
- package/lib/webapp/Webpage.js +91 -0
- package/lib/webapp/auth/AuthRequestHandler.d.ts +15 -0
- package/lib/webapp/auth/AuthRequestHandler.js +77 -0
- package/lib/webapp/auth/auth-function.d.ts +13 -0
- package/lib/webapp/auth/auth-function.js +23 -0
- package/lib/webapp/auth/auth.lambda.d.ts +2 -0
- package/lib/webapp/auth/auth.lambda.js +36 -0
- package/lib/webapp/login/login-function.d.ts +13 -0
- package/lib/webapp/login/login-function.js +23 -0
- package/lib/webapp/login/login.lambda.d.ts +2 -0
- package/lib/webapp/login/login.lambda.js +29 -0
- package/lib/webapp/login/loginRequestHandler.d.ts +19 -0
- package/lib/webapp/login/loginRequestHandler.js +63 -0
- package/lib/webapp/logout/handleLogoutRequest.d.ts +2 -0
- package/lib/webapp/logout/handleLogoutRequest.js +27 -0
- package/lib/webapp/logout/logout-function.d.ts +13 -0
- package/lib/webapp/logout/logout-function.js +23 -0
- package/lib/webapp/logout/logout.lambda.d.ts +1 -0
- package/lib/webapp/logout/logout.lambda.js +24 -0
- package/lib/webapp/util/Files.d.ts +13 -0
- package/lib/webapp/util/Files.js +29 -0
- package/lib/webapp/util/OpenIDConnect.d.ts +46 -0
- package/lib/webapp/util/OpenIDConnect.js +120 -0
- package/lib/webapp/util/render.d.ts +11 -0
- package/lib/webapp/util/render.js +33 -0
- package/node_modules/@aws-crypto/crc32/CHANGELOG.md +76 -0
- package/node_modules/@aws-crypto/crc32/LICENSE +201 -0
- package/node_modules/@aws-crypto/crc32/README.md +16 -0
- package/node_modules/@aws-crypto/crc32/build/aws_crc32.d.ts +7 -0
- package/node_modules/@aws-crypto/crc32/build/aws_crc32.js +31 -0
- package/node_modules/@aws-crypto/crc32/build/aws_crc32.js.map +1 -0
- package/node_modules/@aws-crypto/crc32/build/index.d.ts +7 -0
- package/node_modules/@aws-crypto/crc32/build/index.js +108 -0
- package/node_modules/@aws-crypto/crc32/build/index.js.map +1 -0
- package/node_modules/@aws-crypto/crc32/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/node_modules/@aws-crypto/crc32/node_modules/tslib/LICENSE.txt +12 -0
- package/node_modules/@aws-crypto/crc32/node_modules/tslib/README.md +142 -0
- package/node_modules/@aws-crypto/crc32/node_modules/tslib/modules/index.js +51 -0
- package/node_modules/@aws-crypto/crc32/node_modules/tslib/modules/package.json +3 -0
- package/node_modules/@aws-crypto/crc32/node_modules/tslib/package.json +37 -0
- package/node_modules/@aws-crypto/crc32/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js +23 -0
- package/node_modules/@aws-crypto/crc32/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
- package/node_modules/@aws-crypto/crc32/node_modules/tslib/tslib.d.ts +37 -0
- package/node_modules/@aws-crypto/crc32/node_modules/tslib/tslib.es6.html +1 -0
- package/node_modules/@aws-crypto/crc32/node_modules/tslib/tslib.es6.js +218 -0
- package/node_modules/@aws-crypto/crc32/node_modules/tslib/tslib.html +1 -0
- package/node_modules/@aws-crypto/crc32/node_modules/tslib/tslib.js +284 -0
- package/node_modules/@aws-crypto/crc32/package.json +28 -0
- package/node_modules/@aws-crypto/crc32/src/aws_crc32.ts +24 -0
- package/node_modules/@aws-crypto/crc32/src/index.ts +92 -0
- package/node_modules/@aws-crypto/crc32/tsconfig.json +23 -0
- package/node_modules/@aws-crypto/ie11-detection/CHANGELOG.md +46 -0
- package/node_modules/@aws-crypto/ie11-detection/LICENSE +202 -0
- package/node_modules/@aws-crypto/ie11-detection/README.md +20 -0
- package/node_modules/@aws-crypto/ie11-detection/build/CryptoOperation.d.ts +19 -0
- package/node_modules/@aws-crypto/ie11-detection/build/CryptoOperation.js +3 -0
- package/node_modules/@aws-crypto/ie11-detection/build/CryptoOperation.js.map +1 -0
- package/node_modules/@aws-crypto/ie11-detection/build/Key.d.ts +12 -0
- package/node_modules/@aws-crypto/ie11-detection/build/Key.js +3 -0
- package/node_modules/@aws-crypto/ie11-detection/build/Key.js.map +1 -0
- package/node_modules/@aws-crypto/ie11-detection/build/KeyOperation.d.ts +12 -0
- package/node_modules/@aws-crypto/ie11-detection/build/KeyOperation.js +3 -0
- package/node_modules/@aws-crypto/ie11-detection/build/KeyOperation.js.map +1 -0
- package/node_modules/@aws-crypto/ie11-detection/build/MsSubtleCrypto.d.ts +33 -0
- package/node_modules/@aws-crypto/ie11-detection/build/MsSubtleCrypto.js +3 -0
- package/node_modules/@aws-crypto/ie11-detection/build/MsSubtleCrypto.js.map +1 -0
- package/node_modules/@aws-crypto/ie11-detection/build/MsWindow.d.ts +21 -0
- package/node_modules/@aws-crypto/ie11-detection/build/MsWindow.js +32 -0
- package/node_modules/@aws-crypto/ie11-detection/build/MsWindow.js.map +1 -0
- package/node_modules/@aws-crypto/ie11-detection/build/index.d.ts +5 -0
- package/node_modules/@aws-crypto/ie11-detection/build/index.js +9 -0
- package/node_modules/@aws-crypto/ie11-detection/build/index.js.map +1 -0
- package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/LICENSE.txt +12 -0
- package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/README.md +142 -0
- package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/modules/index.js +51 -0
- package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/modules/package.json +3 -0
- package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/package.json +37 -0
- package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js +23 -0
- package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
- package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.d.ts +37 -0
- package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.es6.html +1 -0
- package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.es6.js +218 -0
- package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.html +1 -0
- package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.js +284 -0
- package/node_modules/@aws-crypto/ie11-detection/package.json +26 -0
- package/node_modules/@aws-crypto/ie11-detection/src/CryptoOperation.ts +21 -0
- package/node_modules/@aws-crypto/ie11-detection/src/Key.ts +12 -0
- package/node_modules/@aws-crypto/ie11-detection/src/KeyOperation.ts +13 -0
- package/node_modules/@aws-crypto/ie11-detection/src/MsSubtleCrypto.ts +88 -0
- package/node_modules/@aws-crypto/ie11-detection/src/MsWindow.ts +59 -0
- package/node_modules/@aws-crypto/ie11-detection/src/index.ts +5 -0
- package/node_modules/@aws-crypto/ie11-detection/tsconfig.json +17 -0
- package/node_modules/@aws-crypto/sha256-browser/CHANGELOG.md +88 -0
- package/node_modules/@aws-crypto/sha256-browser/LICENSE +202 -0
- package/node_modules/@aws-crypto/sha256-browser/README.md +31 -0
- package/node_modules/@aws-crypto/sha256-browser/build/constants.d.ts +10 -0
- package/node_modules/@aws-crypto/sha256-browser/build/constants.js +43 -0
- package/node_modules/@aws-crypto/sha256-browser/build/constants.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-browser/build/crossPlatformSha256.d.ts +8 -0
- package/node_modules/@aws-crypto/sha256-browser/build/crossPlatformSha256.js +35 -0
- package/node_modules/@aws-crypto/sha256-browser/build/crossPlatformSha256.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-browser/build/ie11Sha256.d.ts +9 -0
- package/node_modules/@aws-crypto/sha256-browser/build/ie11Sha256.js +80 -0
- package/node_modules/@aws-crypto/sha256-browser/build/ie11Sha256.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-browser/build/index.d.ts +3 -0
- package/node_modules/@aws-crypto/sha256-browser/build/index.js +10 -0
- package/node_modules/@aws-crypto/sha256-browser/build/index.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-browser/build/isEmptyData.d.ts +2 -0
- package/node_modules/@aws-crypto/sha256-browser/build/isEmptyData.js +11 -0
- package/node_modules/@aws-crypto/sha256-browser/build/isEmptyData.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-browser/build/webCryptoSha256.d.ts +10 -0
- package/node_modules/@aws-crypto/sha256-browser/build/webCryptoSha256.js +56 -0
- package/node_modules/@aws-crypto/sha256-browser/build/webCryptoSha256.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/LICENSE.txt +12 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/README.md +142 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/modules/index.js +51 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/modules/package.json +3 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/package.json +37 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js +23 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.d.ts +37 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.es6.html +1 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.es6.js +218 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.html +1 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.js +284 -0
- package/node_modules/@aws-crypto/sha256-browser/package.json +33 -0
- package/node_modules/@aws-crypto/sha256-browser/src/constants.ts +41 -0
- package/node_modules/@aws-crypto/sha256-browser/src/crossPlatformSha256.ts +34 -0
- package/node_modules/@aws-crypto/sha256-browser/src/ie11Sha256.ts +108 -0
- package/node_modules/@aws-crypto/sha256-browser/src/index.ts +3 -0
- package/node_modules/@aws-crypto/sha256-browser/src/isEmptyData.ts +9 -0
- package/node_modules/@aws-crypto/sha256-browser/src/webCryptoSha256.ts +71 -0
- package/node_modules/@aws-crypto/sha256-browser/tsconfig.json +22 -0
- package/node_modules/@aws-crypto/sha256-js/CHANGELOG.md +86 -0
- package/node_modules/@aws-crypto/sha256-js/LICENSE +201 -0
- package/node_modules/@aws-crypto/sha256-js/README.md +29 -0
- package/node_modules/@aws-crypto/sha256-js/build/RawSha256.d.ts +17 -0
- package/node_modules/@aws-crypto/sha256-js/build/RawSha256.js +124 -0
- package/node_modules/@aws-crypto/sha256-js/build/RawSha256.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-js/build/constants.d.ts +20 -0
- package/node_modules/@aws-crypto/sha256-js/build/constants.js +98 -0
- package/node_modules/@aws-crypto/sha256-js/build/constants.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-js/build/index.d.ts +1 -0
- package/node_modules/@aws-crypto/sha256-js/build/index.js +5 -0
- package/node_modules/@aws-crypto/sha256-js/build/index.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-js/build/jsSha256.d.ts +12 -0
- package/node_modules/@aws-crypto/sha256-js/build/jsSha256.js +85 -0
- package/node_modules/@aws-crypto/sha256-js/build/jsSha256.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-js/build/knownHashes.fixture.d.ts +5 -0
- package/node_modules/@aws-crypto/sha256-js/build/knownHashes.fixture.js +322 -0
- package/node_modules/@aws-crypto/sha256-js/build/knownHashes.fixture.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/LICENSE.txt +12 -0
- package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/README.md +142 -0
- package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/modules/index.js +51 -0
- package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/modules/package.json +3 -0
- package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/package.json +37 -0
- package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js +23 -0
- package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
- package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.d.ts +37 -0
- package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.es6.html +1 -0
- package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.es6.js +218 -0
- package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.html +1 -0
- package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.js +284 -0
- package/node_modules/@aws-crypto/sha256-js/package.json +28 -0
- package/node_modules/@aws-crypto/sha256-js/src/RawSha256.ts +164 -0
- package/node_modules/@aws-crypto/sha256-js/src/constants.ts +98 -0
- package/node_modules/@aws-crypto/sha256-js/src/index.ts +1 -0
- package/node_modules/@aws-crypto/sha256-js/src/jsSha256.ts +94 -0
- package/node_modules/@aws-crypto/sha256-js/src/knownHashes.fixture.ts +401 -0
- package/node_modules/@aws-crypto/sha256-js/tsconfig.json +17 -0
- package/node_modules/@aws-crypto/supports-web-crypto/CHANGELOG.md +46 -0
- package/node_modules/@aws-crypto/supports-web-crypto/LICENSE +202 -0
- package/node_modules/@aws-crypto/supports-web-crypto/README.md +32 -0
- package/node_modules/@aws-crypto/supports-web-crypto/build/index.d.ts +1 -0
- package/node_modules/@aws-crypto/supports-web-crypto/build/index.js +5 -0
- package/node_modules/@aws-crypto/supports-web-crypto/build/supportsWebCrypto.d.ts +4 -0
- package/node_modules/@aws-crypto/supports-web-crypto/build/supportsWebCrypto.js +69 -0
- package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/LICENSE.txt +12 -0
- package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/README.md +142 -0
- package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/modules/index.js +51 -0
- package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/modules/package.json +3 -0
- package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/package.json +37 -0
- package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js +23 -0
- package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
- package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.d.ts +37 -0
- package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.es6.html +1 -0
- package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.es6.js +218 -0
- package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.html +1 -0
- package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.js +284 -0
- package/node_modules/@aws-crypto/supports-web-crypto/package.json +26 -0
- package/node_modules/@aws-crypto/supports-web-crypto/src/index.ts +1 -0
- package/node_modules/@aws-crypto/supports-web-crypto/src/supportsWebCrypto.ts +76 -0
- package/node_modules/@aws-crypto/supports-web-crypto/tsconfig.json +16 -0
- package/node_modules/@aws-crypto/util/CHANGELOG.md +47 -0
- package/node_modules/@aws-crypto/util/LICENSE +201 -0
- package/node_modules/@aws-crypto/util/README.md +16 -0
- package/node_modules/@aws-crypto/util/build/convertToBuffer.d.ts +2 -0
- package/node_modules/@aws-crypto/util/build/convertToBuffer.js +24 -0
- package/node_modules/@aws-crypto/util/build/convertToBuffer.js.map +1 -0
- package/node_modules/@aws-crypto/util/build/index.d.ts +4 -0
- package/node_modules/@aws-crypto/util/build/index.js +14 -0
- package/node_modules/@aws-crypto/util/build/index.js.map +1 -0
- package/node_modules/@aws-crypto/util/build/isEmptyData.d.ts +2 -0
- package/node_modules/@aws-crypto/util/build/isEmptyData.js +13 -0
- package/node_modules/@aws-crypto/util/build/isEmptyData.js.map +1 -0
- package/node_modules/@aws-crypto/util/build/numToUint8.d.ts +1 -0
- package/node_modules/@aws-crypto/util/build/numToUint8.js +15 -0
- package/node_modules/@aws-crypto/util/build/numToUint8.js.map +1 -0
- package/node_modules/@aws-crypto/util/build/uint32ArrayFrom.d.ts +1 -0
- package/node_modules/@aws-crypto/util/build/uint32ArrayFrom.js +20 -0
- package/node_modules/@aws-crypto/util/build/uint32ArrayFrom.js.map +1 -0
- package/node_modules/@aws-crypto/util/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/node_modules/@aws-crypto/util/node_modules/tslib/LICENSE.txt +12 -0
- package/node_modules/@aws-crypto/util/node_modules/tslib/README.md +142 -0
- package/node_modules/@aws-crypto/util/node_modules/tslib/modules/index.js +51 -0
- package/node_modules/@aws-crypto/util/node_modules/tslib/modules/package.json +3 -0
- package/node_modules/@aws-crypto/util/node_modules/tslib/package.json +37 -0
- package/node_modules/@aws-crypto/util/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js +23 -0
- package/node_modules/@aws-crypto/util/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
- package/node_modules/@aws-crypto/util/node_modules/tslib/tslib.d.ts +37 -0
- package/node_modules/@aws-crypto/util/node_modules/tslib/tslib.es6.html +1 -0
- package/node_modules/@aws-crypto/util/node_modules/tslib/tslib.es6.js +218 -0
- package/node_modules/@aws-crypto/util/node_modules/tslib/tslib.html +1 -0
- package/node_modules/@aws-crypto/util/node_modules/tslib/tslib.js +284 -0
- package/node_modules/@aws-crypto/util/package.json +31 -0
- package/node_modules/@aws-crypto/util/src/convertToBuffer.ts +30 -0
- package/node_modules/@aws-crypto/util/src/index.ts +7 -0
- package/node_modules/@aws-crypto/util/src/isEmptyData.ts +12 -0
- package/node_modules/@aws-crypto/util/src/numToUint8.ts +11 -0
- package/node_modules/@aws-crypto/util/src/uint32ArrayFrom.ts +16 -0
- package/node_modules/@aws-crypto/util/tsconfig.json +23 -0
- package/node_modules/@aws-lambda-powertools/commons/LICENSE +14 -0
- package/node_modules/@aws-lambda-powertools/commons/README.md +120 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/Utility.d.ts +72 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/Utility.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/Utility.js +89 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/awsSdk/index.d.ts +3 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/awsSdk/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/awsSdk/index.js +7 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/awsSdk/userAgentMiddleware.d.ts +10 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/awsSdk/userAgentMiddleware.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/awsSdk/userAgentMiddleware.js +59 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/awsSdk/utils.d.ts +8 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/awsSdk/utils.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/awsSdk/utils.js +24 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/config/ConfigService.d.ts +50 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/config/ConfigService.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/config/ConfigService.js +15 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/config/EnvironmentVariablesService.d.ts +76 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/config/EnvironmentVariablesService.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/config/EnvironmentVariablesService.js +107 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/config/index.d.ts +3 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/config/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/config/index.js +18 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/index.d.ts +9 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/index.js +37 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/middleware/cleanupMiddlewares.d.ts +50 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/middleware/cleanupMiddlewares.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/middleware/cleanupMiddlewares.js +71 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/middleware/constants.d.ts +12 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/middleware/constants.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/middleware/constants.js +18 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/middleware/index.d.ts +3 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/middleware/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/middleware/index.js +18 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/samples/resources/contexts/hello-world.d.ts +4 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/samples/resources/contexts/hello-world.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/samples/resources/contexts/hello-world.js +18 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/samples/resources/contexts/index.d.ts +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/samples/resources/contexts/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/samples/resources/contexts/index.js +17 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/samples/resources/events/custom/index.d.ts +6 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/samples/resources/events/custom/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/samples/resources/events/custom/index.js +8 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/samples/resources/events/index.d.ts +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/samples/resources/events/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/samples/resources/events/index.js +27 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/types/awsSdk.d.ts +27 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/types/awsSdk.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/types/awsSdk.js +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/types/middy.d.ts +40 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/types/middy.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/types/middy.js +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/types/utils.d.ts +33 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/types/utils.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/types/utils.js +57 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/utils/lambda/LambdaInterface.d.ts +8 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/utils/lambda/LambdaInterface.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/utils/lambda/LambdaInterface.js +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/utils/lambda/index.d.ts +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/utils/lambda/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/utils/lambda/index.js +17 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/version.d.ts +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/version.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/version.js +5 -0
- package/node_modules/@aws-lambda-powertools/commons/package.json +30 -0
- package/node_modules/@aws-lambda-powertools/logger/LICENSE +14 -0
- package/node_modules/@aws-lambda-powertools/logger/README.md +117 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/Logger.d.ts +546 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/Logger.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/Logger.js +856 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/config/ConfigServiceInterface.d.ts +77 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/config/ConfigServiceInterface.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/config/ConfigServiceInterface.js +2 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/config/EnvironmentVariablesService.d.ts +94 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/config/EnvironmentVariablesService.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/config/EnvironmentVariablesService.js +123 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/config/index.d.ts +3 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/config/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/config/index.js +18 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/formatter/LogFormatter.d.ts +41 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/formatter/LogFormatter.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/formatter/LogFormatter.js +75 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/formatter/LogFormatterInterface.d.ts +22 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/formatter/LogFormatterInterface.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/formatter/LogFormatterInterface.js +2 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/formatter/PowertoolLogFormatter.d.ts +21 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/formatter/PowertoolLogFormatter.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/formatter/PowertoolLogFormatter.js +35 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/formatter/index.d.ts +4 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/formatter/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/formatter/index.js +19 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/helpers.d.ts +10 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/helpers.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/helpers.js +11 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/index.d.ts +5 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/index.js +20 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/log/LogItem.d.ts +16 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/log/LogItem.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/log/LogItem.js +43 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/log/LogItemInterface.d.ts +7 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/log/LogItemInterface.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/log/LogItemInterface.js +2 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/log/index.d.ts +3 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/log/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/log/index.js +18 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/middleware/index.d.ts +2 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/middleware/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/middleware/index.js +17 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/middleware/middy.d.ts +30 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/middleware/middy.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/middleware/middy.js +69 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/types/Log.d.ts +20 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/types/Log.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/types/Log.js +2 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/types/Logger.d.ts +58 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/types/Logger.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/types/Logger.js +2 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/types/formats/PowertoolLog.d.ts +82 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/types/formats/PowertoolLog.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/types/formats/PowertoolLog.js +2 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/types/formats/index.d.ts +2 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/types/formats/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/types/formats/index.js +17 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/types/index.d.ts +3 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/types/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/types/index.js +18 -0
- package/node_modules/@aws-lambda-powertools/logger/package.json +44 -0
- package/node_modules/@aws-sdk/client-dynamodb/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-dynamodb/README.md +654 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/DynamoDB.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/DynamoDBClient.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/auth/httpAuthExtensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/BatchExecuteStatementCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/BatchGetItemCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/BatchWriteItemCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/CreateBackupCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/CreateGlobalTableCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/CreateTableCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DeleteBackupCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DeleteItemCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DeleteTableCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DescribeBackupCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DescribeContinuousBackupsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DescribeContributorInsightsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DescribeEndpointsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DescribeExportCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DescribeGlobalTableCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DescribeGlobalTableSettingsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DescribeImportCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DescribeKinesisStreamingDestinationCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DescribeLimitsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DescribeTableCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DescribeTableReplicaAutoScalingCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DescribeTimeToLiveCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DisableKinesisStreamingDestinationCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/EnableKinesisStreamingDestinationCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/ExecuteStatementCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/ExecuteTransactionCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/ExportTableToPointInTimeCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/GetItemCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/ImportTableCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/ListBackupsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/ListContributorInsightsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/ListExportsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/ListGlobalTablesCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/ListImportsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/ListTablesCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/ListTagsOfResourceCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/PutItemCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/QueryCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/RestoreTableFromBackupCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/RestoreTableToPointInTimeCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/ScanCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/TagResourceCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/TransactGetItemsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/TransactWriteItemsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/UntagResourceCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/UpdateContinuousBackupsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/UpdateContributorInsightsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/UpdateGlobalTableCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/UpdateGlobalTableSettingsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/UpdateItemCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/UpdateKinesisStreamingDestinationCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/UpdateTableCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/UpdateTableReplicaAutoScalingCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/UpdateTimeToLiveCommand.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/index.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/endpoint/EndpointParameters.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/index.js +6772 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/models/DynamoDBServiceException.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/models/index.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/models/models_0.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/pagination/Interfaces.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/pagination/ListContributorInsightsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/pagination/ListExportsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/pagination/ListImportsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/pagination/ListTablesPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/pagination/QueryPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/pagination/ScanPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/pagination/index.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/protocols/Aws_json1_0.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/runtimeConfig.browser.js +40 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/runtimeConfig.js +52 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/runtimeConfig.shared.js +34 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/runtimeExtensions.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/waiters/index.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/waiters/waitForTableExists.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/waiters/waitForTableNotExists.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/DynamoDB.js +115 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/DynamoDBClient.js +57 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/BatchExecuteStatementCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/BatchGetItemCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/BatchWriteItemCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/CreateBackupCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/CreateGlobalTableCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/CreateTableCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DeleteBackupCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DeleteItemCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DeleteTableCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeBackupCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeContinuousBackupsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeContributorInsightsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeEndpointsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeExportCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeGlobalTableCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeGlobalTableSettingsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeImportCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeKinesisStreamingDestinationCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeLimitsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeTableCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeTableReplicaAutoScalingCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeTimeToLiveCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DisableKinesisStreamingDestinationCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/EnableKinesisStreamingDestinationCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ExecuteStatementCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ExecuteTransactionCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ExportTableToPointInTimeCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/GetItemCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ImportTableCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ListBackupsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ListContributorInsightsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ListExportsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ListGlobalTablesCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ListImportsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ListTablesCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ListTagsOfResourceCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/PutItemCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/QueryCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/RestoreTableFromBackupCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/RestoreTableToPointInTimeCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ScanCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/TagResourceCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/TransactGetItemsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/TransactWriteItemsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UntagResourceCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateContinuousBackupsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateContributorInsightsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateGlobalTableCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateGlobalTableSettingsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateItemCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateKinesisStreamingDestinationCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateTableCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateTableReplicaAutoScalingCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateTimeToLiveCommand.js +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/index.js +54 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/endpoint/EndpointParameters.js +14 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/endpoint/endpointResolver.js +8 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/index.js +8 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/models/DynamoDBServiceException.js +8 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/models/index.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/models/models_0.js +640 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/pagination/Interfaces.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/pagination/ListContributorInsightsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/pagination/ListExportsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/pagination/ListImportsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/pagination/ListTablesPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/pagination/QueryPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/pagination/ScanPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/pagination/index.js +7 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/protocols/Aws_json1_0.js +4494 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/runtimeConfig.browser.js +35 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/runtimeConfig.js +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/runtimeConfig.shared.js +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/runtimeExtensions.js +21 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/waiters/index.js +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/waiters/waitForTableExists.js +34 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/waiters/waitForTableNotExists.js +25 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/DynamoDB.d.ts +404 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/DynamoDBClient.d.ts +248 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/BatchExecuteStatementCommand.d.ts +213 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/BatchGetItemCommand.d.ts +339 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/BatchWriteItemCommand.d.ts +377 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/CreateBackupCommand.d.ts +132 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/CreateGlobalTableCommand.d.ts +183 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/CreateTableCommand.d.ts +372 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DeleteBackupCommand.d.ts +171 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DeleteItemCommand.d.ts +270 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DeleteTableCommand.d.ts +270 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeBackupCommand.d.ts +151 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeContinuousBackupsCommand.d.ts +85 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeContributorInsightsCommand.d.ts +77 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeEndpointsCommand.d.ts +62 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeExportCommand.d.ts +106 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeGlobalTableCommand.d.ts +108 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeGlobalTableSettingsCommand.d.ts +170 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeImportCommand.d.ts +139 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeKinesisStreamingDestinationCommand.d.ts +75 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeLimitsCommand.d.ts +150 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeTableCommand.d.ts +262 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeTableReplicaAutoScalingCommand.d.ts +152 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeTimeToLiveCommand.d.ts +70 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DisableKinesisStreamingDestinationCommand.d.ts +98 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/EnableKinesisStreamingDestinationCommand.d.ts +100 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ExecuteStatementCommand.d.ts +228 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ExecuteTransactionCommand.d.ts +519 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ExportTableToPointInTimeCommand.d.ts +133 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/GetItemCommand.d.ts +242 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ImportTableCommand.d.ts +223 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListBackupsCommand.d.ts +91 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListContributorInsightsCommand.d.ts +75 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListExportsCommand.d.ts +86 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListGlobalTablesCommand.d.ts +87 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListImportsCommand.d.ts +92 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListTablesCommand.d.ts +88 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListTagsOfResourceCommand.d.ts +77 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/PutItemCommand.d.ts +285 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/QueryCommand.d.ts +316 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/RestoreTableFromBackupCommand.d.ts +300 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/RestoreTableToPointInTimeCommand.d.ts +332 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ScanCommand.d.ts +314 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/TagResourceCommand.d.ts +97 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/TransactGetItemsCommand.d.ts +475 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/TransactWriteItemsCommand.d.ts +644 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UntagResourceCommand.d.ts +92 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateContinuousBackupsCommand.d.ts +91 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateContributorInsightsCommand.d.ts +75 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateGlobalTableCommand.d.ts +158 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateGlobalTableSettingsCommand.d.ts +264 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateItemCommand.d.ts +297 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateKinesisStreamingDestinationCommand.d.ts +97 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateTableCommand.d.ts +394 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateTableReplicaAutoScalingCommand.d.ts +221 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateTimeToLiveCommand.d.ts +119 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/index.d.ts +54 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/endpoint/EndpointParameters.d.ts +40 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/index.d.ts +32 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/models/DynamoDBServiceException.d.ts +13 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/models/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/models/models_0.d.ts +10435 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/pagination/Interfaces.d.ts +8 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/pagination/ListContributorInsightsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/pagination/ListExportsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/pagination/ListImportsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/pagination/ListTablesPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/pagination/QueryPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/pagination/ScanPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/pagination/index.d.ts +7 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/protocols/Aws_json1_0.d.ts +488 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/runtimeConfig.browser.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/runtimeConfig.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/runtimeConfig.native.d.ts +50 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/runtimeConfig.shared.d.ts +21 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/DynamoDB.d.ts +941 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/DynamoDBClient.d.ts +445 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/BatchExecuteStatementCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/BatchGetItemCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/BatchWriteItemCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/CreateBackupCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/CreateGlobalTableCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/CreateTableCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DeleteBackupCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DeleteItemCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DeleteTableCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeBackupCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeContinuousBackupsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeContributorInsightsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeEndpointsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeExportCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeGlobalTableCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeGlobalTableSettingsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeImportCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeKinesisStreamingDestinationCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeLimitsCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeTableCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeTableReplicaAutoScalingCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeTimeToLiveCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DisableKinesisStreamingDestinationCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/EnableKinesisStreamingDestinationCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ExecuteStatementCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ExecuteTransactionCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ExportTableToPointInTimeCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/GetItemCommand.d.ts +22 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ImportTableCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListBackupsCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListContributorInsightsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListExportsCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListGlobalTablesCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListImportsCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListTablesCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListTagsOfResourceCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/PutItemCommand.d.ts +22 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/QueryCommand.d.ts +22 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/RestoreTableFromBackupCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/RestoreTableToPointInTimeCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ScanCommand.d.ts +22 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/TagResourceCommand.d.ts +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/TransactGetItemsCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/TransactWriteItemsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +24 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateContinuousBackupsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateContributorInsightsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateGlobalTableCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateGlobalTableSettingsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateItemCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateKinesisStreamingDestinationCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateTableCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateTableReplicaAutoScalingCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateTimeToLiveCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/index.d.ts +54 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/index.d.ts +11 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/models/DynamoDBServiceException.d.ts +8 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/models/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/models/models_0.d.ts +1858 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/ListContributorInsightsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/ListExportsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/ListImportsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/ListTablesPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/QueryPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/ScanPaginator.d.ts +8 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/index.d.ts +7 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +650 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/runtimeConfig.browser.d.ts +102 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/runtimeConfig.d.ts +102 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/runtimeConfig.native.d.ts +93 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/waiters/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/waiters/waitForTableExists.d.ts +11 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/waiters/waitForTableNotExists.d.ts +11 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/waiters/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/waiters/waitForTableExists.d.ts +14 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/waiters/waitForTableNotExists.d.ts +14 -0
- package/node_modules/@aws-sdk/client-dynamodb/package.json +105 -0
- package/node_modules/@aws-sdk/client-secrets-manager/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/README.md +415 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/SecretsManager.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/SecretsManagerClient.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/BatchGetSecretValueCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/CancelRotateSecretCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/CreateSecretCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/DeleteResourcePolicyCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/DeleteSecretCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/DescribeSecretCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/GetRandomPasswordCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/GetResourcePolicyCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/GetSecretValueCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/ListSecretVersionIdsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/ListSecretsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/PutResourcePolicyCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/PutSecretValueCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/RemoveRegionsFromReplicationCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/ReplicateSecretToRegionsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/RestoreSecretCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/RotateSecretCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/StopReplicationToReplicaCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/TagResourceCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/UntagResourceCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/UpdateSecretCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/UpdateSecretVersionStageCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/ValidateResourcePolicyCommand.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/endpoint/EndpointParameters.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/index.js +2468 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/models/SecretsManagerServiceException.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/models/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/models/models_0.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/pagination/BatchGetSecretValuePaginator.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/pagination/Interfaces.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/pagination/ListSecretVersionIdsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/pagination/ListSecretsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/pagination/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/protocols/Aws_json1_1.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/runtimeConfig.browser.js +39 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/runtimeConfig.js +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/runtimeConfig.shared.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/runtimeExtensions.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/SecretsManager.js +53 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/SecretsManagerClient.js +39 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/BatchGetSecretValueCommand.js +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/CancelRotateSecretCommand.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/CreateSecretCommand.js +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/DeleteResourcePolicyCommand.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/DeleteSecretCommand.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/DescribeSecretCommand.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/GetRandomPasswordCommand.js +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/GetResourcePolicyCommand.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/GetSecretValueCommand.js +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/ListSecretVersionIdsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/ListSecretsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/PutResourcePolicyCommand.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/PutSecretValueCommand.js +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/RemoveRegionsFromReplicationCommand.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/ReplicateSecretToRegionsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/RestoreSecretCommand.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/RotateSecretCommand.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/StopReplicationToReplicaCommand.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/TagResourceCommand.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/UntagResourceCommand.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/UpdateSecretCommand.js +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/UpdateSecretVersionStageCommand.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/ValidateResourcePolicyCommand.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/index.js +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/endpoint/EndpointParameters.js +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/endpoint/endpointResolver.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/index.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/models/SecretsManagerServiceException.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/models/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/models/models_0.js +209 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/pagination/BatchGetSecretValuePaginator.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/pagination/Interfaces.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/pagination/ListSecretVersionIdsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/pagination/ListSecretsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/pagination/index.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/protocols/Aws_json1_1.js +1527 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/runtimeConfig.browser.js +34 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/runtimeConfig.js +45 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/runtimeConfig.shared.js +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/runtimeExtensions.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/SecretsManager.d.ts +196 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/SecretsManagerClient.d.ts +217 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/BatchGetSecretValueCommand.d.ts +184 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/CancelRotateSecretCommand.d.ts +122 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/CreateSecretCommand.d.ts +190 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/DeleteResourcePolicyCommand.d.ts +111 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/DeleteSecretCommand.d.ts +136 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/DescribeSecretCommand.d.ts +161 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/GetRandomPasswordCommand.d.ts +117 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/GetResourcePolicyCommand.d.ts +115 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/GetSecretValueCommand.d.ts +138 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/ListSecretVersionIdsCommand.d.ts +136 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/ListSecretsCommand.d.ts +180 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/PutResourcePolicyCommand.d.ts +123 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/PutSecretValueCommand.d.ts +160 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/RemoveRegionsFromReplicationCommand.d.ts +104 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/ReplicateSecretToRegionsCommand.d.ts +137 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/RestoreSecretCommand.d.ts +111 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/RotateSecretCommand.d.ts +151 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/StopReplicationToReplicaCommand.d.ts +93 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/TagResourceCommand.d.ts +126 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/UntagResourceCommand.d.ts +116 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/UpdateSecretCommand.d.ts +194 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/UpdateSecretVersionStageCommand.d.ts +171 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/ValidateResourcePolicyCommand.d.ts +134 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/index.d.ts +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/endpoint/EndpointParameters.d.ts +40 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/extensionConfiguration.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/index.d.ts +40 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/models/SecretsManagerServiceException.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/models/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/models/models_0.d.ts +1959 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/pagination/BatchGetSecretValuePaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/pagination/Interfaces.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/pagination/ListSecretVersionIdsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/pagination/ListSecretsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/pagination/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/protocols/Aws_json1_1.d.ts +209 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/runtimeConfig.browser.d.ts +46 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/runtimeConfig.d.ts +46 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/runtimeConfig.native.d.ts +45 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/runtimeConfig.shared.d.ts +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/SecretsManager.d.ts +398 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/SecretsManagerClient.d.ts +257 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/BatchGetSecretValueCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/CancelRotateSecretCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/CreateSecretCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/DeleteSecretCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/DescribeSecretCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/GetRandomPasswordCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/GetSecretValueCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/ListSecretVersionIdsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/ListSecretsCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/PutSecretValueCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/RemoveRegionsFromReplicationCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/ReplicateSecretToRegionsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/RestoreSecretCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/RotateSecretCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/StopReplicationToReplicaCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/TagResourceCommand.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/UpdateSecretCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/UpdateSecretVersionStageCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/ValidateResourcePolicyCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/index.d.ts +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/extensionConfiguration.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/index.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/models/SecretsManagerServiceException.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/models/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/models/models_0.d.ts +445 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/pagination/BatchGetSecretValuePaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/pagination/ListSecretVersionIdsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/pagination/ListSecretsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +281 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/runtimeConfig.browser.d.ts +97 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/runtimeConfig.d.ts +97 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/runtimeConfig.native.d.ts +88 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/runtimeConfig.shared.d.ts +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/package.json +103 -0
- package/node_modules/@aws-sdk/client-ssm/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-ssm/README.md +1352 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/SSM.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/SSMClient.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/AddTagsToResourceCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/AssociateOpsItemRelatedItemCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CancelCommandCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CancelMaintenanceWindowExecutionCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreateActivationCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreateAssociationBatchCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreateAssociationCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreateDocumentCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreateMaintenanceWindowCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreateOpsItemCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreateOpsMetadataCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreatePatchBaselineCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreateResourceDataSyncCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteActivationCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteAssociationCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteDocumentCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteInventoryCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteMaintenanceWindowCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteOpsItemCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteOpsMetadataCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteParameterCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteParametersCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeletePatchBaselineCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteResourceDataSyncCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteResourcePolicyCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeregisterManagedInstanceCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeregisterPatchBaselineForPatchGroupCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeregisterTargetFromMaintenanceWindowCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeregisterTaskFromMaintenanceWindowCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeActivationsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeAssociationCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeAssociationExecutionTargetsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeAssociationExecutionsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeAutomationExecutionsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeAutomationStepExecutionsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeAvailablePatchesCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeDocumentCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeDocumentPermissionCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeEffectiveInstanceAssociationsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeEffectivePatchesForPatchBaselineCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeInstanceAssociationsStatusCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeInstanceInformationCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeInstancePatchStatesCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeInstancePatchStatesForPatchGroupCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeInstancePatchesCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeInventoryDeletionsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeMaintenanceWindowExecutionTasksCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeMaintenanceWindowExecutionsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeMaintenanceWindowScheduleCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeMaintenanceWindowTargetsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeMaintenanceWindowTasksCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeMaintenanceWindowsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeMaintenanceWindowsForTargetCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeOpsItemsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeParametersCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribePatchBaselinesCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribePatchGroupStateCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribePatchGroupsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribePatchPropertiesCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeSessionsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DisassociateOpsItemRelatedItemCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetAutomationExecutionCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetCalendarStateCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetCommandInvocationCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetConnectionStatusCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetDefaultPatchBaselineCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetDeployablePatchSnapshotForInstanceCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetDocumentCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetInventoryCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetInventorySchemaCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetMaintenanceWindowCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetMaintenanceWindowExecutionCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetMaintenanceWindowExecutionTaskCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetMaintenanceWindowTaskCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetOpsItemCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetOpsMetadataCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetOpsSummaryCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetParameterCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetParameterHistoryCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetParametersByPathCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetParametersCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetPatchBaselineCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetPatchBaselineForPatchGroupCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetResourcePoliciesCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetServiceSettingCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/LabelParameterVersionCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListAssociationVersionsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListAssociationsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListCommandInvocationsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListCommandsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListComplianceItemsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListComplianceSummariesCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListDocumentMetadataHistoryCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListDocumentVersionsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListDocumentsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListInventoryEntriesCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListOpsItemEventsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListOpsItemRelatedItemsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListOpsMetadataCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListResourceComplianceSummariesCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListResourceDataSyncCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListTagsForResourceCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ModifyDocumentPermissionCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/PutComplianceItemsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/PutInventoryCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/PutParameterCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/PutResourcePolicyCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/RegisterDefaultPatchBaselineCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/RegisterPatchBaselineForPatchGroupCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/RegisterTargetWithMaintenanceWindowCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/RegisterTaskWithMaintenanceWindowCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/RemoveTagsFromResourceCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ResetServiceSettingCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ResumeSessionCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/SendAutomationSignalCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/SendCommandCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/StartAssociationsOnceCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/StartAutomationExecutionCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/StartChangeRequestExecutionCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/StartSessionCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/StopAutomationExecutionCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/TerminateSessionCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UnlabelParameterVersionCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateAssociationCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateAssociationStatusCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateDocumentCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateDocumentDefaultVersionCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateDocumentMetadataCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateMaintenanceWindowCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateMaintenanceWindowTargetCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateMaintenanceWindowTaskCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateManagedInstanceRoleCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateOpsItemCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateOpsMetadataCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdatePatchBaselineCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateResourceDataSyncCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateServiceSettingCommand.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/index.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/EndpointParameters.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/index.js +16367 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/models/SSMServiceException.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/models/index.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/models/models_0.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/models/models_1.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/models/models_2.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeActivationsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeAssociationExecutionTargetsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeAssociationExecutionsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeAutomationExecutionsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeAutomationStepExecutionsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeAvailablePatchesPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeEffectiveInstanceAssociationsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeEffectivePatchesForPatchBaselinePaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeInstanceAssociationsStatusPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeInstanceInformationPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeInstancePatchStatesForPatchGroupPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeInstancePatchStatesPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeInstancePatchesPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeInventoryDeletionsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeMaintenanceWindowExecutionTaskInvocationsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeMaintenanceWindowExecutionTasksPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeMaintenanceWindowExecutionsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeMaintenanceWindowSchedulePaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeMaintenanceWindowTargetsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeMaintenanceWindowTasksPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeMaintenanceWindowsForTargetPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeMaintenanceWindowsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeOpsItemsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeParametersPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribePatchBaselinesPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribePatchGroupsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribePatchPropertiesPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeSessionsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/GetInventoryPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/GetInventorySchemaPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/GetOpsSummaryPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/GetParameterHistoryPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/GetParametersByPathPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/GetResourcePoliciesPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/Interfaces.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListAssociationVersionsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListAssociationsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListCommandInvocationsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListCommandsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListComplianceItemsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListComplianceSummariesPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListDocumentVersionsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListDocumentsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListOpsItemEventsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListOpsItemRelatedItemsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListOpsMetadataPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListResourceComplianceSummariesPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListResourceDataSyncPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/index.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/protocols/Aws_json1_1.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.browser.js +39 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.js +50 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.shared.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeExtensions.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/waiters/index.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/waiters/waitForCommandExecuted.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/SSM.js +285 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/SSMClient.js +39 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/AddTagsToResourceCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/AssociateOpsItemRelatedItemCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CancelCommandCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CancelMaintenanceWindowExecutionCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateActivationCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateAssociationBatchCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateAssociationCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateDocumentCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateMaintenanceWindowCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateOpsItemCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateOpsMetadataCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreatePatchBaselineCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateResourceDataSyncCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteActivationCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteAssociationCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteDocumentCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteInventoryCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteMaintenanceWindowCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteOpsItemCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteOpsMetadataCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteParameterCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteParametersCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeletePatchBaselineCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteResourceDataSyncCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteResourcePolicyCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterManagedInstanceCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterPatchBaselineForPatchGroupCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterTargetFromMaintenanceWindowCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterTaskFromMaintenanceWindowCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeActivationsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAssociationCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAssociationExecutionTargetsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAssociationExecutionsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAutomationExecutionsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAutomationStepExecutionsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAvailablePatchesCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeDocumentCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeDocumentPermissionCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeEffectiveInstanceAssociationsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeEffectivePatchesForPatchBaselineCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstanceAssociationsStatusCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstanceInformationCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePatchStatesCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePatchStatesForPatchGroupCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePatchesCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInventoryDeletionsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowExecutionTasksCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowExecutionsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowScheduleCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowTargetsCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowTasksCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowsCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowsForTargetCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeOpsItemsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeParametersCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchBaselinesCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchGroupStateCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchGroupsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchPropertiesCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeSessionsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DisassociateOpsItemRelatedItemCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetAutomationExecutionCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetCalendarStateCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetCommandInvocationCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetConnectionStatusCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetDefaultPatchBaselineCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetDeployablePatchSnapshotForInstanceCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetDocumentCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetInventoryCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetInventorySchemaCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowExecutionCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowExecutionTaskCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowTaskCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetOpsItemCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetOpsMetadataCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetOpsSummaryCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParameterCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParameterHistoryCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParametersByPathCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParametersCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetPatchBaselineCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetPatchBaselineForPatchGroupCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetResourcePoliciesCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetServiceSettingCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/LabelParameterVersionCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListAssociationVersionsCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListAssociationsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListCommandInvocationsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListCommandsCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListComplianceItemsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListComplianceSummariesCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListDocumentMetadataHistoryCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListDocumentVersionsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListDocumentsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListInventoryEntriesCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListOpsItemEventsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListOpsItemRelatedItemsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListOpsMetadataCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListResourceComplianceSummariesCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListResourceDataSyncCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListTagsForResourceCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ModifyDocumentPermissionCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutComplianceItemsCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutInventoryCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutParameterCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutResourcePolicyCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterDefaultPatchBaselineCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterPatchBaselineForPatchGroupCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterTargetWithMaintenanceWindowCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterTaskWithMaintenanceWindowCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RemoveTagsFromResourceCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ResetServiceSettingCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ResumeSessionCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/SendAutomationSignalCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/SendCommandCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartAssociationsOnceCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartAutomationExecutionCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartChangeRequestExecutionCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartSessionCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StopAutomationExecutionCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/TerminateSessionCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UnlabelParameterVersionCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateAssociationCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateAssociationStatusCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateDocumentCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateDocumentDefaultVersionCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateDocumentMetadataCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateMaintenanceWindowCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateMaintenanceWindowTargetCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateMaintenanceWindowTaskCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateManagedInstanceRoleCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateOpsItemCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateOpsMetadataCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdatePatchBaselineCommand.js +25 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateResourceDataSyncCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateServiceSettingCommand.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/index.js +139 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/endpoint/EndpointParameters.js +14 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/endpoint/endpointResolver.js +8 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/index.js +8 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/models/SSMServiceException.js +8 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/models/index.js +3 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/models/models_0.js +1304 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/models/models_1.js +1050 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/models/models_2.js +170 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeActivationsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeAssociationExecutionTargetsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeAssociationExecutionsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeAutomationExecutionsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeAutomationStepExecutionsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeAvailablePatchesPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeEffectiveInstanceAssociationsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeEffectivePatchesForPatchBaselinePaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeInstanceAssociationsStatusPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeInstanceInformationPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeInstancePatchStatesForPatchGroupPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeInstancePatchStatesPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeInstancePatchesPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeInventoryDeletionsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeMaintenanceWindowExecutionTaskInvocationsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeMaintenanceWindowExecutionTasksPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeMaintenanceWindowExecutionsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeMaintenanceWindowSchedulePaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeMaintenanceWindowTargetsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeMaintenanceWindowTasksPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeMaintenanceWindowsForTargetPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeMaintenanceWindowsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeOpsItemsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeParametersPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribePatchBaselinesPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribePatchGroupsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribePatchPropertiesPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeSessionsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/GetInventoryPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/GetInventorySchemaPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/GetOpsSummaryPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/GetParameterHistoryPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/GetParametersByPathPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/GetResourcePoliciesPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/Interfaces.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListAssociationVersionsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListAssociationsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListCommandInvocationsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListCommandsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListComplianceItemsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListComplianceSummariesPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListDocumentVersionsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListDocumentsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListOpsItemEventsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListOpsItemRelatedItemsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListOpsMetadataPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListResourceComplianceSummariesPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListResourceDataSyncPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/index.js +48 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/protocols/Aws_json1_1.js +9406 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.browser.js +34 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.js +45 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.shared.js +20 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeExtensions.js +18 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/waiters/index.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/waiters/waitForCommandExecuted.js +97 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/SSM.d.ts +1018 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/SSMClient.d.ts +343 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/AddTagsToResourceCommand.d.ts +126 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/AssociateOpsItemRelatedItemCommand.d.ts +82 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CancelCommandCommand.d.ts +89 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CancelMaintenanceWindowExecutionCommand.d.ts +69 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateActivationCommand.d.ts +91 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateAssociationBatchCommand.d.ts +358 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateAssociationCommand.d.ts +299 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateDocumentCommand.d.ts +174 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateMaintenanceWindowCommand.d.ts +95 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateOpsItemCommand.d.ts +115 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateOpsMetadataCommand.d.ts +87 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreatePatchBaselineCommand.d.ts +132 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateResourceDataSyncCommand.d.ts +115 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteActivationCommand.d.ts +72 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteAssociationCommand.d.ts +96 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteDocumentCommand.d.ts +74 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteInventoryCommand.d.ts +90 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteMaintenanceWindowCommand.d.ts +61 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteOpsItemCommand.d.ts +90 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteOpsMetadataCommand.d.ts +65 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteParameterCommand.d.ts +63 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteParametersCommand.d.ts +69 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeletePatchBaselineCommand.d.ts +65 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteResourceDataSyncCommand.d.ts +68 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteResourcePolicyCommand.d.ts +73 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterManagedInstanceCommand.d.ts +81 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterPatchBaselineForPatchGroupCommand.d.ts +66 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterTargetFromMaintenanceWindowCommand.d.ts +74 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterTaskFromMaintenanceWindowCommand.d.ts +69 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeActivationsCommand.d.ts +98 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAssociationCommand.d.ts +194 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAssociationExecutionTargetsCommand.d.ts +95 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAssociationExecutionsCommand.d.ts +102 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAutomationExecutionsCommand.d.ts +196 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAutomationStepExecutionsCommand.d.ts +170 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAvailablePatchesCommand.d.ts +103 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeDocumentCommand.d.ts +135 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeDocumentPermissionCommand.d.ts +89 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeEffectiveInstanceAssociationsCommand.d.ts +94 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeEffectivePatchesForPatchBaselineCommand.d.ts +117 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstanceAssociationsStatusCommand.d.ts +106 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstanceInformationCommand.d.ts +146 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePatchStatesCommand.d.ts +94 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePatchStatesForPatchGroupCommand.d.ts +105 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePatchesCommand.d.ts +109 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInventoryDeletionsCommand.d.ts +91 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.d.ts +95 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowExecutionTasksCommand.d.ts +103 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowExecutionsCommand.d.ts +83 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowScheduleCommand.d.ts +93 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowTargetsCommand.d.ts +95 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowTasksCommand.d.ts +127 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowsCommand.d.ts +86 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowsForTargetCommand.d.ts +78 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeOpsItemsCommand.d.ts +102 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeParametersCommand.d.ts +125 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchBaselinesCommand.d.ts +79 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchGroupStateCommand.d.ts +75 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchGroupsCommand.d.ts +82 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchPropertiesCommand.d.ts +133 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeSessionsCommand.d.ts +94 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DisassociateOpsItemRelatedItemCommand.d.ts +76 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetAutomationExecutionCommand.d.ts +259 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetCalendarStateCommand.d.ts +84 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetCommandInvocationCommand.d.ts +116 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetConnectionStatusCommand.d.ts +63 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetDefaultPatchBaselineCommand.d.ts +65 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetDeployablePatchSnapshotForInstanceCommand.d.ts +134 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetDocumentCommand.d.ts +97 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetInventoryCommand.d.ts +147 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetInventorySchemaCommand.d.ts +85 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowCommand.d.ts +81 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowExecutionCommand.d.ts +74 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowExecutionTaskCommand.d.ts +103 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.d.ts +80 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowTaskCommand.d.ts +158 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetOpsItemCommand.d.ts +112 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetOpsMetadataCommand.d.ts +75 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetOpsSummaryCommand.d.ts +144 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParameterCommand.d.ts +85 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParameterHistoryCommand.d.ts +104 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParametersByPathCommand.d.ts +109 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParametersCommand.d.ts +86 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetPatchBaselineCommand.d.ts +126 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetPatchBaselineForPatchGroupCommand.d.ts +64 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetResourcePoliciesCommand.d.ts +74 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetServiceSettingCommand.d.ts +85 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/LabelParameterVersionCommand.d.ts +117 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListAssociationVersionsCommand.d.ts +137 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListAssociationsCommand.d.ts +108 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListCommandInvocationsCommand.d.ts +148 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListCommandsCommand.d.ts +163 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListComplianceItemsCommand.d.ts +111 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListComplianceSummariesCommand.d.ts +106 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListDocumentMetadataHistoryCommand.d.ts +93 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListDocumentVersionsCommand.d.ts +83 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListDocumentsCommand.d.ts +116 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListInventoryEntriesCommand.d.ts +111 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListOpsItemEventsCommand.d.ts +95 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListOpsItemRelatedItemsCommand.d.ts +94 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListOpsMetadataCommand.d.ts +83 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListResourceComplianceSummariesCommand.d.ts +115 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListResourceDataSyncCommand.d.ts +116 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListTagsForResourceCommand.d.ts +75 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ModifyDocumentPermissionCommand.d.ts +88 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutComplianceItemsCommand.d.ts +154 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutInventoryCommand.d.ts +134 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutParameterCommand.d.ts +141 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutResourcePolicyCommand.d.ts +83 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterDefaultPatchBaselineCommand.d.ts +74 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterPatchBaselineForPatchGroupCommand.d.ts +82 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterTargetWithMaintenanceWindowCommand.d.ts +90 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterTaskWithMaintenanceWindowCommand.d.ts +164 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +73 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ResetServiceSettingCommand.d.ts +89 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ResumeSessionCommand.d.ts +74 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/SendAutomationSignalCommand.d.ts +77 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/SendCommandCommand.d.ts +220 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartAssociationsOnceCommand.d.ts +65 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartAutomationExecutionCommand.d.ts +145 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartChangeRequestExecutionCommand.d.ts +154 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartSessionCommand.d.ts +89 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StopAutomationExecutionCommand.d.ts +67 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/TerminateSessionCommand.d.ts +63 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UnlabelParameterVersionCommand.d.ts +80 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateAssociationCommand.d.ts +289 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateAssociationStatusCommand.d.ts +202 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateDocumentCommand.d.ts +173 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateDocumentDefaultVersionCommand.d.ts +80 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateDocumentMetadataCommand.d.ts +80 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateMaintenanceWindowCommand.d.ts +98 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateMaintenanceWindowTargetCommand.d.ts +117 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateMaintenanceWindowTaskCommand.d.ts +287 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateManagedInstanceRoleCommand.d.ts +82 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateOpsItemCommand.d.ts +115 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateOpsMetadataCommand.d.ts +83 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdatePatchBaselineCommand.d.ts +176 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateResourceDataSyncCommand.d.ts +95 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateServiceSettingCommand.d.ts +80 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/index.d.ts +139 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/endpoint/EndpointParameters.d.ts +40 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/extensionConfiguration.d.ts +8 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/index.d.ts +51 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/models/SSMServiceException.d.ts +13 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/models/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/models/models_0.d.ts +7976 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/models/models_1.d.ts +9465 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/models/models_2.d.ts +1739 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeActivationsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeAssociationExecutionTargetsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeAssociationExecutionsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeAutomationExecutionsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeAutomationStepExecutionsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeAvailablePatchesPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeEffectiveInstanceAssociationsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeEffectivePatchesForPatchBaselinePaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeInstanceAssociationsStatusPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeInstanceInformationPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeInstancePatchStatesForPatchGroupPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeInstancePatchStatesPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeInstancePatchesPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeInventoryDeletionsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowExecutionTaskInvocationsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowExecutionTasksPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowExecutionsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowSchedulePaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowTargetsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowTasksPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowsForTargetPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeOpsItemsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeParametersPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribePatchBaselinesPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribePatchGroupsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribePatchPropertiesPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeSessionsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/GetInventoryPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/GetInventorySchemaPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/GetOpsSummaryPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/GetParameterHistoryPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/GetParametersByPathPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/GetResourcePoliciesPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/Interfaces.d.ts +8 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListAssociationVersionsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListAssociationsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListCommandInvocationsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListCommandsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListComplianceItemsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListComplianceSummariesPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListDocumentVersionsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListDocumentsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListOpsItemEventsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListOpsItemRelatedItemsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListOpsMetadataPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListResourceComplianceSummariesPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListResourceDataSyncPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/index.d.ts +48 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/protocols/Aws_json1_1.d.ts +1253 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.browser.d.ts +46 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.d.ts +46 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.native.d.ts +45 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.shared.d.ts +19 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/SSM.d.ts +2482 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/SSMClient.d.ts +949 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/AddTagsToResourceCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/AssociateOpsItemRelatedItemCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CancelCommandCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CancelMaintenanceWindowExecutionCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateActivationCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateAssociationBatchCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateAssociationCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateDocumentCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateMaintenanceWindowCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateOpsItemCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateOpsMetadataCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreatePatchBaselineCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateResourceDataSyncCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteActivationCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteAssociationCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteDocumentCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteInventoryCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteMaintenanceWindowCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteOpsItemCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteOpsMetadataCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteParameterCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteParametersCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeletePatchBaselineCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteResourceDataSyncCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterManagedInstanceCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterPatchBaselineForPatchGroupCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterTargetFromMaintenanceWindowCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterTaskFromMaintenanceWindowCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeActivationsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAssociationCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAssociationExecutionTargetsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAssociationExecutionsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAutomationExecutionsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAutomationStepExecutionsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAvailablePatchesCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeDocumentCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeDocumentPermissionCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeEffectiveInstanceAssociationsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeEffectivePatchesForPatchBaselineCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstanceAssociationsStatusCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstanceInformationCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePatchStatesCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePatchStatesForPatchGroupCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePatchesCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInventoryDeletionsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowExecutionTasksCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowExecutionsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowScheduleCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowTargetsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowTasksCommand.d.ts +28 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowsForTargetCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeOpsItemsCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeParametersCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchBaselinesCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchGroupStateCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchGroupsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchPropertiesCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeSessionsCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DisassociateOpsItemRelatedItemCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetAutomationExecutionCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetCalendarStateCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetCommandInvocationCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetConnectionStatusCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetDefaultPatchBaselineCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetDeployablePatchSnapshotForInstanceCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetDocumentCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetInventoryCommand.d.ts +27 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetInventorySchemaCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowExecutionCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowExecutionTaskCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowTaskCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetOpsItemCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetOpsMetadataCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetOpsSummaryCommand.d.ts +27 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParameterCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParameterHistoryCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParametersByPathCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParametersCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetPatchBaselineCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetPatchBaselineForPatchGroupCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetResourcePoliciesCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetServiceSettingCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/LabelParameterVersionCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListAssociationVersionsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListAssociationsCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListCommandInvocationsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListCommandsCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListComplianceItemsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListComplianceSummariesCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListDocumentMetadataHistoryCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListDocumentVersionsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListDocumentsCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListInventoryEntriesCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListOpsItemEventsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListOpsItemRelatedItemsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListOpsMetadataCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListResourceComplianceSummariesCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListResourceDataSyncCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ModifyDocumentPermissionCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutComplianceItemsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutInventoryCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutParameterCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterDefaultPatchBaselineCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterPatchBaselineForPatchGroupCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterTargetWithMaintenanceWindowCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterTaskWithMaintenanceWindowCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RemoveTagsFromResourceCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ResetServiceSettingCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ResumeSessionCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/SendAutomationSignalCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/SendCommandCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartAssociationsOnceCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartAutomationExecutionCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartChangeRequestExecutionCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartSessionCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StopAutomationExecutionCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/TerminateSessionCommand.d.ts +27 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UnlabelParameterVersionCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateAssociationCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateAssociationStatusCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateDocumentCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateDocumentDefaultVersionCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateDocumentMetadataCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateMaintenanceWindowCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateMaintenanceWindowTargetCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateMaintenanceWindowTaskCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateManagedInstanceRoleCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateOpsItemCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateOpsMetadataCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdatePatchBaselineCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateResourceDataSyncCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateServiceSettingCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/index.d.ts +139 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/extensionConfiguration.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/index.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/SSMServiceException.d.ts +8 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/models_0.d.ts +2121 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/models_1.d.ts +2279 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/models_2.d.ts +415 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeActivationsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeAssociationExecutionTargetsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeAssociationExecutionsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeAutomationExecutionsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeAutomationStepExecutionsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeAvailablePatchesPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeEffectiveInstanceAssociationsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeEffectivePatchesForPatchBaselinePaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeInstanceAssociationsStatusPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeInstanceInformationPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeInstancePatchStatesForPatchGroupPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeInstancePatchStatesPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeInstancePatchesPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeInventoryDeletionsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeMaintenanceWindowExecutionTaskInvocationsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeMaintenanceWindowExecutionTasksPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeMaintenanceWindowExecutionsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeMaintenanceWindowSchedulePaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeMaintenanceWindowTargetsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeMaintenanceWindowTasksPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeMaintenanceWindowsForTargetPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeMaintenanceWindowsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeOpsItemsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeParametersPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribePatchBaselinesPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribePatchGroupsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribePatchPropertiesPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeSessionsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/GetInventoryPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/GetInventorySchemaPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/GetOpsSummaryPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/GetParameterHistoryPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/GetParametersByPathPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/GetResourcePoliciesPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/Interfaces.d.ts +5 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListAssociationVersionsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListAssociationsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListCommandInvocationsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListCommandsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListComplianceItemsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListComplianceSummariesPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListDocumentVersionsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListDocumentsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListOpsItemEventsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListOpsItemRelatedItemsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListOpsMetadataPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListResourceComplianceSummariesPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListResourceDataSyncPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/index.d.ts +48 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +1673 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.browser.d.ts +97 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.d.ts +97 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.native.d.ts +88 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.shared.d.ts +19 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/waiters/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/waiters/waitForCommandExecuted.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/waiters/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/waiters/waitForCommandExecuted.d.ts +14 -0
- package/node_modules/@aws-sdk/client-ssm/package.json +104 -0
- package/node_modules/@aws-sdk/client-sso/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-sso/README.md +252 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/SSO.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/SSOClient.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/commands/GetRoleCredentialsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/commands/ListAccountRolesCommand.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/commands/ListAccountsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/commands/LogoutCommand.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/commands/index.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/EndpointParameters.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/index.js +692 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/models/SSOServiceException.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/models/index.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/models/models_0.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/pagination/Interfaces.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/pagination/ListAccountRolesPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/pagination/ListAccountsPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/pagination/index.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/protocols/Aws_restJson1.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.browser.js +38 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.js +47 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.shared.js +24 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeExtensions.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/SSO.js +15 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/SSOClient.js +36 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/commands/GetRoleCredentialsCommand.js +25 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountRolesCommand.js +25 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountsCommand.js +25 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/commands/LogoutCommand.js +25 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/commands/index.js +4 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/endpoint/EndpointParameters.js +14 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/endpoint/endpointResolver.js +8 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/index.js +7 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/models/SSOServiceException.js +8 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/models/index.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/models/models_0.js +75 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/pagination/Interfaces.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/pagination/ListAccountRolesPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/pagination/ListAccountsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/pagination/index.js +3 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/protocols/Aws_restJson1.js +335 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.browser.js +33 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.js +42 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.shared.js +20 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/runtimeExtensions.js +18 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/SSO.d.ts +53 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/SSOClient.d.ts +181 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/commands/GetRoleCredentialsCommand.d.ts +81 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountRolesCommand.d.ts +82 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountsCommand.d.ts +84 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/commands/LogoutCommand.d.ts +81 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/commands/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/endpoint/EndpointParameters.d.ts +40 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/extensionConfiguration.d.ts +8 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/index.d.ts +30 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/models/SSOServiceException.d.ts +13 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/models/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/models/models_0.d.ts +266 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/pagination/Interfaces.d.ts +8 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/pagination/ListAccountRolesPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/pagination/ListAccountsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/pagination/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/protocols/Aws_restJson1.d.ts +38 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.browser.d.ts +39 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.d.ts +39 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.native.d.ts +38 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.shared.d.ts +19 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSO.d.ts +73 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSOClient.d.ts +131 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/GetRoleCredentialsCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountRolesCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountsCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/LogoutCommand.d.ts +22 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/extensionConfiguration.d.ts +7 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/index.d.ts +10 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/SSOServiceException.d.ts +8 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/models_0.d.ts +93 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/Interfaces.d.ts +5 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/ListAccountRolesPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/ListAccountsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +53 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.browser.d.ts +73 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.d.ts +73 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.native.d.ts +64 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.shared.d.ts +19 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-sso/package.json +98 -0
- package/node_modules/@aws-sdk/client-sts/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-sts/README.md +273 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/STS.js +1 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/STSClient.js +56 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/auth/httpAuthSchemeProvider.js +67 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/commands/AssumeRoleCommand.js +29 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/commands/AssumeRoleWithSAMLCommand.js +1 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/commands/AssumeRoleWithWebIdentityCommand.js +29 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/commands/DecodeAuthorizationMessageCommand.js +1 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/commands/GetAccessKeyInfoCommand.js +1 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/commands/GetCallerIdentityCommand.js +1 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/commands/GetFederationTokenCommand.js +1 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/commands/GetSessionTokenCommand.js +1 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/commands/index.js +1 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/defaultRoleAssumers.js +1 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/defaultStsRoleAssumers.js +78 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/EndpointParameters.js +20 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/index.js +277 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/models/STSServiceException.js +12 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/models/index.js +1 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/models/models_0.js +149 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/protocols/Aws_query.js +1084 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.browser.js +39 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.js +64 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.shared.js +40 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeExtensions.js +25 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/STS.js +23 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/STSClient.js +52 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/auth/httpAuthSchemeProvider.js +60 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleCommand.js +25 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleWithSAMLCommand.js +25 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleWithWebIdentityCommand.js +25 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/commands/DecodeAuthorizationMessageCommand.js +24 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/commands/GetAccessKeyInfoCommand.js +24 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/commands/GetCallerIdentityCommand.js +24 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/commands/GetFederationTokenCommand.js +25 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/commands/GetSessionTokenCommand.js +25 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/commands/index.js +8 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/defaultRoleAssumers.js +22 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/defaultStsRoleAssumers.js +72 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/endpoint/EndpointParameters.js +16 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/endpoint/endpointResolver.js +8 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/index.js +7 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/models/STSServiceException.js +8 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/models/index.js +1 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/models/models_0.js +130 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/protocols/Aws_query.js +1065 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.browser.js +34 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.js +59 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.shared.js +36 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/runtimeExtensions.js +21 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/STS.d.ts +69 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/STSClient.d.ts +182 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/auth/httpAuthSchemeProvider.d.ts +71 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/commands/AssumeRoleCommand.d.ts +256 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/commands/AssumeRoleWithSAMLCommand.d.ts +281 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/commands/AssumeRoleWithWebIdentityCommand.d.ts +290 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/commands/DecodeAuthorizationMessageCommand.d.ts +114 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/commands/GetAccessKeyInfoCommand.d.ts +74 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/commands/GetCallerIdentityCommand.d.ts +115 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/commands/GetFederationTokenCommand.d.ts +229 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/commands/GetSessionTokenCommand.d.ts +153 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/commands/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/defaultRoleAssumers.d.ts +20 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/defaultStsRoleAssumers.d.ts +35 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/endpoint/EndpointParameters.d.ts +46 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/index.d.ts +18 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/models/STSServiceException.d.ts +13 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/models/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/models/models_0.d.ts +1213 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/protocols/Aws_query.d.ts +74 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.browser.d.ts +57 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.d.ts +55 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.native.d.ts +56 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.shared.d.ts +32 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/STS.d.ts +141 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/STSClient.d.ts +165 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +54 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleWithSAMLCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleWithWebIdentityCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/DecodeAuthorizationMessageCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetAccessKeyInfoCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetCallerIdentityCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetFederationTokenCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetSessionTokenCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/defaultRoleAssumers.d.ts +22 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/defaultStsRoleAssumers.d.ts +25 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +57 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/index.d.ts +10 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/STSServiceException.d.ts +8 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/models_0.d.ts +206 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/protocols/Aws_query.d.ts +101 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.browser.d.ts +128 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.d.ts +117 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.native.d.ts +119 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.shared.d.ts +51 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-sts/package.json +103 -0
- package/node_modules/@aws-sdk/core/CHANGELOG.md +174 -0
- package/node_modules/@aws-sdk/core/README.md +5 -0
- package/node_modules/@aws-sdk/core/api-extractor.json +4 -0
- package/node_modules/@aws-sdk/core/dist-cjs/client/emitWarningIfUnsupportedVersion.js +1 -0
- package/node_modules/@aws-sdk/core/dist-cjs/client/index.js +1 -0
- package/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.js +1 -0
- package/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/aws_sdk/index.js +1 -0
- package/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.js +1 -0
- package/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/index.js +1 -0
- package/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/utils/getDateHeader.js +1 -0
- package/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/utils/getSkewCorrectedDate.js +1 -0
- package/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/utils/getUpdatedSystemClockOffset.js +1 -0
- package/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/utils/index.js +1 -0
- package/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/utils/isClockSkewed.js +1 -0
- package/node_modules/@aws-sdk/core/dist-cjs/index.js +316 -0
- package/node_modules/@aws-sdk/core/dist-cjs/protocols/coercing-serializers.js +1 -0
- package/node_modules/@aws-sdk/core/dist-cjs/protocols/index.js +1 -0
- package/node_modules/@aws-sdk/core/dist-cjs/protocols/json/awsExpectUnion.js +1 -0
- package/node_modules/@aws-sdk/core/dist-es/client/emitWarningIfUnsupportedVersion.js +13 -0
- package/node_modules/@aws-sdk/core/dist-es/client/index.js +1 -0
- package/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.js +55 -0
- package/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/aws_sdk/index.js +2 -0
- package/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.js +78 -0
- package/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/index.js +1 -0
- package/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/utils/getDateHeader.js +2 -0
- package/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/utils/getSkewCorrectedDate.js +1 -0
- package/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/utils/getUpdatedSystemClockOffset.js +8 -0
- package/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/utils/index.js +3 -0
- package/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/utils/isClockSkewed.js +2 -0
- package/node_modules/@aws-sdk/core/dist-es/index.js +3 -0
- package/node_modules/@aws-sdk/core/dist-es/protocols/coercing-serializers.js +53 -0
- package/node_modules/@aws-sdk/core/dist-es/protocols/index.js +2 -0
- package/node_modules/@aws-sdk/core/dist-es/protocols/json/awsExpectUnion.js +10 -0
- package/node_modules/@aws-sdk/core/dist-types/client/emitWarningIfUnsupportedVersion.d.ts +9 -0
- package/node_modules/@aws-sdk/core/dist-types/client/index.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.d.ts +17 -0
- package/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/aws_sdk/index.d.ts +2 -0
- package/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.d.ts +95 -0
- package/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/index.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/utils/getDateHeader.d.ts +4 -0
- package/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/utils/getSkewCorrectedDate.d.ts +8 -0
- package/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/utils/getUpdatedSystemClockOffset.d.ts +10 -0
- package/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/utils/index.d.ts +3 -0
- package/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/utils/isClockSkewed.d.ts +9 -0
- package/node_modules/@aws-sdk/core/dist-types/index.d.ts +3 -0
- package/node_modules/@aws-sdk/core/dist-types/protocols/coercing-serializers.d.ts +18 -0
- package/node_modules/@aws-sdk/core/dist-types/protocols/index.d.ts +2 -0
- package/node_modules/@aws-sdk/core/dist-types/protocols/json/awsExpectUnion.d.ts +7 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/client/emitWarningIfUnsupportedVersion.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/client/index.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.d.ts +21 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/aws_sdk/index.d.ts +2 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.d.ts +55 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/index.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/utils/getDateHeader.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/utils/getSkewCorrectedDate.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/utils/getUpdatedSystemClockOffset.d.ts +4 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/utils/index.d.ts +3 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/utils/isClockSkewed.d.ts +4 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/protocols/coercing-serializers.d.ts +3 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/protocols/index.d.ts +2 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/protocols/json/awsExpectUnion.d.ts +3 -0
- package/node_modules/@aws-sdk/core/jest.config.js +6 -0
- package/node_modules/@aws-sdk/core/package.json +57 -0
- package/node_modules/@aws-sdk/core/scripts/lint.js +24 -0
- package/node_modules/@aws-sdk/core/src/client/emitWarningIfUnsupportedVersion.spec.ts +70 -0
- package/node_modules/@aws-sdk/core/src/client/emitWarningIfUnsupportedVersion.ts +25 -0
- package/node_modules/@aws-sdk/core/src/client/index.ts +1 -0
- package/node_modules/@aws-sdk/core/src/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.ts +132 -0
- package/node_modules/@aws-sdk/core/src/httpAuthSchemes/aws_sdk/index.ts +2 -0
- package/node_modules/@aws-sdk/core/src/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.ts +236 -0
- package/node_modules/@aws-sdk/core/src/httpAuthSchemes/index.ts +1 -0
- package/node_modules/@aws-sdk/core/src/httpAuthSchemes/utils/getDateHeader.ts +7 -0
- package/node_modules/@aws-sdk/core/src/httpAuthSchemes/utils/getSkewCorrectedDate.spec.ts +17 -0
- package/node_modules/@aws-sdk/core/src/httpAuthSchemes/utils/getSkewCorrectedDate.ts +8 -0
- package/node_modules/@aws-sdk/core/src/httpAuthSchemes/utils/getUpdatedSystemClockOffset.spec.ts +37 -0
- package/node_modules/@aws-sdk/core/src/httpAuthSchemes/utils/getUpdatedSystemClockOffset.ts +18 -0
- package/node_modules/@aws-sdk/core/src/httpAuthSchemes/utils/index.ts +3 -0
- package/node_modules/@aws-sdk/core/src/httpAuthSchemes/utils/isClockSkewed.spec.ts +32 -0
- package/node_modules/@aws-sdk/core/src/httpAuthSchemes/utils/isClockSkewed.ts +12 -0
- package/node_modules/@aws-sdk/core/src/index.ts +3 -0
- package/node_modules/@aws-sdk/core/src/protocols/coercing-serializers.spec.ts +76 -0
- package/node_modules/@aws-sdk/core/src/protocols/coercing-serializers.ts +72 -0
- package/node_modules/@aws-sdk/core/src/protocols/index.ts +2 -0
- package/node_modules/@aws-sdk/core/src/protocols/json/awsExpectUnion.spec.ts +30 -0
- package/node_modules/@aws-sdk/core/src/protocols/json/awsExpectUnion.ts +17 -0
- package/node_modules/@aws-sdk/core/tsconfig.cjs.json +9 -0
- package/node_modules/@aws-sdk/core/tsconfig.cjs.tsbuildinfo +1 -0
- package/node_modules/@aws-sdk/core/tsconfig.es.json +9 -0
- package/node_modules/@aws-sdk/core/tsconfig.es.tsbuildinfo +1 -0
- package/node_modules/@aws-sdk/core/tsconfig.types.json +9 -0
- package/node_modules/@aws-sdk/core/tsconfig.types.tsbuildinfo +1 -0
- package/node_modules/@aws-sdk/credential-provider-env/LICENSE +201 -0
- package/node_modules/@aws-sdk/credential-provider-env/README.md +11 -0
- package/node_modules/@aws-sdk/credential-provider-env/dist-cjs/fromEnv.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js +66 -0
- package/node_modules/@aws-sdk/credential-provider-env/dist-es/fromEnv.js +23 -0
- package/node_modules/@aws-sdk/credential-provider-env/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-env/dist-types/fromEnv.d.ts +29 -0
- package/node_modules/@aws-sdk/credential-provider-env/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/fromEnv.d.ts +7 -0
- package/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/credential-provider-env/package.json +60 -0
- package/node_modules/@aws-sdk/credential-provider-ini/LICENSE +201 -0
- package/node_modules/@aws-sdk/credential-provider-ini/README.md +11 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/fromIni.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +175 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveAssumeRoleCredentials.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveCredentialSource.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveProcessCredentials.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveProfileData.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveSsoCredentials.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveStaticCredentials.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveWebIdentityCredentials.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/fromIni.js +6 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveAssumeRoleCredentials.js +47 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveCredentialSource.js +17 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProcessCredentials.js +6 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProfileData.js +28 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveSsoCredentials.js +12 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveStaticCredentials.js +11 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveWebIdentityCredentials.js +12 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/fromIni.d.ts +41 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveAssumeRoleCredentials.d.ts +44 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveCredentialSource.d.ts +11 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProcessCredentials.d.ts +17 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProfileData.d.ts +6 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveSsoCredentials.d.ts +9 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveStaticCredentials.d.ts +18 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveWebIdentityCredentials.d.ts +18 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/fromIni.d.ts +20 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveAssumeRoleCredentials.d.ts +17 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveCredentialSource.d.ts +5 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProcessCredentials.d.ts +11 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProfileData.d.ts +8 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveSsoCredentials.d.ts +5 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveStaticCredentials.d.ts +13 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveWebIdentityCredentials.d.ts +14 -0
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +66 -0
- package/node_modules/@aws-sdk/credential-provider-node/LICENSE +201 -0
- package/node_modules/@aws-sdk/credential-provider-node/README.md +104 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-cjs/defaultProvider.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +73 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-cjs/remoteProvider.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-es/defaultProvider.js +11 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-es/remoteProvider.js +14 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/defaultProvider.d.ts +42 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/remoteProvider.d.ts +4 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/defaultProvider.d.ts +14 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/remoteProvider.d.ts +6 -0
- package/node_modules/@aws-sdk/credential-provider-node/package.json +67 -0
- package/node_modules/@aws-sdk/credential-provider-process/LICENSE +201 -0
- package/node_modules/@aws-sdk/credential-provider-process/README.md +11 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-cjs/ProcessCredentials.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-cjs/fromProcess.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-cjs/getValidatedProcessCredentials.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js +96 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-cjs/resolveProcessCredentials.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-es/ProcessCredentials.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-es/fromProcess.js +6 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-es/getValidatedProcessCredentials.js +22 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-es/resolveProcessCredentials.js +33 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/ProcessCredentials.d.ts +11 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/fromProcess.d.ts +14 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/getValidatedProcessCredentials.d.ts +6 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/resolveProcessCredentials.d.ts +5 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/ProcessCredentials.d.ts +8 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/fromProcess.d.ts +6 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/getValidatedProcessCredentials.d.ts +6 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/resolveProcessCredentials.d.ts +5 -0
- package/node_modules/@aws-sdk/credential-provider-process/package.json +61 -0
- package/node_modules/@aws-sdk/credential-provider-sso/LICENSE +201 -0
- package/node_modules/@aws-sdk/credential-provider-sso/README.md +11 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/fromSSO.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +177 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/isSsoProfile.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/resolveSSOCredentials.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/types.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/validateSsoProfile.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/fromSSO.js +57 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/index.js +4 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/isSsoProfile.js +6 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/resolveSSOCredentials.js +51 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/validateSsoProfile.js +9 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/fromSSO.d.ts +67 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/index.d.ts +16 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/isSsoProfile.d.ts +6 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/resolveSSOCredentials.d.ts +6 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/fromSSO.d.ts +16 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/isSsoProfile.d.ts +3 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/resolveSSOCredentials.d.ts +11 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/types.d.ts +14 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/validateSsoProfile.d.ts +4 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/types.d.ts +22 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/validateSsoProfile.d.ts +5 -0
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +63 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/LICENSE +201 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/README.md +11 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js +25 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js +21 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/index.js +27 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromTokenFile.js +20 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromWebToken.js +17 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromTokenFile.d.ts +17 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromWebToken.d.ts +135 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/index.d.ts +8 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromTokenFile.d.ts +11 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromWebToken.d.ts +35 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +68 -0
- package/node_modules/@aws-sdk/endpoint-cache/LICENSE +201 -0
- package/node_modules/@aws-sdk/endpoint-cache/README.md +17 -0
- package/node_modules/@aws-sdk/endpoint-cache/dist-cjs/Endpoint.js +1 -0
- package/node_modules/@aws-sdk/endpoint-cache/dist-cjs/EndpointCache.js +1 -0
- package/node_modules/@aws-sdk/endpoint-cache/dist-cjs/index.js +135 -0
- package/node_modules/@aws-sdk/endpoint-cache/dist-es/Endpoint.js +1 -0
- package/node_modules/@aws-sdk/endpoint-cache/dist-es/EndpointCache.js +53 -0
- package/node_modules/@aws-sdk/endpoint-cache/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/endpoint-cache/dist-types/Endpoint.d.ts +13 -0
- package/node_modules/@aws-sdk/endpoint-cache/dist-types/EndpointCache.d.ts +56 -0
- package/node_modules/@aws-sdk/endpoint-cache/dist-types/index.d.ts +8 -0
- package/node_modules/@aws-sdk/endpoint-cache/dist-types/ts3.4/Endpoint.d.ts +4 -0
- package/node_modules/@aws-sdk/endpoint-cache/dist-types/ts3.4/EndpointCache.d.ts +14 -0
- package/node_modules/@aws-sdk/endpoint-cache/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/endpoint-cache/package.json +53 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/LICENSE +201 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/README.md +4 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-cjs/configurations.js +1 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-cjs/endpointDiscoveryMiddleware.js +1 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-cjs/getCacheKey.js +1 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-cjs/getEndpointDiscoveryPlugin.js +1 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-cjs/index.js +227 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-cjs/resolveEndpointDiscoveryConfig.js +1 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-cjs/updateDiscoveredEndpointInCache.js +1 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-es/configurations.js +27 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-es/endpointDiscoveryMiddleware.js +45 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-es/getCacheKey.js +13 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-es/getEndpointDiscoveryPlugin.js +22 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-es/index.js +3 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-es/resolveEndpointDiscoveryConfig.js +10 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-es/updateDiscoveredEndpointInCache.js +57 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/configurations.d.ts +2 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/endpointDiscoveryMiddleware.d.ts +4 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/getCacheKey.d.ts +9 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/getEndpointDiscoveryPlugin.d.ts +18 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/index.d.ts +3 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/resolveEndpointDiscoveryConfig.d.ts +54 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/configurations.d.ts +4 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/endpointDiscoveryMiddleware.d.ts +17 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/getCacheKey.d.ts +10 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/getEndpointDiscoveryPlugin.d.ts +41 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/resolveEndpointDiscoveryConfig.d.ts +28 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/updateDiscoveredEndpointInCache.d.ts +15 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/updateDiscoveredEndpointInCache.d.ts +8 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/package.json +57 -0
- package/node_modules/@aws-sdk/middleware-host-header/LICENSE +201 -0
- package/node_modules/@aws-sdk/middleware-host-header/README.md +4 -0
- package/node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js +70 -0
- package/node_modules/@aws-sdk/middleware-host-header/dist-es/index.js +33 -0
- package/node_modules/@aws-sdk/middleware-host-header/dist-types/index.d.ts +20 -0
- package/node_modules/@aws-sdk/middleware-host-header/dist-types/ts3.4/index.d.ts +29 -0
- package/node_modules/@aws-sdk/middleware-host-header/package.json +55 -0
- package/node_modules/@aws-sdk/middleware-logger/LICENSE +201 -0
- package/node_modules/@aws-sdk/middleware-logger/README.md +4 -0
- package/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js +79 -0
- package/node_modules/@aws-sdk/middleware-logger/dist-cjs/loggerMiddleware.js +1 -0
- package/node_modules/@aws-sdk/middleware-logger/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/middleware-logger/dist-es/loggerMiddleware.js +42 -0
- package/node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/middleware-logger/dist-types/loggerMiddleware.d.ts +4 -0
- package/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/loggerMiddleware.d.ts +17 -0
- package/node_modules/@aws-sdk/middleware-logger/package.json +56 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/LICENSE +201 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/README.md +10 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/index.js +67 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/index.js +34 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/index.d.ts +18 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/index.d.ts +18 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +55 -0
- package/node_modules/@aws-sdk/middleware-signing/LICENSE +201 -0
- package/node_modules/@aws-sdk/middleware-signing/README.md +4 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-cjs/awsAuthConfiguration.js +1 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-cjs/awsAuthMiddleware.js +1 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-cjs/index.js +227 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-cjs/utils/getSkewCorrectedDate.js +1 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-cjs/utils/getUpdatedSystemClockOffset.js +1 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-cjs/utils/isClockSkewed.js +1 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-es/awsAuthConfiguration.js +103 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-es/awsAuthMiddleware.js +55 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getSkewCorrectedDate.js +1 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getUpdatedSystemClockOffset.js +8 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-es/utils/isClockSkewed.js +2 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-types/awsAuthConfiguration.d.ts +99 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-types/awsAuthMiddleware.d.ts +6 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/awsAuthConfiguration.d.ts +68 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/awsAuthMiddleware.d.ts +19 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/utils/getSkewCorrectedDate.d.ts +1 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/utils/getUpdatedSystemClockOffset.d.ts +4 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/utils/isClockSkewed.d.ts +4 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-types/utils/getSkewCorrectedDate.d.ts +6 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-types/utils/getUpdatedSystemClockOffset.d.ts +8 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-types/utils/isClockSkewed.d.ts +7 -0
- package/node_modules/@aws-sdk/middleware-signing/package.json +59 -0
- package/node_modules/@aws-sdk/middleware-user-agent/LICENSE +201 -0
- package/node_modules/@aws-sdk/middleware-user-agent/README.md +4 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/configurations.js +1 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/constants.js +1 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js +122 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/user-agent-middleware.js +1 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-es/configurations.js +6 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-es/constants.js +7 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js +72 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/configurations.d.ts +31 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/constants.d.ts +7 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/configurations.d.ts +17 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/constants.d.ts +7 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/user-agent-middleware.d.ts +20 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/user-agent-middleware.d.ts +17 -0
- package/node_modules/@aws-sdk/middleware-user-agent/package.json +57 -0
- package/node_modules/@aws-sdk/region-config-resolver/LICENSE +201 -0
- package/node_modules/@aws-sdk/region-config-resolver/README.md +12 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/extensions/index.js +1 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/index.js +115 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/config.js +1 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/getRealRegion.js +1 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/index.js +1 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/isFipsRegion.js +1 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/resolveRegionConfig.js +1 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/extensions/index.js +25 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/config.js +12 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/getRealRegion.js +6 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/index.js +2 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/isFipsRegion.js +1 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/resolveRegionConfig.js +25 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/extensions/index.d.ts +16 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/config.d.ts +17 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/getRealRegion.d.ts +4 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/index.d.ts +8 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/isFipsRegion.d.ts +4 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/resolveRegionConfig.d.ts +37 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/extensions/index.d.ts +14 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/config.d.ts +8 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/getRealRegion.d.ts +1 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/index.d.ts +2 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/isFipsRegion.d.ts +1 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/resolveRegionConfig.d.ts +14 -0
- package/node_modules/@aws-sdk/region-config-resolver/package.json +58 -0
- package/node_modules/@aws-sdk/token-providers/LICENSE +201 -0
- package/node_modules/@aws-sdk/token-providers/README.md +53 -0
- package/node_modules/@aws-sdk/token-providers/dist-cjs/bundle/client-sso-oidc-browser.js +1032 -0
- package/node_modules/@aws-sdk/token-providers/dist-cjs/bundle/client-sso-oidc-node.js +1038 -0
- package/node_modules/@aws-sdk/token-providers/dist-cjs/constants.js +1 -0
- package/node_modules/@aws-sdk/token-providers/dist-cjs/fromSso.js +1 -0
- package/node_modules/@aws-sdk/token-providers/dist-cjs/fromStatic.js +1 -0
- package/node_modules/@aws-sdk/token-providers/dist-cjs/getNewSsoOidcToken.js +1 -0
- package/node_modules/@aws-sdk/token-providers/dist-cjs/getSsoOidcClient.js +1 -0
- package/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +211 -0
- package/node_modules/@aws-sdk/token-providers/dist-cjs/nodeProvider.js +1 -0
- package/node_modules/@aws-sdk/token-providers/dist-cjs/validateTokenExpiry.js +1 -0
- package/node_modules/@aws-sdk/token-providers/dist-cjs/validateTokenKey.js +1 -0
- package/node_modules/@aws-sdk/token-providers/dist-cjs/writeSSOTokenToFile.js +1 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/bundle/client-sso-oidc-browser.js +1010 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/bundle/client-sso-oidc-node.js +1017 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/constants.js +2 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/fromSso.js +78 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/fromStatic.js +7 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/getNewSsoOidcToken.js +11 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/getSsoOidcClient.js +10 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/index.js +4 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/nodeProvider.js +5 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/validateTokenExpiry.js +7 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/validateTokenKey.js +7 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/writeSSOTokenToFile.js +8 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/bundle/client-sso-oidc-browser.d.ts +191 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/bundle/client-sso-oidc-node.d.ts +191 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/constants.d.ts +8 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/fromSso.d.ts +8 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/fromStatic.d.ts +8 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/getNewSsoOidcToken.d.ts +5 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/getSsoOidcClient.d.ts +5 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/nodeProvider.d.ts +18 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/bundle/client-sso-oidc-browser.d.ts +235 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/bundle/client-sso-oidc-node.d.ts +235 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/constants.d.ts +3 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromSso.d.ts +4 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromStatic.d.ts +7 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getNewSsoOidcToken.d.ts +5 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getSsoOidcClient.d.ts +1 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/nodeProvider.d.ts +5 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenExpiry.d.ts +2 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenKey.d.ts +5 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/writeSSOTokenToFile.d.ts +5 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/validateTokenExpiry.d.ts +5 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/validateTokenKey.d.ts +4 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/writeSSOTokenToFile.d.ts +5 -0
- package/node_modules/@aws-sdk/token-providers/package.json +103 -0
- package/node_modules/@aws-sdk/types/LICENSE +201 -0
- package/node_modules/@aws-sdk/types/README.md +4 -0
- package/node_modules/@aws-sdk/types/dist-cjs/abort.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/auth.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/blob/blob-types.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/checksum.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/client.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/command.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/connection.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/credentials.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/crypto.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/dns.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/encode.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/endpoint.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/eventStream.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/extensions/index.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/http.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/identity/AnonymousIdentity.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/identity/AwsCredentialIdentity.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/identity/Identity.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/identity/LoginIdentity.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/identity/TokenIdentity.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/identity/index.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/index.js +466 -0
- package/node_modules/@aws-sdk/types/dist-cjs/logger.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/middleware.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/pagination.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/profile.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/request.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/response.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/retry.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/serde.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/shapes.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/signature.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/stream.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/token.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/transfer.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/uri.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/util.js +1 -0
- package/node_modules/@aws-sdk/types/dist-cjs/waiter.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/abort.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/auth.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/blob/blob-types.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/checksum.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/client.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/command.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/connection.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/credentials.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/crypto.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/dns.js +5 -0
- package/node_modules/@aws-sdk/types/dist-es/encode.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/endpoint.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/eventStream.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/extensions/index.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/http.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/identity/Identity.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/identity/index.js +5 -0
- package/node_modules/@aws-sdk/types/dist-es/index.js +32 -0
- package/node_modules/@aws-sdk/types/dist-es/logger.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/middleware.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/pagination.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/profile.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/request.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/response.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/retry.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/serde.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/shapes.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/signature.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/stream.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/token.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/transfer.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/uri.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/util.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/waiter.js +1 -0
- package/node_modules/@aws-sdk/types/dist-types/abort.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/auth.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +2 -0
- package/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/client.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/command.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/connection.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +17 -0
- package/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/dns.d.ts +85 -0
- package/node_modules/@aws-sdk/types/dist-types/encode.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +8 -0
- package/node_modules/@aws-sdk/types/dist-types/http.d.ts +33 -0
- package/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +6 -0
- package/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +18 -0
- package/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +5 -0
- package/node_modules/@aws-sdk/types/dist-types/index.d.ts +32 -0
- package/node_modules/@aws-sdk/types/dist-types/logger.d.ts +22 -0
- package/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/profile.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/request.d.ts +7 -0
- package/node_modules/@aws-sdk/types/dist-types/response.d.ts +7 -0
- package/node_modules/@aws-sdk/types/dist-types/retry.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/serde.d.ts +24 -0
- package/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/signature.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/stream.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/token.d.ts +17 -0
- package/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +5 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +2 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +6 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +4 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +7 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +19 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +6 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +9 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +24 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +5 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +17 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +2 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +4 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +6 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +5 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +32 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +15 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +40 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +6 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +4 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +4 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +12 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +16 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +6 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +15 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +4 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +4 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +7 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +14 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/uri.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/util.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +1 -0
- package/node_modules/@aws-sdk/types/package.json +56 -0
- package/node_modules/@aws-sdk/util-endpoints/LICENSE +201 -0
- package/node_modules/@aws-sdk/util-endpoints/README.md +6 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/aws.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js +424 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/index.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/isVirtualHostableS3Bucket.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/parseArn.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partition.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partitions.json +216 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/isIpAddress.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/resolveEndpoint.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/EndpointError.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/EndpointRuleObject.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/ErrorRuleObject.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/RuleSetObject.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/TreeRuleObject.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/index.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/shared.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/aws.js +10 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/index.js +5 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/index.js +3 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/isVirtualHostableS3Bucket.js +25 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/parseArn.js +15 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partition.js +41 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partitions.json +216 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/isIpAddress.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/resolveEndpoint.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointError.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointRuleObject.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/types/ErrorRuleObject.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/types/RuleSetObject.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/types/TreeRuleObject.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/types/index.js +6 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/types/shared.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/aws.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/index.d.ts +5 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/index.d.ts +3 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/isVirtualHostableS3Bucket.d.ts +5 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/parseArn.d.ts +7 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/partition.d.ts +38 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/isIpAddress.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/resolveEndpoint.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/aws.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/index.d.ts +5 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/index.d.ts +3 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/isVirtualHostableS3Bucket.d.ts +4 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/parseArn.d.ts +2 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/partition.d.ts +28 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveEndpoint.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointError.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointRuleObject.d.ts +6 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/ErrorRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/RuleSetObject.d.ts +5 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/TreeRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/shared.d.ts +12 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointError.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/RuleSetObject.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/TreeRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/shared.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/package.json +56 -0
- package/node_modules/@aws-sdk/util-locate-window/LICENSE +201 -0
- package/node_modules/@aws-sdk/util-locate-window/README.md +4 -0
- package/node_modules/@aws-sdk/util-locate-window/dist-cjs/index.js +39 -0
- package/node_modules/@aws-sdk/util-locate-window/dist-es/index.js +10 -0
- package/node_modules/@aws-sdk/util-locate-window/dist-types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/util-locate-window/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/util-locate-window/package.json +52 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/LICENSE +201 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/README.md +10 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/configurations.js +2 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.js +23 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.native.js +17 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-es/configurations.js +1 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.js +17 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.native.js +13 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/configurations.d.ts +7 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.d.ts +9 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.native.d.ts +9 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/configurations.d.ts +4 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.d.ts +6 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.native.d.ts +6 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/package.json +53 -0
- package/node_modules/@aws-sdk/util-user-agent-node/LICENSE +201 -0
- package/node_modules/@aws-sdk/util-user-agent-node/README.md +10 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/crt-availability.js +1 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js +94 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/is-crt-available.js +1 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-es/crt-availability.js +3 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-es/index.js +39 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-es/is-crt-available.js +7 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/crt-availability.d.ts +9 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts +20 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/is-crt-available.d.ts +5 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/crt-availability.d.ts +3 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/index.d.ts +12 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/is-crt-available.d.ts +2 -0
- package/node_modules/@aws-sdk/util-user-agent-node/package.json +63 -0
- package/node_modules/@aws-sdk/util-utf8-browser/LICENSE +201 -0
- package/node_modules/@aws-sdk/util-utf8-browser/README.md +8 -0
- package/node_modules/@aws-sdk/util-utf8-browser/package.json +50 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/.eslintignore +5 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/.jsii +3976 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/README.md +126 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/architecture.png +0 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/lib/index.d.ts +86 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/lib/index.js +90 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/package.json +91 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-add-secondary-index.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-add-secondary-index.expected.json +262 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-add-secondary-index.js +40 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-deployFunctionWithExistingVpc.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-deployFunctionWithExistingVpc.expected.json +1012 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-deployFunctionWithExistingVpc.js +46 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-deployFunctionWithVpc.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-deployFunctionWithVpc.expected.json +609 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-deployFunctionWithVpc.js +36 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-no-arguments.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-no-arguments.expected.json +233 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-no-arguments.js +32 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-set-billing-mode.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-set-billing-mode.expected.json +246 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-set-billing-mode.js +41 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-use-existing-func.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-use-existing-func.expected.json +233 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-use-existing-func.js +33 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/lambda/index.js +8 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/lambda-dynamodb.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/lambda-dynamodb.test.js +774 -0
- package/node_modules/@aws-solutions-constructs/core/.eslintignore +7 -0
- package/node_modules/@aws-solutions-constructs/core/.jsii +7978 -0
- package/node_modules/@aws-solutions-constructs/core/README.md +80 -0
- package/node_modules/@aws-solutions-constructs/core/index.d.ts +74 -0
- package/node_modules/@aws-solutions-constructs/core/index.js +87 -0
- package/node_modules/@aws-solutions-constructs/core/lib/alb-defaults.d.ts +17 -0
- package/node_modules/@aws-solutions-constructs/core/lib/alb-defaults.js +31 -0
- package/node_modules/@aws-solutions-constructs/core/lib/alb-helper.d.ts +61 -0
- package/node_modules/@aws-solutions-constructs/core/lib/alb-helper.js +210 -0
- package/node_modules/@aws-solutions-constructs/core/lib/apigateway-defaults.d.ts +62 -0
- package/node_modules/@aws-solutions-constructs/core/lib/apigateway-defaults.js +139 -0
- package/node_modules/@aws-solutions-constructs/core/lib/apigateway-helper.d.ts +103 -0
- package/node_modules/@aws-solutions-constructs/core/lib/apigateway-helper.js +293 -0
- package/node_modules/@aws-solutions-constructs/core/lib/cloudfront-distribution-defaults.d.ts +29 -0
- package/node_modules/@aws-solutions-constructs/core/lib/cloudfront-distribution-defaults.js +100 -0
- package/node_modules/@aws-solutions-constructs/core/lib/cloudfront-distribution-helper.d.ts +62 -0
- package/node_modules/@aws-solutions-constructs/core/lib/cloudfront-distribution-helper.js +202 -0
- package/node_modules/@aws-solutions-constructs/core/lib/cloudwatch-log-group-defaults.d.ts +17 -0
- package/node_modules/@aws-solutions-constructs/core/lib/cloudwatch-log-group-defaults.js +31 -0
- package/node_modules/@aws-solutions-constructs/core/lib/cloudwatch-log-group-helper.d.ts +18 -0
- package/node_modules/@aws-solutions-constructs/core/lib/cloudwatch-log-group-helper.js +54 -0
- package/node_modules/@aws-solutions-constructs/core/lib/cognito-defaults.d.ts +23 -0
- package/node_modules/@aws-solutions-constructs/core/lib/cognito-defaults.js +41 -0
- package/node_modules/@aws-solutions-constructs/core/lib/cognito-helper.d.ts +40 -0
- package/node_modules/@aws-solutions-constructs/core/lib/cognito-helper.js +125 -0
- package/node_modules/@aws-solutions-constructs/core/lib/dynamodb-table-defaults.d.ts +16 -0
- package/node_modules/@aws-solutions-constructs/core/lib/dynamodb-table-defaults.js +42 -0
- package/node_modules/@aws-solutions-constructs/core/lib/dynamodb-table-helper.d.ts +77 -0
- package/node_modules/@aws-solutions-constructs/core/lib/dynamodb-table-helper.js +90 -0
- package/node_modules/@aws-solutions-constructs/core/lib/elasticache-defaults.d.ts +27 -0
- package/node_modules/@aws-solutions-constructs/core/lib/elasticache-defaults.js +42 -0
- package/node_modules/@aws-solutions-constructs/core/lib/elasticache-helper.d.ts +34 -0
- package/node_modules/@aws-solutions-constructs/core/lib/elasticache-helper.js +78 -0
- package/node_modules/@aws-solutions-constructs/core/lib/elasticsearch-defaults.d.ts +19 -0
- package/node_modules/@aws-solutions-constructs/core/lib/elasticsearch-defaults.js +69 -0
- package/node_modules/@aws-solutions-constructs/core/lib/elasticsearch-helper.d.ts +40 -0
- package/node_modules/@aws-solutions-constructs/core/lib/elasticsearch-helper.js +254 -0
- package/node_modules/@aws-solutions-constructs/core/lib/eventbridge-helper.d.ts +37 -0
- package/node_modules/@aws-solutions-constructs/core/lib/eventbridge-helper.js +46 -0
- package/node_modules/@aws-solutions-constructs/core/lib/events-rule-defaults.d.ts +17 -0
- package/node_modules/@aws-solutions-constructs/core/lib/events-rule-defaults.js +27 -0
- package/node_modules/@aws-solutions-constructs/core/lib/fargate-defaults.d.ts +41 -0
- package/node_modules/@aws-solutions-constructs/core/lib/fargate-defaults.js +72 -0
- package/node_modules/@aws-solutions-constructs/core/lib/fargate-helper.d.ts +48 -0
- package/node_modules/@aws-solutions-constructs/core/lib/fargate-helper.js +194 -0
- package/node_modules/@aws-solutions-constructs/core/lib/glue-database-defaults.d.ts +17 -0
- package/node_modules/@aws-solutions-constructs/core/lib/glue-database-defaults.js +30 -0
- package/node_modules/@aws-solutions-constructs/core/lib/glue-database-helper.d.ts +23 -0
- package/node_modules/@aws-solutions-constructs/core/lib/glue-database-helper.js +33 -0
- package/node_modules/@aws-solutions-constructs/core/lib/glue-job-defaults.d.ts +19 -0
- package/node_modules/@aws-solutions-constructs/core/lib/glue-job-defaults.js +41 -0
- package/node_modules/@aws-solutions-constructs/core/lib/glue-job-helper.d.ts +125 -0
- package/node_modules/@aws-solutions-constructs/core/lib/glue-job-helper.js +210 -0
- package/node_modules/@aws-solutions-constructs/core/lib/glue-table-defaults.d.ts +17 -0
- package/node_modules/@aws-solutions-constructs/core/lib/glue-table-defaults.js +63 -0
- package/node_modules/@aws-solutions-constructs/core/lib/glue-table-helper.d.ts +38 -0
- package/node_modules/@aws-solutions-constructs/core/lib/glue-table-helper.js +68 -0
- package/node_modules/@aws-solutions-constructs/core/lib/iot-topic-rule-defaults.d.ts +17 -0
- package/node_modules/@aws-solutions-constructs/core/lib/iot-topic-rule-defaults.js +31 -0
- package/node_modules/@aws-solutions-constructs/core/lib/kendra-defaults.d.ts +17 -0
- package/node_modules/@aws-solutions-constructs/core/lib/kendra-defaults.js +28 -0
- package/node_modules/@aws-solutions-constructs/core/lib/kendra-helper.d.ts +36 -0
- package/node_modules/@aws-solutions-constructs/core/lib/kendra-helper.js +216 -0
- package/node_modules/@aws-solutions-constructs/core/lib/kinesis-analytics-defaults.d.ts +15 -0
- package/node_modules/@aws-solutions-constructs/core/lib/kinesis-analytics-defaults.js +20 -0
- package/node_modules/@aws-solutions-constructs/core/lib/kinesis-analytics-helper.d.ts +33 -0
- package/node_modules/@aws-solutions-constructs/core/lib/kinesis-analytics-helper.js +60 -0
- package/node_modules/@aws-solutions-constructs/core/lib/kinesis-firehose-s3-defaults.d.ts +18 -0
- package/node_modules/@aws-solutions-constructs/core/lib/kinesis-firehose-s3-defaults.js +44 -0
- package/node_modules/@aws-solutions-constructs/core/lib/kinesis-streams-defaults.d.ts +15 -0
- package/node_modules/@aws-solutions-constructs/core/lib/kinesis-streams-defaults.js +25 -0
- package/node_modules/@aws-solutions-constructs/core/lib/kinesis-streams-helper.d.ts +42 -0
- package/node_modules/@aws-solutions-constructs/core/lib/kinesis-streams-helper.js +88 -0
- package/node_modules/@aws-solutions-constructs/core/lib/kms-defaults.d.ts +15 -0
- package/node_modules/@aws-solutions-constructs/core/lib/kms-defaults.js +20 -0
- package/node_modules/@aws-solutions-constructs/core/lib/kms-helper.d.ts +18 -0
- package/node_modules/@aws-solutions-constructs/core/lib/kms-helper.js +35 -0
- package/node_modules/@aws-solutions-constructs/core/lib/lambda-defaults.d.ts +18 -0
- package/node_modules/@aws-solutions-constructs/core/lib/lambda-defaults.js +32 -0
- package/node_modules/@aws-solutions-constructs/core/lib/lambda-event-source-mapping-defaults.d.ts +32 -0
- package/node_modules/@aws-solutions-constructs/core/lib/lambda-event-source-mapping-defaults.js +80 -0
- package/node_modules/@aws-solutions-constructs/core/lib/lambda-helper.d.ts +60 -0
- package/node_modules/@aws-solutions-constructs/core/lib/lambda-helper.js +197 -0
- package/node_modules/@aws-solutions-constructs/core/lib/mediastore-defaults.d.ts +17 -0
- package/node_modules/@aws-solutions-constructs/core/lib/mediastore-defaults.js +72 -0
- package/node_modules/@aws-solutions-constructs/core/lib/mediastore-helper.d.ts +23 -0
- package/node_modules/@aws-solutions-constructs/core/lib/mediastore-helper.js +50 -0
- package/node_modules/@aws-solutions-constructs/core/lib/opensearch-defaults.d.ts +19 -0
- package/node_modules/@aws-solutions-constructs/core/lib/opensearch-defaults.js +72 -0
- package/node_modules/@aws-solutions-constructs/core/lib/opensearch-helper.d.ts +44 -0
- package/node_modules/@aws-solutions-constructs/core/lib/opensearch-helper.js +265 -0
- package/node_modules/@aws-solutions-constructs/core/lib/override-warning-service.d.ts +20 -0
- package/node_modules/@aws-solutions-constructs/core/lib/override-warning-service.js +96 -0
- package/node_modules/@aws-solutions-constructs/core/lib/s3-bucket-defaults.d.ts +19 -0
- package/node_modules/@aws-solutions-constructs/core/lib/s3-bucket-defaults.js +39 -0
- package/node_modules/@aws-solutions-constructs/core/lib/s3-bucket-helper.d.ts +69 -0
- package/node_modules/@aws-solutions-constructs/core/lib/s3-bucket-helper.js +233 -0
- package/node_modules/@aws-solutions-constructs/core/lib/s3-oac-origin.d.ts +33 -0
- package/node_modules/@aws-solutions-constructs/core/lib/s3-oac-origin.js +70 -0
- package/node_modules/@aws-solutions-constructs/core/lib/sagemaker-defaults.d.ts +29 -0
- package/node_modules/@aws-solutions-constructs/core/lib/sagemaker-defaults.js +67 -0
- package/node_modules/@aws-solutions-constructs/core/lib/sagemaker-helper.d.ts +119 -0
- package/node_modules/@aws-solutions-constructs/core/lib/sagemaker-helper.js +388 -0
- package/node_modules/@aws-solutions-constructs/core/lib/secretsmanager-defaults.d.ts +15 -0
- package/node_modules/@aws-solutions-constructs/core/lib/secretsmanager-defaults.js +21 -0
- package/node_modules/@aws-solutions-constructs/core/lib/secretsmanager-helper.d.ts +29 -0
- package/node_modules/@aws-solutions-constructs/core/lib/secretsmanager-helper.js +57 -0
- package/node_modules/@aws-solutions-constructs/core/lib/security-group-helper.d.ts +28 -0
- package/node_modules/@aws-solutions-constructs/core/lib/security-group-helper.js +76 -0
- package/node_modules/@aws-solutions-constructs/core/lib/sns-defaults.d.ts +15 -0
- package/node_modules/@aws-solutions-constructs/core/lib/sns-defaults.js +18 -0
- package/node_modules/@aws-solutions-constructs/core/lib/sns-helper.d.ts +73 -0
- package/node_modules/@aws-solutions-constructs/core/lib/sns-helper.js +142 -0
- package/node_modules/@aws-solutions-constructs/core/lib/sqs-defaults.d.ts +18 -0
- package/node_modules/@aws-solutions-constructs/core/lib/sqs-defaults.js +33 -0
- package/node_modules/@aws-solutions-constructs/core/lib/sqs-helper.d.ts +101 -0
- package/node_modules/@aws-solutions-constructs/core/lib/sqs-helper.js +180 -0
- package/node_modules/@aws-solutions-constructs/core/lib/ssm-string-parameter-helper.d.ts +24 -0
- package/node_modules/@aws-solutions-constructs/core/lib/ssm-string-parameter-helper.js +34 -0
- package/node_modules/@aws-solutions-constructs/core/lib/step-function-defaults.d.ts +18 -0
- package/node_modules/@aws-solutions-constructs/core/lib/step-function-defaults.js +34 -0
- package/node_modules/@aws-solutions-constructs/core/lib/step-function-helper.d.ts +32 -0
- package/node_modules/@aws-solutions-constructs/core/lib/step-function-helper.js +140 -0
- package/node_modules/@aws-solutions-constructs/core/lib/utils.d.ts +95 -0
- package/node_modules/@aws-solutions-constructs/core/lib/utils.js +233 -0
- package/node_modules/@aws-solutions-constructs/core/lib/vpc-defaults.d.ts +25 -0
- package/node_modules/@aws-solutions-constructs/core/lib/vpc-defaults.js +65 -0
- package/node_modules/@aws-solutions-constructs/core/lib/vpc-helper.d.ts +67 -0
- package/node_modules/@aws-solutions-constructs/core/lib/vpc-helper.js +228 -0
- package/node_modules/@aws-solutions-constructs/core/lib/waf-defaults.d.ts +36 -0
- package/node_modules/@aws-solutions-constructs/core/lib/waf-defaults.js +71 -0
- package/node_modules/@aws-solutions-constructs/core/lib/waf-helper.d.ts +33 -0
- package/node_modules/@aws-solutions-constructs/core/lib/waf-helper.js +47 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/ansi-regex/index.js +4 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/ansi-regex/license +21 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/ansi-regex/package.json +64 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/ansi-regex/readme.md +39 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/aproba/LICENSE +14 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/aproba/README.md +94 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/aproba/index.js +105 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/aproba/package.json +34 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/are-we-there-yet/CHANGES.md +37 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/are-we-there-yet/LICENSE +5 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/are-we-there-yet/README.md +195 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/are-we-there-yet/index.js +4 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/are-we-there-yet/package.json +35 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/are-we-there-yet/tracker-base.js +11 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/are-we-there-yet/tracker-group.js +107 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/are-we-there-yet/tracker-stream.js +36 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/are-we-there-yet/tracker.js +30 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/code-point-at/index.js +32 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/code-point-at/license +21 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/code-point-at/package.json +38 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/code-point-at/readme.md +32 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/console-control-strings/LICENSE +13 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/console-control-strings/README.md +145 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/console-control-strings/index.js +125 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/console-control-strings/package.json +27 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/core-util-is/LICENSE +19 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/core-util-is/README.md +3 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/core-util-is/lib/util.js +107 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/core-util-is/package.json +38 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/.circleci/config.yml +76 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/.eslintrc +72 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/.vscode/launch.json +30 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/.vscode/tasks.json +12 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/ChangeLog.md +63 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/LICENSE +7 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/Readme.md +239 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/dist/deep-diff.min.js +1 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/dist/deep-diff.min.js.map +1 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/apply-diff-from-any.js +39 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/array-change.js +45 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/capture_change_apply_elsewhere.js +53 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/diff-ignoring-fun.js +88 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/diff-scenarios.js +49 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/example1.js +41 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-111.js +6 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-113-1.js +14 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-113-2.js +11 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-115.js +17 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-124.js +8 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-125.js +19 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-126.js +33 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-35.js +11 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-47.js +17 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-48.js +48 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-62.js +14 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-70.js +6 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-71.js +15 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-72.js +21 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-74.js +9 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-78.js +24 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-83.js +11 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-88.js +26 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/performance.js +64 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/practice-data.json +2501 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/index.js +526 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/package.json +74 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/test/.eslintrc +10 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/test/tests.html +34 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/test/tests.js +759 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deepmerge/.editorconfig +7 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deepmerge/.eslintcache +1 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deepmerge/changelog.md +167 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deepmerge/dist/cjs.js +133 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deepmerge/dist/umd.js +139 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deepmerge/index.d.ts +20 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deepmerge/index.js +106 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deepmerge/license.txt +21 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deepmerge/package.json +42 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deepmerge/readme.md +264 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/deepmerge/rollup.config.js +22 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/delegates/.npmignore +1 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/delegates/History.md +22 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/delegates/License +20 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/delegates/Makefile +8 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/delegates/Readme.md +94 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/delegates/index.js +121 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/delegates/package.json +13 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/delegates/test/index.js +94 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/emoji-regex/README.md +73 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/emoji-regex/es2015/index.js +6 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/emoji-regex/es2015/text.js +6 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/emoji-regex/index.d.ts +23 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/emoji-regex/index.js +6 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/emoji-regex/package.json +50 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/emoji-regex/text.js +6 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/CHANGELOG.md +160 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/LICENSE +13 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/README.md +399 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/base-theme.js +14 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/error.js +24 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/has-color.js +12 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/index.js +233 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/package.json +63 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/plumbing.js +48 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/process.js +3 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/progress-bar.js +35 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/render-template.js +181 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/set-immediate.js +7 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/set-interval.js +3 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/spin.js +5 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/template-item.js +73 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/theme-set.js +115 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/themes.js +54 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/wide-truncate.js +25 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/has-unicode/LICENSE +14 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/has-unicode/README.md +43 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/has-unicode/index.js +16 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/has-unicode/package.json +30 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/inherits/LICENSE +16 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/inherits/README.md +42 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/inherits/inherits.js +9 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/inherits/inherits_browser.js +27 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/inherits/package.json +29 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/is-fullwidth-code-point/index.js +46 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/is-fullwidth-code-point/license +21 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/is-fullwidth-code-point/package.json +45 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/is-fullwidth-code-point/readme.md +39 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/isarray/.npmignore +1 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/isarray/.travis.yml +4 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/isarray/Makefile +6 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/isarray/README.md +60 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/isarray/component.json +19 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/isarray/index.js +5 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/isarray/package.json +45 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/isarray/test.js +20 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/npmlog/LICENSE +15 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/npmlog/README.md +216 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/npmlog/log.js +309 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/npmlog/package.json +28 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/number-is-nan/index.js +4 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/number-is-nan/license +21 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/number-is-nan/package.json +35 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/number-is-nan/readme.md +28 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/object-assign/index.js +90 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/object-assign/license +21 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/object-assign/package.json +42 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/object-assign/readme.md +61 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/process-nextick-args/index.js +45 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/process-nextick-args/license.md +19 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/process-nextick-args/package.json +25 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/process-nextick-args/readme.md +18 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/.travis.yml +34 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/LICENSE +47 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/README.md +58 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/duplex-browser.js +1 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/duplex.js +1 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/lib/_stream_duplex.js +131 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/lib/_stream_passthrough.js +47 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/lib/_stream_readable.js +1019 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/lib/_stream_transform.js +214 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/lib/_stream_writable.js +685 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/lib/internal/streams/BufferList.js +78 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/lib/internal/streams/destroy.js +84 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/package.json +52 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/passthrough.js +1 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/readable-browser.js +7 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/readable.js +19 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/transform.js +1 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/writable-browser.js +1 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/writable.js +8 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/safe-buffer/LICENSE +21 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/safe-buffer/README.md +584 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/safe-buffer/index.d.ts +187 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/safe-buffer/index.js +62 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/safe-buffer/package.json +37 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/set-blocking/LICENSE.txt +14 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/set-blocking/README.md +31 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/set-blocking/index.js +7 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/set-blocking/package.json +42 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/signal-exit/LICENSE.txt +16 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/signal-exit/README.md +39 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/signal-exit/index.js +202 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/signal-exit/package.json +38 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/signal-exit/signals.js +53 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/string-width/index.js +37 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/string-width/license +21 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/string-width/package.json +56 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/string-width/readme.md +42 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/string_decoder/.travis.yml +50 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/string_decoder/LICENSE +48 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/string_decoder/README.md +47 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/string_decoder/lib/string_decoder.js +296 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/string_decoder/package.json +31 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/strip-ansi/index.js +6 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/strip-ansi/license +21 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/strip-ansi/package.json +57 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/strip-ansi/readme.md +33 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/util-deprecate/History.md +16 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/util-deprecate/LICENSE +24 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/util-deprecate/README.md +53 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/util-deprecate/browser.js +67 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/util-deprecate/node.js +6 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/util-deprecate/package.json +27 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/LICENSE +14 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/README.md +47 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/align.js +65 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/ansi-regex/index.d.ts +37 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/ansi-regex/index.js +10 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/ansi-regex/license +9 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/ansi-regex/package.json +55 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/ansi-regex/readme.md +78 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/is-fullwidth-code-point/index.d.ts +17 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/is-fullwidth-code-point/index.js +50 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/is-fullwidth-code-point/license +9 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/is-fullwidth-code-point/package.json +42 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/is-fullwidth-code-point/readme.md +39 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/string-width/index.d.ts +29 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/string-width/index.js +47 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/string-width/license +9 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/string-width/package.json +56 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/string-width/readme.md +50 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/strip-ansi/index.d.ts +17 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/strip-ansi/index.js +4 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/strip-ansi/license +9 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/strip-ansi/package.json +54 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/strip-ansi/readme.md +46 -0
- package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/package.json +33 -0
- package/node_modules/@aws-solutions-constructs/core/package.json +91 -0
- package/node_modules/@aws-solutions-constructs/core/test/alb-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/alb-helper.test.js +475 -0
- package/node_modules/@aws-solutions-constructs/core/test/apigateway-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/apigateway-helper.test.js +739 -0
- package/node_modules/@aws-solutions-constructs/core/test/cloudfront-distribution-api-gateway-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/cloudfront-distribution-api-gateway-helper.test.js +497 -0
- package/node_modules/@aws-solutions-constructs/core/test/cloudfront-distribution-mediastore-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/cloudfront-distribution-mediastore-helper.test.js +606 -0
- package/node_modules/@aws-solutions-constructs/core/test/cloudfront-distribution-s3-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/cloudfront-distribution-s3-helper.test.js +416 -0
- package/node_modules/@aws-solutions-constructs/core/test/cloudwatch-log-group-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/cloudwatch-log-group-helper.test.js +59 -0
- package/node_modules/@aws-solutions-constructs/core/test/congnito-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/congnito-helper.test.js +171 -0
- package/node_modules/@aws-solutions-constructs/core/test/dynamo-table.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/dynamo-table.test.js +383 -0
- package/node_modules/@aws-solutions-constructs/core/test/elasticache-defaults.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/elasticache-defaults.test.js +31 -0
- package/node_modules/@aws-solutions-constructs/core/test/elasticache-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/elasticache-helper.test.js +94 -0
- package/node_modules/@aws-solutions-constructs/core/test/elasticsearch-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/elasticsearch-helper.test.js +454 -0
- package/node_modules/@aws-solutions-constructs/core/test/eventbridge-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/eventbridge-helper.test.js +77 -0
- package/node_modules/@aws-solutions-constructs/core/test/events-rule.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/events-rule.test.js +85 -0
- package/node_modules/@aws-solutions-constructs/core/test/fargate-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/fargate-helper.test.js +355 -0
- package/node_modules/@aws-solutions-constructs/core/test/glue-job-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/glue-job-helper.test.js +595 -0
- package/node_modules/@aws-solutions-constructs/core/test/glue-table-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/glue-table-helper.test.js +188 -0
- package/node_modules/@aws-solutions-constructs/core/test/iot-rule.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/iot-rule.test.js +84 -0
- package/node_modules/@aws-solutions-constructs/core/test/kendra-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/kendra-helper.test.js +489 -0
- package/node_modules/@aws-solutions-constructs/core/test/kinesis-analytics.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/kinesis-analytics.test.js +154 -0
- package/node_modules/@aws-solutions-constructs/core/test/kinesis-firehose-s3-defaults.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/kinesis-firehose-s3-defaults.test.js +76 -0
- package/node_modules/@aws-solutions-constructs/core/test/kinesis-streams-defaults.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/kinesis-streams-defaults.test.js +32 -0
- package/node_modules/@aws-solutions-constructs/core/test/kinesis-streams-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/kinesis-streams-helper.test.js +99 -0
- package/node_modules/@aws-solutions-constructs/core/test/kms-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/kms-helper.test.js +51 -0
- package/node_modules/@aws-solutions-constructs/core/test/lambda/index.js +10 -0
- package/node_modules/@aws-solutions-constructs/core/test/lambda-event-source.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/lambda-event-source.test.js +131 -0
- package/node_modules/@aws-solutions-constructs/core/test/lambda-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/lambda-helper.test.js +486 -0
- package/node_modules/@aws-solutions-constructs/core/test/lambda-test/index.js +7 -0
- package/node_modules/@aws-solutions-constructs/core/test/mediastore-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/mediastore-helper.test.js +67 -0
- package/node_modules/@aws-solutions-constructs/core/test/opensearch-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/opensearch-helper.test.js +416 -0
- package/node_modules/@aws-solutions-constructs/core/test/override-warning-service.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/override-warning-service.test.js +224 -0
- package/node_modules/@aws-solutions-constructs/core/test/s3-bucket-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/s3-bucket-helper.test.js +430 -0
- package/node_modules/@aws-solutions-constructs/core/test/s3-bucket.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/s3-bucket.test.js +384 -0
- package/node_modules/@aws-solutions-constructs/core/test/sagemaker-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/sagemaker-helper.test.js +244 -0
- package/node_modules/@aws-solutions-constructs/core/test/secretsmanager-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/secretsmanager-helper.test.js +66 -0
- package/node_modules/@aws-solutions-constructs/core/test/security-group-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/security-group-helper.test.js +118 -0
- package/node_modules/@aws-solutions-constructs/core/test/sns-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/sns-helper.test.js +367 -0
- package/node_modules/@aws-solutions-constructs/core/test/sqs-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/sqs-helper.test.js +287 -0
- package/node_modules/@aws-solutions-constructs/core/test/ssm-string-parameter-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/ssm-string-parameter-helper.test.js +32 -0
- package/node_modules/@aws-solutions-constructs/core/test/step-function-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/step-function-helper.test.js +204 -0
- package/node_modules/@aws-solutions-constructs/core/test/test-helper.d.ts +50 -0
- package/node_modules/@aws-solutions-constructs/core/test/test-helper.js +244 -0
- package/node_modules/@aws-solutions-constructs/core/test/utils.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/utils.test.js +193 -0
- package/node_modules/@aws-solutions-constructs/core/test/vpc-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/vpc-helper.test.js +251 -0
- package/node_modules/@aws-solutions-constructs/core/test/waf-helper.test.d.ts +13 -0
- package/node_modules/@aws-solutions-constructs/core/test/waf-helper.test.js +305 -0
- package/node_modules/@gemeentenijmegen/apiclient/.env +9 -0
- package/node_modules/@gemeentenijmegen/apiclient/.gitattributes +23 -0
- package/node_modules/@gemeentenijmegen/apiclient/LICENSE +287 -0
- package/node_modules/@gemeentenijmegen/apiclient/README.md +33 -0
- package/node_modules/@gemeentenijmegen/apiclient/lib/index.d.ts +54 -0
- package/node_modules/@gemeentenijmegen/apiclient/lib/index.js +174 -0
- package/node_modules/@gemeentenijmegen/apiclient/package.json +101 -0
- package/node_modules/@gemeentenijmegen/apigateway-http/.gitattributes +23 -0
- package/node_modules/@gemeentenijmegen/apigateway-http/LICENSE +287 -0
- package/node_modules/@gemeentenijmegen/apigateway-http/README.md +25 -0
- package/node_modules/@gemeentenijmegen/apigateway-http/lib/V2/Response.d.ts +16 -0
- package/node_modules/@gemeentenijmegen/apigateway-http/lib/V2/Response.js +67 -0
- package/node_modules/@gemeentenijmegen/apigateway-http/lib/index.d.ts +1 -0
- package/node_modules/@gemeentenijmegen/apigateway-http/lib/index.js +18 -0
- package/node_modules/@gemeentenijmegen/apigateway-http/package.json +96 -0
- package/node_modules/@gemeentenijmegen/session/.gitattributes +23 -0
- package/node_modules/@gemeentenijmegen/session/LICENSE +287 -0
- package/node_modules/@gemeentenijmegen/session/README.md +45 -0
- package/node_modules/@gemeentenijmegen/session/lib/index.d.ts +60 -0
- package/node_modules/@gemeentenijmegen/session/lib/index.js +178 -0
- package/node_modules/@gemeentenijmegen/session/node_modules/cookie/HISTORY.md +142 -0
- package/node_modules/@gemeentenijmegen/session/node_modules/cookie/LICENSE +24 -0
- package/node_modules/@gemeentenijmegen/session/node_modules/cookie/README.md +302 -0
- package/node_modules/@gemeentenijmegen/session/node_modules/cookie/SECURITY.md +25 -0
- package/node_modules/@gemeentenijmegen/session/node_modules/cookie/index.js +270 -0
- package/node_modules/@gemeentenijmegen/session/node_modules/cookie/package.json +44 -0
- package/node_modules/@gemeentenijmegen/session/package.json +99 -0
- package/node_modules/@gemeentenijmegen/utils/.gitattributes +23 -0
- package/node_modules/@gemeentenijmegen/utils/LICENSE +287 -0
- package/node_modules/@gemeentenijmegen/utils/README.md +31 -0
- package/node_modules/@gemeentenijmegen/utils/lib/AWS.d.ts +18 -0
- package/node_modules/@gemeentenijmegen/utils/lib/AWS.js +42 -0
- package/node_modules/@gemeentenijmegen/utils/lib/Bsn.d.ts +25 -0
- package/node_modules/@gemeentenijmegen/utils/lib/Bsn.js +59 -0
- package/node_modules/@gemeentenijmegen/utils/lib/index.d.ts +2 -0
- package/node_modules/@gemeentenijmegen/utils/lib/index.js +8 -0
- package/node_modules/@gemeentenijmegen/utils/package.json +98 -0
- package/node_modules/@smithy/abort-controller/LICENSE +201 -0
- package/node_modules/@smithy/abort-controller/README.md +4 -0
- package/node_modules/@smithy/abort-controller/dist-cjs/AbortController.js +1 -0
- package/node_modules/@smithy/abort-controller/dist-cjs/AbortSignal.js +1 -0
- package/node_modules/@smithy/abort-controller/dist-cjs/index.js +85 -0
- package/node_modules/@smithy/abort-controller/dist-es/AbortController.js +9 -0
- package/node_modules/@smithy/abort-controller/dist-es/AbortSignal.js +20 -0
- package/node_modules/@smithy/abort-controller/dist-es/index.js +2 -0
- package/node_modules/@smithy/abort-controller/dist-types/AbortController.d.ts +13 -0
- package/node_modules/@smithy/abort-controller/dist-types/AbortSignal.d.ts +18 -0
- package/node_modules/@smithy/abort-controller/dist-types/index.d.ts +9 -0
- package/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortController.d.ts +13 -0
- package/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortSignal.d.ts +18 -0
- package/node_modules/@smithy/abort-controller/dist-types/ts3.4/index.d.ts +9 -0
- package/node_modules/@smithy/abort-controller/package.json +62 -0
- package/node_modules/@smithy/config-resolver/LICENSE +201 -0
- package/node_modules/@smithy/config-resolver/README.md +10 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/index.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/resolveCustomEndpointsConfig.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/resolveEndpointsConfig.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/utils/getEndpointFromRegion.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/index.js +235 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/config.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/getRealRegion.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/index.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/isFipsRegion.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/resolveRegionConfig.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/EndpointVariant.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/EndpointVariantTag.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/PartitionHash.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/RegionHash.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getHostnameFromVariants.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getRegionInfo.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getResolvedHostname.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getResolvedPartition.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getResolvedSigningRegion.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/index.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +9 -0
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +9 -0
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/index.js +4 -0
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveCustomEndpointsConfig.js +11 -0
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js +15 -0
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/utils/getEndpointFromRegion.js +15 -0
- package/node_modules/@smithy/config-resolver/dist-es/index.js +3 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionConfig/config.js +12 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionConfig/getRealRegion.js +6 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionConfig/index.js +2 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionConfig/isFipsRegion.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionConfig/resolveRegionConfig.js +25 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionInfo/EndpointVariant.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionInfo/EndpointVariantTag.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionInfo/PartitionHash.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionInfo/RegionHash.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getHostnameFromVariants.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getRegionInfo.js +29 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedHostname.js +5 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedPartition.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedSigningRegion.js +12 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionInfo/index.js +3 -0
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +17 -0
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +17 -0
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/index.d.ts +16 -0
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveCustomEndpointsConfig.d.ts +29 -0
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveEndpointsConfig.d.ts +51 -0
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/utils/getEndpointFromRegion.d.ts +11 -0
- package/node_modules/@smithy/config-resolver/dist-types/index.d.ts +12 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionConfig/config.d.ts +17 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionConfig/getRealRegion.d.ts +4 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionConfig/index.d.ts +8 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionConfig/isFipsRegion.d.ts +4 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionConfig/resolveRegionConfig.d.ts +34 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/EndpointVariant.d.ts +10 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/EndpointVariantTag.d.ts +7 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/PartitionHash.d.ts +14 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/RegionHash.d.ts +12 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getHostnameFromVariants.d.ts +12 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getRegionInfo.d.ts +17 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedHostname.d.ts +11 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedPartition.d.ts +11 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedSigningRegion.d.ts +12 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/index.d.ts +12 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +17 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +17 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/index.d.ts +16 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/resolveCustomEndpointsConfig.d.ts +29 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/resolveEndpointsConfig.d.ts +51 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/utils/getEndpointFromRegion.d.ts +11 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/index.d.ts +12 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/config.d.ts +17 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/getRealRegion.d.ts +4 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/index.d.ts +8 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/isFipsRegion.d.ts +4 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/resolveRegionConfig.d.ts +34 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariant.d.ts +10 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariantTag.d.ts +7 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/PartitionHash.d.ts +14 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/RegionHash.d.ts +12 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getHostnameFromVariants.d.ts +12 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getRegionInfo.d.ts +17 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedHostname.d.ts +11 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedPartition.d.ts +11 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedSigningRegion.d.ts +12 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/index.d.ts +12 -0
- package/node_modules/@smithy/config-resolver/package.json +64 -0
- package/node_modules/@smithy/core/LICENSE +201 -0
- package/node_modules/@smithy/core/README.md +12 -0
- package/node_modules/@smithy/core/dist-cjs/getSmithyContext.js +1 -0
- package/node_modules/@smithy/core/dist-cjs/index.js +482 -0
- package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.js +1 -0
- package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/getHttpAuthSchemePlugin.js +1 -0
- package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +1 -0
- package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/index.js +1 -0
- package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/getHttpSigningMiddleware.js +1 -0
- package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/httpSigningMiddleware.js +1 -0
- package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/index.js +1 -0
- package/node_modules/@smithy/core/dist-cjs/normalizeProvider.js +1 -0
- package/node_modules/@smithy/core/dist-cjs/pagination/createPaginator.js +1 -0
- package/node_modules/@smithy/core/dist-cjs/protocols/requestBuilder.js +1 -0
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/DefaultIdentityProviderConfig.js +1 -0
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js +1 -0
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js +1 -0
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/index.js +1 -0
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/noAuth.js +1 -0
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/index.js +1 -0
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/memoizeIdentityProvider.js +1 -0
- package/node_modules/@smithy/core/dist-es/getSmithyContext.js +2 -0
- package/node_modules/@smithy/core/dist-es/index.js +7 -0
- package/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.js +18 -0
- package/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/getHttpAuthSchemePlugin.js +18 -0
- package/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +40 -0
- package/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/index.js +3 -0
- package/node_modules/@smithy/core/dist-es/middleware-http-signing/getHttpSigningMiddleware.js +16 -0
- package/node_modules/@smithy/core/dist-es/middleware-http-signing/httpSigningMiddleware.js +24 -0
- package/node_modules/@smithy/core/dist-es/middleware-http-signing/index.js +2 -0
- package/node_modules/@smithy/core/dist-es/normalizeProvider.js +6 -0
- package/node_modules/@smithy/core/dist-es/pagination/createPaginator.js +27 -0
- package/node_modules/@smithy/core/dist-es/protocols/requestBuilder.js +67 -0
- package/node_modules/@smithy/core/dist-es/util-identity-and-auth/DefaultIdentityProviderConfig.js +13 -0
- package/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js +33 -0
- package/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js +10 -0
- package/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/index.js +3 -0
- package/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/noAuth.js +5 -0
- package/node_modules/@smithy/core/dist-es/util-identity-and-auth/index.js +3 -0
- package/node_modules/@smithy/core/dist-es/util-identity-and-auth/memoizeIdentityProvider.js +53 -0
- package/node_modules/@smithy/core/dist-types/getSmithyContext.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/index.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/getHttpAuthSchemePlugin.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/httpAuthSchemeMiddleware.d.ts +32 -0
- package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/index.d.ts +3 -0
- package/node_modules/@smithy/core/dist-types/middleware-http-signing/getHttpSigningMiddleware.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/middleware-http-signing/httpSigningMiddleware.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/middleware-http-signing/index.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/normalizeProvider.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/pagination/createPaginator.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/protocols/requestBuilder.d.ts +51 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/getSmithyContext.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/index.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/getHttpAuthSchemePlugin.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/httpAuthSchemeMiddleware.d.ts +32 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/index.d.ts +3 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-signing/getHttpSigningMiddleware.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-signing/httpSigningMiddleware.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-signing/index.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/normalizeProvider.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/pagination/createPaginator.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/protocols/requestBuilder.d.ts +51 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/DefaultIdentityProviderConfig.d.ts +15 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/index.d.ts +3 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/noAuth.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/index.d.ts +3 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/memoizeIdentityProvider.d.ts +30 -0
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/DefaultIdentityProviderConfig.d.ts +15 -0
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/index.d.ts +3 -0
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/noAuth.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/index.d.ts +3 -0
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/memoizeIdentityProvider.d.ts +30 -0
- package/node_modules/@smithy/core/package.json +67 -0
- package/node_modules/@smithy/credential-provider-imds/LICENSE +201 -0
- package/node_modules/@smithy/credential-provider-imds/README.md +11 -0
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/config/Endpoint.js +1 -0
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/config/EndpointConfigOptions.js +1 -0
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/config/EndpointMode.js +1 -0
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/config/EndpointModeConfigOptions.js +1 -0
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/error/InstanceMetadataV1FallbackError.js +1 -0
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/fromContainerMetadata.js +1 -0
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/fromInstanceMetadata.js +1 -0
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/index.js +427 -0
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/ImdsCredentials.js +1 -0
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/RemoteProviderInit.js +1 -0
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/httpRequest.js +1 -0
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/index.js +1 -0
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/retry.js +1 -0
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/types.js +1 -0
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/utils/getExtendedInstanceMetadataCredentials.js +1 -0
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/utils/getInstanceMetadataEndpoint.js +1 -0
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/utils/staticStabilityProvider.js +1 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/config/Endpoint.js +5 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointConfigOptions.js +7 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointMode.js +5 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointModeConfigOptions.js +8 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/error/InstanceMetadataV1FallbackError.js +9 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/fromContainerMetadata.js +66 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/fromInstanceMetadata.js +132 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/index.js +6 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/ImdsCredentials.js +12 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/RemoteProviderInit.js +3 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/httpRequest.js +36 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/index.js +2 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/retry.js +7 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/types.js +1 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/utils/getExtendedInstanceMetadataCredentials.js +17 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/utils/getInstanceMetadataEndpoint.js +19 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/utils/staticStabilityProvider.js +25 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/config/Endpoint.d.ts +7 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointConfigOptions.d.ts +13 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointMode.d.ts +7 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointModeConfigOptions.d.ts +13 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/error/InstanceMetadataV1FallbackError.d.ts +12 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/fromContainerMetadata.d.ts +21 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/fromInstanceMetadata.d.ts +10 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/index.d.ts +24 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/ImdsCredentials.d.ts +18 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/RemoteProviderInit.d.ts +40 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/httpRequest.d.ts +7 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/index.d.ts +8 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/retry.d.ts +10 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/Endpoint.d.ts +7 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointConfigOptions.d.ts +13 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointMode.d.ts +7 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointModeConfigOptions.d.ts +13 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/error/InstanceMetadataV1FallbackError.d.ts +12 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/fromContainerMetadata.d.ts +21 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/fromInstanceMetadata.d.ts +10 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/index.d.ts +24 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/ImdsCredentials.d.ts +18 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/RemoteProviderInit.d.ts +40 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/httpRequest.d.ts +6 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/index.d.ts +8 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/retry.d.ts +10 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/types.d.ts +7 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/getExtendedInstanceMetadataCredentials.d.ts +6 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/getInstanceMetadataEndpoint.d.ts +21 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/staticStabilityProvider.d.ts +16 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/types.d.ts +7 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/utils/getExtendedInstanceMetadataCredentials.d.ts +6 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/utils/getInstanceMetadataEndpoint.d.ts +21 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/utils/staticStabilityProvider.d.ts +16 -0
- package/node_modules/@smithy/credential-provider-imds/package.json +70 -0
- package/node_modules/@smithy/eventstream-codec/LICENSE +201 -0
- package/node_modules/@smithy/eventstream-codec/README.md +4 -0
- package/node_modules/@smithy/eventstream-codec/dist-cjs/EventStreamCodec.js +1 -0
- package/node_modules/@smithy/eventstream-codec/dist-cjs/HeaderMarshaller.js +1 -0
- package/node_modules/@smithy/eventstream-codec/dist-cjs/Int64.js +1 -0
- package/node_modules/@smithy/eventstream-codec/dist-cjs/Message.js +1 -0
- package/node_modules/@smithy/eventstream-codec/dist-cjs/MessageDecoderStream.js +1 -0
- package/node_modules/@smithy/eventstream-codec/dist-cjs/MessageEncoderStream.js +1 -0
- package/node_modules/@smithy/eventstream-codec/dist-cjs/SmithyMessageDecoderStream.js +1 -0
- package/node_modules/@smithy/eventstream-codec/dist-cjs/SmithyMessageEncoderStream.js +1 -0
- package/node_modules/@smithy/eventstream-codec/dist-cjs/TestVectors.fixture.js +1 -0
- package/node_modules/@smithy/eventstream-codec/dist-cjs/index.js +468 -0
- package/node_modules/@smithy/eventstream-codec/dist-cjs/splitMessage.js +1 -0
- package/node_modules/@smithy/eventstream-codec/dist-cjs/vectorTypes.fixture.js +1 -0
- package/node_modules/@smithy/eventstream-codec/dist-es/EventStreamCodec.js +62 -0
- package/node_modules/@smithy/eventstream-codec/dist-es/HeaderMarshaller.js +182 -0
- package/node_modules/@smithy/eventstream-codec/dist-es/Int64.js +43 -0
- package/node_modules/@smithy/eventstream-codec/dist-es/Message.js +1 -0
- package/node_modules/@smithy/eventstream-codec/dist-es/MessageDecoderStream.js +14 -0
- package/node_modules/@smithy/eventstream-codec/dist-es/MessageEncoderStream.js +17 -0
- package/node_modules/@smithy/eventstream-codec/dist-es/SmithyMessageDecoderStream.js +16 -0
- package/node_modules/@smithy/eventstream-codec/dist-es/SmithyMessageEncoderStream.js +14 -0
- package/node_modules/@smithy/eventstream-codec/dist-es/TestVectors.fixture.js +690 -0
- package/node_modules/@smithy/eventstream-codec/dist-es/index.js +8 -0
- package/node_modules/@smithy/eventstream-codec/dist-es/splitMessage.js +30 -0
- package/node_modules/@smithy/eventstream-codec/dist-es/vectorTypes.fixture.js +1 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/EventStreamCodec.d.ts +31 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/HeaderMarshaller.d.ts +12 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/Int64.d.ts +20 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/Message.d.ts +26 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/MessageDecoderStream.d.ts +17 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/MessageEncoderStream.d.ts +18 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/SmithyMessageDecoderStream.d.ts +17 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/SmithyMessageEncoderStream.d.ts +17 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/TestVectors.fixture.d.ts +2 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/index.d.ts +8 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/splitMessage.d.ts +11 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/EventStreamCodec.d.ts +31 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/HeaderMarshaller.d.ts +12 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/Int64.d.ts +20 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/Message.d.ts +26 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/MessageDecoderStream.d.ts +17 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/MessageEncoderStream.d.ts +18 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/SmithyMessageDecoderStream.d.ts +17 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/SmithyMessageEncoderStream.d.ts +17 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/TestVectors.fixture.d.ts +2 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/index.d.ts +8 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/splitMessage.d.ts +11 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/vectorTypes.fixture.d.ts +12 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/vectorTypes.fixture.d.ts +12 -0
- package/node_modules/@smithy/eventstream-codec/package.json +61 -0
- package/node_modules/@smithy/fetch-http-handler/LICENSE +201 -0
- package/node_modules/@smithy/fetch-http-handler/README.md +4 -0
- package/node_modules/@smithy/fetch-http-handler/dist-cjs/fetch-http-handler.js +1 -0
- package/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +220 -0
- package/node_modules/@smithy/fetch-http-handler/dist-cjs/request-timeout.js +1 -0
- package/node_modules/@smithy/fetch-http-handler/dist-cjs/stream-collector.js +1 -0
- package/node_modules/@smithy/fetch-http-handler/dist-es/fetch-http-handler.js +111 -0
- package/node_modules/@smithy/fetch-http-handler/dist-es/index.js +2 -0
- package/node_modules/@smithy/fetch-http-handler/dist-es/request-timeout.js +11 -0
- package/node_modules/@smithy/fetch-http-handler/dist-es/stream-collector.js +45 -0
- package/node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts +33 -0
- package/node_modules/@smithy/fetch-http-handler/dist-types/index.d.ts +2 -0
- package/node_modules/@smithy/fetch-http-handler/dist-types/request-timeout.d.ts +1 -0
- package/node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts +2 -0
- package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/fetch-http-handler.d.ts +33 -0
- package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/request-timeout.d.ts +1 -0
- package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/stream-collector.d.ts +2 -0
- package/node_modules/@smithy/fetch-http-handler/package.json +79 -0
- package/node_modules/@smithy/hash-node/LICENSE +201 -0
- package/node_modules/@smithy/hash-node/README.md +10 -0
- package/node_modules/@smithy/hash-node/dist-cjs/index.js +66 -0
- package/node_modules/@smithy/hash-node/dist-es/index.js +34 -0
- package/node_modules/@smithy/hash-node/dist-types/index.d.ts +13 -0
- package/node_modules/@smithy/hash-node/dist-types/ts3.4/index.d.ts +13 -0
- package/node_modules/@smithy/hash-node/package.json +64 -0
- package/node_modules/@smithy/invalid-dependency/LICENSE +201 -0
- package/node_modules/@smithy/invalid-dependency/README.md +10 -0
- package/node_modules/@smithy/invalid-dependency/dist-cjs/index.js +41 -0
- package/node_modules/@smithy/invalid-dependency/dist-cjs/invalidFunction.js +1 -0
- package/node_modules/@smithy/invalid-dependency/dist-cjs/invalidProvider.js +1 -0
- package/node_modules/@smithy/invalid-dependency/dist-es/index.js +2 -0
- package/node_modules/@smithy/invalid-dependency/dist-es/invalidFunction.js +3 -0
- package/node_modules/@smithy/invalid-dependency/dist-es/invalidProvider.js +1 -0
- package/node_modules/@smithy/invalid-dependency/dist-types/index.d.ts +8 -0
- package/node_modules/@smithy/invalid-dependency/dist-types/invalidFunction.d.ts +4 -0
- package/node_modules/@smithy/invalid-dependency/dist-types/invalidProvider.d.ts +5 -0
- package/node_modules/@smithy/invalid-dependency/dist-types/ts3.4/index.d.ts +8 -0
- package/node_modules/@smithy/invalid-dependency/dist-types/ts3.4/invalidFunction.d.ts +4 -0
- package/node_modules/@smithy/invalid-dependency/dist-types/ts3.4/invalidProvider.d.ts +5 -0
- package/node_modules/@smithy/invalid-dependency/package.json +57 -0
- package/node_modules/@smithy/is-array-buffer/LICENSE +201 -0
- package/node_modules/@smithy/is-array-buffer/README.md +10 -0
- package/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +32 -0
- package/node_modules/@smithy/is-array-buffer/dist-es/index.js +2 -0
- package/node_modules/@smithy/is-array-buffer/dist-types/index.d.ts +4 -0
- package/node_modules/@smithy/is-array-buffer/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@smithy/is-array-buffer/package.json +60 -0
- package/node_modules/@smithy/middleware-content-length/LICENSE +201 -0
- package/node_modules/@smithy/middleware-content-length/README.md +4 -0
- package/node_modules/@smithy/middleware-content-length/dist-cjs/index.js +71 -0
- package/node_modules/@smithy/middleware-content-length/dist-es/index.js +39 -0
- package/node_modules/@smithy/middleware-content-length/dist-types/index.d.ts +6 -0
- package/node_modules/@smithy/middleware-content-length/dist-types/ts3.4/index.d.ts +6 -0
- package/node_modules/@smithy/middleware-content-length/package.json +63 -0
- package/node_modules/@smithy/middleware-endpoint/LICENSE +201 -0
- package/node_modules/@smithy/middleware-endpoint/README.md +10 -0
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/createConfigValueProvider.js +1 -0
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.browser.js +5 -0
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.js +7 -0
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromInstructions.js +1 -0
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointUrlConfig.js +35 -0
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/index.js +1 -0
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/toEndpointV1.js +1 -0
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/endpointMiddleware.js +1 -0
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/getEndpointPlugin.js +1 -0
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/index.js +254 -0
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/resolveEndpointConfig.js +1 -0
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/service-customizations/index.js +1 -0
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/service-customizations/s3.js +1 -0
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/types.js +1 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/createConfigValueProvider.js +32 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromConfig.browser.js +1 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromConfig.js +3 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromInstructions.js +45 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointUrlConfig.js +31 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/index.js +2 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/toEndpointV1.js +10 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/endpointMiddleware.js +32 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/getEndpointPlugin.js +18 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/index.js +5 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/resolveEndpointConfig.js +16 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/service-customizations/index.js +1 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/service-customizations/s3.js +37 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/types.js +1 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/createConfigValueProvider.d.ts +13 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromConfig.browser.d.ts +1 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromConfig.d.ts +1 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromInstructions.d.ts +28 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointUrlConfig.d.ts +2 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/index.d.ts +8 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/toEndpointV1.d.ts +5 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/endpointMiddleware.d.ts +10 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/getEndpointPlugin.d.ts +11 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/index.d.ts +17 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/resolveEndpointConfig.d.ts +93 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/service-customizations/index.d.ts +4 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/service-customizations/s3.d.ts +26 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/createConfigValueProvider.d.ts +13 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromConfig.browser.d.ts +1 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromConfig.d.ts +1 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromInstructions.d.ts +28 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointUrlConfig.d.ts +2 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/index.d.ts +8 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/toEndpointV1.d.ts +5 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/endpointMiddleware.d.ts +10 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/getEndpointPlugin.d.ts +11 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/index.d.ts +17 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/resolveEndpointConfig.d.ts +93 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/service-customizations/index.d.ts +4 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/service-customizations/s3.d.ts +26 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/types.d.ts +34 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/types.d.ts +34 -0
- package/node_modules/@smithy/middleware-endpoint/package.json +73 -0
- package/node_modules/@smithy/middleware-retry/LICENSE +201 -0
- package/node_modules/@smithy/middleware-retry/README.md +11 -0
- package/node_modules/@smithy/middleware-retry/dist-cjs/AdaptiveRetryStrategy.js +1 -0
- package/node_modules/@smithy/middleware-retry/dist-cjs/StandardRetryStrategy.js +1 -0
- package/node_modules/@smithy/middleware-retry/dist-cjs/configurations.js +1 -0
- package/node_modules/@smithy/middleware-retry/dist-cjs/defaultRetryQuota.js +1 -0
- package/node_modules/@smithy/middleware-retry/dist-cjs/delayDecider.js +1 -0
- package/node_modules/@smithy/middleware-retry/dist-cjs/index.js +424 -0
- package/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.browser.js +5 -0
- package/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.js +7 -0
- package/node_modules/@smithy/middleware-retry/dist-cjs/omitRetryHeadersMiddleware.js +1 -0
- package/node_modules/@smithy/middleware-retry/dist-cjs/retryDecider.js +1 -0
- package/node_modules/@smithy/middleware-retry/dist-cjs/retryMiddleware.js +1 -0
- package/node_modules/@smithy/middleware-retry/dist-cjs/types.js +1 -0
- package/node_modules/@smithy/middleware-retry/dist-cjs/util.js +1 -0
- package/node_modules/@smithy/middleware-retry/dist-es/AdaptiveRetryStrategy.js +20 -0
- package/node_modules/@smithy/middleware-retry/dist-es/StandardRetryStrategy.js +90 -0
- package/node_modules/@smithy/middleware-retry/dist-es/configurations.js +52 -0
- package/node_modules/@smithy/middleware-retry/dist-es/defaultRetryQuota.js +27 -0
- package/node_modules/@smithy/middleware-retry/dist-es/delayDecider.js +2 -0
- package/node_modules/@smithy/middleware-retry/dist-es/index.js +7 -0
- package/node_modules/@smithy/middleware-retry/dist-es/isStreamingPayload/isStreamingPayload.browser.js +1 -0
- package/node_modules/@smithy/middleware-retry/dist-es/isStreamingPayload/isStreamingPayload.js +3 -0
- package/node_modules/@smithy/middleware-retry/dist-es/omitRetryHeadersMiddleware.js +22 -0
- package/node_modules/@smithy/middleware-retry/dist-es/retryDecider.js +7 -0
- package/node_modules/@smithy/middleware-retry/dist-es/retryMiddleware.js +111 -0
- package/node_modules/@smithy/middleware-retry/dist-es/types.js +1 -0
- package/node_modules/@smithy/middleware-retry/dist-es/util.js +9 -0
- package/node_modules/@smithy/middleware-retry/dist-types/AdaptiveRetryStrategy.d.ts +20 -0
- package/node_modules/@smithy/middleware-retry/dist-types/StandardRetryStrategy.d.ts +30 -0
- package/node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts +40 -0
- package/node_modules/@smithy/middleware-retry/dist-types/defaultRetryQuota.d.ts +18 -0
- package/node_modules/@smithy/middleware-retry/dist-types/delayDecider.d.ts +4 -0
- package/node_modules/@smithy/middleware-retry/dist-types/index.d.ts +7 -0
- package/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.browser.d.ts +5 -0
- package/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.d.ts +5 -0
- package/node_modules/@smithy/middleware-retry/dist-types/omitRetryHeadersMiddleware.d.ts +4 -0
- package/node_modules/@smithy/middleware-retry/dist-types/retryDecider.d.ts +2 -0
- package/node_modules/@smithy/middleware-retry/dist-types/retryMiddleware.d.ts +6 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +20 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +30 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/configurations.d.ts +40 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/defaultRetryQuota.d.ts +18 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/delayDecider.d.ts +4 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/index.d.ts +7 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/isStreamingPayload/isStreamingPayload.browser.d.ts +5 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/isStreamingPayload/isStreamingPayload.d.ts +5 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/omitRetryHeadersMiddleware.d.ts +4 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/retryDecider.d.ts +2 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/retryMiddleware.d.ts +6 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/types.d.ts +53 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/util.d.ts +2 -0
- package/node_modules/@smithy/middleware-retry/dist-types/types.d.ts +53 -0
- package/node_modules/@smithy/middleware-retry/dist-types/util.d.ts +2 -0
- package/node_modules/@smithy/middleware-retry/package.json +78 -0
- package/node_modules/@smithy/middleware-serde/LICENSE +201 -0
- package/node_modules/@smithy/middleware-serde/README.md +4 -0
- package/node_modules/@smithy/middleware-serde/dist-cjs/deserializerMiddleware.js +1 -0
- package/node_modules/@smithy/middleware-serde/dist-cjs/index.js +97 -0
- package/node_modules/@smithy/middleware-serde/dist-cjs/serdePlugin.js +1 -0
- package/node_modules/@smithy/middleware-serde/dist-cjs/serializerMiddleware.js +1 -0
- package/node_modules/@smithy/middleware-serde/dist-es/deserializerMiddleware.js +20 -0
- package/node_modules/@smithy/middleware-serde/dist-es/index.js +3 -0
- package/node_modules/@smithy/middleware-serde/dist-es/serdePlugin.js +22 -0
- package/node_modules/@smithy/middleware-serde/dist-es/serializerMiddleware.js +13 -0
- package/node_modules/@smithy/middleware-serde/dist-types/deserializerMiddleware.d.ts +2 -0
- package/node_modules/@smithy/middleware-serde/dist-types/index.d.ts +3 -0
- package/node_modules/@smithy/middleware-serde/dist-types/serdePlugin.d.ts +8 -0
- package/node_modules/@smithy/middleware-serde/dist-types/serializerMiddleware.d.ts +3 -0
- package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/deserializerMiddleware.d.ts +2 -0
- package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/serdePlugin.d.ts +8 -0
- package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/serializerMiddleware.d.ts +3 -0
- package/node_modules/@smithy/middleware-serde/package.json +62 -0
- package/node_modules/@smithy/middleware-stack/LICENSE +201 -0
- package/node_modules/@smithy/middleware-stack/README.md +78 -0
- package/node_modules/@smithy/middleware-stack/dist-cjs/MiddlewareStack.js +1 -0
- package/node_modules/@smithy/middleware-stack/dist-cjs/index.js +318 -0
- package/node_modules/@smithy/middleware-stack/dist-cjs/types.js +1 -0
- package/node_modules/@smithy/middleware-stack/dist-es/MiddlewareStack.js +281 -0
- package/node_modules/@smithy/middleware-stack/dist-es/index.js +1 -0
- package/node_modules/@smithy/middleware-stack/dist-es/types.js +1 -0
- package/node_modules/@smithy/middleware-stack/dist-types/MiddlewareStack.d.ts +2 -0
- package/node_modules/@smithy/middleware-stack/dist-types/index.d.ts +1 -0
- package/node_modules/@smithy/middleware-stack/dist-types/ts3.4/MiddlewareStack.d.ts +2 -0
- package/node_modules/@smithy/middleware-stack/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@smithy/middleware-stack/dist-types/ts3.4/types.d.ts +22 -0
- package/node_modules/@smithy/middleware-stack/dist-types/types.d.ts +22 -0
- package/node_modules/@smithy/middleware-stack/package.json +63 -0
- package/node_modules/@smithy/node-config-provider/LICENSE +201 -0
- package/node_modules/@smithy/node-config-provider/README.md +4 -0
- package/node_modules/@smithy/node-config-provider/dist-cjs/configLoader.js +1 -0
- package/node_modules/@smithy/node-config-provider/dist-cjs/fromEnv.js +1 -0
- package/node_modules/@smithy/node-config-provider/dist-cjs/fromSharedConfigFiles.js +1 -0
- package/node_modules/@smithy/node-config-provider/dist-cjs/fromStatic.js +1 -0
- package/node_modules/@smithy/node-config-provider/dist-cjs/index.js +87 -0
- package/node_modules/@smithy/node-config-provider/dist-es/configLoader.js +5 -0
- package/node_modules/@smithy/node-config-provider/dist-es/fromEnv.js +13 -0
- package/node_modules/@smithy/node-config-provider/dist-es/fromSharedConfigFiles.js +22 -0
- package/node_modules/@smithy/node-config-provider/dist-es/fromStatic.js +3 -0
- package/node_modules/@smithy/node-config-provider/dist-es/index.js +1 -0
- package/node_modules/@smithy/node-config-provider/dist-types/configLoader.d.ts +22 -0
- package/node_modules/@smithy/node-config-provider/dist-types/fromEnv.d.ts +7 -0
- package/node_modules/@smithy/node-config-provider/dist-types/fromSharedConfigFiles.d.ts +15 -0
- package/node_modules/@smithy/node-config-provider/dist-types/fromStatic.d.ts +3 -0
- package/node_modules/@smithy/node-config-provider/dist-types/index.d.ts +1 -0
- package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/configLoader.d.ts +22 -0
- package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromEnv.d.ts +7 -0
- package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromSharedConfigFiles.d.ts +15 -0
- package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromStatic.d.ts +3 -0
- package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@smithy/node-config-provider/package.json +65 -0
- package/node_modules/@smithy/node-http-handler/LICENSE +201 -0
- package/node_modules/@smithy/node-http-handler/README.md +4 -0
- package/node_modules/@smithy/node-http-handler/dist-cjs/constants.js +1 -0
- package/node_modules/@smithy/node-http-handler/dist-cjs/get-transformed-headers.js +1 -0
- package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +626 -0
- package/node_modules/@smithy/node-http-handler/dist-cjs/node-http-handler.js +1 -0
- package/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-connection-manager.js +1 -0
- package/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-connection-pool.js +1 -0
- package/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-handler.js +1 -0
- package/node_modules/@smithy/node-http-handler/dist-cjs/readable.mock.js +1 -0
- package/node_modules/@smithy/node-http-handler/dist-cjs/server.mock.js +1 -0
- package/node_modules/@smithy/node-http-handler/dist-cjs/set-connection-timeout.js +1 -0
- package/node_modules/@smithy/node-http-handler/dist-cjs/set-socket-keep-alive.js +1 -0
- package/node_modules/@smithy/node-http-handler/dist-cjs/set-socket-timeout.js +1 -0
- package/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/collector.js +1 -0
- package/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/index.js +1 -0
- package/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/readable.mock.js +1 -0
- package/node_modules/@smithy/node-http-handler/dist-cjs/write-request-body.js +1 -0
- package/node_modules/@smithy/node-http-handler/dist-es/constants.js +1 -0
- package/node_modules/@smithy/node-http-handler/dist-es/get-transformed-headers.js +9 -0
- package/node_modules/@smithy/node-http-handler/dist-es/index.js +3 -0
- package/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +146 -0
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +86 -0
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-pool.js +32 -0
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +159 -0
- package/node_modules/@smithy/node-http-handler/dist-es/readable.mock.js +19 -0
- package/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +51 -0
- package/node_modules/@smithy/node-http-handler/dist-es/set-connection-timeout.js +21 -0
- package/node_modules/@smithy/node-http-handler/dist-es/set-socket-keep-alive.js +8 -0
- package/node_modules/@smithy/node-http-handler/dist-es/set-socket-timeout.js +6 -0
- package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/collector.js +11 -0
- package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/index.js +14 -0
- package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/readable.mock.js +19 -0
- package/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +40 -0
- package/node_modules/@smithy/node-http-handler/dist-types/constants.d.ts +5 -0
- package/node_modules/@smithy/node-http-handler/dist-types/get-transformed-headers.d.ts +4 -0
- package/node_modules/@smithy/node-http-handler/dist-types/index.d.ts +3 -0
- package/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +25 -0
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +22 -0
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +13 -0
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +57 -0
- package/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +14 -0
- package/node_modules/@smithy/node-http-handler/dist-types/server.mock.d.ts +10 -0
- package/node_modules/@smithy/node-http-handler/dist-types/set-connection-timeout.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/set-socket-keep-alive.d.ts +6 -0
- package/node_modules/@smithy/node-http-handler/dist-types/set-socket-timeout.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +7 -0
- package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +14 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/constants.d.ts +5 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +4 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +25 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-manager.d.ts +22 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-pool.d.ts +13 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +57 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +13 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/server.mock.d.ts +10 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-keep-alive.d.ts +6 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +6 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/index.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +13 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +12 -0
- package/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +13 -0
- package/node_modules/@smithy/node-http-handler/package.json +67 -0
- package/node_modules/@smithy/property-provider/LICENSE +201 -0
- package/node_modules/@smithy/property-provider/README.md +10 -0
- package/node_modules/@smithy/property-provider/dist-cjs/CredentialsProviderError.js +1 -0
- package/node_modules/@smithy/property-provider/dist-cjs/ProviderError.js +1 -0
- package/node_modules/@smithy/property-provider/dist-cjs/TokenProviderError.js +1 -0
- package/node_modules/@smithy/property-provider/dist-cjs/chain.js +1 -0
- package/node_modules/@smithy/property-provider/dist-cjs/fromStatic.js +1 -0
- package/node_modules/@smithy/property-provider/dist-cjs/index.js +150 -0
- package/node_modules/@smithy/property-provider/dist-cjs/memoize.js +1 -0
- package/node_modules/@smithy/property-provider/dist-es/CredentialsProviderError.js +9 -0
- package/node_modules/@smithy/property-provider/dist-es/ProviderError.js +11 -0
- package/node_modules/@smithy/property-provider/dist-es/TokenProviderError.js +9 -0
- package/node_modules/@smithy/property-provider/dist-es/chain.js +21 -0
- package/node_modules/@smithy/property-provider/dist-es/fromStatic.js +1 -0
- package/node_modules/@smithy/property-provider/dist-es/index.js +6 -0
- package/node_modules/@smithy/property-provider/dist-es/memoize.js +45 -0
- package/node_modules/@smithy/property-provider/dist-types/CredentialsProviderError.d.ts +17 -0
- package/node_modules/@smithy/property-provider/dist-types/ProviderError.d.ts +17 -0
- package/node_modules/@smithy/property-provider/dist-types/TokenProviderError.d.ts +17 -0
- package/node_modules/@smithy/property-provider/dist-types/chain.d.ts +13 -0
- package/node_modules/@smithy/property-provider/dist-types/fromStatic.d.ts +5 -0
- package/node_modules/@smithy/property-provider/dist-types/index.d.ts +24 -0
- package/node_modules/@smithy/property-provider/dist-types/memoize.d.ts +40 -0
- package/node_modules/@smithy/property-provider/dist-types/ts3.4/CredentialsProviderError.d.ts +17 -0
- package/node_modules/@smithy/property-provider/dist-types/ts3.4/ProviderError.d.ts +17 -0
- package/node_modules/@smithy/property-provider/dist-types/ts3.4/TokenProviderError.d.ts +17 -0
- package/node_modules/@smithy/property-provider/dist-types/ts3.4/chain.d.ts +13 -0
- package/node_modules/@smithy/property-provider/dist-types/ts3.4/fromStatic.d.ts +5 -0
- package/node_modules/@smithy/property-provider/dist-types/ts3.4/index.d.ts +24 -0
- package/node_modules/@smithy/property-provider/dist-types/ts3.4/memoize.d.ts +40 -0
- package/node_modules/@smithy/property-provider/package.json +60 -0
- package/node_modules/@smithy/protocol-http/LICENSE +201 -0
- package/node_modules/@smithy/protocol-http/README.md +4 -0
- package/node_modules/@smithy/protocol-http/dist-cjs/Field.js +1 -0
- package/node_modules/@smithy/protocol-http/dist-cjs/Fields.js +1 -0
- package/node_modules/@smithy/protocol-http/dist-cjs/extensions/httpExtensionConfiguration.js +1 -0
- package/node_modules/@smithy/protocol-http/dist-cjs/extensions/index.js +1 -0
- package/node_modules/@smithy/protocol-http/dist-cjs/httpHandler.js +1 -0
- package/node_modules/@smithy/protocol-http/dist-cjs/httpRequest.js +1 -0
- package/node_modules/@smithy/protocol-http/dist-cjs/httpResponse.js +1 -0
- package/node_modules/@smithy/protocol-http/dist-cjs/index.js +237 -0
- package/node_modules/@smithy/protocol-http/dist-cjs/isValidHostname.js +1 -0
- package/node_modules/@smithy/protocol-http/dist-cjs/types.js +1 -0
- package/node_modules/@smithy/protocol-http/dist-es/Field.js +23 -0
- package/node_modules/@smithy/protocol-http/dist-es/Fields.js +19 -0
- package/node_modules/@smithy/protocol-http/dist-es/extensions/httpExtensionConfiguration.js +22 -0
- package/node_modules/@smithy/protocol-http/dist-es/extensions/index.js +1 -0
- package/node_modules/@smithy/protocol-http/dist-es/httpHandler.js +1 -0
- package/node_modules/@smithy/protocol-http/dist-es/httpRequest.js +48 -0
- package/node_modules/@smithy/protocol-http/dist-es/httpResponse.js +14 -0
- package/node_modules/@smithy/protocol-http/dist-es/index.js +8 -0
- package/node_modules/@smithy/protocol-http/dist-es/isValidHostname.js +4 -0
- package/node_modules/@smithy/protocol-http/dist-es/types.js +1 -0
- package/node_modules/@smithy/protocol-http/dist-types/Field.d.ts +49 -0
- package/node_modules/@smithy/protocol-http/dist-types/Fields.d.ts +44 -0
- package/node_modules/@smithy/protocol-http/dist-types/extensions/httpExtensionConfiguration.d.ts +37 -0
- package/node_modules/@smithy/protocol-http/dist-types/extensions/index.d.ts +1 -0
- package/node_modules/@smithy/protocol-http/dist-types/httpHandler.d.ts +18 -0
- package/node_modules/@smithy/protocol-http/dist-types/httpRequest.d.ts +23 -0
- package/node_modules/@smithy/protocol-http/dist-types/httpResponse.d.ts +16 -0
- package/node_modules/@smithy/protocol-http/dist-types/index.d.ts +8 -0
- package/node_modules/@smithy/protocol-http/dist-types/isValidHostname.d.ts +1 -0
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/Field.d.ts +49 -0
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/Fields.d.ts +44 -0
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/extensions/httpExtensionConfiguration.d.ts +37 -0
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/extensions/index.d.ts +1 -0
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpHandler.d.ts +18 -0
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpRequest.d.ts +23 -0
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpResponse.d.ts +16 -0
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/index.d.ts +8 -0
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/isValidHostname.d.ts +1 -0
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/types.d.ts +21 -0
- package/node_modules/@smithy/protocol-http/dist-types/types.d.ts +21 -0
- package/node_modules/@smithy/protocol-http/package.json +61 -0
- package/node_modules/@smithy/querystring-builder/LICENSE +201 -0
- package/node_modules/@smithy/querystring-builder/README.md +10 -0
- package/node_modules/@smithy/querystring-builder/dist-cjs/index.js +52 -0
- package/node_modules/@smithy/querystring-builder/dist-es/index.js +21 -0
- package/node_modules/@smithy/querystring-builder/dist-types/index.d.ts +5 -0
- package/node_modules/@smithy/querystring-builder/dist-types/ts3.4/index.d.ts +5 -0
- package/node_modules/@smithy/querystring-builder/package.json +61 -0
- package/node_modules/@smithy/querystring-parser/LICENSE +201 -0
- package/node_modules/@smithy/querystring-parser/README.md +10 -0
- package/node_modules/@smithy/querystring-parser/dist-cjs/index.js +53 -0
- package/node_modules/@smithy/querystring-parser/dist-es/index.js +23 -0
- package/node_modules/@smithy/querystring-parser/dist-types/index.d.ts +5 -0
- package/node_modules/@smithy/querystring-parser/dist-types/ts3.4/index.d.ts +5 -0
- package/node_modules/@smithy/querystring-parser/package.json +60 -0
- package/node_modules/@smithy/service-error-classification/LICENSE +201 -0
- package/node_modules/@smithy/service-error-classification/README.md +4 -0
- package/node_modules/@smithy/service-error-classification/dist-cjs/constants.js +1 -0
- package/node_modules/@smithy/service-error-classification/dist-cjs/index.js +92 -0
- package/node_modules/@smithy/service-error-classification/dist-es/constants.js +27 -0
- package/node_modules/@smithy/service-error-classification/dist-es/index.js +19 -0
- package/node_modules/@smithy/service-error-classification/dist-types/constants.d.ts +26 -0
- package/node_modules/@smithy/service-error-classification/dist-types/index.d.ts +12 -0
- package/node_modules/@smithy/service-error-classification/dist-types/ts3.4/constants.d.ts +26 -0
- package/node_modules/@smithy/service-error-classification/dist-types/ts3.4/index.d.ts +12 -0
- package/node_modules/@smithy/service-error-classification/package.json +59 -0
- package/node_modules/@smithy/shared-ini-file-loader/LICENSE +201 -0
- package/node_modules/@smithy/shared-ini-file-loader/README.md +105 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getConfigData.js +1 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getConfigFilepath.js +1 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getCredentialsFilepath.js +1 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getHomeDir.js +26 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getProfileName.js +1 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFilepath.js +12 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFromFile.js +12 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSsoSessionData.js +1 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/index.js +190 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/loadSharedConfigFiles.js +1 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/loadSsoSessionData.js +1 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/mergeConfigFiles.js +1 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/parseIni.js +1 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/parseKnownFiles.js +1 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/slurpFile.js +13 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/types.js +1 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getConfigData.js +18 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getConfigFilepath.js +4 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getCredentialsFilepath.js +4 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getHomeDir.js +22 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getProfileName.js +3 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getSSOTokenFilepath.js +8 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getSSOTokenFromFile.js +8 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getSsoSessionData.js +5 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/index.js +8 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/loadSharedConfigFiles.js +27 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/loadSsoSessionData.js +9 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/mergeConfigFiles.js +14 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/parseIni.js +52 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/parseKnownFiles.js +6 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/slurpFile.js +9 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/types.js +1 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getConfigData.d.ts +8 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getConfigFilepath.d.ts +2 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getCredentialsFilepath.d.ts +2 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getHomeDir.d.ts +6 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getProfileName.d.ts +5 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getSSOTokenFilepath.d.ts +4 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getSSOTokenFromFile.d.ts +44 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getSsoSessionData.d.ts +6 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/index.d.ts +8 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/loadSharedConfigFiles.d.ts +22 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/loadSsoSessionData.d.ts +10 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/mergeConfigFiles.d.ts +7 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/parseIni.d.ts +2 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/parseKnownFiles.d.ts +15 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/slurpFile.d.ts +5 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getConfigData.d.ts +8 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getConfigFilepath.d.ts +2 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getCredentialsFilepath.d.ts +2 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getHomeDir.d.ts +6 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getProfileName.d.ts +5 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFilepath.d.ts +4 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFromFile.d.ts +44 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSsoSessionData.d.ts +6 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/index.d.ts +8 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/loadSharedConfigFiles.d.ts +22 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/loadSsoSessionData.d.ts +10 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/mergeConfigFiles.d.ts +7 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/parseIni.d.ts +2 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/parseKnownFiles.d.ts +15 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/slurpFile.d.ts +5 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/types.d.ts +13 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/types.d.ts +13 -0
- package/node_modules/@smithy/shared-ini-file-loader/package.json +72 -0
- package/node_modules/@smithy/signature-v4/LICENSE +201 -0
- package/node_modules/@smithy/signature-v4/README.md +11 -0
- package/node_modules/@smithy/signature-v4/dist-cjs/SignatureV4.js +1 -0
- package/node_modules/@smithy/signature-v4/dist-cjs/cloneRequest.js +1 -0
- package/node_modules/@smithy/signature-v4/dist-cjs/constants.js +1 -0
- package/node_modules/@smithy/signature-v4/dist-cjs/credentialDerivation.js +1 -0
- package/node_modules/@smithy/signature-v4/dist-cjs/getCanonicalHeaders.js +1 -0
- package/node_modules/@smithy/signature-v4/dist-cjs/getCanonicalQuery.js +1 -0
- package/node_modules/@smithy/signature-v4/dist-cjs/getPayloadHash.js +1 -0
- package/node_modules/@smithy/signature-v4/dist-cjs/headerUtil.js +1 -0
- package/node_modules/@smithy/signature-v4/dist-cjs/index.js +467 -0
- package/node_modules/@smithy/signature-v4/dist-cjs/moveHeadersToQuery.js +1 -0
- package/node_modules/@smithy/signature-v4/dist-cjs/prepareRequest.js +1 -0
- package/node_modules/@smithy/signature-v4/dist-cjs/suite.fixture.js +1 -0
- package/node_modules/@smithy/signature-v4/dist-cjs/utilDate.js +1 -0
- package/node_modules/@smithy/signature-v4/dist-es/SignatureV4.js +190 -0
- package/node_modules/@smithy/signature-v4/dist-es/cloneRequest.js +12 -0
- package/node_modules/@smithy/signature-v4/dist-es/constants.js +43 -0
- package/node_modules/@smithy/signature-v4/dist-es/credentialDerivation.js +33 -0
- package/node_modules/@smithy/signature-v4/dist-es/getCanonicalHeaders.js +20 -0
- package/node_modules/@smithy/signature-v4/dist-es/getCanonicalQuery.js +27 -0
- package/node_modules/@smithy/signature-v4/dist-es/getPayloadHash.js +20 -0
- package/node_modules/@smithy/signature-v4/dist-es/headerUtil.js +26 -0
- package/node_modules/@smithy/signature-v4/dist-es/index.js +7 -0
- package/node_modules/@smithy/signature-v4/dist-es/moveHeadersToQuery.js +16 -0
- package/node_modules/@smithy/signature-v4/dist-es/prepareRequest.js +11 -0
- package/node_modules/@smithy/signature-v4/dist-es/suite.fixture.js +399 -0
- package/node_modules/@smithy/signature-v4/dist-es/utilDate.js +15 -0
- package/node_modules/@smithy/signature-v4/dist-types/SignatureV4.d.ts +67 -0
- package/node_modules/@smithy/signature-v4/dist-types/cloneRequest.d.ts +6 -0
- package/node_modules/@smithy/signature-v4/dist-types/constants.d.ts +43 -0
- package/node_modules/@smithy/signature-v4/dist-types/credentialDerivation.d.ts +26 -0
- package/node_modules/@smithy/signature-v4/dist-types/getCanonicalHeaders.d.ts +5 -0
- package/node_modules/@smithy/signature-v4/dist-types/getCanonicalQuery.d.ts +5 -0
- package/node_modules/@smithy/signature-v4/dist-types/getPayloadHash.d.ts +5 -0
- package/node_modules/@smithy/signature-v4/dist-types/headerUtil.d.ts +4 -0
- package/node_modules/@smithy/signature-v4/dist-types/index.d.ts +7 -0
- package/node_modules/@smithy/signature-v4/dist-types/moveHeadersToQuery.d.ts +9 -0
- package/node_modules/@smithy/signature-v4/dist-types/prepareRequest.d.ts +5 -0
- package/node_modules/@smithy/signature-v4/dist-types/suite.fixture.d.ts +14 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/SignatureV4.d.ts +67 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/cloneRequest.d.ts +6 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/constants.d.ts +43 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/credentialDerivation.d.ts +26 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/getCanonicalHeaders.d.ts +5 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/getCanonicalQuery.d.ts +5 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/getPayloadHash.d.ts +5 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/headerUtil.d.ts +4 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/index.d.ts +7 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/moveHeadersToQuery.d.ts +9 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/prepareRequest.d.ts +5 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/suite.fixture.d.ts +14 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/utilDate.d.ts +2 -0
- package/node_modules/@smithy/signature-v4/dist-types/utilDate.d.ts +2 -0
- package/node_modules/@smithy/signature-v4/package.json +70 -0
- package/node_modules/@smithy/smithy-client/LICENSE +201 -0
- package/node_modules/@smithy/smithy-client/README.md +10 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/NoOpLogger.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/client.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/collect-stream-body.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/command.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/constants.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/create-aggregated-client.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/date-utils.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/default-error-handler.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/defaults-mode.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/emitWarningIfUnsupportedVersion.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/exceptions.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/extended-encode-uri-component.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/extensions/checksum.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/extensions/defaultExtensionConfiguration.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/extensions/index.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/extensions/retry.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/get-array-if-single-item.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/get-value-from-text-node.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/index.js +1256 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/lazy-json.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/object-mapping.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/parse-utils.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/resolve-path.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/ser-utils.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/serde-json.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/split-every.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-es/NoOpLogger.js +7 -0
- package/node_modules/@smithy/smithy-client/dist-es/client.js +24 -0
- package/node_modules/@smithy/smithy-client/dist-es/collect-stream-body.js +11 -0
- package/node_modules/@smithy/smithy-client/dist-es/command.js +114 -0
- package/node_modules/@smithy/smithy-client/dist-es/constants.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-es/create-aggregated-client.js +21 -0
- package/node_modules/@smithy/smithy-client/dist-es/date-utils.js +187 -0
- package/node_modules/@smithy/smithy-client/dist-es/default-error-handler.js +22 -0
- package/node_modules/@smithy/smithy-client/dist-es/defaults-mode.js +26 -0
- package/node_modules/@smithy/smithy-client/dist-es/emitWarningIfUnsupportedVersion.js +6 -0
- package/node_modules/@smithy/smithy-client/dist-es/exceptions.js +22 -0
- package/node_modules/@smithy/smithy-client/dist-es/extended-encode-uri-component.js +5 -0
- package/node_modules/@smithy/smithy-client/dist-es/extensions/checksum.js +31 -0
- package/node_modules/@smithy/smithy-client/dist-es/extensions/defaultExtensionConfiguration.js +15 -0
- package/node_modules/@smithy/smithy-client/dist-es/extensions/index.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-es/extensions/retry.js +16 -0
- package/node_modules/@smithy/smithy-client/dist-es/get-array-if-single-item.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-es/get-value-from-text-node.js +12 -0
- package/node_modules/@smithy/smithy-client/dist-es/index.js +22 -0
- package/node_modules/@smithy/smithy-client/dist-es/lazy-json.js +33 -0
- package/node_modules/@smithy/smithy-client/dist-es/object-mapping.js +92 -0
- package/node_modules/@smithy/smithy-client/dist-es/parse-utils.js +230 -0
- package/node_modules/@smithy/smithy-client/dist-es/resolve-path.js +19 -0
- package/node_modules/@smithy/smithy-client/dist-es/ser-utils.js +13 -0
- package/node_modules/@smithy/smithy-client/dist-es/serde-json.js +19 -0
- package/node_modules/@smithy/smithy-client/dist-es/split-every.js +27 -0
- package/node_modules/@smithy/smithy-client/dist-types/NoOpLogger.d.ts +11 -0
- package/node_modules/@smithy/smithy-client/dist-types/client.d.ts +29 -0
- package/node_modules/@smithy/smithy-client/dist-types/collect-stream-body.d.ts +10 -0
- package/node_modules/@smithy/smithy-client/dist-types/command.d.ts +112 -0
- package/node_modules/@smithy/smithy-client/dist-types/constants.d.ts +4 -0
- package/node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts +9 -0
- package/node_modules/@smithy/smithy-client/dist-types/date-utils.d.ts +73 -0
- package/node_modules/@smithy/smithy-client/dist-types/default-error-handler.d.ts +13 -0
- package/node_modules/@smithy/smithy-client/dist-types/defaults-mode.d.ts +28 -0
- package/node_modules/@smithy/smithy-client/dist-types/emitWarningIfUnsupportedVersion.d.ts +8 -0
- package/node_modules/@smithy/smithy-client/dist-types/exceptions.d.ts +34 -0
- package/node_modules/@smithy/smithy-client/dist-types/extended-encode-uri-component.d.ts +7 -0
- package/node_modules/@smithy/smithy-client/dist-types/extensions/checksum.d.ts +25 -0
- package/node_modules/@smithy/smithy-client/dist-types/extensions/defaultExtensionConfiguration.d.ts +38 -0
- package/node_modules/@smithy/smithy-client/dist-types/extensions/index.d.ts +1 -0
- package/node_modules/@smithy/smithy-client/dist-types/extensions/retry.d.ts +15 -0
- package/node_modules/@smithy/smithy-client/dist-types/get-array-if-single-item.d.ts +7 -0
- package/node_modules/@smithy/smithy-client/dist-types/get-value-from-text-node.d.ts +7 -0
- package/node_modules/@smithy/smithy-client/dist-types/index.d.ts +23 -0
- package/node_modules/@smithy/smithy-client/dist-types/lazy-json.d.ts +24 -0
- package/node_modules/@smithy/smithy-client/dist-types/object-mapping.d.ts +162 -0
- package/node_modules/@smithy/smithy-client/dist-types/parse-utils.d.ts +270 -0
- package/node_modules/@smithy/smithy-client/dist-types/resolve-path.d.ts +4 -0
- package/node_modules/@smithy/smithy-client/dist-types/ser-utils.d.ts +9 -0
- package/node_modules/@smithy/smithy-client/dist-types/serde-json.d.ts +10 -0
- package/node_modules/@smithy/smithy-client/dist-types/split-every.d.ts +11 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/NoOpLogger.d.ts +11 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/client.d.ts +29 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/collect-stream-body.d.ts +10 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/command.d.ts +112 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/constants.d.ts +4 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/create-aggregated-client.d.ts +9 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/date-utils.d.ts +73 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/default-error-handler.d.ts +13 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/defaults-mode.d.ts +28 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/emitWarningIfUnsupportedVersion.d.ts +8 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/exceptions.d.ts +34 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extended-encode-uri-component.d.ts +7 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/checksum.d.ts +25 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +38 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/index.d.ts +1 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/retry.d.ts +15 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/get-array-if-single-item.d.ts +7 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/get-value-from-text-node.d.ts +7 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/index.d.ts +23 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/lazy-json.d.ts +24 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/object-mapping.d.ts +178 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/parse-utils.d.ts +270 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/resolve-path.d.ts +4 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/ser-utils.d.ts +9 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/serde-json.d.ts +10 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/split-every.d.ts +11 -0
- package/node_modules/@smithy/smithy-client/package.json +66 -0
- package/node_modules/@smithy/types/LICENSE +201 -0
- package/node_modules/@smithy/types/README.md +80 -0
- package/node_modules/@smithy/types/dist-cjs/abort.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/auth/HttpApiKeyAuth.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/auth/HttpAuthScheme.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/auth/HttpAuthSchemeProvider.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/auth/HttpSigner.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/auth/IdentityProviderConfig.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/auth/auth.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/auth/index.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/blob/blob-payload-input-types.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/checksum.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/client.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/command.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/connection/config.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/connection/index.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/connection/manager.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/connection/pool.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/crypto.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/downlevel-ts3.4/transform/type-transform.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/encode.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/endpoint.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/endpoints/EndpointRuleObject.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/endpoints/ErrorRuleObject.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/endpoints/RuleSetObject.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/endpoints/TreeRuleObject.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/endpoints/index.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/endpoints/shared.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/eventStream.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/extensions/checksum.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/extensions/defaultClientConfiguration.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/extensions/defaultExtensionConfiguration.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/extensions/index.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/extensions/retry.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/externals-check/browser-externals-check.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/http/httpHandlerInitialization.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/http.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/identity/apiKeyIdentity.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/identity/awsCredentialIdentity.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/identity/identity.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/identity/index.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/identity/tokenIdentity.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/index.js +149 -0
- package/node_modules/@smithy/types/dist-cjs/logger.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/middleware.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/pagination.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/profile.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/response.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/retry.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/serde.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/shapes.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/signature.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/stream.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-common-types.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-payload-input-types.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-payload-output-types.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/transfer.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/transform/client-method-transforms.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/transform/client-payload-blob-type-narrow.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/transform/exact.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/transform/no-undefined.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/transform/type-transform.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/uri.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/util.js +1 -0
- package/node_modules/@smithy/types/dist-cjs/waiter.js +1 -0
- package/node_modules/@smithy/types/dist-es/abort.js +1 -0
- package/node_modules/@smithy/types/dist-es/auth/HttpApiKeyAuth.js +5 -0
- package/node_modules/@smithy/types/dist-es/auth/HttpAuthScheme.js +1 -0
- package/node_modules/@smithy/types/dist-es/auth/HttpAuthSchemeProvider.js +1 -0
- package/node_modules/@smithy/types/dist-es/auth/HttpSigner.js +1 -0
- package/node_modules/@smithy/types/dist-es/auth/IdentityProviderConfig.js +1 -0
- package/node_modules/@smithy/types/dist-es/auth/auth.js +5 -0
- package/node_modules/@smithy/types/dist-es/auth/index.js +6 -0
- package/node_modules/@smithy/types/dist-es/blob/blob-payload-input-types.js +1 -0
- package/node_modules/@smithy/types/dist-es/checksum.js +1 -0
- package/node_modules/@smithy/types/dist-es/client.js +1 -0
- package/node_modules/@smithy/types/dist-es/command.js +1 -0
- package/node_modules/@smithy/types/dist-es/connection/config.js +1 -0
- package/node_modules/@smithy/types/dist-es/connection/index.js +3 -0
- package/node_modules/@smithy/types/dist-es/connection/manager.js +1 -0
- package/node_modules/@smithy/types/dist-es/connection/pool.js +1 -0
- package/node_modules/@smithy/types/dist-es/crypto.js +1 -0
- package/node_modules/@smithy/types/dist-es/downlevel-ts3.4/transform/type-transform.js +1 -0
- package/node_modules/@smithy/types/dist-es/encode.js +1 -0
- package/node_modules/@smithy/types/dist-es/endpoint.js +5 -0
- package/node_modules/@smithy/types/dist-es/endpoints/EndpointRuleObject.js +1 -0
- package/node_modules/@smithy/types/dist-es/endpoints/ErrorRuleObject.js +1 -0
- package/node_modules/@smithy/types/dist-es/endpoints/RuleSetObject.js +1 -0
- package/node_modules/@smithy/types/dist-es/endpoints/TreeRuleObject.js +1 -0
- package/node_modules/@smithy/types/dist-es/endpoints/index.js +5 -0
- package/node_modules/@smithy/types/dist-es/endpoints/shared.js +1 -0
- package/node_modules/@smithy/types/dist-es/eventStream.js +1 -0
- package/node_modules/@smithy/types/dist-es/extensions/checksum.js +39 -0
- package/node_modules/@smithy/types/dist-es/extensions/defaultClientConfiguration.js +11 -0
- package/node_modules/@smithy/types/dist-es/extensions/defaultExtensionConfiguration.js +1 -0
- package/node_modules/@smithy/types/dist-es/extensions/index.js +3 -0
- package/node_modules/@smithy/types/dist-es/extensions/retry.js +1 -0
- package/node_modules/@smithy/types/dist-es/externals-check/browser-externals-check.js +1 -0
- package/node_modules/@smithy/types/dist-es/http/httpHandlerInitialization.js +1 -0
- package/node_modules/@smithy/types/dist-es/http.js +5 -0
- package/node_modules/@smithy/types/dist-es/identity/apiKeyIdentity.js +1 -0
- package/node_modules/@smithy/types/dist-es/identity/awsCredentialIdentity.js +1 -0
- package/node_modules/@smithy/types/dist-es/identity/identity.js +1 -0
- package/node_modules/@smithy/types/dist-es/identity/index.js +4 -0
- package/node_modules/@smithy/types/dist-es/identity/tokenIdentity.js +1 -0
- package/node_modules/@smithy/types/dist-es/index.js +36 -0
- package/node_modules/@smithy/types/dist-es/logger.js +1 -0
- package/node_modules/@smithy/types/dist-es/middleware.js +1 -0
- package/node_modules/@smithy/types/dist-es/pagination.js +1 -0
- package/node_modules/@smithy/types/dist-es/profile.js +6 -0
- package/node_modules/@smithy/types/dist-es/response.js +1 -0
- package/node_modules/@smithy/types/dist-es/retry.js +1 -0
- package/node_modules/@smithy/types/dist-es/serde.js +1 -0
- package/node_modules/@smithy/types/dist-es/shapes.js +1 -0
- package/node_modules/@smithy/types/dist-es/signature.js +1 -0
- package/node_modules/@smithy/types/dist-es/stream.js +1 -0
- package/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-common-types.js +1 -0
- package/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-input-types.js +1 -0
- package/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-output-types.js +1 -0
- package/node_modules/@smithy/types/dist-es/transfer.js +6 -0
- package/node_modules/@smithy/types/dist-es/transform/client-method-transforms.js +1 -0
- package/node_modules/@smithy/types/dist-es/transform/client-payload-blob-type-narrow.js +1 -0
- package/node_modules/@smithy/types/dist-es/transform/exact.js +1 -0
- package/node_modules/@smithy/types/dist-es/transform/no-undefined.js +1 -0
- package/node_modules/@smithy/types/dist-es/transform/type-transform.js +1 -0
- package/node_modules/@smithy/types/dist-es/uri.js +1 -0
- package/node_modules/@smithy/types/dist-es/util.js +1 -0
- package/node_modules/@smithy/types/dist-es/waiter.js +1 -0
- package/node_modules/@smithy/types/dist-types/abort.d.ts +49 -0
- package/node_modules/@smithy/types/dist-types/auth/HttpApiKeyAuth.d.ts +7 -0
- package/node_modules/@smithy/types/dist-types/auth/HttpAuthScheme.d.ts +49 -0
- package/node_modules/@smithy/types/dist-types/auth/HttpAuthSchemeProvider.d.ts +20 -0
- package/node_modules/@smithy/types/dist-types/auth/HttpSigner.d.ts +41 -0
- package/node_modules/@smithy/types/dist-types/auth/IdentityProviderConfig.d.ts +14 -0
- package/node_modules/@smithy/types/dist-types/auth/auth.d.ts +57 -0
- package/node_modules/@smithy/types/dist-types/auth/index.d.ts +6 -0
- package/node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts +41 -0
- package/node_modules/@smithy/types/dist-types/checksum.d.ts +63 -0
- package/node_modules/@smithy/types/dist-types/client.d.ts +44 -0
- package/node_modules/@smithy/types/dist-types/command.d.ts +10 -0
- package/node_modules/@smithy/types/dist-types/connection/config.d.ts +7 -0
- package/node_modules/@smithy/types/dist-types/connection/index.d.ts +3 -0
- package/node_modules/@smithy/types/dist-types/connection/manager.d.ts +28 -0
- package/node_modules/@smithy/types/dist-types/connection/pool.d.ts +24 -0
- package/node_modules/@smithy/types/dist-types/crypto.d.ts +60 -0
- package/node_modules/@smithy/types/dist-types/downlevel-ts3.4/transform/type-transform.d.ts +25 -0
- package/node_modules/@smithy/types/dist-types/encode.d.ts +19 -0
- package/node_modules/@smithy/types/dist-types/endpoint.d.ts +77 -0
- package/node_modules/@smithy/types/dist-types/endpoints/EndpointRuleObject.d.ts +15 -0
- package/node_modules/@smithy/types/dist-types/endpoints/ErrorRuleObject.d.ts +7 -0
- package/node_modules/@smithy/types/dist-types/endpoints/RuleSetObject.d.ts +19 -0
- package/node_modules/@smithy/types/dist-types/endpoints/TreeRuleObject.d.ts +10 -0
- package/node_modules/@smithy/types/dist-types/endpoints/index.d.ts +5 -0
- package/node_modules/@smithy/types/dist-types/endpoints/shared.d.ts +25 -0
- package/node_modules/@smithy/types/dist-types/eventStream.d.ts +108 -0
- package/node_modules/@smithy/types/dist-types/extensions/checksum.d.ts +55 -0
- package/node_modules/@smithy/types/dist-types/extensions/defaultClientConfiguration.d.ts +33 -0
- package/node_modules/@smithy/types/dist-types/extensions/defaultExtensionConfiguration.d.ts +9 -0
- package/node_modules/@smithy/types/dist-types/extensions/index.d.ts +4 -0
- package/node_modules/@smithy/types/dist-types/extensions/retry.d.ts +18 -0
- package/node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts +35 -0
- package/node_modules/@smithy/types/dist-types/http/httpHandlerInitialization.d.ts +65 -0
- package/node_modules/@smithy/types/dist-types/http.d.ts +105 -0
- package/node_modules/@smithy/types/dist-types/identity/apiKeyIdentity.d.ts +14 -0
- package/node_modules/@smithy/types/dist-types/identity/awsCredentialIdentity.d.ts +27 -0
- package/node_modules/@smithy/types/dist-types/identity/identity.d.ts +15 -0
- package/node_modules/@smithy/types/dist-types/identity/index.d.ts +4 -0
- package/node_modules/@smithy/types/dist-types/identity/tokenIdentity.d.ts +14 -0
- package/node_modules/@smithy/types/dist-types/index.d.ts +36 -0
- package/node_modules/@smithy/types/dist-types/logger.d.ts +13 -0
- package/node_modules/@smithy/types/dist-types/middleware.d.ts +510 -0
- package/node_modules/@smithy/types/dist-types/pagination.d.ts +26 -0
- package/node_modules/@smithy/types/dist-types/profile.d.ts +30 -0
- package/node_modules/@smithy/types/dist-types/response.d.ts +40 -0
- package/node_modules/@smithy/types/dist-types/retry.d.ts +128 -0
- package/node_modules/@smithy/types/dist-types/serde.d.ts +104 -0
- package/node_modules/@smithy/types/dist-types/shapes.d.ts +72 -0
- package/node_modules/@smithy/types/dist-types/signature.d.ts +150 -0
- package/node_modules/@smithy/types/dist-types/stream.d.ts +22 -0
- package/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts +33 -0
- package/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts +62 -0
- package/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts +53 -0
- package/node_modules/@smithy/types/dist-types/transfer.d.ts +33 -0
- package/node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts +26 -0
- package/node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts +73 -0
- package/node_modules/@smithy/types/dist-types/transform/exact.d.ts +6 -0
- package/node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts +62 -0
- package/node_modules/@smithy/types/dist-types/transform/type-transform.d.ts +34 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/abort.d.ts +49 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpApiKeyAuth.d.ts +7 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthScheme.d.ts +49 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthSchemeProvider.d.ts +20 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpSigner.d.ts +41 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/IdentityProviderConfig.d.ts +14 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/auth.d.ts +57 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/index.d.ts +6 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/blob/blob-payload-input-types.d.ts +40 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/checksum.d.ts +63 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/client.d.ts +49 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/command.d.ts +10 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/connection/config.d.ts +7 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/connection/index.d.ts +3 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/connection/manager.d.ts +28 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/connection/pool.d.ts +24 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/crypto.d.ts +60 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/downlevel-ts3.4/transform/type-transform.d.ts +41 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/encode.d.ts +19 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoint.d.ts +77 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/EndpointRuleObject.d.ts +15 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/ErrorRuleObject.d.ts +7 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/RuleSetObject.d.ts +19 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/TreeRuleObject.d.ts +10 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/index.d.ts +5 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/shared.d.ts +25 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/eventStream.d.ts +108 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/extensions/checksum.d.ts +55 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultClientConfiguration.d.ts +33 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +9 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/extensions/index.d.ts +4 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/extensions/retry.d.ts +18 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/externals-check/browser-externals-check.d.ts +35 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/http/httpHandlerInitialization.d.ts +64 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/http.d.ts +105 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/identity/apiKeyIdentity.d.ts +14 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/identity/awsCredentialIdentity.d.ts +27 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/identity/identity.d.ts +15 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/identity/index.d.ts +4 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/identity/tokenIdentity.d.ts +14 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/index.d.ts +36 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/logger.d.ts +13 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/middleware.d.ts +510 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/pagination.d.ts +26 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/profile.d.ts +30 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/response.d.ts +40 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/retry.d.ts +128 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/serde.d.ts +104 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/shapes.d.ts +72 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/signature.d.ts +150 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/stream.d.ts +22 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-common-types.d.ts +33 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-input-types.d.ts +61 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-output-types.d.ts +52 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/transfer.d.ts +33 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/transform/client-method-transforms.d.ts +26 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/transform/client-payload-blob-type-narrow.d.ts +84 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/transform/exact.d.ts +14 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/transform/no-undefined.d.ts +82 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/transform/type-transform.d.ts +41 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/uri.d.ts +17 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/util.d.ts +172 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/waiter.d.ts +35 -0
- package/node_modules/@smithy/types/dist-types/uri.d.ts +17 -0
- package/node_modules/@smithy/types/dist-types/util.d.ts +161 -0
- package/node_modules/@smithy/types/dist-types/waiter.d.ts +35 -0
- package/node_modules/@smithy/types/package.json +61 -0
- package/node_modules/@smithy/url-parser/LICENSE +201 -0
- package/node_modules/@smithy/url-parser/README.md +10 -0
- package/node_modules/@smithy/url-parser/dist-cjs/index.js +49 -0
- package/node_modules/@smithy/url-parser/dist-es/index.js +18 -0
- package/node_modules/@smithy/url-parser/dist-types/index.d.ts +5 -0
- package/node_modules/@smithy/url-parser/dist-types/ts3.4/index.d.ts +5 -0
- package/node_modules/@smithy/url-parser/package.json +58 -0
- package/node_modules/@smithy/util-base64/LICENSE +201 -0
- package/node_modules/@smithy/util-base64/README.md +4 -0
- package/node_modules/@smithy/util-base64/dist-cjs/constants.browser.js +35 -0
- package/node_modules/@smithy/util-base64/dist-cjs/fromBase64.browser.js +40 -0
- package/node_modules/@smithy/util-base64/dist-cjs/fromBase64.js +16 -0
- package/node_modules/@smithy/util-base64/dist-cjs/index.js +27 -0
- package/node_modules/@smithy/util-base64/dist-cjs/toBase64.browser.js +24 -0
- package/node_modules/@smithy/util-base64/dist-cjs/toBase64.js +6 -0
- package/node_modules/@smithy/util-base64/dist-es/constants.browser.js +28 -0
- package/node_modules/@smithy/util-base64/dist-es/fromBase64.browser.js +36 -0
- package/node_modules/@smithy/util-base64/dist-es/fromBase64.js +12 -0
- package/node_modules/@smithy/util-base64/dist-es/index.js +2 -0
- package/node_modules/@smithy/util-base64/dist-es/toBase64.browser.js +20 -0
- package/node_modules/@smithy/util-base64/dist-es/toBase64.js +2 -0
- package/node_modules/@smithy/util-base64/dist-types/constants.browser.d.ts +6 -0
- package/node_modules/@smithy/util-base64/dist-types/fromBase64.browser.d.ts +8 -0
- package/node_modules/@smithy/util-base64/dist-types/fromBase64.d.ts +7 -0
- package/node_modules/@smithy/util-base64/dist-types/index.d.ts +2 -0
- package/node_modules/@smithy/util-base64/dist-types/toBase64.browser.d.ts +8 -0
- package/node_modules/@smithy/util-base64/dist-types/toBase64.d.ts +7 -0
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/constants.browser.d.ts +6 -0
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/fromBase64.browser.d.ts +8 -0
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/fromBase64.d.ts +7 -0
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/toBase64.browser.d.ts +8 -0
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/toBase64.d.ts +7 -0
- package/node_modules/@smithy/util-base64/package.json +72 -0
- package/node_modules/@smithy/util-body-length-browser/LICENSE +201 -0
- package/node_modules/@smithy/util-body-length-browser/README.md +12 -0
- package/node_modules/@smithy/util-body-length-browser/dist-cjs/calculateBodyLength.js +1 -0
- package/node_modules/@smithy/util-body-length-browser/dist-cjs/index.js +57 -0
- package/node_modules/@smithy/util-body-length-browser/dist-es/calculateBodyLength.js +26 -0
- package/node_modules/@smithy/util-body-length-browser/dist-es/index.js +1 -0
- package/node_modules/@smithy/util-body-length-browser/dist-types/calculateBodyLength.d.ts +4 -0
- package/node_modules/@smithy/util-body-length-browser/dist-types/index.d.ts +4 -0
- package/node_modules/@smithy/util-body-length-browser/dist-types/ts3.4/calculateBodyLength.d.ts +4 -0
- package/node_modules/@smithy/util-body-length-browser/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@smithy/util-body-length-browser/package.json +57 -0
- package/node_modules/@smithy/util-body-length-node/LICENSE +201 -0
- package/node_modules/@smithy/util-body-length-node/README.md +12 -0
- package/node_modules/@smithy/util-body-length-node/dist-cjs/calculateBodyLength.js +1 -0
- package/node_modules/@smithy/util-body-length-node/dist-cjs/index.js +53 -0
- package/node_modules/@smithy/util-body-length-node/dist-es/calculateBodyLength.js +25 -0
- package/node_modules/@smithy/util-body-length-node/dist-es/index.js +1 -0
- package/node_modules/@smithy/util-body-length-node/dist-types/calculateBodyLength.d.ts +4 -0
- package/node_modules/@smithy/util-body-length-node/dist-types/index.d.ts +4 -0
- package/node_modules/@smithy/util-body-length-node/dist-types/ts3.4/calculateBodyLength.d.ts +4 -0
- package/node_modules/@smithy/util-body-length-node/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@smithy/util-body-length-node/package.json +61 -0
- package/node_modules/@smithy/util-buffer-from/LICENSE +201 -0
- package/node_modules/@smithy/util-buffer-from/README.md +10 -0
- package/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +47 -0
- package/node_modules/@smithy/util-buffer-from/dist-es/index.js +14 -0
- package/node_modules/@smithy/util-buffer-from/dist-types/index.d.ts +13 -0
- package/node_modules/@smithy/util-buffer-from/dist-types/ts3.4/index.d.ts +13 -0
- package/node_modules/@smithy/util-buffer-from/package.json +61 -0
- package/node_modules/@smithy/util-config-provider/LICENSE +201 -0
- package/node_modules/@smithy/util-config-provider/README.md +4 -0
- package/node_modules/@smithy/util-config-provider/dist-cjs/booleanSelector.js +1 -0
- package/node_modules/@smithy/util-config-provider/dist-cjs/index.js +64 -0
- package/node_modules/@smithy/util-config-provider/dist-cjs/numberSelector.js +1 -0
- package/node_modules/@smithy/util-config-provider/dist-cjs/types.js +1 -0
- package/node_modules/@smithy/util-config-provider/dist-es/booleanSelector.js +9 -0
- package/node_modules/@smithy/util-config-provider/dist-es/index.js +3 -0
- package/node_modules/@smithy/util-config-provider/dist-es/numberSelector.js +9 -0
- package/node_modules/@smithy/util-config-provider/dist-es/types.js +5 -0
- package/node_modules/@smithy/util-config-provider/dist-types/booleanSelector.d.ts +10 -0
- package/node_modules/@smithy/util-config-provider/dist-types/index.d.ts +3 -0
- package/node_modules/@smithy/util-config-provider/dist-types/numberSelector.d.ts +9 -0
- package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/booleanSelector.d.ts +10 -0
- package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/numberSelector.d.ts +9 -0
- package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/types.d.ts +4 -0
- package/node_modules/@smithy/util-config-provider/dist-types/types.d.ts +4 -0
- package/node_modules/@smithy/util-config-provider/package.json +62 -0
- package/node_modules/@smithy/util-defaults-mode-browser/LICENSE +201 -0
- package/node_modules/@smithy/util-defaults-mode-browser/README.md +10 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/constants.js +4 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/index.js +25 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.js +33 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.native.js +23 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-es/constants.js +1 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-es/index.js +1 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.js +27 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.native.js +19 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/constants.d.ts +12 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/index.d.ts +4 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.d.ts +17 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.native.d.ts +16 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/constants.d.ts +12 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +17 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.native.d.ts +16 -0
- package/node_modules/@smithy/util-defaults-mode-browser/package.json +66 -0
- package/node_modules/@smithy/util-defaults-mode-node/LICENSE +201 -0
- package/node_modules/@smithy/util-defaults-mode-node/README.md +10 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/constants.js +1 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/defaultsModeConfig.js +1 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/index.js +109 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/resolveDefaultsModeConfig.js +1 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-es/constants.js +6 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-es/defaultsModeConfig.js +11 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-es/index.js +1 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-es/resolveDefaultsModeConfig.js +52 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/constants.d.ts +24 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/defaultsModeConfig.d.ts +6 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/index.d.ts +4 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/resolveDefaultsModeConfig.d.ts +17 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/constants.d.ts +24 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/defaultsModeConfig.d.ts +6 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +17 -0
- package/node_modules/@smithy/util-defaults-mode-node/package.json +66 -0
- package/node_modules/@smithy/util-endpoints/LICENSE +201 -0
- package/node_modules/@smithy/util-endpoints/README.md +10 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/debug/debugId.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/debug/index.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/debug/toDebugString.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/getEndpointUrlConfig.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/index.js +484 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/booleanEquals.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/getAttr.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/getAttrPathList.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/index.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/isIpAddress.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/isSet.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/isValidHostLabel.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/not.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/parseURL.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/stringEquals.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/substring.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/uriEncode.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/resolveEndpoint.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/types/EndpointError.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/types/EndpointFunctions.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/types/EndpointRuleObject.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/types/ErrorRuleObject.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/types/RuleSetObject.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/types/TreeRuleObject.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/types/index.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/types/shared.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/callFunction.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/customEndpointFunctions.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/endpointFunctions.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateCondition.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateConditions.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateEndpointRule.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateErrorRule.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateExpression.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateRules.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateTemplate.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateTreeRule.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/getEndpointHeaders.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/getEndpointProperties.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/getEndpointProperty.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/getEndpointUrl.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/getReferenceValue.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/index.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/debug/debugId.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/debug/index.js +2 -0
- package/node_modules/@smithy/util-endpoints/dist-es/debug/toDebugString.js +12 -0
- package/node_modules/@smithy/util-endpoints/dist-es/getEndpointUrlConfig.js +21 -0
- package/node_modules/@smithy/util-endpoints/dist-es/index.js +5 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/booleanEquals.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/getAttr.js +11 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/getAttrPathList.js +25 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/index.js +9 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/isIpAddress.js +2 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/isSet.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/isValidHostLabel.js +13 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/not.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/parseURL.js +51 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/stringEquals.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/substring.js +9 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/uriEncode.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/resolveEndpoint.js +37 -0
- package/node_modules/@smithy/util-endpoints/dist-es/types/EndpointError.js +6 -0
- package/node_modules/@smithy/util-endpoints/dist-es/types/EndpointFunctions.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/types/EndpointRuleObject.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/types/ErrorRuleObject.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/types/RuleSetObject.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/types/TreeRuleObject.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/types/index.js +7 -0
- package/node_modules/@smithy/util-endpoints/dist-es/types/shared.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/callFunction.js +11 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/customEndpointFunctions.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/endpointFunctions.js +12 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateCondition.js +14 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateConditions.js +22 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateEndpointRule.js +27 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateErrorRule.js +14 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateExpression.js +16 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateRules.js +27 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateTemplate.js +36 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateTreeRule.js +13 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointHeaders.js +12 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointProperties.js +5 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointProperty.js +21 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointUrl.js +15 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/getReferenceValue.js +7 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/index.js +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/debug/debugId.d.ts +1 -0
- package/node_modules/@smithy/util-endpoints/dist-types/debug/index.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/debug/toDebugString.d.ts +9 -0
- package/node_modules/@smithy/util-endpoints/dist-types/getEndpointUrlConfig.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/index.d.ts +5 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/booleanEquals.d.ts +5 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/getAttr.d.ts +7 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/getAttrPathList.d.ts +4 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/index.d.ts +9 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/isIpAddress.d.ts +4 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/isSet.d.ts +5 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/isValidHostLabel.d.ts +7 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/not.d.ts +5 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/parseURL.d.ts +5 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/stringEquals.d.ts +5 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/substring.d.ts +7 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/uriEncode.d.ts +4 -0
- package/node_modules/@smithy/util-endpoints/dist-types/resolveEndpoint.d.ts +6 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/debug/debugId.d.ts +1 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/debug/index.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/debug/toDebugString.d.ts +9 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/getEndpointUrlConfig.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/index.d.ts +5 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/booleanEquals.d.ts +5 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/getAttr.d.ts +7 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/getAttrPathList.d.ts +4 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/index.d.ts +9 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts +4 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/isSet.d.ts +5 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/isValidHostLabel.d.ts +7 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/not.d.ts +5 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/parseURL.d.ts +5 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/stringEquals.d.ts +5 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/substring.d.ts +7 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/uriEncode.d.ts +4 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/resolveEndpoint.d.ts +6 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/EndpointError.d.ts +3 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/EndpointFunctions.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/EndpointRuleObject.d.ts +5 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/ErrorRuleObject.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/RuleSetObject.d.ts +4 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/TreeRuleObject.d.ts +3 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/index.d.ts +7 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/shared.d.ts +25 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/callFunction.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/customEndpointFunctions.d.ts +4 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/endpointFunctions.d.ts +11 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateCondition.d.ts +8 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateConditions.d.ts +8 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateEndpointRule.d.ts +3 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateErrorRule.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateExpression.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateRules.d.ts +3 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateTemplate.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateTreeRule.d.ts +3 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointHeaders.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointProperties.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointProperty.d.ts +3 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointUrl.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getReferenceValue.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/index.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/types/EndpointError.d.ts +3 -0
- package/node_modules/@smithy/util-endpoints/dist-types/types/EndpointFunctions.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +5 -0
- package/node_modules/@smithy/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/types/RuleSetObject.d.ts +4 -0
- package/node_modules/@smithy/util-endpoints/dist-types/types/TreeRuleObject.d.ts +3 -0
- package/node_modules/@smithy/util-endpoints/dist-types/types/index.d.ts +7 -0
- package/node_modules/@smithy/util-endpoints/dist-types/types/shared.d.ts +25 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/callFunction.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/customEndpointFunctions.d.ts +4 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/endpointFunctions.d.ts +11 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateCondition.d.ts +8 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateConditions.d.ts +8 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateEndpointRule.d.ts +3 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateErrorRule.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateExpression.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateRules.d.ts +3 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateTemplate.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateTreeRule.d.ts +3 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointHeaders.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointProperties.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointProperty.d.ts +3 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointUrl.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getReferenceValue.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/index.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/package.json +67 -0
- package/node_modules/@smithy/util-hex-encoding/LICENSE +201 -0
- package/node_modules/@smithy/util-hex-encoding/README.md +4 -0
- package/node_modules/@smithy/util-hex-encoding/dist-cjs/index.js +67 -0
- package/node_modules/@smithy/util-hex-encoding/dist-es/index.js +33 -0
- package/node_modules/@smithy/util-hex-encoding/dist-types/index.d.ts +12 -0
- package/node_modules/@smithy/util-hex-encoding/dist-types/ts3.4/index.d.ts +12 -0
- package/node_modules/@smithy/util-hex-encoding/package.json +60 -0
- package/node_modules/@smithy/util-middleware/LICENSE +201 -0
- package/node_modules/@smithy/util-middleware/README.md +12 -0
- package/node_modules/@smithy/util-middleware/dist-cjs/getSmithyContext.js +1 -0
- package/node_modules/@smithy/util-middleware/dist-cjs/index.js +45 -0
- package/node_modules/@smithy/util-middleware/dist-cjs/normalizeProvider.js +1 -0
- package/node_modules/@smithy/util-middleware/dist-es/getSmithyContext.js +2 -0
- package/node_modules/@smithy/util-middleware/dist-es/index.js +2 -0
- package/node_modules/@smithy/util-middleware/dist-es/normalizeProvider.js +6 -0
- package/node_modules/@smithy/util-middleware/dist-types/getSmithyContext.d.ts +5 -0
- package/node_modules/@smithy/util-middleware/dist-types/index.d.ts +8 -0
- package/node_modules/@smithy/util-middleware/dist-types/normalizeProvider.d.ts +7 -0
- package/node_modules/@smithy/util-middleware/dist-types/ts3.4/getSmithyContext.d.ts +5 -0
- package/node_modules/@smithy/util-middleware/dist-types/ts3.4/index.d.ts +8 -0
- package/node_modules/@smithy/util-middleware/dist-types/ts3.4/normalizeProvider.d.ts +7 -0
- package/node_modules/@smithy/util-middleware/package.json +66 -0
- package/node_modules/@smithy/util-retry/LICENSE +201 -0
- package/node_modules/@smithy/util-retry/README.md +78 -0
- package/node_modules/@smithy/util-retry/dist-cjs/AdaptiveRetryStrategy.js +1 -0
- package/node_modules/@smithy/util-retry/dist-cjs/ConfiguredRetryStrategy.js +1 -0
- package/node_modules/@smithy/util-retry/dist-cjs/DefaultRateLimiter.js +1 -0
- package/node_modules/@smithy/util-retry/dist-cjs/StandardRetryStrategy.js +1 -0
- package/node_modules/@smithy/util-retry/dist-cjs/config.js +1 -0
- package/node_modules/@smithy/util-retry/dist-cjs/constants.js +1 -0
- package/node_modules/@smithy/util-retry/dist-cjs/defaultRetryBackoffStrategy.js +1 -0
- package/node_modules/@smithy/util-retry/dist-cjs/defaultRetryToken.js +1 -0
- package/node_modules/@smithy/util-retry/dist-cjs/index.js +347 -0
- package/node_modules/@smithy/util-retry/dist-cjs/types.js +1 -0
- package/node_modules/@smithy/util-retry/dist-es/AdaptiveRetryStrategy.js +24 -0
- package/node_modules/@smithy/util-retry/dist-es/ConfiguredRetryStrategy.js +18 -0
- package/node_modules/@smithy/util-retry/dist-es/DefaultRateLimiter.js +99 -0
- package/node_modules/@smithy/util-retry/dist-es/StandardRetryStrategy.js +65 -0
- package/node_modules/@smithy/util-retry/dist-es/config.js +7 -0
- package/node_modules/@smithy/util-retry/dist-es/constants.js +9 -0
- package/node_modules/@smithy/util-retry/dist-es/defaultRetryBackoffStrategy.js +14 -0
- package/node_modules/@smithy/util-retry/dist-es/defaultRetryToken.js +11 -0
- package/node_modules/@smithy/util-retry/dist-es/index.js +7 -0
- package/node_modules/@smithy/util-retry/dist-es/types.js +1 -0
- package/node_modules/@smithy/util-retry/dist-types/AdaptiveRetryStrategy.d.ts +33 -0
- package/node_modules/@smithy/util-retry/dist-types/ConfiguredRetryStrategy.d.ts +32 -0
- package/node_modules/@smithy/util-retry/dist-types/DefaultRateLimiter.d.ts +45 -0
- package/node_modules/@smithy/util-retry/dist-types/StandardRetryStrategy.d.ts +26 -0
- package/node_modules/@smithy/util-retry/dist-types/config.d.ts +20 -0
- package/node_modules/@smithy/util-retry/dist-types/constants.d.ts +59 -0
- package/node_modules/@smithy/util-retry/dist-types/defaultRetryBackoffStrategy.d.ts +5 -0
- package/node_modules/@smithy/util-retry/dist-types/defaultRetryToken.d.ts +9 -0
- package/node_modules/@smithy/util-retry/dist-types/index.d.ts +7 -0
- package/node_modules/@smithy/util-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +33 -0
- package/node_modules/@smithy/util-retry/dist-types/ts3.4/ConfiguredRetryStrategy.d.ts +32 -0
- package/node_modules/@smithy/util-retry/dist-types/ts3.4/DefaultRateLimiter.d.ts +45 -0
- package/node_modules/@smithy/util-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +26 -0
- package/node_modules/@smithy/util-retry/dist-types/ts3.4/config.d.ts +20 -0
- package/node_modules/@smithy/util-retry/dist-types/ts3.4/constants.d.ts +59 -0
- package/node_modules/@smithy/util-retry/dist-types/ts3.4/defaultRetryBackoffStrategy.d.ts +5 -0
- package/node_modules/@smithy/util-retry/dist-types/ts3.4/defaultRetryToken.d.ts +9 -0
- package/node_modules/@smithy/util-retry/dist-types/ts3.4/index.d.ts +7 -0
- package/node_modules/@smithy/util-retry/dist-types/ts3.4/types.d.ts +19 -0
- package/node_modules/@smithy/util-retry/dist-types/types.d.ts +19 -0
- package/node_modules/@smithy/util-retry/package.json +68 -0
- package/node_modules/@smithy/util-stream/LICENSE +201 -0
- package/node_modules/@smithy/util-stream/README.md +6 -0
- package/node_modules/@smithy/util-stream/dist-cjs/blob/Uint8ArrayBlobAdapter.js +1 -0
- package/node_modules/@smithy/util-stream/dist-cjs/blob/transforms.js +1 -0
- package/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.browser.js +31 -0
- package/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.js +30 -0
- package/node_modules/@smithy/util-stream/dist-cjs/index.js +89 -0
- package/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.browser.js +69 -0
- package/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.js +50 -0
- package/node_modules/@smithy/util-stream/dist-es/blob/Uint8ArrayBlobAdapter.js +18 -0
- package/node_modules/@smithy/util-stream/dist-es/blob/transforms.js +15 -0
- package/node_modules/@smithy/util-stream/dist-es/getAwsChunkedEncodingStream.browser.js +27 -0
- package/node_modules/@smithy/util-stream/dist-es/getAwsChunkedEncodingStream.js +26 -0
- package/node_modules/@smithy/util-stream/dist-es/index.js +3 -0
- package/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.browser.js +64 -0
- package/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.js +45 -0
- package/node_modules/@smithy/util-stream/dist-types/blob/Uint8ArrayBlobAdapter.d.ts +21 -0
- package/node_modules/@smithy/util-stream/dist-types/blob/transforms.d.ts +9 -0
- package/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.browser.d.ts +5 -0
- package/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.d.ts +7 -0
- package/node_modules/@smithy/util-stream/dist-types/index.d.ts +3 -0
- package/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.browser.d.ts +7 -0
- package/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts +8 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/blob/Uint8ArrayBlobAdapter.d.ts +21 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/blob/transforms.d.ts +9 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/getAwsChunkedEncodingStream.browser.d.ts +5 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/getAwsChunkedEncodingStream.d.ts +7 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/sdk-stream-mixin.browser.d.ts +7 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/sdk-stream-mixin.d.ts +8 -0
- package/node_modules/@smithy/util-stream/package.json +95 -0
- package/node_modules/@smithy/util-uri-escape/LICENSE +201 -0
- package/node_modules/@smithy/util-uri-escape/README.md +10 -0
- package/node_modules/@smithy/util-uri-escape/dist-cjs/escape-uri-path.js +1 -0
- package/node_modules/@smithy/util-uri-escape/dist-cjs/escape-uri.js +1 -0
- package/node_modules/@smithy/util-uri-escape/dist-cjs/index.js +43 -0
- package/node_modules/@smithy/util-uri-escape/dist-es/escape-uri-path.js +2 -0
- package/node_modules/@smithy/util-uri-escape/dist-es/escape-uri.js +2 -0
- package/node_modules/@smithy/util-uri-escape/dist-es/index.js +2 -0
- package/node_modules/@smithy/util-uri-escape/dist-types/escape-uri-path.d.ts +4 -0
- package/node_modules/@smithy/util-uri-escape/dist-types/escape-uri.d.ts +4 -0
- package/node_modules/@smithy/util-uri-escape/dist-types/index.d.ts +8 -0
- package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/escape-uri-path.d.ts +4 -0
- package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/escape-uri.d.ts +4 -0
- package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/index.d.ts +8 -0
- package/node_modules/@smithy/util-uri-escape/package.json +59 -0
- package/node_modules/@smithy/util-utf8/LICENSE +201 -0
- package/node_modules/@smithy/util-utf8/README.md +4 -0
- package/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.browser.js +1 -0
- package/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.js +1 -0
- package/node_modules/@smithy/util-utf8/dist-cjs/index.js +57 -0
- package/node_modules/@smithy/util-utf8/dist-cjs/toUint8Array.js +1 -0
- package/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.browser.js +1 -0
- package/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.js +1 -0
- package/node_modules/@smithy/util-utf8/dist-es/fromUtf8.browser.js +1 -0
- package/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js +5 -0
- package/node_modules/@smithy/util-utf8/dist-es/index.js +3 -0
- package/node_modules/@smithy/util-utf8/dist-es/toUint8Array.js +10 -0
- package/node_modules/@smithy/util-utf8/dist-es/toUtf8.browser.js +1 -0
- package/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +2 -0
- package/node_modules/@smithy/util-utf8/dist-types/fromUtf8.browser.d.ts +1 -0
- package/node_modules/@smithy/util-utf8/dist-types/fromUtf8.d.ts +1 -0
- package/node_modules/@smithy/util-utf8/dist-types/index.d.ts +3 -0
- package/node_modules/@smithy/util-utf8/dist-types/toUint8Array.d.ts +1 -0
- package/node_modules/@smithy/util-utf8/dist-types/toUtf8.browser.d.ts +1 -0
- package/node_modules/@smithy/util-utf8/dist-types/toUtf8.d.ts +1 -0
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.browser.d.ts +1 -0
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +1 -0
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +1 -0
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +1 -0
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.d.ts +1 -0
- package/node_modules/@smithy/util-utf8/package.json +66 -0
- package/node_modules/@smithy/util-waiter/LICENSE +201 -0
- package/node_modules/@smithy/util-waiter/README.md +10 -0
- package/node_modules/@smithy/util-waiter/dist-cjs/createWaiter.js +1 -0
- package/node_modules/@smithy/util-waiter/dist-cjs/index.js +155 -0
- package/node_modules/@smithy/util-waiter/dist-cjs/poller.js +1 -0
- package/node_modules/@smithy/util-waiter/dist-cjs/utils/index.js +1 -0
- package/node_modules/@smithy/util-waiter/dist-cjs/utils/sleep.js +1 -0
- package/node_modules/@smithy/util-waiter/dist-cjs/utils/validate.js +1 -0
- package/node_modules/@smithy/util-waiter/dist-cjs/waiter.js +1 -0
- package/node_modules/@smithy/util-waiter/dist-es/createWaiter.js +23 -0
- package/node_modules/@smithy/util-waiter/dist-es/index.js +2 -0
- package/node_modules/@smithy/util-waiter/dist-es/poller.js +33 -0
- package/node_modules/@smithy/util-waiter/dist-es/utils/index.js +2 -0
- package/node_modules/@smithy/util-waiter/dist-es/utils/sleep.js +3 -0
- package/node_modules/@smithy/util-waiter/dist-es/utils/validate.js +17 -0
- package/node_modules/@smithy/util-waiter/dist-es/waiter.js +34 -0
- package/node_modules/@smithy/util-waiter/dist-types/createWaiter.d.ts +11 -0
- package/node_modules/@smithy/util-waiter/dist-types/index.d.ts +2 -0
- package/node_modules/@smithy/util-waiter/dist-types/poller.d.ts +10 -0
- package/node_modules/@smithy/util-waiter/dist-types/ts3.4/createWaiter.d.ts +11 -0
- package/node_modules/@smithy/util-waiter/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@smithy/util-waiter/dist-types/ts3.4/poller.d.ts +10 -0
- package/node_modules/@smithy/util-waiter/dist-types/ts3.4/utils/index.d.ts +8 -0
- package/node_modules/@smithy/util-waiter/dist-types/ts3.4/utils/sleep.d.ts +4 -0
- package/node_modules/@smithy/util-waiter/dist-types/ts3.4/utils/validate.d.ts +8 -0
- package/node_modules/@smithy/util-waiter/dist-types/ts3.4/waiter.d.ts +44 -0
- package/node_modules/@smithy/util-waiter/dist-types/utils/index.d.ts +8 -0
- package/node_modules/@smithy/util-waiter/dist-types/utils/sleep.d.ts +4 -0
- package/node_modules/@smithy/util-waiter/dist-types/utils/validate.d.ts +8 -0
- package/node_modules/@smithy/util-waiter/dist-types/waiter.d.ts +44 -0
- package/node_modules/@smithy/util-waiter/package.json +62 -0
- package/node_modules/@types/aws-lambda/LICENSE +21 -0
- package/node_modules/@types/aws-lambda/README.md +15 -0
- package/node_modules/@types/aws-lambda/common/api-gateway.d.ts +83 -0
- package/node_modules/@types/aws-lambda/common/cloudfront.d.ts +232 -0
- package/node_modules/@types/aws-lambda/handler.d.ts +172 -0
- package/node_modules/@types/aws-lambda/index.d.ts +51 -0
- package/node_modules/@types/aws-lambda/package.json +230 -0
- package/node_modules/@types/aws-lambda/trigger/alb.d.ts +48 -0
- package/node_modules/@types/aws-lambda/trigger/amplify-resolver.d.ts +38 -0
- package/node_modules/@types/aws-lambda/trigger/api-gateway-authorizer.d.ts +244 -0
- package/node_modules/@types/aws-lambda/trigger/api-gateway-proxy.d.ts +336 -0
- package/node_modules/@types/aws-lambda/trigger/appsync-resolver.d.ts +116 -0
- package/node_modules/@types/aws-lambda/trigger/autoscaling.d.ts +41 -0
- package/node_modules/@types/aws-lambda/trigger/cdk-custom-resource.d.ts +67 -0
- package/node_modules/@types/aws-lambda/trigger/cloudformation-custom-resource.d.ts +70 -0
- package/node_modules/@types/aws-lambda/trigger/cloudfront-request.d.ts +22 -0
- package/node_modules/@types/aws-lambda/trigger/cloudfront-response.d.ts +21 -0
- package/node_modules/@types/aws-lambda/trigger/cloudwatch-events.d.ts +8 -0
- package/node_modules/@types/aws-lambda/trigger/cloudwatch-logs.d.ts +37 -0
- package/node_modules/@types/aws-lambda/trigger/codebuild-cloudwatch-state.d.ts +104 -0
- package/node_modules/@types/aws-lambda/trigger/codecommit.d.ts +35 -0
- package/node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-action.d.ts +31 -0
- package/node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-pipeline.d.ts +32 -0
- package/node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-stage.d.ts +23 -0
- package/node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch.d.ts +11 -0
- package/node_modules/@types/aws-lambda/trigger/codepipeline.d.ts +55 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/_common.d.ts +41 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/create-auth-challenge.d.ts +22 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/custom-email-sender.d.ts +76 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/custom-message.d.ts +52 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/custom-sms-sender.d.ts +51 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/define-auth-challenge.d.ts +21 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/index.d.ts +128 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/post-authentication.d.ts +15 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/post-confirmation.d.ts +26 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-authentication.d.ts +16 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-signup.d.ts +31 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-token-generation-v2.d.ts +73 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-token-generation.d.ts +53 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/user-migration.d.ts +40 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/verify-auth-challenge-response.d.ts +22 -0
- package/node_modules/@types/aws-lambda/trigger/connect-contact-flow.d.ts +64 -0
- package/node_modules/@types/aws-lambda/trigger/dynamodb-stream.d.ts +55 -0
- package/node_modules/@types/aws-lambda/trigger/eventbridge.d.ts +19 -0
- package/node_modules/@types/aws-lambda/trigger/iot-authorizer.d.ts +48 -0
- package/node_modules/@types/aws-lambda/trigger/iot.d.ts +28 -0
- package/node_modules/@types/aws-lambda/trigger/kinesis-firehose-transformation.d.ts +51 -0
- package/node_modules/@types/aws-lambda/trigger/kinesis-stream.d.ts +56 -0
- package/node_modules/@types/aws-lambda/trigger/lambda-function-url.d.ts +45 -0
- package/node_modules/@types/aws-lambda/trigger/lex-v2.d.ts +164 -0
- package/node_modules/@types/aws-lambda/trigger/lex.d.ts +120 -0
- package/node_modules/@types/aws-lambda/trigger/msk.d.ts +28 -0
- package/node_modules/@types/aws-lambda/trigger/s3-batch.d.ts +41 -0
- package/node_modules/@types/aws-lambda/trigger/s3-event-notification.d.ts +290 -0
- package/node_modules/@types/aws-lambda/trigger/s3.d.ts +60 -0
- package/node_modules/@types/aws-lambda/trigger/secretsmanager.d.ts +15 -0
- package/node_modules/@types/aws-lambda/trigger/self-managed-kafka.d.ts +27 -0
- package/node_modules/@types/aws-lambda/trigger/ses.d.ts +109 -0
- package/node_modules/@types/aws-lambda/trigger/sns.d.ts +39 -0
- package/node_modules/@types/aws-lambda/trigger/sqs.d.ts +57 -0
- package/node_modules/asynckit/LICENSE +21 -0
- package/node_modules/asynckit/README.md +233 -0
- package/node_modules/asynckit/bench.js +76 -0
- package/node_modules/asynckit/index.js +6 -0
- package/node_modules/asynckit/lib/abort.js +29 -0
- package/node_modules/asynckit/lib/async.js +34 -0
- package/node_modules/asynckit/lib/defer.js +26 -0
- package/node_modules/asynckit/lib/iterate.js +75 -0
- package/node_modules/asynckit/lib/readable_asynckit.js +91 -0
- package/node_modules/asynckit/lib/readable_parallel.js +25 -0
- package/node_modules/asynckit/lib/readable_serial.js +25 -0
- package/node_modules/asynckit/lib/readable_serial_ordered.js +29 -0
- package/node_modules/asynckit/lib/state.js +37 -0
- package/node_modules/asynckit/lib/streamify.js +141 -0
- package/node_modules/asynckit/lib/terminator.js +29 -0
- package/node_modules/asynckit/package.json +63 -0
- package/node_modules/asynckit/parallel.js +43 -0
- package/node_modules/asynckit/serial.js +17 -0
- package/node_modules/asynckit/serialOrdered.js +75 -0
- package/node_modules/asynckit/stream.js +21 -0
- package/node_modules/axios/CHANGELOG.md +830 -0
- package/node_modules/axios/LICENSE +7 -0
- package/node_modules/axios/MIGRATION_GUIDE.md +3 -0
- package/node_modules/axios/README.md +1647 -0
- package/node_modules/axios/SECURITY.md +6 -0
- package/node_modules/axios/dist/axios.js +3062 -0
- package/node_modules/axios/dist/axios.js.map +1 -0
- package/node_modules/axios/dist/axios.min.js +2 -0
- package/node_modules/axios/dist/axios.min.js.map +1 -0
- package/node_modules/axios/dist/browser/axios.cjs +3237 -0
- package/node_modules/axios/dist/browser/axios.cjs.map +1 -0
- package/node_modules/axios/dist/esm/axios.js +3260 -0
- package/node_modules/axios/dist/esm/axios.js.map +1 -0
- package/node_modules/axios/dist/esm/axios.min.js +2 -0
- package/node_modules/axios/dist/esm/axios.min.js.map +1 -0
- package/node_modules/axios/dist/node/axios.cjs +4334 -0
- package/node_modules/axios/dist/node/axios.cjs.map +1 -0
- package/node_modules/axios/index.d.cts +542 -0
- package/node_modules/axios/index.d.ts +559 -0
- package/node_modules/axios/index.js +43 -0
- package/node_modules/axios/lib/adapters/README.md +37 -0
- package/node_modules/axios/lib/adapters/adapters.js +77 -0
- package/node_modules/axios/lib/adapters/http.js +685 -0
- package/node_modules/axios/lib/adapters/xhr.js +260 -0
- package/node_modules/axios/lib/axios.js +89 -0
- package/node_modules/axios/lib/cancel/CancelToken.js +121 -0
- package/node_modules/axios/lib/cancel/CanceledError.js +25 -0
- package/node_modules/axios/lib/cancel/isCancel.js +5 -0
- package/node_modules/axios/lib/core/Axios.js +201 -0
- package/node_modules/axios/lib/core/AxiosError.js +100 -0
- package/node_modules/axios/lib/core/AxiosHeaders.js +298 -0
- package/node_modules/axios/lib/core/InterceptorManager.js +71 -0
- package/node_modules/axios/lib/core/README.md +8 -0
- package/node_modules/axios/lib/core/buildFullPath.js +21 -0
- package/node_modules/axios/lib/core/dispatchRequest.js +81 -0
- package/node_modules/axios/lib/core/mergeConfig.js +106 -0
- package/node_modules/axios/lib/core/settle.js +27 -0
- package/node_modules/axios/lib/core/transformData.js +28 -0
- package/node_modules/axios/lib/defaults/index.js +159 -0
- package/node_modules/axios/lib/defaults/transitional.js +7 -0
- package/node_modules/axios/lib/env/README.md +3 -0
- package/node_modules/axios/lib/env/classes/FormData.js +2 -0
- package/node_modules/axios/lib/env/data.js +1 -0
- package/node_modules/axios/lib/helpers/AxiosTransformStream.js +191 -0
- package/node_modules/axios/lib/helpers/AxiosURLSearchParams.js +58 -0
- package/node_modules/axios/lib/helpers/HttpStatusCode.js +71 -0
- package/node_modules/axios/lib/helpers/README.md +7 -0
- package/node_modules/axios/lib/helpers/ZlibHeaderTransformStream.js +28 -0
- package/node_modules/axios/lib/helpers/bind.js +7 -0
- package/node_modules/axios/lib/helpers/buildURL.js +63 -0
- package/node_modules/axios/lib/helpers/callbackify.js +16 -0
- package/node_modules/axios/lib/helpers/combineURLs.js +15 -0
- package/node_modules/axios/lib/helpers/cookies.js +42 -0
- package/node_modules/axios/lib/helpers/deprecatedMethod.js +26 -0
- package/node_modules/axios/lib/helpers/formDataToJSON.js +95 -0
- package/node_modules/axios/lib/helpers/formDataToStream.js +111 -0
- package/node_modules/axios/lib/helpers/fromDataURI.js +53 -0
- package/node_modules/axios/lib/helpers/isAbsoluteURL.js +15 -0
- package/node_modules/axios/lib/helpers/isAxiosError.js +14 -0
- package/node_modules/axios/lib/helpers/isURLSameOrigin.js +67 -0
- package/node_modules/axios/lib/helpers/null.js +2 -0
- package/node_modules/axios/lib/helpers/parseHeaders.js +55 -0
- package/node_modules/axios/lib/helpers/parseProtocol.js +6 -0
- package/node_modules/axios/lib/helpers/readBlob.js +15 -0
- package/node_modules/axios/lib/helpers/speedometer.js +55 -0
- package/node_modules/axios/lib/helpers/spread.js +28 -0
- package/node_modules/axios/lib/helpers/throttle.js +33 -0
- package/node_modules/axios/lib/helpers/toFormData.js +219 -0
- package/node_modules/axios/lib/helpers/toURLEncodedForm.js +18 -0
- package/node_modules/axios/lib/helpers/validator.js +91 -0
- package/node_modules/axios/lib/platform/browser/classes/Blob.js +3 -0
- package/node_modules/axios/lib/platform/browser/classes/FormData.js +3 -0
- package/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js +4 -0
- package/node_modules/axios/lib/platform/browser/index.js +13 -0
- package/node_modules/axios/lib/platform/common/utils.js +47 -0
- package/node_modules/axios/lib/platform/index.js +7 -0
- package/node_modules/axios/lib/platform/node/classes/FormData.js +3 -0
- package/node_modules/axios/lib/platform/node/classes/URLSearchParams.js +4 -0
- package/node_modules/axios/lib/platform/node/index.js +12 -0
- package/node_modules/axios/lib/utils.js +723 -0
- package/node_modules/axios/package.json +218 -0
- package/node_modules/bowser/CHANGELOG.md +218 -0
- package/node_modules/bowser/LICENSE +39 -0
- package/node_modules/bowser/README.md +179 -0
- package/node_modules/bowser/bundled.js +1 -0
- package/node_modules/bowser/es5.js +1 -0
- package/node_modules/bowser/index.d.ts +250 -0
- package/node_modules/bowser/package.json +83 -0
- package/node_modules/bowser/src/bowser.js +77 -0
- package/node_modules/bowser/src/constants.js +116 -0
- package/node_modules/bowser/src/parser-browsers.js +700 -0
- package/node_modules/bowser/src/parser-engines.js +120 -0
- package/node_modules/bowser/src/parser-os.js +199 -0
- package/node_modules/bowser/src/parser-platforms.js +266 -0
- package/node_modules/bowser/src/parser.js +496 -0
- package/node_modules/bowser/src/utils.js +309 -0
- package/node_modules/cdk-remote-stack/.gitattributes +27 -0
- package/node_modules/cdk-remote-stack/.gitpod.yml +19 -0
- package/node_modules/cdk-remote-stack/.jsii +3139 -0
- package/node_modules/cdk-remote-stack/API.md +149 -0
- package/node_modules/cdk-remote-stack/CHANGELOG.md +290 -0
- package/node_modules/cdk-remote-stack/CONTRIBUTING.md +53 -0
- package/node_modules/cdk-remote-stack/LICENSE +202 -0
- package/node_modules/cdk-remote-stack/README.md +243 -0
- package/node_modules/cdk-remote-stack/custom-resource-handler/remote-outputs.py +62 -0
- package/node_modules/cdk-remote-stack/custom-resource-handler/remote-parameters.py +77 -0
- package/node_modules/cdk-remote-stack/images/remote-param-1.svg +3 -0
- package/node_modules/cdk-remote-stack/images/remote-param-2.svg +3 -0
- package/node_modules/cdk-remote-stack/images/remote-param-3.svg +3 -0
- package/node_modules/cdk-remote-stack/lib/index.d.ts +68 -0
- package/node_modules/cdk-remote-stack/lib/index.js +99 -0
- package/node_modules/cdk-remote-stack/lib/integ.default.d.ts +9 -0
- package/node_modules/cdk-remote-stack/lib/integ.default.js +92 -0
- package/node_modules/cdk-remote-stack/package.json +144 -0
- package/node_modules/cdk-remote-stack/version.json +3 -0
- package/node_modules/combined-stream/License +19 -0
- package/node_modules/combined-stream/Readme.md +138 -0
- package/node_modules/combined-stream/lib/combined_stream.js +208 -0
- package/node_modules/combined-stream/package.json +25 -0
- package/node_modules/cookie/HISTORY.md +147 -0
- package/node_modules/cookie/LICENSE +24 -0
- package/node_modules/cookie/README.md +317 -0
- package/node_modules/cookie/SECURITY.md +25 -0
- package/node_modules/cookie/index.js +274 -0
- package/node_modules/cookie/package.json +44 -0
- package/node_modules/delayed-stream/.npmignore +1 -0
- package/node_modules/delayed-stream/License +19 -0
- package/node_modules/delayed-stream/Makefile +7 -0
- package/node_modules/delayed-stream/Readme.md +141 -0
- package/node_modules/delayed-stream/lib/delayed_stream.js +107 -0
- package/node_modules/delayed-stream/package.json +27 -0
- package/node_modules/dotenv/CHANGELOG.md +447 -0
- package/node_modules/dotenv/LICENSE +23 -0
- package/node_modules/dotenv/README-es.md +442 -0
- package/node_modules/dotenv/README.md +669 -0
- package/node_modules/dotenv/config.d.ts +1 -0
- package/node_modules/dotenv/config.js +9 -0
- package/node_modules/dotenv/lib/cli-options.js +11 -0
- package/node_modules/dotenv/lib/env-options.js +24 -0
- package/node_modules/dotenv/lib/main.d.ts +153 -0
- package/node_modules/dotenv/lib/main.js +343 -0
- package/node_modules/dotenv/package.json +64 -0
- package/node_modules/fast-xml-parser/CHANGELOG.md +554 -0
- package/node_modules/fast-xml-parser/LICENSE +21 -0
- package/node_modules/fast-xml-parser/README.md +204 -0
- package/node_modules/fast-xml-parser/package.json +71 -0
- package/node_modules/fast-xml-parser/src/cli/cli.js +93 -0
- package/node_modules/fast-xml-parser/src/cli/man.js +12 -0
- package/node_modules/fast-xml-parser/src/cli/read.js +92 -0
- package/node_modules/fast-xml-parser/src/fxp.d.ts +108 -0
- package/node_modules/fast-xml-parser/src/fxp.js +11 -0
- package/node_modules/fast-xml-parser/src/util.js +72 -0
- package/node_modules/fast-xml-parser/src/validator.js +423 -0
- package/node_modules/fast-xml-parser/src/xmlbuilder/json2xml.js +259 -0
- package/node_modules/fast-xml-parser/src/xmlbuilder/orderedJs2Xml.js +131 -0
- package/node_modules/fast-xml-parser/src/xmlbuilder/prettifyJs2Xml.js +0 -0
- package/node_modules/fast-xml-parser/src/xmlparser/DocTypeReader.js +152 -0
- package/node_modules/fast-xml-parser/src/xmlparser/OptionsBuilder.js +48 -0
- package/node_modules/fast-xml-parser/src/xmlparser/OrderedObjParser.js +588 -0
- package/node_modules/fast-xml-parser/src/xmlparser/XMLParser.js +58 -0
- package/node_modules/fast-xml-parser/src/xmlparser/node2json.js +113 -0
- package/node_modules/fast-xml-parser/src/xmlparser/xmlNode.js +25 -0
- package/node_modules/follow-redirects/LICENSE +18 -0
- package/node_modules/follow-redirects/README.md +155 -0
- package/node_modules/follow-redirects/debug.js +15 -0
- package/node_modules/follow-redirects/http.js +1 -0
- package/node_modules/follow-redirects/https.js +1 -0
- package/node_modules/follow-redirects/index.js +672 -0
- package/node_modules/follow-redirects/package.json +58 -0
- package/node_modules/form-data/License +19 -0
- package/node_modules/form-data/README.md.bak +358 -0
- package/node_modules/form-data/Readme.md +358 -0
- package/node_modules/form-data/index.d.ts +62 -0
- package/node_modules/form-data/lib/browser.js +2 -0
- package/node_modules/form-data/lib/form_data.js +501 -0
- package/node_modules/form-data/lib/populate.js +10 -0
- package/node_modules/form-data/package.json +68 -0
- package/node_modules/jose/LICENSE.md +21 -0
- package/node_modules/jose/README.md +132 -0
- package/node_modules/jose/dist/browser/index.js +32 -0
- package/node_modules/jose/dist/browser/jwe/compact/decrypt.js +27 -0
- package/node_modules/jose/dist/browser/jwe/compact/encrypt.js +26 -0
- package/node_modules/jose/dist/browser/jwe/flattened/decrypt.js +166 -0
- package/node_modules/jose/dist/browser/jwe/flattened/encrypt.js +175 -0
- package/node_modules/jose/dist/browser/jwe/general/decrypt.js +31 -0
- package/node_modules/jose/dist/browser/jwe/general/encrypt.js +178 -0
- package/node_modules/jose/dist/browser/jwk/embedded.js +17 -0
- package/node_modules/jose/dist/browser/jwk/thumbprint.js +53 -0
- package/node_modules/jose/dist/browser/jwks/local.js +116 -0
- package/node_modules/jose/dist/browser/jwks/remote.js +76 -0
- package/node_modules/jose/dist/browser/jws/compact/sign.js +17 -0
- package/node_modules/jose/dist/browser/jws/compact/verify.js +21 -0
- package/node_modules/jose/dist/browser/jws/flattened/sign.js +81 -0
- package/node_modules/jose/dist/browser/jws/flattened/verify.js +115 -0
- package/node_modules/jose/dist/browser/jws/general/sign.js +67 -0
- package/node_modules/jose/dist/browser/jws/general/verify.js +24 -0
- package/node_modules/jose/dist/browser/jwt/decrypt.js +23 -0
- package/node_modules/jose/dist/browser/jwt/encrypt.js +68 -0
- package/node_modules/jose/dist/browser/jwt/produce.js +54 -0
- package/node_modules/jose/dist/browser/jwt/sign.js +21 -0
- package/node_modules/jose/dist/browser/jwt/unsecured.js +32 -0
- package/node_modules/jose/dist/browser/jwt/verify.js +16 -0
- package/node_modules/jose/dist/browser/key/export.js +12 -0
- package/node_modules/jose/dist/browser/key/generate_key_pair.js +4 -0
- package/node_modules/jose/dist/browser/key/generate_secret.js +4 -0
- package/node_modules/jose/dist/browser/key/import.js +50 -0
- package/node_modules/jose/dist/browser/lib/aesgcmkw.js +14 -0
- package/node_modules/jose/dist/browser/lib/buffer_utils.js +51 -0
- package/node_modules/jose/dist/browser/lib/cek.js +20 -0
- package/node_modules/jose/dist/browser/lib/check_iv_length.js +8 -0
- package/node_modules/jose/dist/browser/lib/check_key_type.js +45 -0
- package/node_modules/jose/dist/browser/lib/check_p2s.js +6 -0
- package/node_modules/jose/dist/browser/lib/crypto_key.js +152 -0
- package/node_modules/jose/dist/browser/lib/decrypt_key_management.js +127 -0
- package/node_modules/jose/dist/browser/lib/encrypt_key_management.js +87 -0
- package/node_modules/jose/dist/browser/lib/epoch.js +1 -0
- package/node_modules/jose/dist/browser/lib/format_pem.js +4 -0
- package/node_modules/jose/dist/browser/lib/invalid_key_input.js +30 -0
- package/node_modules/jose/dist/browser/lib/is_disjoint.js +22 -0
- package/node_modules/jose/dist/browser/lib/is_object.js +16 -0
- package/node_modules/jose/dist/browser/lib/iv.js +20 -0
- package/node_modules/jose/dist/browser/lib/jwt_claims_set.js +102 -0
- package/node_modules/jose/dist/browser/lib/secs.js +44 -0
- package/node_modules/jose/dist/browser/lib/validate_algorithms.js +11 -0
- package/node_modules/jose/dist/browser/lib/validate_crit.js +34 -0
- package/node_modules/jose/dist/browser/package.json +1 -0
- package/node_modules/jose/dist/browser/runtime/aeskw.js +32 -0
- package/node_modules/jose/dist/browser/runtime/asn1.js +202 -0
- package/node_modules/jose/dist/browser/runtime/base64url.js +37 -0
- package/node_modules/jose/dist/browser/runtime/bogus.js +6 -0
- package/node_modules/jose/dist/browser/runtime/check_cek_length.js +8 -0
- package/node_modules/jose/dist/browser/runtime/check_key_length.js +8 -0
- package/node_modules/jose/dist/browser/runtime/decrypt.js +85 -0
- package/node_modules/jose/dist/browser/runtime/digest.js +6 -0
- package/node_modules/jose/dist/browser/runtime/ecdhes.js +46 -0
- package/node_modules/jose/dist/browser/runtime/encrypt.js +68 -0
- package/node_modules/jose/dist/browser/runtime/fetch_jwks.js +34 -0
- package/node_modules/jose/dist/browser/runtime/generate.js +141 -0
- package/node_modules/jose/dist/browser/runtime/get_sign_verify_key.js +17 -0
- package/node_modules/jose/dist/browser/runtime/is_key_like.js +5 -0
- package/node_modules/jose/dist/browser/runtime/jwk_to_key.js +143 -0
- package/node_modules/jose/dist/browser/runtime/key_to_jwk.js +21 -0
- package/node_modules/jose/dist/browser/runtime/pbes2kw.js +51 -0
- package/node_modules/jose/dist/browser/runtime/random.js +2 -0
- package/node_modules/jose/dist/browser/runtime/rsaes.js +37 -0
- package/node_modules/jose/dist/browser/runtime/runtime.js +1 -0
- package/node_modules/jose/dist/browser/runtime/sign.js +11 -0
- package/node_modules/jose/dist/browser/runtime/subtle_dsa.js +26 -0
- package/node_modules/jose/dist/browser/runtime/subtle_rsaes.js +12 -0
- package/node_modules/jose/dist/browser/runtime/timing_safe_equal.js +19 -0
- package/node_modules/jose/dist/browser/runtime/verify.js +16 -0
- package/node_modules/jose/dist/browser/runtime/webcrypto.js +2 -0
- package/node_modules/jose/dist/browser/runtime/zlib.js +7 -0
- package/node_modules/jose/dist/browser/util/base64url.js +3 -0
- package/node_modules/jose/dist/browser/util/decode_jwt.js +32 -0
- package/node_modules/jose/dist/browser/util/decode_protected_header.js +34 -0
- package/node_modules/jose/dist/browser/util/errors.js +148 -0
- package/node_modules/jose/dist/browser/util/runtime.js +2 -0
- package/node_modules/jose/dist/node/cjs/index.js +67 -0
- package/node_modules/jose/dist/node/cjs/jwe/compact/decrypt.js +31 -0
- package/node_modules/jose/dist/node/cjs/jwe/compact/encrypt.js +30 -0
- package/node_modules/jose/dist/node/cjs/jwe/flattened/decrypt.js +170 -0
- package/node_modules/jose/dist/node/cjs/jwe/flattened/encrypt.js +179 -0
- package/node_modules/jose/dist/node/cjs/jwe/general/decrypt.js +35 -0
- package/node_modules/jose/dist/node/cjs/jwe/general/encrypt.js +182 -0
- package/node_modules/jose/dist/node/cjs/jwk/embedded.js +21 -0
- package/node_modules/jose/dist/node/cjs/jwk/thumbprint.js +58 -0
- package/node_modules/jose/dist/node/cjs/jwks/local.js +122 -0
- package/node_modules/jose/dist/node/cjs/jwks/remote.js +80 -0
- package/node_modules/jose/dist/node/cjs/jws/compact/sign.js +21 -0
- package/node_modules/jose/dist/node/cjs/jws/compact/verify.js +25 -0
- package/node_modules/jose/dist/node/cjs/jws/flattened/sign.js +85 -0
- package/node_modules/jose/dist/node/cjs/jws/flattened/verify.js +119 -0
- package/node_modules/jose/dist/node/cjs/jws/general/sign.js +71 -0
- package/node_modules/jose/dist/node/cjs/jws/general/verify.js +28 -0
- package/node_modules/jose/dist/node/cjs/jwt/decrypt.js +27 -0
- package/node_modules/jose/dist/node/cjs/jwt/encrypt.js +72 -0
- package/node_modules/jose/dist/node/cjs/jwt/produce.js +58 -0
- package/node_modules/jose/dist/node/cjs/jwt/sign.js +25 -0
- package/node_modules/jose/dist/node/cjs/jwt/unsecured.js +36 -0
- package/node_modules/jose/dist/node/cjs/jwt/verify.js +20 -0
- package/node_modules/jose/dist/node/cjs/key/export.js +18 -0
- package/node_modules/jose/dist/node/cjs/key/generate_key_pair.js +8 -0
- package/node_modules/jose/dist/node/cjs/key/generate_secret.js +8 -0
- package/node_modules/jose/dist/node/cjs/key/import.js +57 -0
- package/node_modules/jose/dist/node/cjs/lib/aesgcmkw.js +19 -0
- package/node_modules/jose/dist/node/cjs/lib/buffer_utils.js +60 -0
- package/node_modules/jose/dist/node/cjs/lib/cek.js +24 -0
- package/node_modules/jose/dist/node/cjs/lib/check_iv_length.js +10 -0
- package/node_modules/jose/dist/node/cjs/lib/check_key_type.js +47 -0
- package/node_modules/jose/dist/node/cjs/lib/check_p2s.js +9 -0
- package/node_modules/jose/dist/node/cjs/lib/crypto_key.js +157 -0
- package/node_modules/jose/dist/node/cjs/lib/decrypt_key_management.js +129 -0
- package/node_modules/jose/dist/node/cjs/lib/encrypt_key_management.js +89 -0
- package/node_modules/jose/dist/node/cjs/lib/epoch.js +3 -0
- package/node_modules/jose/dist/node/cjs/lib/invalid_key_input.js +34 -0
- package/node_modules/jose/dist/node/cjs/lib/is_disjoint.js +24 -0
- package/node_modules/jose/dist/node/cjs/lib/is_object.js +19 -0
- package/node_modules/jose/dist/node/cjs/lib/iv.js +24 -0
- package/node_modules/jose/dist/node/cjs/lib/jwt_claims_set.js +104 -0
- package/node_modules/jose/dist/node/cjs/lib/secs.js +46 -0
- package/node_modules/jose/dist/node/cjs/lib/validate_algorithms.js +13 -0
- package/node_modules/jose/dist/node/cjs/lib/validate_crit.js +36 -0
- package/node_modules/jose/dist/node/cjs/runtime/aeskw.js +55 -0
- package/node_modules/jose/dist/node/cjs/runtime/asn1.js +54 -0
- package/node_modules/jose/dist/node/cjs/runtime/asn1_sequence_decoder.js +47 -0
- package/node_modules/jose/dist/node/cjs/runtime/asn1_sequence_encoder.js +91 -0
- package/node_modules/jose/dist/node/cjs/runtime/base64url.js +25 -0
- package/node_modules/jose/dist/node/cjs/runtime/cbc_tag.js +11 -0
- package/node_modules/jose/dist/node/cjs/runtime/check_cek_length.js +37 -0
- package/node_modules/jose/dist/node/cjs/runtime/check_modulus_length.js +52 -0
- package/node_modules/jose/dist/node/cjs/runtime/ciphers.js +8 -0
- package/node_modules/jose/dist/node/cjs/runtime/decrypt.js +97 -0
- package/node_modules/jose/dist/node/cjs/runtime/digest.js +5 -0
- package/node_modules/jose/dist/node/cjs/runtime/dsa_digest.js +25 -0
- package/node_modules/jose/dist/node/cjs/runtime/ecdhes.js +70 -0
- package/node_modules/jose/dist/node/cjs/runtime/encrypt.js +74 -0
- package/node_modules/jose/dist/node/cjs/runtime/fetch_jwks.js +45 -0
- package/node_modules/jose/dist/node/cjs/runtime/flags.js +8 -0
- package/node_modules/jose/dist/node/cjs/runtime/generate.js +105 -0
- package/node_modules/jose/dist/node/cjs/runtime/get_named_curve.js +95 -0
- package/node_modules/jose/dist/node/cjs/runtime/get_sign_verify_key.js +24 -0
- package/node_modules/jose/dist/node/cjs/runtime/hmac_digest.js +16 -0
- package/node_modules/jose/dist/node/cjs/runtime/is_key_like.js +11 -0
- package/node_modules/jose/dist/node/cjs/runtime/is_key_object.js +7 -0
- package/node_modules/jose/dist/node/cjs/runtime/jwk_to_key.js +118 -0
- package/node_modules/jose/dist/node/cjs/runtime/key_to_jwk.js +160 -0
- package/node_modules/jose/dist/node/cjs/runtime/node_key.js +78 -0
- package/node_modules/jose/dist/node/cjs/runtime/pbes2kw.js +48 -0
- package/node_modules/jose/dist/node/cjs/runtime/random.js +5 -0
- package/node_modules/jose/dist/node/cjs/runtime/rsaes.js +69 -0
- package/node_modules/jose/dist/node/cjs/runtime/runtime.js +3 -0
- package/node_modules/jose/dist/node/cjs/runtime/sign.js +25 -0
- package/node_modules/jose/dist/node/cjs/runtime/timing_safe_equal.js +5 -0
- package/node_modules/jose/dist/node/cjs/runtime/verify.js +38 -0
- package/node_modules/jose/dist/node/cjs/runtime/webcrypto.js +11 -0
- package/node_modules/jose/dist/node/cjs/runtime/zlib.js +11 -0
- package/node_modules/jose/dist/node/cjs/util/base64url.js +6 -0
- package/node_modules/jose/dist/node/cjs/util/decode_jwt.js +36 -0
- package/node_modules/jose/dist/node/cjs/util/decode_protected_header.js +38 -0
- package/node_modules/jose/dist/node/cjs/util/errors.js +166 -0
- package/node_modules/jose/dist/node/cjs/util/runtime.js +4 -0
- package/node_modules/jose/dist/node/esm/index.js +30 -0
- package/node_modules/jose/dist/node/esm/jwe/compact/decrypt.js +27 -0
- package/node_modules/jose/dist/node/esm/jwe/compact/encrypt.js +26 -0
- package/node_modules/jose/dist/node/esm/jwe/flattened/decrypt.js +166 -0
- package/node_modules/jose/dist/node/esm/jwe/flattened/encrypt.js +175 -0
- package/node_modules/jose/dist/node/esm/jwe/general/decrypt.js +31 -0
- package/node_modules/jose/dist/node/esm/jwe/general/encrypt.js +178 -0
- package/node_modules/jose/dist/node/esm/jwk/embedded.js +17 -0
- package/node_modules/jose/dist/node/esm/jwk/thumbprint.js +53 -0
- package/node_modules/jose/dist/node/esm/jwks/local.js +116 -0
- package/node_modules/jose/dist/node/esm/jwks/remote.js +76 -0
- package/node_modules/jose/dist/node/esm/jws/compact/sign.js +17 -0
- package/node_modules/jose/dist/node/esm/jws/compact/verify.js +21 -0
- package/node_modules/jose/dist/node/esm/jws/flattened/sign.js +81 -0
- package/node_modules/jose/dist/node/esm/jws/flattened/verify.js +115 -0
- package/node_modules/jose/dist/node/esm/jws/general/sign.js +67 -0
- package/node_modules/jose/dist/node/esm/jws/general/verify.js +24 -0
- package/node_modules/jose/dist/node/esm/jwt/decrypt.js +23 -0
- package/node_modules/jose/dist/node/esm/jwt/encrypt.js +68 -0
- package/node_modules/jose/dist/node/esm/jwt/produce.js +54 -0
- package/node_modules/jose/dist/node/esm/jwt/sign.js +21 -0
- package/node_modules/jose/dist/node/esm/jwt/unsecured.js +32 -0
- package/node_modules/jose/dist/node/esm/jwt/verify.js +16 -0
- package/node_modules/jose/dist/node/esm/key/export.js +12 -0
- package/node_modules/jose/dist/node/esm/key/generate_key_pair.js +4 -0
- package/node_modules/jose/dist/node/esm/key/generate_secret.js +4 -0
- package/node_modules/jose/dist/node/esm/key/import.js +50 -0
- package/node_modules/jose/dist/node/esm/lib/aesgcmkw.js +14 -0
- package/node_modules/jose/dist/node/esm/lib/buffer_utils.js +51 -0
- package/node_modules/jose/dist/node/esm/lib/cek.js +20 -0
- package/node_modules/jose/dist/node/esm/lib/check_iv_length.js +8 -0
- package/node_modules/jose/dist/node/esm/lib/check_key_type.js +45 -0
- package/node_modules/jose/dist/node/esm/lib/check_p2s.js +6 -0
- package/node_modules/jose/dist/node/esm/lib/crypto_key.js +152 -0
- package/node_modules/jose/dist/node/esm/lib/decrypt_key_management.js +127 -0
- package/node_modules/jose/dist/node/esm/lib/encrypt_key_management.js +87 -0
- package/node_modules/jose/dist/node/esm/lib/epoch.js +1 -0
- package/node_modules/jose/dist/node/esm/lib/invalid_key_input.js +30 -0
- package/node_modules/jose/dist/node/esm/lib/is_disjoint.js +22 -0
- package/node_modules/jose/dist/node/esm/lib/is_object.js +16 -0
- package/node_modules/jose/dist/node/esm/lib/iv.js +20 -0
- package/node_modules/jose/dist/node/esm/lib/jwt_claims_set.js +102 -0
- package/node_modules/jose/dist/node/esm/lib/secs.js +44 -0
- package/node_modules/jose/dist/node/esm/lib/validate_algorithms.js +11 -0
- package/node_modules/jose/dist/node/esm/lib/validate_crit.js +34 -0
- package/node_modules/jose/dist/node/esm/package.json +1 -0
- package/node_modules/jose/dist/node/esm/runtime/aeskw.js +50 -0
- package/node_modules/jose/dist/node/esm/runtime/asn1.js +46 -0
- package/node_modules/jose/dist/node/esm/runtime/asn1_sequence_decoder.js +44 -0
- package/node_modules/jose/dist/node/esm/runtime/asn1_sequence_encoder.js +88 -0
- package/node_modules/jose/dist/node/esm/runtime/base64url.js +20 -0
- package/node_modules/jose/dist/node/esm/runtime/cbc_tag.js +8 -0
- package/node_modules/jose/dist/node/esm/runtime/check_cek_length.js +35 -0
- package/node_modules/jose/dist/node/esm/runtime/check_modulus_length.js +48 -0
- package/node_modules/jose/dist/node/esm/runtime/ciphers.js +6 -0
- package/node_modules/jose/dist/node/esm/runtime/decrypt.js +95 -0
- package/node_modules/jose/dist/node/esm/runtime/digest.js +3 -0
- package/node_modules/jose/dist/node/esm/runtime/dsa_digest.js +22 -0
- package/node_modules/jose/dist/node/esm/runtime/ecdhes.js +64 -0
- package/node_modules/jose/dist/node/esm/runtime/encrypt.js +72 -0
- package/node_modules/jose/dist/node/esm/runtime/fetch_jwks.js +43 -0
- package/node_modules/jose/dist/node/esm/runtime/flags.js +5 -0
- package/node_modules/jose/dist/node/esm/runtime/generate.js +100 -0
- package/node_modules/jose/dist/node/esm/runtime/get_named_curve.js +91 -0
- package/node_modules/jose/dist/node/esm/runtime/get_sign_verify_key.js +21 -0
- package/node_modules/jose/dist/node/esm/runtime/hmac_digest.js +13 -0
- package/node_modules/jose/dist/node/esm/runtime/is_key_like.js +8 -0
- package/node_modules/jose/dist/node/esm/runtime/is_key_object.js +5 -0
- package/node_modules/jose/dist/node/esm/runtime/jwk_to_key.js +116 -0
- package/node_modules/jose/dist/node/esm/runtime/key_to_jwk.js +158 -0
- package/node_modules/jose/dist/node/esm/runtime/node_key.js +75 -0
- package/node_modules/jose/dist/node/esm/runtime/pbes2kw.js +43 -0
- package/node_modules/jose/dist/node/esm/runtime/random.js +1 -0
- package/node_modules/jose/dist/node/esm/runtime/rsaes.js +64 -0
- package/node_modules/jose/dist/node/esm/runtime/runtime.js +1 -0
- package/node_modules/jose/dist/node/esm/runtime/sign.js +23 -0
- package/node_modules/jose/dist/node/esm/runtime/timing_safe_equal.js +3 -0
- package/node_modules/jose/dist/node/esm/runtime/verify.js +36 -0
- package/node_modules/jose/dist/node/esm/runtime/webcrypto.js +8 -0
- package/node_modules/jose/dist/node/esm/runtime/zlib.js +6 -0
- package/node_modules/jose/dist/node/esm/util/base64url.js +3 -0
- package/node_modules/jose/dist/node/esm/util/decode_jwt.js +32 -0
- package/node_modules/jose/dist/node/esm/util/decode_protected_header.js +34 -0
- package/node_modules/jose/dist/node/esm/util/errors.js +148 -0
- package/node_modules/jose/dist/node/esm/util/runtime.js +2 -0
- package/node_modules/jose/dist/types/index.d.ts +48 -0
- package/node_modules/jose/dist/types/jwe/compact/decrypt.d.ts +23 -0
- package/node_modules/jose/dist/types/jwe/compact/encrypt.d.ts +52 -0
- package/node_modules/jose/dist/types/jwe/flattened/decrypt.d.ts +23 -0
- package/node_modules/jose/dist/types/jwe/flattened/encrypt.d.ts +80 -0
- package/node_modules/jose/dist/types/jwe/general/decrypt.d.ts +23 -0
- package/node_modules/jose/dist/types/jwe/general/encrypt.d.ts +60 -0
- package/node_modules/jose/dist/types/jwk/embedded.d.ts +9 -0
- package/node_modules/jose/dist/types/jwk/thumbprint.d.ts +21 -0
- package/node_modules/jose/dist/types/jwks/local.d.ts +26 -0
- package/node_modules/jose/dist/types/jwks/remote.d.ts +49 -0
- package/node_modules/jose/dist/types/jws/compact/sign.d.ts +24 -0
- package/node_modules/jose/dist/types/jws/compact/verify.d.ts +25 -0
- package/node_modules/jose/dist/types/jws/flattened/sign.d.ts +32 -0
- package/node_modules/jose/dist/types/jws/flattened/verify.d.ts +25 -0
- package/node_modules/jose/dist/types/jws/general/sign.d.ts +41 -0
- package/node_modules/jose/dist/types/jws/general/verify.d.ts +25 -0
- package/node_modules/jose/dist/types/jwt/decrypt.d.ts +27 -0
- package/node_modules/jose/dist/types/jwt/encrypt.d.ts +77 -0
- package/node_modules/jose/dist/types/jwt/produce.d.ts +54 -0
- package/node_modules/jose/dist/types/jwt/sign.d.ts +23 -0
- package/node_modules/jose/dist/types/jwt/unsecured.d.ts +21 -0
- package/node_modules/jose/dist/types/jwt/verify.d.ts +29 -0
- package/node_modules/jose/dist/types/key/export.d.ts +21 -0
- package/node_modules/jose/dist/types/key/generate_key_pair.d.ts +36 -0
- package/node_modules/jose/dist/types/key/generate_secret.d.ts +19 -0
- package/node_modules/jose/dist/types/key/import.d.ts +54 -0
- package/node_modules/jose/dist/types/types.d.ts +610 -0
- package/node_modules/jose/dist/types/util/base64url.d.ts +19 -0
- package/node_modules/jose/dist/types/util/decode_jwt.d.ts +10 -0
- package/node_modules/jose/dist/types/util/decode_protected_header.d.ts +8 -0
- package/node_modules/jose/dist/types/util/errors.d.ts +142 -0
- package/node_modules/jose/dist/types/util/runtime.d.ts +3 -0
- package/node_modules/jose/package.json +89 -0
- package/node_modules/lodash.merge/LICENSE +47 -0
- package/node_modules/lodash.merge/README.md +18 -0
- package/node_modules/lodash.merge/index.js +1977 -0
- package/node_modules/lodash.merge/package.json +16 -0
- package/node_modules/lru-cache/LICENSE +15 -0
- package/node_modules/lru-cache/README.md +166 -0
- package/node_modules/lru-cache/index.js +334 -0
- package/node_modules/lru-cache/package.json +34 -0
- package/node_modules/mime-db/HISTORY.md +507 -0
- package/node_modules/mime-db/LICENSE +23 -0
- package/node_modules/mime-db/README.md +100 -0
- package/node_modules/mime-db/db.json +8519 -0
- package/node_modules/mime-db/index.js +12 -0
- package/node_modules/mime-db/package.json +60 -0
- package/node_modules/mime-types/HISTORY.md +397 -0
- package/node_modules/mime-types/LICENSE +23 -0
- package/node_modules/mime-types/README.md +113 -0
- package/node_modules/mime-types/index.js +188 -0
- package/node_modules/mime-types/package.json +44 -0
- package/node_modules/mnemonist/LICENSE.txt +21 -0
- package/node_modules/mnemonist/README.md +112 -0
- package/node_modules/mnemonist/bi-map.d.ts +46 -0
- package/node_modules/mnemonist/bi-map.js +195 -0
- package/node_modules/mnemonist/bit-set.d.ts +29 -0
- package/node_modules/mnemonist/bit-set.js +379 -0
- package/node_modules/mnemonist/bit-vector.d.ts +42 -0
- package/node_modules/mnemonist/bit-vector.js +550 -0
- package/node_modules/mnemonist/bk-tree.d.ts +24 -0
- package/node_modules/mnemonist/bk-tree.js +180 -0
- package/node_modules/mnemonist/bloom-filter.d.ts +29 -0
- package/node_modules/mnemonist/bloom-filter.js +186 -0
- package/node_modules/mnemonist/circular-buffer.d.ts +34 -0
- package/node_modules/mnemonist/circular-buffer.js +131 -0
- package/node_modules/mnemonist/critbit-tree-map.js +515 -0
- package/node_modules/mnemonist/default-map.d.ts +29 -0
- package/node_modules/mnemonist/default-map.js +162 -0
- package/node_modules/mnemonist/default-weak-map.d.ts +18 -0
- package/node_modules/mnemonist/default-weak-map.js +108 -0
- package/node_modules/mnemonist/fibonacci-heap.d.ts +65 -0
- package/node_modules/mnemonist/fibonacci-heap.js +320 -0
- package/node_modules/mnemonist/fixed-critbit-tree-map.js +427 -0
- package/node_modules/mnemonist/fixed-deque.d.ts +34 -0
- package/node_modules/mnemonist/fixed-deque.js +351 -0
- package/node_modules/mnemonist/fixed-reverse-heap.d.ts +25 -0
- package/node_modules/mnemonist/fixed-reverse-heap.js +209 -0
- package/node_modules/mnemonist/fixed-stack.d.ts +36 -0
- package/node_modules/mnemonist/fixed-stack.js +242 -0
- package/node_modules/mnemonist/fuzzy-map.d.ts +33 -0
- package/node_modules/mnemonist/fuzzy-map.js +185 -0
- package/node_modules/mnemonist/fuzzy-multi-map.d.ts +36 -0
- package/node_modules/mnemonist/fuzzy-multi-map.js +196 -0
- package/node_modules/mnemonist/hashed-array-tree.d.ts +32 -0
- package/node_modules/mnemonist/hashed-array-tree.js +209 -0
- package/node_modules/mnemonist/heap.d.ts +84 -0
- package/node_modules/mnemonist/heap.js +576 -0
- package/node_modules/mnemonist/index.d.ts +46 -0
- package/node_modules/mnemonist/index.js +56 -0
- package/node_modules/mnemonist/inverted-index.d.ts +33 -0
- package/node_modules/mnemonist/inverted-index.js +249 -0
- package/node_modules/mnemonist/kd-tree.d.ts +25 -0
- package/node_modules/mnemonist/kd-tree.js +447 -0
- package/node_modules/mnemonist/linked-list.d.ts +29 -0
- package/node_modules/mnemonist/linked-list.js +261 -0
- package/node_modules/mnemonist/lru-cache.d.ts +43 -0
- package/node_modules/mnemonist/lru-cache.js +433 -0
- package/node_modules/mnemonist/lru-map.d.ts +43 -0
- package/node_modules/mnemonist/lru-map.js +258 -0
- package/node_modules/mnemonist/multi-array.js +447 -0
- package/node_modules/mnemonist/multi-map.d.ts +47 -0
- package/node_modules/mnemonist/multi-map.js +408 -0
- package/node_modules/mnemonist/multi-set.d.ts +37 -0
- package/node_modules/mnemonist/multi-set.js +440 -0
- package/node_modules/mnemonist/package.json +119 -0
- package/node_modules/mnemonist/passjoin-index.d.ts +54 -0
- package/node_modules/mnemonist/passjoin-index.js +518 -0
- package/node_modules/mnemonist/queue.d.ts +27 -0
- package/node_modules/mnemonist/queue.js +215 -0
- package/node_modules/mnemonist/semi-dynamic-trie.js +251 -0
- package/node_modules/mnemonist/set.d.ts +18 -0
- package/node_modules/mnemonist/set.js +356 -0
- package/node_modules/mnemonist/sort/insertion.d.ts +4 -0
- package/node_modules/mnemonist/sort/insertion.js +50 -0
- package/node_modules/mnemonist/sort/quick.d.ts +4 -0
- package/node_modules/mnemonist/sort/quick.js +116 -0
- package/node_modules/mnemonist/sparse-map.d.ts +26 -0
- package/node_modules/mnemonist/sparse-map.js +243 -0
- package/node_modules/mnemonist/sparse-queue-set.d.ts +24 -0
- package/node_modules/mnemonist/sparse-queue-set.js +218 -0
- package/node_modules/mnemonist/sparse-set.d.ts +23 -0
- package/node_modules/mnemonist/sparse-set.js +168 -0
- package/node_modules/mnemonist/stack.d.ts +27 -0
- package/node_modules/mnemonist/stack.js +210 -0
- package/node_modules/mnemonist/static-disjoint-set.d.ts +23 -0
- package/node_modules/mnemonist/static-disjoint-set.js +195 -0
- package/node_modules/mnemonist/static-interval-tree.d.ts +24 -0
- package/node_modules/mnemonist/static-interval-tree.js +387 -0
- package/node_modules/mnemonist/suffix-array.d.ts +37 -0
- package/node_modules/mnemonist/suffix-array.js +352 -0
- package/node_modules/mnemonist/symspell.d.ts +33 -0
- package/node_modules/mnemonist/symspell.js +547 -0
- package/node_modules/mnemonist/trie-map.d.ts +30 -0
- package/node_modules/mnemonist/trie-map.js +477 -0
- package/node_modules/mnemonist/trie.d.ts +26 -0
- package/node_modules/mnemonist/trie.js +167 -0
- package/node_modules/mnemonist/utils/binary-search.js +216 -0
- package/node_modules/mnemonist/utils/bitwise.js +109 -0
- package/node_modules/mnemonist/utils/comparators.js +79 -0
- package/node_modules/mnemonist/utils/hash-tables.js +107 -0
- package/node_modules/mnemonist/utils/iterables.js +93 -0
- package/node_modules/mnemonist/utils/merge.js +563 -0
- package/node_modules/mnemonist/utils/murmurhash3.js +87 -0
- package/node_modules/mnemonist/utils/typed-arrays.js +187 -0
- package/node_modules/mnemonist/utils/types.d.ts +16 -0
- package/node_modules/mnemonist/vector.d.ts +81 -0
- package/node_modules/mnemonist/vector.js +373 -0
- package/node_modules/mnemonist/vp-tree.d.ts +27 -0
- package/node_modules/mnemonist/vp-tree.js +367 -0
- package/node_modules/mustache/LICENSE +11 -0
- package/node_modules/mustache/README.md +621 -0
- package/node_modules/mustache/bin/mustache +150 -0
- package/node_modules/mustache/mustache.js +772 -0
- package/node_modules/mustache/mustache.min.js +1 -0
- package/node_modules/mustache/mustache.mjs +764 -0
- package/node_modules/mustache/package.json +67 -0
- package/node_modules/mustache/wrappers/dojo/mustache.js.post +4 -0
- package/node_modules/mustache/wrappers/dojo/mustache.js.pre +9 -0
- package/node_modules/mustache/wrappers/jquery/mustache.js.post +13 -0
- package/node_modules/mustache/wrappers/jquery/mustache.js.pre +9 -0
- package/node_modules/mustache/wrappers/mootools/mustache.js.post +5 -0
- package/node_modules/mustache/wrappers/mootools/mustache.js.pre +2 -0
- package/node_modules/mustache/wrappers/qooxdoo/mustache.js.post +9 -0
- package/node_modules/mustache/wrappers/qooxdoo/mustache.js.pre +172 -0
- package/node_modules/mustache/wrappers/yui3/mustache.js.post +4 -0
- package/node_modules/mustache/wrappers/yui3/mustache.js.pre +1 -0
- package/node_modules/object-hash/LICENSE +22 -0
- package/node_modules/object-hash/dist/object_hash.js +1 -0
- package/node_modules/object-hash/index.js +453 -0
- package/node_modules/object-hash/package.json +53 -0
- package/node_modules/object-hash/readme.markdown +184 -0
- package/node_modules/obliterator/LICENSE.txt +21 -0
- package/node_modules/obliterator/README.md +321 -0
- package/node_modules/obliterator/chain.d.ts +3 -0
- package/node_modules/obliterator/chain.js +39 -0
- package/node_modules/obliterator/combinations.d.ts +3 -0
- package/node_modules/obliterator/combinations.js +76 -0
- package/node_modules/obliterator/consume.d.ts +1 -0
- package/node_modules/obliterator/consume.js +32 -0
- package/node_modules/obliterator/filter.d.ts +5 -0
- package/node_modules/obliterator/filter.js +28 -0
- package/node_modules/obliterator/foreach.d.ts +1 -0
- package/node_modules/obliterator/foreach.js +156 -0
- package/node_modules/obliterator/index.d.ts +14 -0
- package/node_modules/obliterator/index.js +22 -0
- package/node_modules/obliterator/iterator.d.ts +19 -0
- package/node_modules/obliterator/iterator.js +104 -0
- package/node_modules/obliterator/map.d.ts +5 -0
- package/node_modules/obliterator/map.js +27 -0
- package/node_modules/obliterator/match.d.ts +3 -0
- package/node_modules/obliterator/match.js +42 -0
- package/node_modules/obliterator/package.json +45 -0
- package/node_modules/obliterator/permutations.d.ts +3 -0
- package/node_modules/obliterator/permutations.js +96 -0
- package/node_modules/obliterator/power-set.d.ts +3 -0
- package/node_modules/obliterator/power-set.js +28 -0
- package/node_modules/obliterator/range.d.ts +5 -0
- package/node_modules/obliterator/range.js +45 -0
- package/node_modules/obliterator/split.d.ts +3 -0
- package/node_modules/obliterator/split.js +68 -0
- package/node_modules/obliterator/take-into.d.ts +5 -0
- package/node_modules/obliterator/take-into.js +40 -0
- package/node_modules/obliterator/take.d.ts +3 -0
- package/node_modules/obliterator/take.js +40 -0
- package/node_modules/oidc-token-hash/LICENSE.md +21 -0
- package/node_modules/oidc-token-hash/README.md +54 -0
- package/node_modules/oidc-token-hash/lib/index.js +106 -0
- package/node_modules/oidc-token-hash/lib/shake256.js +7 -0
- package/node_modules/oidc-token-hash/package.json +36 -0
- package/node_modules/openid-client/LICENSE.md +21 -0
- package/node_modules/openid-client/README.md +323 -0
- package/node_modules/openid-client/lib/client.js +1849 -0
- package/node_modules/openid-client/lib/device_flow_handle.js +125 -0
- package/node_modules/openid-client/lib/errors.js +55 -0
- package/node_modules/openid-client/lib/helpers/assert.js +24 -0
- package/node_modules/openid-client/lib/helpers/base64url.js +13 -0
- package/node_modules/openid-client/lib/helpers/client.js +209 -0
- package/node_modules/openid-client/lib/helpers/consts.js +7 -0
- package/node_modules/openid-client/lib/helpers/decode_jwt.js +27 -0
- package/node_modules/openid-client/lib/helpers/deep_clone.js +1 -0
- package/node_modules/openid-client/lib/helpers/defaults.js +27 -0
- package/node_modules/openid-client/lib/helpers/generators.js +14 -0
- package/node_modules/openid-client/lib/helpers/is_key_object.js +4 -0
- package/node_modules/openid-client/lib/helpers/is_plain_object.js +1 -0
- package/node_modules/openid-client/lib/helpers/issuer.js +110 -0
- package/node_modules/openid-client/lib/helpers/keystore.js +313 -0
- package/node_modules/openid-client/lib/helpers/merge.js +24 -0
- package/node_modules/openid-client/lib/helpers/pick.js +9 -0
- package/node_modules/openid-client/lib/helpers/process_response.js +71 -0
- package/node_modules/openid-client/lib/helpers/request.js +200 -0
- package/node_modules/openid-client/lib/helpers/unix_timestamp.js +1 -0
- package/node_modules/openid-client/lib/helpers/weak_cache.js +1 -0
- package/node_modules/openid-client/lib/helpers/webfinger_normalize.js +71 -0
- package/node_modules/openid-client/lib/helpers/www_authenticate_parser.js +14 -0
- package/node_modules/openid-client/lib/index.js +23 -0
- package/node_modules/openid-client/lib/index.mjs +9 -0
- package/node_modules/openid-client/lib/issuer.js +191 -0
- package/node_modules/openid-client/lib/issuer_registry.js +3 -0
- package/node_modules/openid-client/lib/passport_strategy.js +205 -0
- package/node_modules/openid-client/lib/token_set.js +35 -0
- package/node_modules/openid-client/package.json +106 -0
- package/node_modules/openid-client/types/index.d.ts +622 -0
- package/node_modules/proxy-from-env/.eslintrc +29 -0
- package/node_modules/proxy-from-env/.travis.yml +10 -0
- package/node_modules/proxy-from-env/LICENSE +20 -0
- package/node_modules/proxy-from-env/README.md +131 -0
- package/node_modules/proxy-from-env/index.js +108 -0
- package/node_modules/proxy-from-env/package.json +34 -0
- package/node_modules/proxy-from-env/test.js +483 -0
- package/node_modules/strnum/.vscode/launch.json +25 -0
- package/node_modules/strnum/LICENSE +21 -0
- package/node_modules/strnum/README.md +86 -0
- package/node_modules/strnum/package.json +24 -0
- package/node_modules/strnum/strnum.js +124 -0
- package/node_modules/strnum/strnum.test.js +150 -0
- package/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/node_modules/tslib/LICENSE.txt +12 -0
- package/node_modules/tslib/README.md +164 -0
- package/node_modules/tslib/SECURITY.md +41 -0
- package/node_modules/tslib/modules/index.d.ts +37 -0
- package/node_modules/tslib/modules/index.js +68 -0
- package/node_modules/tslib/modules/package.json +3 -0
- package/node_modules/tslib/package.json +47 -0
- package/node_modules/tslib/tslib.d.ts +453 -0
- package/node_modules/tslib/tslib.es6.html +1 -0
- package/node_modules/tslib/tslib.es6.js +370 -0
- package/node_modules/tslib/tslib.es6.mjs +370 -0
- package/node_modules/tslib/tslib.html +1 -0
- package/node_modules/tslib/tslib.js +421 -0
- package/node_modules/uuid/CHANGELOG.md +229 -0
- package/node_modules/uuid/CONTRIBUTING.md +18 -0
- package/node_modules/uuid/LICENSE.md +9 -0
- package/node_modules/uuid/README.md +505 -0
- package/node_modules/uuid/dist/bin/uuid +2 -0
- package/node_modules/uuid/dist/esm-browser/index.js +9 -0
- package/node_modules/uuid/dist/esm-browser/md5.js +215 -0
- package/node_modules/uuid/dist/esm-browser/nil.js +1 -0
- package/node_modules/uuid/dist/esm-browser/parse.js +35 -0
- package/node_modules/uuid/dist/esm-browser/regex.js +1 -0
- package/node_modules/uuid/dist/esm-browser/rng.js +19 -0
- package/node_modules/uuid/dist/esm-browser/sha1.js +96 -0
- package/node_modules/uuid/dist/esm-browser/stringify.js +30 -0
- package/node_modules/uuid/dist/esm-browser/v1.js +95 -0
- package/node_modules/uuid/dist/esm-browser/v3.js +4 -0
- package/node_modules/uuid/dist/esm-browser/v35.js +64 -0
- package/node_modules/uuid/dist/esm-browser/v4.js +24 -0
- package/node_modules/uuid/dist/esm-browser/v5.js +4 -0
- package/node_modules/uuid/dist/esm-browser/validate.js +7 -0
- package/node_modules/uuid/dist/esm-browser/version.js +11 -0
- package/node_modules/uuid/dist/esm-node/index.js +9 -0
- package/node_modules/uuid/dist/esm-node/md5.js +13 -0
- package/node_modules/uuid/dist/esm-node/nil.js +1 -0
- package/node_modules/uuid/dist/esm-node/parse.js +35 -0
- package/node_modules/uuid/dist/esm-node/regex.js +1 -0
- package/node_modules/uuid/dist/esm-node/rng.js +12 -0
- package/node_modules/uuid/dist/esm-node/sha1.js +13 -0
- package/node_modules/uuid/dist/esm-node/stringify.js +29 -0
- package/node_modules/uuid/dist/esm-node/v1.js +95 -0
- package/node_modules/uuid/dist/esm-node/v3.js +4 -0
- package/node_modules/uuid/dist/esm-node/v35.js +64 -0
- package/node_modules/uuid/dist/esm-node/v4.js +24 -0
- package/node_modules/uuid/dist/esm-node/v5.js +4 -0
- package/node_modules/uuid/dist/esm-node/validate.js +7 -0
- package/node_modules/uuid/dist/esm-node/version.js +11 -0
- package/node_modules/uuid/dist/index.js +79 -0
- package/node_modules/uuid/dist/md5-browser.js +223 -0
- package/node_modules/uuid/dist/md5.js +23 -0
- package/node_modules/uuid/dist/nil.js +8 -0
- package/node_modules/uuid/dist/parse.js +45 -0
- package/node_modules/uuid/dist/regex.js +8 -0
- package/node_modules/uuid/dist/rng-browser.js +26 -0
- package/node_modules/uuid/dist/rng.js +24 -0
- package/node_modules/uuid/dist/sha1-browser.js +104 -0
- package/node_modules/uuid/dist/sha1.js +23 -0
- package/node_modules/uuid/dist/stringify.js +39 -0
- package/node_modules/uuid/dist/umd/uuid.min.js +1 -0
- package/node_modules/uuid/dist/umd/uuidNIL.min.js +1 -0
- package/node_modules/uuid/dist/umd/uuidParse.min.js +1 -0
- package/node_modules/uuid/dist/umd/uuidStringify.min.js +1 -0
- package/node_modules/uuid/dist/umd/uuidValidate.min.js +1 -0
- package/node_modules/uuid/dist/umd/uuidVersion.min.js +1 -0
- package/node_modules/uuid/dist/umd/uuidv1.min.js +1 -0
- package/node_modules/uuid/dist/umd/uuidv3.min.js +1 -0
- package/node_modules/uuid/dist/umd/uuidv4.min.js +1 -0
- package/node_modules/uuid/dist/umd/uuidv5.min.js +1 -0
- package/node_modules/uuid/dist/uuid-bin.js +85 -0
- package/node_modules/uuid/dist/v1.js +107 -0
- package/node_modules/uuid/dist/v3.js +16 -0
- package/node_modules/uuid/dist/v35.js +78 -0
- package/node_modules/uuid/dist/v4.js +37 -0
- package/node_modules/uuid/dist/v5.js +16 -0
- package/node_modules/uuid/dist/validate.js +17 -0
- package/node_modules/uuid/dist/version.js +21 -0
- package/node_modules/uuid/package.json +135 -0
- package/node_modules/uuid/wrapper.mjs +10 -0
- package/node_modules/yallist/LICENSE +15 -0
- package/node_modules/yallist/README.md +204 -0
- package/node_modules/yallist/iterator.js +8 -0
- package/node_modules/yallist/package.json +29 -0
- package/node_modules/yallist/yallist.js +426 -0
- package/package.json +200 -0
package/lib/index.d.ts
ADDED
package/lib/index.js
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
10
|
+
for (var p in m) if (p !== "default" && !exports.hasOwnProperty(p)) __createBinding(exports, m, p);
|
|
11
|
+
};
|
|
12
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13
|
+
__exportStar(require("./webapp/Webapp"), exports);
|
|
14
|
+
__exportStar(require("./webapp/WebappOptions"), exports);
|
|
15
|
+
__exportStar(require("./webapp/OIDCConnectionProfile"), exports);
|
|
16
|
+
__exportStar(require("./webapp/Webpage"), exports);
|
|
17
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7O0FBQUEsa0RBQWdDO0FBQ2hDLHlEQUF1QztBQUN2QyxpRUFBK0M7QUFDL0MsbURBQWlDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi93ZWJhcHAvV2ViYXBwJztcbmV4cG9ydCAqIGZyb20gJy4vd2ViYXBwL1dlYmFwcE9wdGlvbnMnO1xuZXhwb3J0ICogZnJvbSAnLi93ZWJhcHAvT0lEQ0Nvbm5lY3Rpb25Qcm9maWxlJztcbmV4cG9ydCAqIGZyb20gJy4vd2ViYXBwL1dlYnBhZ2UnO1xuIl19
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import { aws_lambda as lambda, aws_apigatewayv2 as apigatewayv2 } from 'aws-cdk-lib';
|
|
2
|
+
import { HttpMethod } from 'aws-cdk-lib/aws-apigatewayv2';
|
|
3
|
+
import { Role } from 'aws-cdk-lib/aws-iam';
|
|
4
|
+
import { Construct } from 'constructs';
|
|
5
|
+
import { OpenIdConnectConnectionProfile } from './OIDCConnectionProfile';
|
|
6
|
+
import { SessionsTable } from './SessionsTable';
|
|
7
|
+
import { WebappConfigurable } from './WebappOptions';
|
|
8
|
+
import { Webpage } from './Webpage';
|
|
9
|
+
export interface ApiProps extends WebappConfigurable {
|
|
10
|
+
/**
|
|
11
|
+
* The dynamodb session table
|
|
12
|
+
*/
|
|
13
|
+
sessionsTable: SessionsTable;
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* The API Stack creates the API Gateway and related
|
|
17
|
+
* lambda's. It requires supporting resources (such as the
|
|
18
|
+
* DynamoDB sessions table to be provided and thus created first)
|
|
19
|
+
*/
|
|
20
|
+
export declare class Api extends Construct {
|
|
21
|
+
private sessionsTable;
|
|
22
|
+
private customLambdaLayer?;
|
|
23
|
+
private configurationLambdaLayer;
|
|
24
|
+
private props;
|
|
25
|
+
api: apigatewayv2.HttpApi;
|
|
26
|
+
role: Role;
|
|
27
|
+
constructor(scope: Construct, id: string, props: ApiProps);
|
|
28
|
+
/**
|
|
29
|
+
* Create a lambda layer that incldues templates overwrites
|
|
30
|
+
* and configuration files. It is made available to all lambda
|
|
31
|
+
* registerd in this webapp.
|
|
32
|
+
* @param props
|
|
33
|
+
*/
|
|
34
|
+
setupCustomLambdaLayer(customLambdaLayerDir?: string): lambda.LayerVersion | undefined;
|
|
35
|
+
/**
|
|
36
|
+
* Create a configuration lambda layer that contains the configuration files
|
|
37
|
+
* for the lambda.
|
|
38
|
+
* @param profiles
|
|
39
|
+
*/
|
|
40
|
+
setupConfigurationLambdaLayer(profiles: OpenIdConnectConnectionProfile[]): lambda.LayerVersion;
|
|
41
|
+
/**
|
|
42
|
+
* Create and configure lambda's for all api routes, and
|
|
43
|
+
* add routes to the gateway.
|
|
44
|
+
*/
|
|
45
|
+
setFunctions(props: ApiProps): void;
|
|
46
|
+
/**
|
|
47
|
+
* Add a new page to the webapp
|
|
48
|
+
* @param id
|
|
49
|
+
* @param handler
|
|
50
|
+
* @param path
|
|
51
|
+
* @param methods
|
|
52
|
+
*/
|
|
53
|
+
addRoute(id: string, handler: Webpage, path: string, methods: HttpMethod[]): void;
|
|
54
|
+
/**
|
|
55
|
+
* Clean and return the apigateway subdomain placeholder
|
|
56
|
+
* https://${Token[TOKEN.246]}.execute-api.eu-west-1.${Token[AWS.URLSuffix.3]}/
|
|
57
|
+
* which can't be parsed by the URL class.
|
|
58
|
+
*
|
|
59
|
+
* @returns a domain-like string cleaned of protocol and trailing slash
|
|
60
|
+
*/
|
|
61
|
+
domain(): string;
|
|
62
|
+
private setupLambdaExecutionRole;
|
|
63
|
+
}
|
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Api = void 0;
|
|
4
|
+
const fs = require("fs");
|
|
5
|
+
const aws_cdk_lib_1 = require("aws-cdk-lib");
|
|
6
|
+
const aws_apigatewayv2_integrations_1 = require("aws-cdk-lib/aws-apigatewayv2-integrations");
|
|
7
|
+
const aws_iam_1 = require("aws-cdk-lib/aws-iam");
|
|
8
|
+
const constructs_1 = require("constructs");
|
|
9
|
+
const auth_function_1 = require("./auth/auth-function");
|
|
10
|
+
const login_function_1 = require("./login/login-function");
|
|
11
|
+
const logout_function_1 = require("./logout/logout-function");
|
|
12
|
+
const Webpage_1 = require("./Webpage");
|
|
13
|
+
/**
|
|
14
|
+
* The API Stack creates the API Gateway and related
|
|
15
|
+
* lambda's. It requires supporting resources (such as the
|
|
16
|
+
* DynamoDB sessions table to be provided and thus created first)
|
|
17
|
+
*/
|
|
18
|
+
class Api extends constructs_1.Construct {
|
|
19
|
+
constructor(scope, id, props) {
|
|
20
|
+
super(scope, id);
|
|
21
|
+
this.props = props;
|
|
22
|
+
this.sessionsTable = props.sessionsTable.table;
|
|
23
|
+
this.customLambdaLayer = this.setupCustomLambdaLayer(props.webappOptions.additionalSourceFilesDir);
|
|
24
|
+
this.configurationLambdaLayer = this.setupConfigurationLambdaLayer(props.webappOptions.oidcProfiles);
|
|
25
|
+
this.role = this.setupLambdaExecutionRole(props.webappOptions.applicationName);
|
|
26
|
+
this.api = new aws_cdk_lib_1.aws_apigatewayv2.HttpApi(this, 'gateway', {
|
|
27
|
+
description: `API Gateway webapp: ${props.webappOptions.applicationName}`,
|
|
28
|
+
});
|
|
29
|
+
this.setFunctions(props);
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Create a lambda layer that incldues templates overwrites
|
|
33
|
+
* and configuration files. It is made available to all lambda
|
|
34
|
+
* registerd in this webapp.
|
|
35
|
+
* @param props
|
|
36
|
+
*/
|
|
37
|
+
setupCustomLambdaLayer(customLambdaLayerDir) {
|
|
38
|
+
if (!customLambdaLayerDir) {
|
|
39
|
+
return;
|
|
40
|
+
}
|
|
41
|
+
return new aws_cdk_lib_1.aws_lambda.LayerVersion(this, 'layer', {
|
|
42
|
+
code: aws_cdk_lib_1.aws_lambda.Code.fromAsset(customLambdaLayerDir),
|
|
43
|
+
});
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* Create a configuration lambda layer that contains the configuration files
|
|
47
|
+
* for the lambda.
|
|
48
|
+
* @param profiles
|
|
49
|
+
*/
|
|
50
|
+
setupConfigurationLambdaLayer(profiles) {
|
|
51
|
+
// Create temp directory (use projen assets dir)
|
|
52
|
+
const tempDir = './assets/webapp/configuration-layer';
|
|
53
|
+
fs.mkdirSync(tempDir, { recursive: true });
|
|
54
|
+
// Write configuration objects to JSON files in temp dir
|
|
55
|
+
const authenticationJson = JSON.stringify(profiles);
|
|
56
|
+
fs.writeFileSync(`${tempDir}/authentication.json`, authenticationJson);
|
|
57
|
+
// Make layer using the temp directory
|
|
58
|
+
return new aws_cdk_lib_1.aws_lambda.LayerVersion(this, 'configuration-layer', {
|
|
59
|
+
code: aws_cdk_lib_1.aws_lambda.Code.fromAsset(tempDir),
|
|
60
|
+
description: 'Webapp construct managed layer to inject configuration files in lambdas',
|
|
61
|
+
});
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* Create and configure lambda's for all api routes, and
|
|
65
|
+
* add routes to the gateway.
|
|
66
|
+
*/
|
|
67
|
+
setFunctions(props) {
|
|
68
|
+
const loginFunction = new Webpage_1.Webpage(this, 'login-function', {
|
|
69
|
+
description: `Login page for webapp ${props.webappOptions.applicationName}.`,
|
|
70
|
+
apiFunction: login_function_1.LoginFunction,
|
|
71
|
+
role: this.role,
|
|
72
|
+
});
|
|
73
|
+
this.addRoute('login', loginFunction, '/login', [aws_cdk_lib_1.aws_apigatewayv2.HttpMethod.GET]);
|
|
74
|
+
const logoutFunction = new Webpage_1.Webpage(this, 'logout-function', {
|
|
75
|
+
description: `Logout page for webapp ${props.webappOptions.applicationName}.`,
|
|
76
|
+
apiFunction: logout_function_1.LogoutFunction,
|
|
77
|
+
role: this.role,
|
|
78
|
+
});
|
|
79
|
+
this.addRoute('logout', logoutFunction, '/logout', [aws_cdk_lib_1.aws_apigatewayv2.HttpMethod.GET]);
|
|
80
|
+
const authFunction = new Webpage_1.Webpage(this, 'auth-function', {
|
|
81
|
+
description: `Auth landingpoint for webapp ${props.webappOptions.applicationName}.`,
|
|
82
|
+
role: this.role,
|
|
83
|
+
apiFunction: auth_function_1.AuthFunction,
|
|
84
|
+
environment: {
|
|
85
|
+
REDIRECT_TO_POST_LOGIN_HOOK: props.webappOptions.postLoginProcessor ? 'true' : 'false',
|
|
86
|
+
},
|
|
87
|
+
});
|
|
88
|
+
this.addRoute('auth', authFunction, '/auth', [aws_cdk_lib_1.aws_apigatewayv2.HttpMethod.GET]);
|
|
89
|
+
}
|
|
90
|
+
/**
|
|
91
|
+
* Add a new page to the webapp
|
|
92
|
+
* @param id
|
|
93
|
+
* @param handler
|
|
94
|
+
* @param path
|
|
95
|
+
* @param methods
|
|
96
|
+
*/
|
|
97
|
+
addRoute(id, handler, path, methods) {
|
|
98
|
+
handler.allowSessionAccess(this.sessionsTable);
|
|
99
|
+
if (this.customLambdaLayer) {
|
|
100
|
+
handler.addLambdaLayer(this.customLambdaLayer);
|
|
101
|
+
}
|
|
102
|
+
handler.addLambdaLayer(this.configurationLambdaLayer);
|
|
103
|
+
handler.overwriteSessionLifetime(this.props.webappOptions.sessionLifetime ?? 15);
|
|
104
|
+
handler.monitor(this.props.webappOptions.applicationName);
|
|
105
|
+
handler.addStandardEnvironment(this.props.webappOptions.applicationName);
|
|
106
|
+
this.api.addRoutes({
|
|
107
|
+
path,
|
|
108
|
+
methods,
|
|
109
|
+
integration: new aws_apigatewayv2_integrations_1.HttpLambdaIntegration(id, handler.lambda),
|
|
110
|
+
});
|
|
111
|
+
}
|
|
112
|
+
/**
|
|
113
|
+
* Clean and return the apigateway subdomain placeholder
|
|
114
|
+
* https://${Token[TOKEN.246]}.execute-api.eu-west-1.${Token[AWS.URLSuffix.3]}/
|
|
115
|
+
* which can't be parsed by the URL class.
|
|
116
|
+
*
|
|
117
|
+
* @returns a domain-like string cleaned of protocol and trailing slash
|
|
118
|
+
*/
|
|
119
|
+
domain() {
|
|
120
|
+
const url = this.api.url;
|
|
121
|
+
if (!url) {
|
|
122
|
+
return '';
|
|
123
|
+
}
|
|
124
|
+
let cleanedUrl = url
|
|
125
|
+
.replace(/^https?:\/\//, '') //protocol
|
|
126
|
+
.replace(/\/$/, ''); //optional trailing slash
|
|
127
|
+
return cleanedUrl;
|
|
128
|
+
}
|
|
129
|
+
setupLambdaExecutionRole(applicationName) {
|
|
130
|
+
return new aws_iam_1.Role(this, 'role', {
|
|
131
|
+
assumedBy: new aws_iam_1.ServicePrincipal('lambda.amazonaws.com'),
|
|
132
|
+
description: `Role used for lambdas in webapp ${applicationName}`,
|
|
133
|
+
managedPolicies: [
|
|
134
|
+
aws_iam_1.ManagedPolicy.fromAwsManagedPolicyName('service-role/AWSLambdaBasicExecutionRole'),
|
|
135
|
+
],
|
|
136
|
+
});
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
exports.Api = Api;
|
|
140
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiQXBpLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL3dlYmFwcC9BcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBQUEseUJBQXlCO0FBQ3pCLDZDQUdxQjtBQUVyQiw2RkFBa0Y7QUFFbEYsaURBQTRFO0FBRTVFLDJDQUF1QztBQUN2Qyx3REFBb0Q7QUFDcEQsMkRBQXVEO0FBQ3ZELDhEQUEwRDtBQUkxRCx1Q0FBb0M7QUFTcEM7Ozs7R0FJRztBQUNILE1BQWEsR0FBSSxTQUFRLHNCQUFTO0lBU2hDLFlBQVksS0FBZ0IsRUFBRSxFQUFVLEVBQUUsS0FBZTtRQUN2RCxLQUFLLENBQUMsS0FBSyxFQUFFLEVBQUUsQ0FBQyxDQUFDO1FBQ2pCLElBQUksQ0FBQyxLQUFLLEdBQUcsS0FBSyxDQUFDO1FBQ25CLElBQUksQ0FBQyxhQUFhLEdBQUcsS0FBSyxDQUFDLGFBQWEsQ0FBQyxLQUFLLENBQUM7UUFDL0MsSUFBSSxDQUFDLGlCQUFpQixHQUFHLElBQUksQ0FBQyxzQkFBc0IsQ0FBQyxLQUFLLENBQUMsYUFBYSxDQUFDLHdCQUF3QixDQUFDLENBQUM7UUFDbkcsSUFBSSxDQUFDLHdCQUF3QixHQUFHLElBQUksQ0FBQyw2QkFBNkIsQ0FBQyxLQUFLLENBQUMsYUFBYSxDQUFDLFlBQVksQ0FBQyxDQUFDO1FBRXJHLElBQUksQ0FBQyxJQUFJLEdBQUcsSUFBSSxDQUFDLHdCQUF3QixDQUFDLEtBQUssQ0FBQyxhQUFhLENBQUMsZUFBZSxDQUFDLENBQUM7UUFDL0UsSUFBSSxDQUFDLEdBQUcsR0FBRyxJQUFJLDhCQUFZLENBQUMsT0FBTyxDQUFDLElBQUksRUFBRSxTQUFTLEVBQUU7WUFDbkQsV0FBVyxFQUFFLHVCQUF1QixLQUFLLENBQUMsYUFBYSxDQUFDLGVBQWUsRUFBRTtTQUMxRSxDQUFDLENBQUM7UUFFSCxJQUFJLENBQUMsWUFBWSxDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQzNCLENBQUM7SUFFRDs7Ozs7T0FLRztJQUNILHNCQUFzQixDQUFDLG9CQUE2QjtRQUNsRCxJQUFJLENBQUMsb0JBQW9CLEVBQUU7WUFBRSxPQUFPO1NBQUU7UUFDdEMsT0FBTyxJQUFJLHdCQUFNLENBQUMsWUFBWSxDQUFDLElBQUksRUFBRSxPQUFPLEVBQUU7WUFDNUMsSUFBSSxFQUFFLHdCQUFNLENBQUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxvQkFBb0IsQ0FBQztTQUNsRCxDQUFDLENBQUM7SUFDTCxDQUFDO0lBRUQ7Ozs7T0FJRztJQUNILDZCQUE2QixDQUFDLFFBQTBDO1FBQ3RFLGdEQUFnRDtRQUNoRCxNQUFNLE9BQU8sR0FBRyxxQ0FBcUMsQ0FBQztRQUN0RCxFQUFFLENBQUMsU0FBUyxDQUFDLE9BQU8sRUFBRSxFQUFFLFNBQVMsRUFBRSxJQUFJLEVBQUUsQ0FBQyxDQUFDO1FBRTNDLHdEQUF3RDtRQUN4RCxNQUFNLGtCQUFrQixHQUFHLElBQUksQ0FBQyxTQUFTLENBQUMsUUFBUSxDQUFDLENBQUM7UUFDcEQsRUFBRSxDQUFDLGFBQWEsQ0FBQyxHQUFHLE9BQU8sc0JBQXNCLEVBQUUsa0JBQWtCLENBQUMsQ0FBQztRQUV2RSxzQ0FBc0M7UUFDdEMsT0FBTyxJQUFJLHdCQUFNLENBQUMsWUFBWSxDQUFDLElBQUksRUFBRSxxQkFBcUIsRUFBRTtZQUMxRCxJQUFJLEVBQUUsd0JBQU0sQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLE9BQU8sQ0FBQztZQUNwQyxXQUFXLEVBQUUseUVBQXlFO1NBQ3ZGLENBQUMsQ0FBQztJQUNMLENBQUM7SUFFRDs7O09BR0c7SUFDSCxZQUFZLENBQUMsS0FBZTtRQUMxQixNQUFNLGFBQWEsR0FBRyxJQUFJLGlCQUFPLENBQUMsSUFBSSxFQUFFLGdCQUFnQixFQUFFO1lBQ3hELFdBQVcsRUFBRSx5QkFBeUIsS0FBSyxDQUFDLGFBQWEsQ0FBQyxlQUFlLEdBQUc7WUFDNUUsV0FBVyxFQUFFLDhCQUFhO1lBQzFCLElBQUksRUFBRSxJQUFJLENBQUMsSUFBSTtTQUNoQixDQUFDLENBQUM7UUFDSCxJQUFJLENBQUMsUUFBUSxDQUFDLE9BQU8sRUFBRSxhQUFhLEVBQUUsUUFBUSxFQUFFLENBQUMsOEJBQVksQ0FBQyxVQUFVLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQztRQUUvRSxNQUFNLGNBQWMsR0FBRyxJQUFJLGlCQUFPLENBQUMsSUFBSSxFQUFFLGlCQUFpQixFQUFFO1lBQzFELFdBQVcsRUFBRSwwQkFBMEIsS0FBSyxDQUFDLGFBQWEsQ0FBQyxlQUFlLEdBQUc7WUFDN0UsV0FBVyxFQUFFLGdDQUFjO1lBQzNCLElBQUksRUFBRSxJQUFJLENBQUMsSUFBSTtTQUNoQixDQUFDLENBQUM7UUFDSCxJQUFJLENBQUMsUUFBUSxDQUFDLFFBQVEsRUFBRSxjQUFjLEVBQUUsU0FBUyxFQUFFLENBQUMsOEJBQVksQ0FBQyxVQUFVLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQztRQUVsRixNQUFNLFlBQVksR0FBRyxJQUFJLGlCQUFPLENBQUMsSUFBSSxFQUFFLGVBQWUsRUFBRTtZQUN0RCxXQUFXLEVBQUUsZ0NBQWdDLEtBQUssQ0FBQyxhQUFhLENBQUMsZUFBZSxHQUFHO1lBQ25GLElBQUksRUFBRSxJQUFJLENBQUMsSUFBSTtZQUNmLFdBQVcsRUFBRSw0QkFBWTtZQUN6QixXQUFXLEVBQUU7Z0JBQ1gsMkJBQTJCLEVBQUUsS0FBSyxDQUFDLGFBQWEsQ0FBQyxrQkFBa0IsQ0FBQyxDQUFDLENBQUMsTUFBTSxDQUFDLENBQUMsQ0FBQyxPQUFPO2FBQ3ZGO1NBQ0YsQ0FBQyxDQUFDO1FBQ0gsSUFBSSxDQUFDLFFBQVEsQ0FBQyxNQUFNLEVBQUUsWUFBWSxFQUFFLE9BQU8sRUFBRSxDQUFDLDhCQUFZLENBQUMsVUFBVSxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUM7SUFDOUUsQ0FBQztJQUVEOzs7Ozs7T0FNRztJQUNILFFBQVEsQ0FBQyxFQUFVLEVBQUUsT0FBZ0IsRUFBRSxJQUFZLEVBQUUsT0FBcUI7UUFDeEUsT0FBTyxDQUFDLGtCQUFrQixDQUFDLElBQUksQ0FBQyxhQUFhLENBQUMsQ0FBQztRQUMvQyxJQUFJLElBQUksQ0FBQyxpQkFBaUIsRUFBRTtZQUFFLE9BQU8sQ0FBQyxjQUFjLENBQUMsSUFBSSxDQUFDLGlCQUFpQixDQUFDLENBQUM7U0FBRTtRQUMvRSxPQUFPLENBQUMsY0FBYyxDQUFDLElBQUksQ0FBQyx3QkFBd0IsQ0FBQyxDQUFDO1FBQ3RELE9BQU8sQ0FBQyx3QkFBd0IsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLGFBQWEsQ0FBQyxlQUFlLElBQUksRUFBRSxDQUFDLENBQUM7UUFDakYsT0FBTyxDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLGFBQWEsQ0FBQyxlQUFlLENBQUMsQ0FBQztRQUMxRCxPQUFPLENBQUMsc0JBQXNCLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxhQUFhLENBQUMsZUFBZSxDQUFDLENBQUM7UUFDekUsSUFBSSxDQUFDLEdBQUcsQ0FBQyxTQUFTLENBQUM7WUFDakIsSUFBSTtZQUNKLE9BQU87WUFDUCxXQUFXLEVBQUUsSUFBSSxxREFBcUIsQ0FBQyxFQUFFLEVBQUUsT0FBTyxDQUFDLE1BQU0sQ0FBQztTQUMzRCxDQUFDLENBQUM7SUFDTCxDQUFDO0lBRUQ7Ozs7OztPQU1HO0lBQ0gsTUFBTTtRQUNKLE1BQU0sR0FBRyxHQUFHLElBQUksQ0FBQyxHQUFHLENBQUMsR0FBRyxDQUFDO1FBQ3pCLElBQUksQ0FBQyxHQUFHLEVBQUU7WUFBRSxPQUFPLEVBQUUsQ0FBQztTQUFFO1FBQ3hCLElBQUksVUFBVSxHQUFHLEdBQUc7YUFDakIsT0FBTyxDQUFDLGNBQWMsRUFBRSxFQUFFLENBQUMsQ0FBQyxVQUFVO2FBQ3RDLE9BQU8sQ0FBQyxLQUFLLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQyx5QkFBeUI7UUFDaEQsT0FBTyxVQUFVLENBQUM7SUFDcEIsQ0FBQztJQUVPLHdCQUF3QixDQUFDLGVBQXVCO1FBQ3RELE9BQU8sSUFBSSxjQUFJLENBQUMsSUFBSSxFQUFFLE1BQU0sRUFBRTtZQUM1QixTQUFTLEVBQUUsSUFBSSwwQkFBZ0IsQ0FBQyxzQkFBc0IsQ0FBQztZQUN2RCxXQUFXLEVBQUUsbUNBQW1DLGVBQWUsRUFBRTtZQUNqRSxlQUFlLEVBQUU7Z0JBQ2YsdUJBQWEsQ0FBQyx3QkFBd0IsQ0FBQywwQ0FBMEMsQ0FBQzthQUNuRjtTQUNGLENBQUMsQ0FBQztJQUNMLENBQUM7Q0FFRjtBQXZJRCxrQkF1SUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgKiBhcyBmcyBmcm9tICdmcyc7XG5pbXBvcnQge1xuICBhd3NfbGFtYmRhIGFzIGxhbWJkYSxcbiAgYXdzX2FwaWdhdGV3YXl2MiBhcyBhcGlnYXRld2F5djIsXG59IGZyb20gJ2F3cy1jZGstbGliJztcbmltcG9ydCB7IEh0dHBNZXRob2QgfSBmcm9tICdhd3MtY2RrLWxpYi9hd3MtYXBpZ2F0ZXdheXYyJztcbmltcG9ydCB7IEh0dHBMYW1iZGFJbnRlZ3JhdGlvbiB9IGZyb20gJ2F3cy1jZGstbGliL2F3cy1hcGlnYXRld2F5djItaW50ZWdyYXRpb25zJztcbmltcG9ydCB7IFRhYmxlIH0gZnJvbSAnYXdzLWNkay1saWIvYXdzLWR5bmFtb2RiJztcbmltcG9ydCB7IE1hbmFnZWRQb2xpY3ksIFJvbGUsIFNlcnZpY2VQcmluY2lwYWwgfSBmcm9tICdhd3MtY2RrLWxpYi9hd3MtaWFtJztcbmltcG9ydCB7IExheWVyVmVyc2lvbiB9IGZyb20gJ2F3cy1jZGstbGliL2F3cy1sYW1iZGEnO1xuaW1wb3J0IHsgQ29uc3RydWN0IH0gZnJvbSAnY29uc3RydWN0cyc7XG5pbXBvcnQgeyBBdXRoRnVuY3Rpb24gfSBmcm9tICcuL2F1dGgvYXV0aC1mdW5jdGlvbic7XG5pbXBvcnQgeyBMb2dpbkZ1bmN0aW9uIH0gZnJvbSAnLi9sb2dpbi9sb2dpbi1mdW5jdGlvbic7XG5pbXBvcnQgeyBMb2dvdXRGdW5jdGlvbiB9IGZyb20gJy4vbG9nb3V0L2xvZ291dC1mdW5jdGlvbic7XG5pbXBvcnQgeyBPcGVuSWRDb25uZWN0Q29ubmVjdGlvblByb2ZpbGUgfSBmcm9tICcuL09JRENDb25uZWN0aW9uUHJvZmlsZSc7XG5pbXBvcnQgeyBTZXNzaW9uc1RhYmxlIH0gZnJvbSAnLi9TZXNzaW9uc1RhYmxlJztcbmltcG9ydCB7IFdlYmFwcENvbmZpZ3VyYWJsZSB9IGZyb20gJy4vV2ViYXBwT3B0aW9ucyc7XG5pbXBvcnQgeyBXZWJwYWdlIH0gZnJvbSAnLi9XZWJwYWdlJztcblxuZXhwb3J0IGludGVyZmFjZSBBcGlQcm9wcyBleHRlbmRzIFdlYmFwcENvbmZpZ3VyYWJsZSB7XG4gIC8qKlxuICAgKiBUaGUgZHluYW1vZGIgc2Vzc2lvbiB0YWJsZVxuICAgKi9cbiAgc2Vzc2lvbnNUYWJsZTogU2Vzc2lvbnNUYWJsZTtcbn1cblxuLyoqXG4gKiBUaGUgQVBJIFN0YWNrIGNyZWF0ZXMgdGhlIEFQSSBHYXRld2F5IGFuZCByZWxhdGVkXG4gKiBsYW1iZGEncy4gSXQgcmVxdWlyZXMgc3VwcG9ydGluZyByZXNvdXJjZXMgKHN1Y2ggYXMgdGhlXG4gKiBEeW5hbW9EQiBzZXNzaW9ucyB0YWJsZSB0byBiZSBwcm92aWRlZCBhbmQgdGh1cyBjcmVhdGVkIGZpcnN0KVxuICovXG5leHBvcnQgY2xhc3MgQXBpIGV4dGVuZHMgQ29uc3RydWN0IHtcblxuICBwcml2YXRlIHNlc3Npb25zVGFibGU6IFRhYmxlO1xuICBwcml2YXRlIGN1c3RvbUxhbWJkYUxheWVyPzogTGF5ZXJWZXJzaW9uO1xuICBwcml2YXRlIGNvbmZpZ3VyYXRpb25MYW1iZGFMYXllcjogTGF5ZXJWZXJzaW9uO1xuICBwcml2YXRlIHByb3BzOiBBcGlQcm9wcztcbiAgYXBpOiBhcGlnYXRld2F5djIuSHR0cEFwaTtcbiAgcm9sZTogUm9sZTtcblxuICBjb25zdHJ1Y3RvcihzY29wZTogQ29uc3RydWN0LCBpZDogc3RyaW5nLCBwcm9wczogQXBpUHJvcHMpIHtcbiAgICBzdXBlcihzY29wZSwgaWQpO1xuICAgIHRoaXMucHJvcHMgPSBwcm9wcztcbiAgICB0aGlzLnNlc3Npb25zVGFibGUgPSBwcm9wcy5zZXNzaW9uc1RhYmxlLnRhYmxlO1xuICAgIHRoaXMuY3VzdG9tTGFtYmRhTGF5ZXIgPSB0aGlzLnNldHVwQ3VzdG9tTGFtYmRhTGF5ZXIocHJvcHMud2ViYXBwT3B0aW9ucy5hZGRpdGlvbmFsU291cmNlRmlsZXNEaXIpO1xuICAgIHRoaXMuY29uZmlndXJhdGlvbkxhbWJkYUxheWVyID0gdGhpcy5zZXR1cENvbmZpZ3VyYXRpb25MYW1iZGFMYXllcihwcm9wcy53ZWJhcHBPcHRpb25zLm9pZGNQcm9maWxlcyk7XG5cbiAgICB0aGlzLnJvbGUgPSB0aGlzLnNldHVwTGFtYmRhRXhlY3V0aW9uUm9sZShwcm9wcy53ZWJhcHBPcHRpb25zLmFwcGxpY2F0aW9uTmFtZSk7XG4gICAgdGhpcy5hcGkgPSBuZXcgYXBpZ2F0ZXdheXYyLkh0dHBBcGkodGhpcywgJ2dhdGV3YXknLCB7XG4gICAgICBkZXNjcmlwdGlvbjogYEFQSSBHYXRld2F5IHdlYmFwcDogJHtwcm9wcy53ZWJhcHBPcHRpb25zLmFwcGxpY2F0aW9uTmFtZX1gLFxuICAgIH0pO1xuXG4gICAgdGhpcy5zZXRGdW5jdGlvbnMocHJvcHMpO1xuICB9XG5cbiAgLyoqXG4gICAqIENyZWF0ZSBhIGxhbWJkYSBsYXllciB0aGF0IGluY2xkdWVzIHRlbXBsYXRlcyBvdmVyd3JpdGVzXG4gICAqIGFuZCBjb25maWd1cmF0aW9uIGZpbGVzLiBJdCBpcyBtYWRlIGF2YWlsYWJsZSB0byBhbGwgbGFtYmRhXG4gICAqIHJlZ2lzdGVyZCBpbiB0aGlzIHdlYmFwcC5cbiAgICogQHBhcmFtIHByb3BzXG4gICAqL1xuICBzZXR1cEN1c3RvbUxhbWJkYUxheWVyKGN1c3RvbUxhbWJkYUxheWVyRGlyPzogc3RyaW5nKSB7XG4gICAgaWYgKCFjdXN0b21MYW1iZGFMYXllckRpcikgeyByZXR1cm47IH1cbiAgICByZXR1cm4gbmV3IGxhbWJkYS5MYXllclZlcnNpb24odGhpcywgJ2xheWVyJywge1xuICAgICAgY29kZTogbGFtYmRhLkNvZGUuZnJvbUFzc2V0KGN1c3RvbUxhbWJkYUxheWVyRGlyKSxcbiAgICB9KTtcbiAgfVxuXG4gIC8qKlxuICAgKiBDcmVhdGUgYSBjb25maWd1cmF0aW9uIGxhbWJkYSBsYXllciB0aGF0IGNvbnRhaW5zIHRoZSBjb25maWd1cmF0aW9uIGZpbGVzXG4gICAqIGZvciB0aGUgbGFtYmRhLlxuICAgKiBAcGFyYW0gcHJvZmlsZXNcbiAgICovXG4gIHNldHVwQ29uZmlndXJhdGlvbkxhbWJkYUxheWVyKHByb2ZpbGVzOiBPcGVuSWRDb25uZWN0Q29ubmVjdGlvblByb2ZpbGVbXSkge1xuICAgIC8vIENyZWF0ZSB0ZW1wIGRpcmVjdG9yeSAodXNlIHByb2plbiBhc3NldHMgZGlyKVxuICAgIGNvbnN0IHRlbXBEaXIgPSAnLi9hc3NldHMvd2ViYXBwL2NvbmZpZ3VyYXRpb24tbGF5ZXInO1xuICAgIGZzLm1rZGlyU3luYyh0ZW1wRGlyLCB7IHJlY3Vyc2l2ZTogdHJ1ZSB9KTtcblxuICAgIC8vIFdyaXRlIGNvbmZpZ3VyYXRpb24gb2JqZWN0cyB0byBKU09OIGZpbGVzIGluIHRlbXAgZGlyXG4gICAgY29uc3QgYXV0aGVudGljYXRpb25Kc29uID0gSlNPTi5zdHJpbmdpZnkocHJvZmlsZXMpO1xuICAgIGZzLndyaXRlRmlsZVN5bmMoYCR7dGVtcERpcn0vYXV0aGVudGljYXRpb24uanNvbmAsIGF1dGhlbnRpY2F0aW9uSnNvbik7XG5cbiAgICAvLyBNYWtlIGxheWVyIHVzaW5nIHRoZSB0ZW1wIGRpcmVjdG9yeVxuICAgIHJldHVybiBuZXcgbGFtYmRhLkxheWVyVmVyc2lvbih0aGlzLCAnY29uZmlndXJhdGlvbi1sYXllcicsIHtcbiAgICAgIGNvZGU6IGxhbWJkYS5Db2RlLmZyb21Bc3NldCh0ZW1wRGlyKSxcbiAgICAgIGRlc2NyaXB0aW9uOiAnV2ViYXBwIGNvbnN0cnVjdCBtYW5hZ2VkIGxheWVyIHRvIGluamVjdCBjb25maWd1cmF0aW9uIGZpbGVzIGluIGxhbWJkYXMnLFxuICAgIH0pO1xuICB9XG5cbiAgLyoqXG4gICAqIENyZWF0ZSBhbmQgY29uZmlndXJlIGxhbWJkYSdzIGZvciBhbGwgYXBpIHJvdXRlcywgYW5kXG4gICAqIGFkZCByb3V0ZXMgdG8gdGhlIGdhdGV3YXkuXG4gICAqL1xuICBzZXRGdW5jdGlvbnMocHJvcHM6IEFwaVByb3BzKSB7XG4gICAgY29uc3QgbG9naW5GdW5jdGlvbiA9IG5ldyBXZWJwYWdlKHRoaXMsICdsb2dpbi1mdW5jdGlvbicsIHtcbiAgICAgIGRlc2NyaXB0aW9uOiBgTG9naW4gcGFnZSBmb3Igd2ViYXBwICR7cHJvcHMud2ViYXBwT3B0aW9ucy5hcHBsaWNhdGlvbk5hbWV9LmAsXG4gICAgICBhcGlGdW5jdGlvbjogTG9naW5GdW5jdGlvbixcbiAgICAgIHJvbGU6IHRoaXMucm9sZSxcbiAgICB9KTtcbiAgICB0aGlzLmFkZFJvdXRlKCdsb2dpbicsIGxvZ2luRnVuY3Rpb24sICcvbG9naW4nLCBbYXBpZ2F0ZXdheXYyLkh0dHBNZXRob2QuR0VUXSk7XG5cbiAgICBjb25zdCBsb2dvdXRGdW5jdGlvbiA9IG5ldyBXZWJwYWdlKHRoaXMsICdsb2dvdXQtZnVuY3Rpb24nLCB7XG4gICAgICBkZXNjcmlwdGlvbjogYExvZ291dCBwYWdlIGZvciB3ZWJhcHAgJHtwcm9wcy53ZWJhcHBPcHRpb25zLmFwcGxpY2F0aW9uTmFtZX0uYCxcbiAgICAgIGFwaUZ1bmN0aW9uOiBMb2dvdXRGdW5jdGlvbixcbiAgICAgIHJvbGU6IHRoaXMucm9sZSxcbiAgICB9KTtcbiAgICB0aGlzLmFkZFJvdXRlKCdsb2dvdXQnLCBsb2dvdXRGdW5jdGlvbiwgJy9sb2dvdXQnLCBbYXBpZ2F0ZXdheXYyLkh0dHBNZXRob2QuR0VUXSk7XG5cbiAgICBjb25zdCBhdXRoRnVuY3Rpb24gPSBuZXcgV2VicGFnZSh0aGlzLCAnYXV0aC1mdW5jdGlvbicsIHtcbiAgICAgIGRlc2NyaXB0aW9uOiBgQXV0aCBsYW5kaW5ncG9pbnQgZm9yIHdlYmFwcCAke3Byb3BzLndlYmFwcE9wdGlvbnMuYXBwbGljYXRpb25OYW1lfS5gLFxuICAgICAgcm9sZTogdGhpcy5yb2xlLFxuICAgICAgYXBpRnVuY3Rpb246IEF1dGhGdW5jdGlvbixcbiAgICAgIGVudmlyb25tZW50OiB7XG4gICAgICAgIFJFRElSRUNUX1RPX1BPU1RfTE9HSU5fSE9PSzogcHJvcHMud2ViYXBwT3B0aW9ucy5wb3N0TG9naW5Qcm9jZXNzb3IgPyAndHJ1ZScgOiAnZmFsc2UnLFxuICAgICAgfSxcbiAgICB9KTtcbiAgICB0aGlzLmFkZFJvdXRlKCdhdXRoJywgYXV0aEZ1bmN0aW9uLCAnL2F1dGgnLCBbYXBpZ2F0ZXdheXYyLkh0dHBNZXRob2QuR0VUXSk7XG4gIH1cblxuICAvKipcbiAgICogQWRkIGEgbmV3IHBhZ2UgdG8gdGhlIHdlYmFwcFxuICAgKiBAcGFyYW0gaWRcbiAgICogQHBhcmFtIGhhbmRsZXJcbiAgICogQHBhcmFtIHBhdGhcbiAgICogQHBhcmFtIG1ldGhvZHNcbiAgICovXG4gIGFkZFJvdXRlKGlkOiBzdHJpbmcsIGhhbmRsZXI6IFdlYnBhZ2UsIHBhdGg6IHN0cmluZywgbWV0aG9kczogSHR0cE1ldGhvZFtdKSB7XG4gICAgaGFuZGxlci5hbGxvd1Nlc3Npb25BY2Nlc3ModGhpcy5zZXNzaW9uc1RhYmxlKTtcbiAgICBpZiAodGhpcy5jdXN0b21MYW1iZGFMYXllcikgeyBoYW5kbGVyLmFkZExhbWJkYUxheWVyKHRoaXMuY3VzdG9tTGFtYmRhTGF5ZXIpOyB9XG4gICAgaGFuZGxlci5hZGRMYW1iZGFMYXllcih0aGlzLmNvbmZpZ3VyYXRpb25MYW1iZGFMYXllcik7XG4gICAgaGFuZGxlci5vdmVyd3JpdGVTZXNzaW9uTGlmZXRpbWUodGhpcy5wcm9wcy53ZWJhcHBPcHRpb25zLnNlc3Npb25MaWZldGltZSA/PyAxNSk7XG4gICAgaGFuZGxlci5tb25pdG9yKHRoaXMucHJvcHMud2ViYXBwT3B0aW9ucy5hcHBsaWNhdGlvbk5hbWUpO1xuICAgIGhhbmRsZXIuYWRkU3RhbmRhcmRFbnZpcm9ubWVudCh0aGlzLnByb3BzLndlYmFwcE9wdGlvbnMuYXBwbGljYXRpb25OYW1lKTtcbiAgICB0aGlzLmFwaS5hZGRSb3V0ZXMoe1xuICAgICAgcGF0aCxcbiAgICAgIG1ldGhvZHMsXG4gICAgICBpbnRlZ3JhdGlvbjogbmV3IEh0dHBMYW1iZGFJbnRlZ3JhdGlvbihpZCwgaGFuZGxlci5sYW1iZGEpLFxuICAgIH0pO1xuICB9XG5cbiAgLyoqXG4gICAqIENsZWFuIGFuZCByZXR1cm4gdGhlIGFwaWdhdGV3YXkgc3ViZG9tYWluIHBsYWNlaG9sZGVyXG4gICAqIGh0dHBzOi8vJHtUb2tlbltUT0tFTi4yNDZdfS5leGVjdXRlLWFwaS5ldS13ZXN0LTEuJHtUb2tlbltBV1MuVVJMU3VmZml4LjNdfS9cbiAgICogd2hpY2ggY2FuJ3QgYmUgcGFyc2VkIGJ5IHRoZSBVUkwgY2xhc3MuXG4gICAqXG4gICAqIEByZXR1cm5zIGEgZG9tYWluLWxpa2Ugc3RyaW5nIGNsZWFuZWQgb2YgcHJvdG9jb2wgYW5kIHRyYWlsaW5nIHNsYXNoXG4gICAqL1xuICBkb21haW4oKTogc3RyaW5nIHtcbiAgICBjb25zdCB1cmwgPSB0aGlzLmFwaS51cmw7XG4gICAgaWYgKCF1cmwpIHsgcmV0dXJuICcnOyB9XG4gICAgbGV0IGNsZWFuZWRVcmwgPSB1cmxcbiAgICAgIC5yZXBsYWNlKC9eaHR0cHM/OlxcL1xcLy8sICcnKSAvL3Byb3RvY29sXG4gICAgICAucmVwbGFjZSgvXFwvJC8sICcnKTsgLy9vcHRpb25hbCB0cmFpbGluZyBzbGFzaFxuICAgIHJldHVybiBjbGVhbmVkVXJsO1xuICB9XG5cbiAgcHJpdmF0ZSBzZXR1cExhbWJkYUV4ZWN1dGlvblJvbGUoYXBwbGljYXRpb25OYW1lOiBzdHJpbmcpIHtcbiAgICByZXR1cm4gbmV3IFJvbGUodGhpcywgJ3JvbGUnLCB7XG4gICAgICBhc3N1bWVkQnk6IG5ldyBTZXJ2aWNlUHJpbmNpcGFsKCdsYW1iZGEuYW1hem9uYXdzLmNvbScpLFxuICAgICAgZGVzY3JpcHRpb246IGBSb2xlIHVzZWQgZm9yIGxhbWJkYXMgaW4gd2ViYXBwICR7YXBwbGljYXRpb25OYW1lfWAsXG4gICAgICBtYW5hZ2VkUG9saWNpZXM6IFtcbiAgICAgICAgTWFuYWdlZFBvbGljeS5mcm9tQXdzTWFuYWdlZFBvbGljeU5hbWUoJ3NlcnZpY2Utcm9sZS9BV1NMYW1iZGFCYXNpY0V4ZWN1dGlvblJvbGUnKSxcbiAgICAgIF0sXG4gICAgfSk7XG4gIH1cblxufSJdfQ==
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import { aws_s3 as S3 } from 'aws-cdk-lib';
|
|
2
|
+
import { Distribution, ResponseHeadersPolicy, OriginAccessIdentity } from 'aws-cdk-lib/aws-cloudfront';
|
|
3
|
+
import { Construct } from 'constructs';
|
|
4
|
+
import { WebappConfigurable } from './WebappOptions';
|
|
5
|
+
export interface CloudFrontProps extends WebappConfigurable {
|
|
6
|
+
/**
|
|
7
|
+
* The domain name of the API gateway to forward requests to.
|
|
8
|
+
*/
|
|
9
|
+
apiGatewayDomain: string;
|
|
10
|
+
}
|
|
11
|
+
export declare class Cloudfront extends Construct {
|
|
12
|
+
cloudfront: Distribution;
|
|
13
|
+
constructor(scope: Construct, id: string, props: CloudFrontProps);
|
|
14
|
+
/**
|
|
15
|
+
* Add static contents to cloudfront
|
|
16
|
+
*
|
|
17
|
+
* Creates a bucket, deploys contents from a folder and adds it to
|
|
18
|
+
* the cloudfront distribution.
|
|
19
|
+
*
|
|
20
|
+
* @param cloudfrontDistribution the distribution for these resources
|
|
21
|
+
*/
|
|
22
|
+
private addStaticResources;
|
|
23
|
+
/**
|
|
24
|
+
* Create a cloudfront distribution for the application
|
|
25
|
+
*
|
|
26
|
+
* Do not forward the Host header to API Gateway. This results in
|
|
27
|
+
* an HTTP 403 because API Gateway won't be able to find an endpoint
|
|
28
|
+
* on the cloudfront domain.
|
|
29
|
+
*
|
|
30
|
+
* @param {string} apiGatewayDomain the domain the api gateway can be reached at
|
|
31
|
+
* @returns {Distribution} the cloudfront distribution
|
|
32
|
+
*/
|
|
33
|
+
setupCloudfront(props: CloudFrontProps): Distribution;
|
|
34
|
+
private errorResponses;
|
|
35
|
+
/**
|
|
36
|
+
* Add DNS records for cloudfront to the Route53 Zone
|
|
37
|
+
*
|
|
38
|
+
* Requests to the custom domain will correctly use cloudfront.
|
|
39
|
+
*
|
|
40
|
+
* @param distribution the cloudfront distribution
|
|
41
|
+
*/
|
|
42
|
+
addDnsRecords(distribution: Distribution, props: CloudFrontProps): void;
|
|
43
|
+
/**
|
|
44
|
+
* Create a bucket to hold cloudfront logs
|
|
45
|
+
* @returns s3.Bucket
|
|
46
|
+
*/
|
|
47
|
+
logBucket(): S3.Bucket;
|
|
48
|
+
/**
|
|
49
|
+
* Get a set of (security) response headers to inject into the response
|
|
50
|
+
* @returns {ResponseHeadersPolicy} cloudfront responseHeadersPolicy
|
|
51
|
+
*/
|
|
52
|
+
responseHeadersPolicy(props: CloudFrontProps): ResponseHeadersPolicy;
|
|
53
|
+
/**
|
|
54
|
+
* Get the cleaned, trimmed header values for the csp header
|
|
55
|
+
*
|
|
56
|
+
* @returns string csp header values
|
|
57
|
+
*/
|
|
58
|
+
cspHeaderValue(): string;
|
|
59
|
+
/**
|
|
60
|
+
* Create an s3 bucket to hold static resources.
|
|
61
|
+
* Must be unencrypted to allow cloudfront to serve
|
|
62
|
+
* these resources.
|
|
63
|
+
*
|
|
64
|
+
* @returns S3.Bucket
|
|
65
|
+
*/
|
|
66
|
+
staticResourcesBucket(): S3.Bucket;
|
|
67
|
+
/**
|
|
68
|
+
* Allow listBucket to the origin access identity
|
|
69
|
+
*
|
|
70
|
+
* Necessary so cloudfront receives 404's as 404 instead of 403. This also allows
|
|
71
|
+
* a listing of the bucket if no /index.html is present in the bucket.
|
|
72
|
+
*
|
|
73
|
+
* @param originAccessIdentity
|
|
74
|
+
* @param bucket
|
|
75
|
+
*/
|
|
76
|
+
allowOriginAccessIdentityAccessToBucket(originAccessIdentity: OriginAccessIdentity, bucket: S3.Bucket): void;
|
|
77
|
+
/**
|
|
78
|
+
* Deploy contents of folder to the s3 bucket
|
|
79
|
+
*
|
|
80
|
+
* Invalidates the correct cloudfront path
|
|
81
|
+
* @param bucket s3.Bucket
|
|
82
|
+
* @param distribution Distribution
|
|
83
|
+
*/
|
|
84
|
+
deployBucket(props: CloudFrontProps, bucket: S3.Bucket, distribution: Distribution): void;
|
|
85
|
+
private domainNames;
|
|
86
|
+
}
|
|
@@ -0,0 +1,259 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Cloudfront = void 0;
|
|
4
|
+
const fs = require("fs");
|
|
5
|
+
const path = require("path");
|
|
6
|
+
const aws_cdk_lib_1 = require("aws-cdk-lib");
|
|
7
|
+
const aws_cloudfront_1 = require("aws-cdk-lib/aws-cloudfront");
|
|
8
|
+
const aws_cloudfront_origins_1 = require("aws-cdk-lib/aws-cloudfront-origins");
|
|
9
|
+
const constructs_1 = require("constructs");
|
|
10
|
+
class Cloudfront extends constructs_1.Construct {
|
|
11
|
+
constructor(scope, id, props) {
|
|
12
|
+
super(scope, id);
|
|
13
|
+
this.cloudfront = this.setupCloudfront(props);
|
|
14
|
+
this.addStaticResources(props, this.cloudfront);
|
|
15
|
+
this.addDnsRecords(this.cloudfront, props);
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* Add static contents to cloudfront
|
|
19
|
+
*
|
|
20
|
+
* Creates a bucket, deploys contents from a folder and adds it to
|
|
21
|
+
* the cloudfront distribution.
|
|
22
|
+
*
|
|
23
|
+
* @param cloudfrontDistribution the distribution for these resources
|
|
24
|
+
*/
|
|
25
|
+
addStaticResources(props, cloudfrontDistribution) {
|
|
26
|
+
const staticResourcesBucket = this.staticResourcesBucket();
|
|
27
|
+
const originAccessIdentity = new aws_cloudfront_1.OriginAccessIdentity(this, 'publicresourcesbucket-oia');
|
|
28
|
+
this.allowOriginAccessIdentityAccessToBucket(originAccessIdentity, staticResourcesBucket);
|
|
29
|
+
const origin = new aws_cloudfront_origins_1.S3Origin(staticResourcesBucket, {
|
|
30
|
+
originAccessIdentity: originAccessIdentity,
|
|
31
|
+
});
|
|
32
|
+
cloudfrontDistribution.addBehavior('/static/*', origin, {
|
|
33
|
+
viewerProtocolPolicy: aws_cloudfront_1.ViewerProtocolPolicy.REDIRECT_TO_HTTPS,
|
|
34
|
+
});
|
|
35
|
+
cloudfrontDistribution.addBehavior('/.well-known/*', origin, {
|
|
36
|
+
viewerProtocolPolicy: aws_cloudfront_1.ViewerProtocolPolicy.REDIRECT_TO_HTTPS,
|
|
37
|
+
});
|
|
38
|
+
this.deployBucket(props, staticResourcesBucket, cloudfrontDistribution);
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* Create a cloudfront distribution for the application
|
|
42
|
+
*
|
|
43
|
+
* Do not forward the Host header to API Gateway. This results in
|
|
44
|
+
* an HTTP 403 because API Gateway won't be able to find an endpoint
|
|
45
|
+
* on the cloudfront domain.
|
|
46
|
+
*
|
|
47
|
+
* @param {string} apiGatewayDomain the domain the api gateway can be reached at
|
|
48
|
+
* @returns {Distribution} the cloudfront distribution
|
|
49
|
+
*/
|
|
50
|
+
setupCloudfront(props) {
|
|
51
|
+
let defaultPath = props.webappOptions.defaultPath;
|
|
52
|
+
if (defaultPath.startsWith('/')) {
|
|
53
|
+
defaultPath = defaultPath.substring(1); // Strip leading /
|
|
54
|
+
}
|
|
55
|
+
const distribution = new aws_cloudfront_1.Distribution(this, 'cf-distribution', {
|
|
56
|
+
priceClass: aws_cloudfront_1.PriceClass.PRICE_CLASS_100,
|
|
57
|
+
domainNames: this.domainNames(props),
|
|
58
|
+
certificate: props.webappOptions.cloudFrontCertificate,
|
|
59
|
+
defaultBehavior: {
|
|
60
|
+
origin: new aws_cloudfront_origins_1.HttpOrigin(props.apiGatewayDomain),
|
|
61
|
+
originRequestPolicy: new aws_cloudfront_1.OriginRequestPolicy(this, 'cf-originrequestpolicy', {
|
|
62
|
+
originRequestPolicyName: 'cfOriginRequestPolicyMijnUitkering',
|
|
63
|
+
headerBehavior: aws_cloudfront_1.OriginRequestHeaderBehavior.allowList('Accept-Charset', 'Origin', 'Accept', 'Referer', 'Accept-Language', 'Accept-Datetime', 'Authoriz'),
|
|
64
|
+
}),
|
|
65
|
+
viewerProtocolPolicy: aws_cloudfront_1.ViewerProtocolPolicy.REDIRECT_TO_HTTPS,
|
|
66
|
+
allowedMethods: aws_cloudfront_1.AllowedMethods.ALLOW_ALL,
|
|
67
|
+
cachePolicy: new aws_cloudfront_1.CachePolicy(this, 'cf-caching', {
|
|
68
|
+
cachePolicyName: 'cfCachingSessionsMijnUitkering',
|
|
69
|
+
cookieBehavior: aws_cloudfront_1.CacheCookieBehavior.all(),
|
|
70
|
+
headerBehavior: aws_cloudfront_1.CacheHeaderBehavior.allowList('Authorization'),
|
|
71
|
+
queryStringBehavior: aws_cloudfront_1.CacheQueryStringBehavior.all(),
|
|
72
|
+
defaultTtl: aws_cdk_lib_1.Duration.seconds(0),
|
|
73
|
+
minTtl: aws_cdk_lib_1.Duration.seconds(0),
|
|
74
|
+
maxTtl: aws_cdk_lib_1.Duration.seconds(1),
|
|
75
|
+
}),
|
|
76
|
+
responseHeadersPolicy: this.responseHeadersPolicy(props),
|
|
77
|
+
},
|
|
78
|
+
errorResponses: this.errorResponses(),
|
|
79
|
+
logBucket: this.logBucket(),
|
|
80
|
+
minimumProtocolVersion: aws_cloudfront_1.SecurityPolicyProtocol.TLS_V1_2_2021,
|
|
81
|
+
defaultRootObject: defaultPath,
|
|
82
|
+
});
|
|
83
|
+
return distribution;
|
|
84
|
+
}
|
|
85
|
+
errorResponses() {
|
|
86
|
+
const errorCodes = [403, 404, 500, 503];
|
|
87
|
+
return errorCodes.map(code => {
|
|
88
|
+
return {
|
|
89
|
+
httpStatus: code,
|
|
90
|
+
responseHttpStatus: code,
|
|
91
|
+
responsePagePath: `/static/http-errors/${code}.html`,
|
|
92
|
+
};
|
|
93
|
+
});
|
|
94
|
+
}
|
|
95
|
+
/**
|
|
96
|
+
* Add DNS records for cloudfront to the Route53 Zone
|
|
97
|
+
*
|
|
98
|
+
* Requests to the custom domain will correctly use cloudfront.
|
|
99
|
+
*
|
|
100
|
+
* @param distribution the cloudfront distribution
|
|
101
|
+
*/
|
|
102
|
+
addDnsRecords(distribution, props) {
|
|
103
|
+
new aws_cdk_lib_1.aws_route53.ARecord(this, 'a-record', {
|
|
104
|
+
zone: props.webappOptions.hostedZone,
|
|
105
|
+
target: aws_cdk_lib_1.aws_route53.RecordTarget.fromAlias(new aws_cdk_lib_1.aws_route53_targets.CloudFrontTarget(distribution)),
|
|
106
|
+
});
|
|
107
|
+
new aws_cdk_lib_1.aws_route53.AaaaRecord(this, 'aaaa-record', {
|
|
108
|
+
zone: props.webappOptions.hostedZone,
|
|
109
|
+
target: aws_cdk_lib_1.aws_route53.RecordTarget.fromAlias(new aws_cdk_lib_1.aws_route53_targets.CloudFrontTarget(distribution)),
|
|
110
|
+
});
|
|
111
|
+
}
|
|
112
|
+
/**
|
|
113
|
+
* Create a bucket to hold cloudfront logs
|
|
114
|
+
* @returns s3.Bucket
|
|
115
|
+
*/
|
|
116
|
+
logBucket() {
|
|
117
|
+
const cfLogBucket = new aws_cdk_lib_1.aws_s3.Bucket(this, 'CloudfrontLogs', {
|
|
118
|
+
blockPublicAccess: aws_cdk_lib_1.aws_s3.BlockPublicAccess.BLOCK_ALL,
|
|
119
|
+
eventBridgeEnabled: true,
|
|
120
|
+
enforceSSL: true,
|
|
121
|
+
encryption: aws_cdk_lib_1.aws_s3.BucketEncryption.S3_MANAGED,
|
|
122
|
+
objectOwnership: aws_cdk_lib_1.aws_s3.ObjectOwnership.OBJECT_WRITER,
|
|
123
|
+
lifecycleRules: [
|
|
124
|
+
{
|
|
125
|
+
id: 'delete objects after 180 days',
|
|
126
|
+
enabled: true,
|
|
127
|
+
expiration: aws_cdk_lib_1.Duration.days(180),
|
|
128
|
+
},
|
|
129
|
+
],
|
|
130
|
+
});
|
|
131
|
+
return cfLogBucket;
|
|
132
|
+
}
|
|
133
|
+
/**
|
|
134
|
+
* Get a set of (security) response headers to inject into the response
|
|
135
|
+
* @returns {ResponseHeadersPolicy} cloudfront responseHeadersPolicy
|
|
136
|
+
*/
|
|
137
|
+
responseHeadersPolicy(props) {
|
|
138
|
+
const csp = props.webappOptions.cspHeaderValue ?? this.cspHeaderValue();
|
|
139
|
+
const responseHeadersPolicy = new aws_cloudfront_1.ResponseHeadersPolicy(this, 'headers', {
|
|
140
|
+
securityHeadersBehavior: {
|
|
141
|
+
contentSecurityPolicy: { contentSecurityPolicy: csp, override: true },
|
|
142
|
+
contentTypeOptions: { override: true },
|
|
143
|
+
frameOptions: { frameOption: aws_cloudfront_1.HeadersFrameOption.DENY, override: true },
|
|
144
|
+
referrerPolicy: { referrerPolicy: aws_cloudfront_1.HeadersReferrerPolicy.NO_REFERRER, override: true },
|
|
145
|
+
strictTransportSecurity: { accessControlMaxAge: aws_cdk_lib_1.Duration.days(366), includeSubdomains: true, override: true },
|
|
146
|
+
},
|
|
147
|
+
customHeadersBehavior: {
|
|
148
|
+
customHeaders: [
|
|
149
|
+
{
|
|
150
|
+
header: 'Cache-Control',
|
|
151
|
+
value: 'no-cache, no-store, must-revalidate',
|
|
152
|
+
override: false,
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
header: 'Pragma',
|
|
156
|
+
value: 'no-cache',
|
|
157
|
+
override: false,
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
header: 'Expires',
|
|
161
|
+
value: '0',
|
|
162
|
+
override: false,
|
|
163
|
+
},
|
|
164
|
+
],
|
|
165
|
+
},
|
|
166
|
+
});
|
|
167
|
+
return responseHeadersPolicy;
|
|
168
|
+
}
|
|
169
|
+
/**
|
|
170
|
+
* Get the cleaned, trimmed header values for the csp header
|
|
171
|
+
*
|
|
172
|
+
* @returns string csp header values
|
|
173
|
+
*/
|
|
174
|
+
cspHeaderValue() {
|
|
175
|
+
const cspValues = 'default-src \'self\';\
|
|
176
|
+
frame-ancestors \'self\';\
|
|
177
|
+
frame-src \'self\';\
|
|
178
|
+
connect-src \'self\' https://componenten.nijmegen.nl;\
|
|
179
|
+
style-src \'self\' https://componenten.nijmegen.nl https://fonts.googleapis.com https://fonts.gstatic.com \
|
|
180
|
+
\'sha256-hS1LM/30PjUBJK3kBX9Vm9eOAhQNCiNhf/SCDnUqu14=\' \'sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=\' \'sha256-OTeu7NEHDo6qutIWo0F2TmYrDhsKWCzrUgGoxxHGJ8o=\';\
|
|
181
|
+
script-src \'self\' https://componenten.nijmegen.nl https://siteimproveanalytics.com;\
|
|
182
|
+
font-src \'self\' https://componenten.nijmegen.nl https://fonts.gstatic.com;\
|
|
183
|
+
img-src \'self\' https://componenten.nijmegen.nl data: https://*.siteimproveanalytics.io;\
|
|
184
|
+
object-src \'none\';\
|
|
185
|
+
';
|
|
186
|
+
return cspValues.replace(/[ ]+/g, ' ').trim();
|
|
187
|
+
}
|
|
188
|
+
/**
|
|
189
|
+
* Create an s3 bucket to hold static resources.
|
|
190
|
+
* Must be unencrypted to allow cloudfront to serve
|
|
191
|
+
* these resources.
|
|
192
|
+
*
|
|
193
|
+
* @returns S3.Bucket
|
|
194
|
+
*/
|
|
195
|
+
staticResourcesBucket() {
|
|
196
|
+
const bucket = new aws_cdk_lib_1.aws_s3.Bucket(this, 'resources-bucket', {
|
|
197
|
+
blockPublicAccess: aws_cdk_lib_1.aws_s3.BlockPublicAccess.BLOCK_ALL,
|
|
198
|
+
eventBridgeEnabled: true,
|
|
199
|
+
enforceSSL: true,
|
|
200
|
+
encryption: aws_cdk_lib_1.aws_s3.BucketEncryption.UNENCRYPTED,
|
|
201
|
+
});
|
|
202
|
+
return bucket;
|
|
203
|
+
}
|
|
204
|
+
/**
|
|
205
|
+
* Allow listBucket to the origin access identity
|
|
206
|
+
*
|
|
207
|
+
* Necessary so cloudfront receives 404's as 404 instead of 403. This also allows
|
|
208
|
+
* a listing of the bucket if no /index.html is present in the bucket.
|
|
209
|
+
*
|
|
210
|
+
* @param originAccessIdentity
|
|
211
|
+
* @param bucket
|
|
212
|
+
*/
|
|
213
|
+
allowOriginAccessIdentityAccessToBucket(originAccessIdentity, bucket) {
|
|
214
|
+
bucket.addToResourcePolicy(new aws_cdk_lib_1.aws_iam.PolicyStatement({
|
|
215
|
+
resources: [
|
|
216
|
+
`${bucket.bucketArn}`,
|
|
217
|
+
`${bucket.bucketArn}/*`,
|
|
218
|
+
],
|
|
219
|
+
actions: [
|
|
220
|
+
's3:GetObject',
|
|
221
|
+
's3:ListBucket',
|
|
222
|
+
],
|
|
223
|
+
effect: aws_cdk_lib_1.aws_iam.Effect.ALLOW,
|
|
224
|
+
principals: [originAccessIdentity.grantPrincipal],
|
|
225
|
+
}));
|
|
226
|
+
}
|
|
227
|
+
/**
|
|
228
|
+
* Deploy contents of folder to the s3 bucket
|
|
229
|
+
*
|
|
230
|
+
* Invalidates the correct cloudfront path
|
|
231
|
+
* @param bucket s3.Bucket
|
|
232
|
+
* @param distribution Distribution
|
|
233
|
+
*/
|
|
234
|
+
deployBucket(props, bucket, distribution) {
|
|
235
|
+
// Do some synth time validation on the directory provided!
|
|
236
|
+
const staticDir = path.join(props.webappOptions.staticResourcesDirectory, 'static');
|
|
237
|
+
if (!fs.existsSync(staticDir)) {
|
|
238
|
+
throw Error(`Thers no directory for statics. Expected: ${staticDir}`);
|
|
239
|
+
}
|
|
240
|
+
const wellKnown = path.join(props.webappOptions.staticResourcesDirectory, '.well-known');
|
|
241
|
+
if (!fs.existsSync(wellKnown)) {
|
|
242
|
+
throw Error(`Thers no directory for .well-known. Expected: ${wellKnown}`);
|
|
243
|
+
}
|
|
244
|
+
//Deploy static resources to s3
|
|
245
|
+
new aws_cdk_lib_1.aws_s3_deployment.BucketDeployment(this, 'staticResources', {
|
|
246
|
+
sources: [aws_cdk_lib_1.aws_s3_deployment.Source.asset(props.webappOptions.staticResourcesDirectory)],
|
|
247
|
+
destinationBucket: bucket,
|
|
248
|
+
distribution: distribution,
|
|
249
|
+
distributionPaths: ['/static/*', '/.well-known/'],
|
|
250
|
+
});
|
|
251
|
+
}
|
|
252
|
+
domainNames(props) {
|
|
253
|
+
let cloudfrontDomainNames = props.webappOptions.alternativeDomainNames ?? [];
|
|
254
|
+
cloudfrontDomainNames.push(props.webappOptions.domainName);
|
|
255
|
+
return cloudfrontDomainNames;
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
exports.Cloudfront = Cloudfront;
|
|
259
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiQ2xvdWRmcm9udC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy93ZWJhcHAvQ2xvdWRmcm9udC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBQSx5QkFBeUI7QUFDekIsNkJBQTZCO0FBQzdCLDZDQU9xQjtBQUNyQiwrREFnQm9DO0FBQ3BDLCtFQUEwRTtBQUMxRSwyQ0FBdUM7QUFVdkMsTUFBYSxVQUFXLFNBQVEsc0JBQVM7SUFJdkMsWUFBWSxLQUFnQixFQUFFLEVBQVUsRUFBRSxLQUFzQjtRQUM5RCxLQUFLLENBQUMsS0FBSyxFQUFFLEVBQUUsQ0FBQyxDQUFDO1FBQ2pCLElBQUksQ0FBQyxVQUFVLEdBQUcsSUFBSSxDQUFDLGVBQWUsQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUM5QyxJQUFJLENBQUMsa0JBQWtCLENBQUMsS0FBSyxFQUFFLElBQUksQ0FBQyxVQUFVLENBQUMsQ0FBQztRQUNoRCxJQUFJLENBQUMsYUFBYSxDQUFDLElBQUksQ0FBQyxVQUFVLEVBQUUsS0FBSyxDQUFDLENBQUM7SUFDN0MsQ0FBQztJQUVEOzs7Ozs7O09BT0c7SUFDSyxrQkFBa0IsQ0FBQyxLQUFzQixFQUFFLHNCQUFvQztRQUNyRixNQUFNLHFCQUFxQixHQUFHLElBQUksQ0FBQyxxQkFBcUIsRUFBRSxDQUFDO1FBQzNELE1BQU0sb0JBQW9CLEdBQUcsSUFBSSxxQ0FBb0IsQ0FBQyxJQUFJLEVBQUUsMkJBQTJCLENBQUMsQ0FBQztRQUN6RixJQUFJLENBQUMsdUNBQXVDLENBQUMsb0JBQW9CLEVBQUUscUJBQXFCLENBQUMsQ0FBQztRQUMxRixNQUFNLE1BQU0sR0FBRyxJQUFJLGlDQUFRLENBQUMscUJBQXFCLEVBQUU7WUFDakQsb0JBQW9CLEVBQUUsb0JBQW9CO1NBQzNDLENBQUMsQ0FBQztRQUNILHNCQUFzQixDQUFDLFdBQVcsQ0FDaEMsV0FBVyxFQUNYLE1BQU0sRUFDTjtZQUNFLG9CQUFvQixFQUFFLHFDQUFvQixDQUFDLGlCQUFpQjtTQUM3RCxDQUNGLENBQUM7UUFDRixzQkFBc0IsQ0FBQyxXQUFXLENBQ2hDLGdCQUFnQixFQUNoQixNQUFNLEVBQ047WUFDRSxvQkFBb0IsRUFBRSxxQ0FBb0IsQ0FBQyxpQkFBaUI7U0FDN0QsQ0FDRixDQUFDO1FBQ0YsSUFBSSxDQUFDLFlBQVksQ0FBQyxLQUFLLEVBQUUscUJBQXFCLEVBQUUsc0JBQXNCLENBQUMsQ0FBQztJQUMxRSxDQUFDO0lBRUQ7Ozs7Ozs7OztPQVNHO0lBQ0gsZUFBZSxDQUFDLEtBQXNCO1FBRXBDLElBQUksV0FBVyxHQUFHLEtBQUssQ0FBQyxhQUFhLENBQUMsV0FBVyxDQUFDO1FBQ2xELElBQUksV0FBVyxDQUFDLFVBQVUsQ0FBQyxHQUFHLENBQUMsRUFBRTtZQUMvQixXQUFXLEdBQUcsV0FBVyxDQUFDLFNBQVMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLGtCQUFrQjtTQUMzRDtRQUVELE1BQU0sWUFBWSxHQUFHLElBQUksNkJBQVksQ0FBQyxJQUFJLEVBQUUsaUJBQWlCLEVBQUU7WUFDN0QsVUFBVSxFQUFFLDJCQUFVLENBQUMsZUFBZTtZQUN0QyxXQUFXLEVBQUUsSUFBSSxDQUFDLFdBQVcsQ0FBQyxLQUFLLENBQUM7WUFDcEMsV0FBVyxFQUFFLEtBQUssQ0FBQyxhQUFhLENBQUMscUJBQXFCO1lBQ3RELGVBQWUsRUFBRTtnQkFDZixNQUFNLEVBQUUsSUFBSSxtQ0FBVSxDQUFDLEtBQUssQ0FBQyxnQkFBZ0IsQ0FBQztnQkFDOUMsbUJBQW1CLEVBQUUsSUFBSSxvQ0FBbUIsQ0FBQyxJQUFJLEVBQUUsd0JBQXdCLEVBQUU7b0JBQzNFLHVCQUF1QixFQUFFLG9DQUFvQztvQkFDN0QsY0FBYyxFQUFFLDRDQUEyQixDQUFDLFNBQVMsQ0FDbkQsZ0JBQWdCLEVBQ2hCLFFBQVEsRUFDUixRQUFRLEVBQ1IsU0FBUyxFQUNULGlCQUFpQixFQUNqQixpQkFBaUIsRUFDakIsVUFBVSxDQUNYO2lCQUNGLENBQUM7Z0JBQ0Ysb0JBQW9CLEVBQUUscUNBQW9CLENBQUMsaUJBQWlCO2dCQUM1RCxjQUFjLEVBQUUsK0JBQWMsQ0FBQyxTQUFTO2dCQUN4QyxXQUFXLEVBQUUsSUFBSSw0QkFBVyxDQUFDLElBQUksRUFBRSxZQUFZLEVBQUU7b0JBQy9DLGVBQWUsRUFBRSxnQ0FBZ0M7b0JBQ2pELGNBQWMsRUFBRSxvQ0FBbUIsQ0FBQyxHQUFHLEVBQUU7b0JBQ3pDLGNBQWMsRUFBRSxvQ0FBbUIsQ0FBQyxTQUFTLENBQUMsZUFBZSxDQUFDO29CQUM5RCxtQkFBbUIsRUFBRSx5Q0FBd0IsQ0FBQyxHQUFHLEVBQUU7b0JBQ25ELFVBQVUsRUFBRSxzQkFBUSxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUM7b0JBQy9CLE1BQU0sRUFBRSxzQkFBUSxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUM7b0JBQzNCLE1BQU0sRUFBRSxzQkFBUSxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUM7aUJBQzVCLENBQUM7Z0JBQ0YscUJBQXFCLEVBQUUsSUFBSSxDQUFDLHFCQUFxQixDQUFDLEtBQUssQ0FBQzthQUN6RDtZQUNELGNBQWMsRUFBRSxJQUFJLENBQUMsY0FBYyxFQUFFO1lBQ3JDLFNBQVMsRUFBRSxJQUFJLENBQUMsU0FBUyxFQUFFO1lBQzNCLHNCQUFzQixFQUFFLHVDQUFzQixDQUFDLGFBQWE7WUFDNUQsaUJBQWlCLEVBQUUsV0FBVztTQUMvQixDQUFDLENBQUM7UUFDSCxPQUFPLFlBQVksQ0FBQztJQUN0QixDQUFDO0lBRU8sY0FBYztRQUNwQixNQUFNLFVBQVUsR0FBRyxDQUFDLEdBQUcsRUFBRSxHQUFHLEVBQUUsR0FBRyxFQUFFLEdBQUcsQ0FBQyxDQUFDO1FBQ3hDLE9BQU8sVUFBVSxDQUFDLEdBQUcsQ0FBQyxJQUFJLENBQUMsRUFBRTtZQUMzQixPQUFPO2dCQUNMLFVBQVUsRUFBRSxJQUFJO2dCQUNoQixrQkFBa0IsRUFBRSxJQUFJO2dCQUN4QixnQkFBZ0IsRUFBRSx1QkFBdUIsSUFBSSxPQUFPO2FBQ3JELENBQUM7UUFDSixDQUFDLENBQUMsQ0FBQztJQUNMLENBQUM7SUFFRDs7Ozs7O09BTUc7SUFDSCxhQUFhLENBQUMsWUFBMEIsRUFBRSxLQUFzQjtRQUU5RCxJQUFJLHlCQUFPLENBQUMsT0FBTyxDQUFDLElBQUksRUFBRSxVQUFVLEVBQUU7WUFDcEMsSUFBSSxFQUFFLEtBQUssQ0FBQyxhQUFhLENBQUMsVUFBVTtZQUNwQyxNQUFNLEVBQUUseUJBQU8sQ0FBQyxZQUFZLENBQUMsU0FBUyxDQUFDLElBQUksaUNBQWMsQ0FBQyxnQkFBZ0IsQ0FBQyxZQUFZLENBQUMsQ0FBQztTQUMxRixDQUFDLENBQUM7UUFFSCxJQUFJLHlCQUFPLENBQUMsVUFBVSxDQUFDLElBQUksRUFBRSxhQUFhLEVBQUU7WUFDMUMsSUFBSSxFQUFFLEtBQUssQ0FBQyxhQUFhLENBQUMsVUFBVTtZQUNwQyxNQUFNLEVBQUUseUJBQU8sQ0FBQyxZQUFZLENBQUMsU0FBUyxDQUFDLElBQUksaUNBQWMsQ0FBQyxnQkFBZ0IsQ0FBQyxZQUFZLENBQUMsQ0FBQztTQUMxRixDQUFDLENBQUM7SUFDTCxDQUFDO0lBRUQ7OztPQUdHO0lBQ0gsU0FBUztRQUNQLE1BQU0sV0FBVyxHQUFHLElBQUksb0JBQUUsQ0FBQyxNQUFNLENBQUMsSUFBSSxFQUFFLGdCQUFnQixFQUFFO1lBQ3hELGlCQUFpQixFQUFFLG9CQUFFLENBQUMsaUJBQWlCLENBQUMsU0FBUztZQUNqRCxrQkFBa0IsRUFBRSxJQUFJO1lBQ3hCLFVBQVUsRUFBRSxJQUFJO1lBQ2hCLFVBQVUsRUFBRSxvQkFBRSxDQUFDLGdCQUFnQixDQUFDLFVBQVU7WUFDMUMsZUFBZSxFQUFFLG9CQUFFLENBQUMsZUFBZSxDQUFDLGFBQWE7WUFDakQsY0FBYyxFQUFFO2dCQUNkO29CQUNFLEVBQUUsRUFBRSwrQkFBK0I7b0JBQ25DLE9BQU8sRUFBRSxJQUFJO29CQUNiLFVBQVUsRUFBRSxzQkFBUSxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUM7aUJBQy9CO2FBQ0Y7U0FDRixDQUFDLENBQUM7UUFDSCxPQUFPLFdBQVcsQ0FBQztJQUNyQixDQUFDO0lBR0Q7OztPQUdHO0lBQ0gscUJBQXFCLENBQUMsS0FBc0I7UUFFMUMsTUFBTSxHQUFHLEdBQUcsS0FBSyxDQUFDLGFBQWEsQ0FBQyxjQUFjLElBQUksSUFBSSxDQUFDLGNBQWMsRUFBRSxDQUFDO1FBQ3hFLE1BQU0scUJBQXFCLEdBQUcsSUFBSSxzQ0FBcUIsQ0FBQyxJQUFJLEVBQUUsU0FBUyxFQUFFO1lBQ3ZFLHVCQUF1QixFQUFFO2dCQUN2QixxQkFBcUIsRUFBRSxFQUFFLHFCQUFxQixFQUFFLEdBQUcsRUFBRSxRQUFRLEVBQUUsSUFBSSxFQUFFO2dCQUNyRSxrQkFBa0IsRUFBRSxFQUFFLFFBQVEsRUFBRSxJQUFJLEVBQUU7Z0JBQ3RDLFlBQVksRUFBRSxFQUFFLFdBQVcsRUFBRSxtQ0FBa0IsQ0FBQyxJQUFJLEVBQUUsUUFBUSxFQUFFLElBQUksRUFBRTtnQkFDdEUsY0FBYyxFQUFFLEVBQUUsY0FBYyxFQUFFLHNDQUFxQixDQUFDLFdBQVcsRUFBRSxRQUFRLEVBQUUsSUFBSSxFQUFFO2dCQUNyRix1QkFBdUIsRUFBRSxFQUFFLG1CQUFtQixFQUFFLHNCQUFRLENBQUMsSUFBSSxDQUFDLEdBQUcsQ0FBQyxFQUFFLGlCQUFpQixFQUFFLElBQUksRUFBRSxRQUFRLEVBQUUsSUFBSSxFQUFFO2FBQzlHO1lBQ0QscUJBQXFCLEVBQUU7Z0JBQ3JCLGFBQWEsRUFBRTtvQkFDYjt3QkFDRSxNQUFNLEVBQUUsZUFBZTt3QkFDdkIsS0FBSyxFQUFFLHFDQUFxQzt3QkFDNUMsUUFBUSxFQUFFLEtBQUs7cUJBQ2hCO29CQUNEO3dCQUNFLE1BQU0sRUFBRSxRQUFRO3dCQUNoQixLQUFLLEVBQUUsVUFBVTt3QkFDakIsUUFBUSxFQUFFLEtBQUs7cUJBQ2hCO29CQUNEO3dCQUNFLE1BQU0sRUFBRSxTQUFTO3dCQUNqQixLQUFLLEVBQUUsR0FBRzt3QkFDVixRQUFRLEVBQUUsS0FBSztxQkFDaEI7aUJBQ0Y7YUFDRjtTQUNGLENBQUMsQ0FBQztRQUNILE9BQU8scUJBQXFCLENBQUM7SUFDL0IsQ0FBQztJQUVEOzs7O09BSUc7SUFDSCxjQUFjO1FBQ1osTUFBTSxTQUFTLEdBQUc7Ozs7Ozs7Ozs7S0FVakIsQ0FBQztRQUNGLE9BQU8sU0FBUyxDQUFDLE9BQU8sQ0FBQyxPQUFPLEVBQUUsR0FBRyxDQUFDLENBQUMsSUFBSSxFQUFFLENBQUM7SUFDaEQsQ0FBQztJQUVEOzs7Ozs7T0FNRztJQUNILHFCQUFxQjtRQUNuQixNQUFNLE1BQU0sR0FBRyxJQUFJLG9CQUFFLENBQUMsTUFBTSxDQUFDLElBQUksRUFBRSxrQkFBa0IsRUFBRTtZQUNyRCxpQkFBaUIsRUFBRSxvQkFBRSxDQUFDLGlCQUFpQixDQUFDLFNBQVM7WUFDakQsa0JBQWtCLEVBQUUsSUFBSTtZQUN4QixVQUFVLEVBQUUsSUFBSTtZQUNoQixVQUFVLEVBQUUsb0JBQUUsQ0FBQyxnQkFBZ0IsQ0FBQyxXQUFXO1NBQzVDLENBQUMsQ0FBQztRQUVILE9BQU8sTUFBTSxDQUFDO0lBQ2hCLENBQUM7SUFFRDs7Ozs7Ozs7T0FRRztJQUNILHVDQUF1QyxDQUFDLG9CQUEwQyxFQUFFLE1BQWlCO1FBQ25HLE1BQU0sQ0FBQyxtQkFBbUIsQ0FBQyxJQUFJLHFCQUFHLENBQUMsZUFBZSxDQUFDO1lBQ2pELFNBQVMsRUFBRTtnQkFDVCxHQUFHLE1BQU0sQ0FBQyxTQUFTLEVBQUU7Z0JBQ3JCLEdBQUcsTUFBTSxDQUFDLFNBQVMsSUFBSTthQUN4QjtZQUNELE9BQU8sRUFBRTtnQkFDUCxjQUFjO2dCQUNkLGVBQWU7YUFDaEI7WUFDRCxNQUFNLEVBQUUscUJBQUcsQ0FBQyxNQUFNLENBQUMsS0FBSztZQUN4QixVQUFVLEVBQUUsQ0FBQyxvQkFBb0IsQ0FBQyxjQUFjLENBQUM7U0FDbEQsQ0FBQyxDQUNELENBQUM7SUFDSixDQUFDO0lBRUQ7Ozs7OztPQU1HO0lBQ0gsWUFBWSxDQUFDLEtBQXNCLEVBQUUsTUFBaUIsRUFBRSxZQUEwQjtRQUVoRiwyREFBMkQ7UUFDM0QsTUFBTSxTQUFTLEdBQUcsSUFBSSxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsYUFBYSxDQUFDLHdCQUF3QixFQUFFLFFBQVEsQ0FBQyxDQUFDO1FBQ3BGLElBQUksQ0FBQyxFQUFFLENBQUMsVUFBVSxDQUFDLFNBQVMsQ0FBQyxFQUFFO1lBQzdCLE1BQU0sS0FBSyxDQUFDLDZDQUE2QyxTQUFTLEVBQUUsQ0FBQyxDQUFDO1NBQ3ZFO1FBRUQsTUFBTSxTQUFTLEdBQUcsSUFBSSxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsYUFBYSxDQUFDLHdCQUF3QixFQUFFLGFBQWEsQ0FBQyxDQUFDO1FBQ3pGLElBQUksQ0FBQyxFQUFFLENBQUMsVUFBVSxDQUFDLFNBQVMsQ0FBQyxFQUFFO1lBQzdCLE1BQU0sS0FBSyxDQUFDLGlEQUFpRCxTQUFTLEVBQUUsQ0FBQyxDQUFDO1NBQzNFO1FBRUQsK0JBQStCO1FBQy9CLElBQUksK0JBQWlCLENBQUMsZ0JBQWdCLENBQUMsSUFBSSxFQUFFLGlCQUFpQixFQUFFO1lBQzlELE9BQU8sRUFBRSxDQUFDLCtCQUFpQixDQUFDLE1BQU0sQ0FBQyxLQUFLLENBQUMsS0FBSyxDQUFDLGFBQWEsQ0FBQyx3QkFBd0IsQ0FBQyxDQUFDO1lBQ3ZGLGlCQUFpQixFQUFFLE1BQU07WUFDekIsWUFBWSxFQUFFLFlBQVk7WUFDMUIsaUJBQWlCLEVBQUUsQ0FBQyxXQUFXLEVBQUUsZUFBZSxDQUFDO1NBQ2xELENBQUMsQ0FBQztJQUNMLENBQUM7SUFFTyxXQUFXLENBQUMsS0FBc0I7UUFDeEMsSUFBSSxxQkFBcUIsR0FBRyxLQUFLLENBQUMsYUFBYSxDQUFDLHNCQUFzQixJQUFJLEVBQUUsQ0FBQztRQUM3RSxxQkFBcUIsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLGFBQWEsQ0FBQyxVQUFVLENBQUMsQ0FBQztRQUMzRCxPQUFPLHFCQUFxQixDQUFDO0lBQy9CLENBQUM7Q0FFRjtBQWpTRCxnQ0FpU0MiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgKiBhcyBmcyBmcm9tICdmcyc7XG5pbXBvcnQgKiBhcyBwYXRoIGZyb20gJ3BhdGgnO1xuaW1wb3J0IHtcbiAgRHVyYXRpb24sXG4gIGF3c19yb3V0ZTUzIGFzIFJvdXRlNTMsXG4gIGF3c19yb3V0ZTUzX3RhcmdldHMgYXMgUm91dGU1M1RhcmdldHMsXG4gIGF3c19zMyBhcyBTMyxcbiAgYXdzX3MzX2RlcGxveW1lbnQsXG4gIGF3c19pYW0gYXMgSUFNLFxufSBmcm9tICdhd3MtY2RrLWxpYic7XG5pbXBvcnQge1xuICBEaXN0cmlidXRpb24sXG4gIFByaWNlQ2xhc3MsXG4gIE9yaWdpblJlcXVlc3RQb2xpY3ksXG4gIFZpZXdlclByb3RvY29sUG9saWN5LFxuICBBbGxvd2VkTWV0aG9kcyxcbiAgUmVzcG9uc2VIZWFkZXJzUG9saWN5LFxuICBIZWFkZXJzRnJhbWVPcHRpb24sXG4gIEhlYWRlcnNSZWZlcnJlclBvbGljeSxcbiAgQ2FjaGVQb2xpY3ksXG4gIE9yaWdpblJlcXVlc3RIZWFkZXJCZWhhdmlvcixcbiAgQ2FjaGVDb29raWVCZWhhdmlvcixcbiAgQ2FjaGVIZWFkZXJCZWhhdmlvcixcbiAgQ2FjaGVRdWVyeVN0cmluZ0JlaGF2aW9yLFxuICBTZWN1cml0eVBvbGljeVByb3RvY29sLFxuICBPcmlnaW5BY2Nlc3NJZGVudGl0eSxcbn0gZnJvbSAnYXdzLWNkay1saWIvYXdzLWNsb3VkZnJvbnQnO1xuaW1wb3J0IHsgSHR0cE9yaWdpbiwgUzNPcmlnaW4gfSBmcm9tICdhd3MtY2RrLWxpYi9hd3MtY2xvdWRmcm9udC1vcmlnaW5zJztcbmltcG9ydCB7IENvbnN0cnVjdCB9IGZyb20gJ2NvbnN0cnVjdHMnO1xuaW1wb3J0IHsgV2ViYXBwQ29uZmlndXJhYmxlIH0gZnJvbSAnLi9XZWJhcHBPcHRpb25zJztcblxuZXhwb3J0IGludGVyZmFjZSBDbG91ZEZyb250UHJvcHMgZXh0ZW5kcyBXZWJhcHBDb25maWd1cmFibGUge1xuICAvKipcbiAgICogVGhlIGRvbWFpbiBuYW1lIG9mIHRoZSBBUEkgZ2F0ZXdheSB0byBmb3J3YXJkIHJlcXVlc3RzIHRvLlxuICAgKi9cbiAgYXBpR2F0ZXdheURvbWFpbjogc3RyaW5nO1xufVxuXG5leHBvcnQgY2xhc3MgQ2xvdWRmcm9udCBleHRlbmRzIENvbnN0cnVjdCB7XG5cbiAgY2xvdWRmcm9udDogRGlzdHJpYnV0aW9uO1xuXG4gIGNvbnN0cnVjdG9yKHNjb3BlOiBDb25zdHJ1Y3QsIGlkOiBzdHJpbmcsIHByb3BzOiBDbG91ZEZyb250UHJvcHMpIHtcbiAgICBzdXBlcihzY29wZSwgaWQpO1xuICAgIHRoaXMuY2xvdWRmcm9udCA9IHRoaXMuc2V0dXBDbG91ZGZyb250KHByb3BzKTtcbiAgICB0aGlzLmFkZFN0YXRpY1Jlc291cmNlcyhwcm9wcywgdGhpcy5jbG91ZGZyb250KTtcbiAgICB0aGlzLmFkZERuc1JlY29yZHModGhpcy5jbG91ZGZyb250LCBwcm9wcyk7XG4gIH1cblxuICAvKipcbiAgICogQWRkIHN0YXRpYyBjb250ZW50cyB0byBjbG91ZGZyb250XG4gICAqXG4gICAqIENyZWF0ZXMgYSBidWNrZXQsIGRlcGxveXMgY29udGVudHMgZnJvbSBhIGZvbGRlciBhbmQgYWRkcyBpdCB0b1xuICAgKiB0aGUgY2xvdWRmcm9udCBkaXN0cmlidXRpb24uXG4gICAqXG4gICAqIEBwYXJhbSBjbG91ZGZyb250RGlzdHJpYnV0aW9uIHRoZSBkaXN0cmlidXRpb24gZm9yIHRoZXNlIHJlc291cmNlc1xuICAgKi9cbiAgcHJpdmF0ZSBhZGRTdGF0aWNSZXNvdXJjZXMocHJvcHM6IENsb3VkRnJvbnRQcm9wcywgY2xvdWRmcm9udERpc3RyaWJ1dGlvbjogRGlzdHJpYnV0aW9uKSB7XG4gICAgY29uc3Qgc3RhdGljUmVzb3VyY2VzQnVja2V0ID0gdGhpcy5zdGF0aWNSZXNvdXJjZXNCdWNrZXQoKTtcbiAgICBjb25zdCBvcmlnaW5BY2Nlc3NJZGVudGl0eSA9IG5ldyBPcmlnaW5BY2Nlc3NJZGVudGl0eSh0aGlzLCAncHVibGljcmVzb3VyY2VzYnVja2V0LW9pYScpO1xuICAgIHRoaXMuYWxsb3dPcmlnaW5BY2Nlc3NJZGVudGl0eUFjY2Vzc1RvQnVja2V0KG9yaWdpbkFjY2Vzc0lkZW50aXR5LCBzdGF0aWNSZXNvdXJjZXNCdWNrZXQpO1xuICAgIGNvbnN0IG9yaWdpbiA9IG5ldyBTM09yaWdpbihzdGF0aWNSZXNvdXJjZXNCdWNrZXQsIHtcbiAgICAgIG9yaWdpbkFjY2Vzc0lkZW50aXR5OiBvcmlnaW5BY2Nlc3NJZGVudGl0eSxcbiAgICB9KTtcbiAgICBjbG91ZGZyb250RGlzdHJpYnV0aW9uLmFkZEJlaGF2aW9yKFxuICAgICAgJy9zdGF0aWMvKicsXG4gICAgICBvcmlnaW4sXG4gICAgICB7XG4gICAgICAgIHZpZXdlclByb3RvY29sUG9saWN5OiBWaWV3ZXJQcm90b2NvbFBvbGljeS5SRURJUkVDVF9UT19IVFRQUyxcbiAgICAgIH0sXG4gICAgKTtcbiAgICBjbG91ZGZyb250RGlzdHJpYnV0aW9uLmFkZEJlaGF2aW9yKFxuICAgICAgJy8ud2VsbC1rbm93bi8qJyxcbiAgICAgIG9yaWdpbixcbiAgICAgIHtcbiAgICAgICAgdmlld2VyUHJvdG9jb2xQb2xpY3k6IFZpZXdlclByb3RvY29sUG9saWN5LlJFRElSRUNUX1RPX0hUVFBTLFxuICAgICAgfSxcbiAgICApO1xuICAgIHRoaXMuZGVwbG95QnVja2V0KHByb3BzLCBzdGF0aWNSZXNvdXJjZXNCdWNrZXQsIGNsb3VkZnJvbnREaXN0cmlidXRpb24pO1xuICB9XG5cbiAgLyoqXG4gICAqIENyZWF0ZSBhIGNsb3VkZnJvbnQgZGlzdHJpYnV0aW9uIGZvciB0aGUgYXBwbGljYXRpb25cbiAgICpcbiAgICogRG8gbm90IGZvcndhcmQgdGhlIEhvc3QgaGVhZGVyIHRvIEFQSSBHYXRld2F5LiBUaGlzIHJlc3VsdHMgaW5cbiAgICogYW4gSFRUUCA0MDMgYmVjYXVzZSBBUEkgR2F0ZXdheSB3b24ndCBiZSBhYmxlIHRvIGZpbmQgYW4gZW5kcG9pbnRcbiAgICogb24gdGhlIGNsb3VkZnJvbnQgZG9tYWluLlxuICAgKlxuICAgKiBAcGFyYW0ge3N0cmluZ30gYXBpR2F0ZXdheURvbWFpbiB0aGUgZG9tYWluIHRoZSBhcGkgZ2F0ZXdheSBjYW4gYmUgcmVhY2hlZCBhdFxuICAgKiBAcmV0dXJucyB7RGlzdHJpYnV0aW9ufSB0aGUgY2xvdWRmcm9udCBkaXN0cmlidXRpb25cbiAgICovXG4gIHNldHVwQ2xvdWRmcm9udChwcm9wczogQ2xvdWRGcm9udFByb3BzKTogRGlzdHJpYnV0aW9uIHtcblxuICAgIGxldCBkZWZhdWx0UGF0aCA9IHByb3BzLndlYmFwcE9wdGlvbnMuZGVmYXVsdFBhdGg7XG4gICAgaWYgKGRlZmF1bHRQYXRoLnN0YXJ0c1dpdGgoJy8nKSkge1xuICAgICAgZGVmYXVsdFBhdGggPSBkZWZhdWx0UGF0aC5zdWJzdHJpbmcoMSk7IC8vIFN0cmlwIGxlYWRpbmcgL1xuICAgIH1cblxuICAgIGNvbnN0IGRpc3RyaWJ1dGlvbiA9IG5ldyBEaXN0cmlidXRpb24odGhpcywgJ2NmLWRpc3RyaWJ1dGlvbicsIHtcbiAgICAgIHByaWNlQ2xhc3M6IFByaWNlQ2xhc3MuUFJJQ0VfQ0xBU1NfMTAwLFxuICAgICAgZG9tYWluTmFtZXM6IHRoaXMuZG9tYWluTmFtZXMocHJvcHMpLFxuICAgICAgY2VydGlmaWNhdGU6IHByb3BzLndlYmFwcE9wdGlvbnMuY2xvdWRGcm9udENlcnRpZmljYXRlLFxuICAgICAgZGVmYXVsdEJlaGF2aW9yOiB7XG4gICAgICAgIG9yaWdpbjogbmV3IEh0dHBPcmlnaW4ocHJvcHMuYXBpR2F0ZXdheURvbWFpbiksXG4gICAgICAgIG9yaWdpblJlcXVlc3RQb2xpY3k6IG5ldyBPcmlnaW5SZXF1ZXN0UG9saWN5KHRoaXMsICdjZi1vcmlnaW5yZXF1ZXN0cG9saWN5Jywge1xuICAgICAgICAgIG9yaWdpblJlcXVlc3RQb2xpY3lOYW1lOiAnY2ZPcmlnaW5SZXF1ZXN0UG9saWN5TWlqblVpdGtlcmluZycsXG4gICAgICAgICAgaGVhZGVyQmVoYXZpb3I6IE9yaWdpblJlcXVlc3RIZWFkZXJCZWhhdmlvci5hbGxvd0xpc3QoXG4gICAgICAgICAgICAnQWNjZXB0LUNoYXJzZXQnLFxuICAgICAgICAgICAgJ09yaWdpbicsXG4gICAgICAgICAgICAnQWNjZXB0JyxcbiAgICAgICAgICAgICdSZWZlcmVyJyxcbiAgICAgICAgICAgICdBY2NlcHQtTGFuZ3VhZ2UnLFxuICAgICAgICAgICAgJ0FjY2VwdC1EYXRldGltZScsXG4gICAgICAgICAgICAnQXV0aG9yaXonLFxuICAgICAgICAgICksXG4gICAgICAgIH0pLFxuICAgICAgICB2aWV3ZXJQcm90b2NvbFBvbGljeTogVmlld2VyUHJvdG9jb2xQb2xpY3kuUkVESVJFQ1RfVE9fSFRUUFMsXG4gICAgICAgIGFsbG93ZWRNZXRob2RzOiBBbGxvd2VkTWV0aG9kcy5BTExPV19BTEwsXG4gICAgICAgIGNhY2hlUG9saWN5OiBuZXcgQ2FjaGVQb2xpY3kodGhpcywgJ2NmLWNhY2hpbmcnLCB7XG4gICAgICAgICAgY2FjaGVQb2xpY3lOYW1lOiAnY2ZDYWNoaW5nU2Vzc2lvbnNNaWpuVWl0a2VyaW5nJyxcbiAgICAgICAgICBjb29raWVCZWhhdmlvcjogQ2FjaGVDb29raWVCZWhhdmlvci5hbGwoKSxcbiAgICAgICAgICBoZWFkZXJCZWhhdmlvcjogQ2FjaGVIZWFkZXJCZWhhdmlvci5hbGxvd0xpc3QoJ0F1dGhvcml6YXRpb24nKSxcbiAgICAgICAgICBxdWVyeVN0cmluZ0JlaGF2aW9yOiBDYWNoZVF1ZXJ5U3RyaW5nQmVoYXZpb3IuYWxsKCksXG4gICAgICAgICAgZGVmYXVsdFR0bDogRHVyYXRpb24uc2Vjb25kcygwKSxcbiAgICAgICAgICBtaW5UdGw6IER1cmF0aW9uLnNlY29uZHMoMCksXG4gICAgICAgICAgbWF4VHRsOiBEdXJhdGlvbi5zZWNvbmRzKDEpLFxuICAgICAgICB9KSxcbiAgICAgICAgcmVzcG9uc2VIZWFkZXJzUG9saWN5OiB0aGlzLnJlc3BvbnNlSGVhZGVyc1BvbGljeShwcm9wcyksXG4gICAgICB9LFxuICAgICAgZXJyb3JSZXNwb25zZXM6IHRoaXMuZXJyb3JSZXNwb25zZXMoKSxcbiAgICAgIGxvZ0J1Y2tldDogdGhpcy5sb2dCdWNrZXQoKSxcbiAgICAgIG1pbmltdW1Qcm90b2NvbFZlcnNpb246IFNlY3VyaXR5UG9saWN5UHJvdG9jb2wuVExTX1YxXzJfMjAyMSxcbiAgICAgIGRlZmF1bHRSb290T2JqZWN0OiBkZWZhdWx0UGF0aCxcbiAgICB9KTtcbiAgICByZXR1cm4gZGlzdHJpYnV0aW9uO1xuICB9XG5cbiAgcHJpdmF0ZSBlcnJvclJlc3BvbnNlcygpIHtcbiAgICBjb25zdCBlcnJvckNvZGVzID0gWzQwMywgNDA0LCA1MDAsIDUwM107XG4gICAgcmV0dXJuIGVycm9yQ29kZXMubWFwKGNvZGUgPT4ge1xuICAgICAgcmV0dXJuIHtcbiAgICAgICAgaHR0cFN0YXR1czogY29kZSxcbiAgICAgICAgcmVzcG9uc2VIdHRwU3RhdHVzOiBjb2RlLFxuICAgICAgICByZXNwb25zZVBhZ2VQYXRoOiBgL3N0YXRpYy9odHRwLWVycm9ycy8ke2NvZGV9Lmh0bWxgLFxuICAgICAgfTtcbiAgICB9KTtcbiAgfVxuXG4gIC8qKlxuICAgKiBBZGQgRE5TIHJlY29yZHMgZm9yIGNsb3VkZnJvbnQgdG8gdGhlIFJvdXRlNTMgWm9uZVxuICAgKlxuICAgKiBSZXF1ZXN0cyB0byB0aGUgY3VzdG9tIGRvbWFpbiB3aWxsIGNvcnJlY3RseSB1c2UgY2xvdWRmcm9udC5cbiAgICpcbiAgICogQHBhcmFtIGRpc3RyaWJ1dGlvbiB0aGUgY2xvdWRmcm9udCBkaXN0cmlidXRpb25cbiAgICovXG4gIGFkZERuc1JlY29yZHMoZGlzdHJpYnV0aW9uOiBEaXN0cmlidXRpb24sIHByb3BzOiBDbG91ZEZyb250UHJvcHMpIHtcblxuICAgIG5ldyBSb3V0ZTUzLkFSZWNvcmQodGhpcywgJ2EtcmVjb3JkJywge1xuICAgICAgem9uZTogcHJvcHMud2ViYXBwT3B0aW9ucy5ob3N0ZWRab25lLFxuICAgICAgdGFyZ2V0OiBSb3V0ZTUzLlJlY29yZFRhcmdldC5mcm9tQWxpYXMobmV3IFJvdXRlNTNUYXJnZXRzLkNsb3VkRnJvbnRUYXJnZXQoZGlzdHJpYnV0aW9uKSksXG4gICAgfSk7XG5cbiAgICBuZXcgUm91dGU1My5BYWFhUmVjb3JkKHRoaXMsICdhYWFhLXJlY29yZCcsIHtcbiAgICAgIHpvbmU6IHByb3BzLndlYmFwcE9wdGlvbnMuaG9zdGVkWm9uZSxcbiAgICAgIHRhcmdldDogUm91dGU1My5SZWNvcmRUYXJnZXQuZnJvbUFsaWFzKG5ldyBSb3V0ZTUzVGFyZ2V0cy5DbG91ZEZyb250VGFyZ2V0KGRpc3RyaWJ1dGlvbikpLFxuICAgIH0pO1xuICB9XG5cbiAgLyoqXG4gICAqIENyZWF0ZSBhIGJ1Y2tldCB0byBob2xkIGNsb3VkZnJvbnQgbG9nc1xuICAgKiBAcmV0dXJucyBzMy5CdWNrZXRcbiAgICovXG4gIGxvZ0J1Y2tldCgpIHtcbiAgICBjb25zdCBjZkxvZ0J1Y2tldCA9IG5ldyBTMy5CdWNrZXQodGhpcywgJ0Nsb3VkZnJvbnRMb2dzJywge1xuICAgICAgYmxvY2tQdWJsaWNBY2Nlc3M6IFMzLkJsb2NrUHVibGljQWNjZXNzLkJMT0NLX0FMTCxcbiAgICAgIGV2ZW50QnJpZGdlRW5hYmxlZDogdHJ1ZSxcbiAgICAgIGVuZm9yY2VTU0w6IHRydWUsXG4gICAgICBlbmNyeXB0aW9uOiBTMy5CdWNrZXRFbmNyeXB0aW9uLlMzX01BTkFHRUQsXG4gICAgICBvYmplY3RPd25lcnNoaXA6IFMzLk9iamVjdE93bmVyc2hpcC5PQkpFQ1RfV1JJVEVSLFxuICAgICAgbGlmZWN5Y2xlUnVsZXM6IFtcbiAgICAgICAge1xuICAgICAgICAgIGlkOiAnZGVsZXRlIG9iamVjdHMgYWZ0ZXIgMTgwIGRheXMnLFxuICAgICAgICAgIGVuYWJsZWQ6IHRydWUsXG4gICAgICAgICAgZXhwaXJhdGlvbjogRHVyYXRpb24uZGF5cygxODApLFxuICAgICAgICB9LFxuICAgICAgXSxcbiAgICB9KTtcbiAgICByZXR1cm4gY2ZMb2dCdWNrZXQ7XG4gIH1cblxuXG4gIC8qKlxuICAgKiBHZXQgYSBzZXQgb2YgKHNlY3VyaXR5KSByZXNwb25zZSBoZWFkZXJzIHRvIGluamVjdCBpbnRvIHRoZSByZXNwb25zZVxuICAgKiBAcmV0dXJucyB7UmVzcG9uc2VIZWFkZXJzUG9saWN5fSBjbG91ZGZyb250IHJlc3BvbnNlSGVhZGVyc1BvbGljeVxuICAgKi9cbiAgcmVzcG9uc2VIZWFkZXJzUG9saWN5KHByb3BzOiBDbG91ZEZyb250UHJvcHMpOiBSZXNwb25zZUhlYWRlcnNQb2xpY3kge1xuXG4gICAgY29uc3QgY3NwID0gcHJvcHMud2ViYXBwT3B0aW9ucy5jc3BIZWFkZXJWYWx1ZSA/PyB0aGlzLmNzcEhlYWRlclZhbHVlKCk7XG4gICAgY29uc3QgcmVzcG9uc2VIZWFkZXJzUG9saWN5ID0gbmV3IFJlc3BvbnNlSGVhZGVyc1BvbGljeSh0aGlzLCAnaGVhZGVycycsIHtcbiAgICAgIHNlY3VyaXR5SGVhZGVyc0JlaGF2aW9yOiB7XG4gICAgICAgIGNvbnRlbnRTZWN1cml0eVBvbGljeTogeyBjb250ZW50U2VjdXJpdHlQb2xpY3k6IGNzcCwgb3ZlcnJpZGU6IHRydWUgfSxcbiAgICAgICAgY29udGVudFR5cGVPcHRpb25zOiB7IG92ZXJyaWRlOiB0cnVlIH0sXG4gICAgICAgIGZyYW1lT3B0aW9uczogeyBmcmFtZU9wdGlvbjogSGVhZGVyc0ZyYW1lT3B0aW9uLkRFTlksIG92ZXJyaWRlOiB0cnVlIH0sXG4gICAgICAgIHJlZmVycmVyUG9saWN5OiB7IHJlZmVycmVyUG9saWN5OiBIZWFkZXJzUmVmZXJyZXJQb2xpY3kuTk9fUkVGRVJSRVIsIG92ZXJyaWRlOiB0cnVlIH0sXG4gICAgICAgIHN0cmljdFRyYW5zcG9ydFNlY3VyaXR5OiB7IGFjY2Vzc0NvbnRyb2xNYXhBZ2U6IER1cmF0aW9uLmRheXMoMzY2KSwgaW5jbHVkZVN1YmRvbWFpbnM6IHRydWUsIG92ZXJyaWRlOiB0cnVlIH0sXG4gICAgICB9LFxuICAgICAgY3VzdG9tSGVhZGVyc0JlaGF2aW9yOiB7XG4gICAgICAgIGN1c3RvbUhlYWRlcnM6IFtcbiAgICAgICAgICB7XG4gICAgICAgICAgICBoZWFkZXI6ICdDYWNoZS1Db250cm9sJyxcbiAgICAgICAgICAgIHZhbHVlOiAnbm8tY2FjaGUsIG5vLXN0b3JlLCBtdXN0LXJldmFsaWRhdGUnLFxuICAgICAgICAgICAgb3ZlcnJpZGU6IGZhbHNlLFxuICAgICAgICAgIH0sXG4gICAgICAgICAge1xuICAgICAgICAgICAgaGVhZGVyOiAnUHJhZ21hJyxcbiAgICAgICAgICAgIHZhbHVlOiAnbm8tY2FjaGUnLFxuICAgICAgICAgICAgb3ZlcnJpZGU6IGZhbHNlLFxuICAgICAgICAgIH0sXG4gICAgICAgICAge1xuICAgICAgICAgICAgaGVhZGVyOiAnRXhwaXJlcycsXG4gICAgICAgICAgICB2YWx1ZTogJzAnLFxuICAgICAgICAgICAgb3ZlcnJpZGU6IGZhbHNlLFxuICAgICAgICAgIH0sXG4gICAgICAgIF0sXG4gICAgICB9LFxuICAgIH0pO1xuICAgIHJldHVybiByZXNwb25zZUhlYWRlcnNQb2xpY3k7XG4gIH1cblxuICAvKipcbiAgICogR2V0IHRoZSBjbGVhbmVkLCB0cmltbWVkIGhlYWRlciB2YWx1ZXMgZm9yIHRoZSBjc3AgaGVhZGVyXG4gICAqXG4gICAqIEByZXR1cm5zIHN0cmluZyBjc3AgaGVhZGVyIHZhbHVlc1xuICAgKi9cbiAgY3NwSGVhZGVyVmFsdWUoKSB7XG4gICAgY29uc3QgY3NwVmFsdWVzID0gJ2RlZmF1bHQtc3JjIFxcJ3NlbGZcXCc7XFxcbiAgICBmcmFtZS1hbmNlc3RvcnMgXFwnc2VsZlxcJztcXFxuICAgIGZyYW1lLXNyYyBcXCdzZWxmXFwnO1xcXG4gICAgY29ubmVjdC1zcmMgXFwnc2VsZlxcJyBodHRwczovL2NvbXBvbmVudGVuLm5pam1lZ2VuLm5sO1xcXG4gICAgc3R5bGUtc3JjIFxcJ3NlbGZcXCcgaHR0cHM6Ly9jb21wb25lbnRlbi5uaWptZWdlbi5ubCBodHRwczovL2ZvbnRzLmdvb2dsZWFwaXMuY29tIGh0dHBzOi8vZm9udHMuZ3N0YXRpYy5jb20gXFxcbiAgICBcXCdzaGEyNTYtaFMxTE0vMzBQalVCSksza0JYOVZtOWVPQWhRTkNpTmhmL1NDRG5VcXUxND1cXCcgXFwnc2hhMjU2LTQ3REVRcGo4SEJTYSsvVEltVys1SkNldVFlUmttNU5NcEpXWkczaFN1RlU9XFwnIFxcJ3NoYTI1Ni1PVGV1N05FSERvNnF1dElXbzBGMlRtWXJEaHNLV0N6clVnR294eEhHSjhvPVxcJztcXFxuICAgIHNjcmlwdC1zcmMgXFwnc2VsZlxcJyBodHRwczovL2NvbXBvbmVudGVuLm5pam1lZ2VuLm5sIGh0dHBzOi8vc2l0ZWltcHJvdmVhbmFseXRpY3MuY29tO1xcXG4gICAgZm9udC1zcmMgXFwnc2VsZlxcJyBodHRwczovL2NvbXBvbmVudGVuLm5pam1lZ2VuLm5sIGh0dHBzOi8vZm9udHMuZ3N0YXRpYy5jb207XFxcbiAgICBpbWctc3JjIFxcJ3NlbGZcXCcgaHR0cHM6Ly9jb21wb25lbnRlbi5uaWptZWdlbi5ubCBkYXRhOiBodHRwczovLyouc2l0ZWltcHJvdmVhbmFseXRpY3MuaW87XFxcbiAgICBvYmplY3Qtc3JjIFxcJ25vbmVcXCc7XFxcbiAgICAnO1xuICAgIHJldHVybiBjc3BWYWx1ZXMucmVwbGFjZSgvWyBdKy9nLCAnICcpLnRyaW0oKTtcbiAgfVxuXG4gIC8qKlxuICAgKiBDcmVhdGUgYW4gczMgYnVja2V0IHRvIGhvbGQgc3RhdGljIHJlc291cmNlcy5cbiAgICogTXVzdCBiZSB1bmVuY3J5cHRlZCB0byBhbGxvdyBjbG91ZGZyb250IHRvIHNlcnZlXG4gICAqIHRoZXNlIHJlc291cmNlcy5cbiAgICpcbiAgICogQHJldHVybnMgUzMuQnVja2V0XG4gICAqL1xuICBzdGF0aWNSZXNvdXJjZXNCdWNrZXQoKSB7XG4gICAgY29uc3QgYnVja2V0ID0gbmV3IFMzLkJ1Y2tldCh0aGlzLCAncmVzb3VyY2VzLWJ1Y2tldCcsIHtcbiAgICAgIGJsb2NrUHVibGljQWNjZXNzOiBTMy5CbG9ja1B1YmxpY0FjY2Vzcy5CTE9DS19BTEwsXG4gICAgICBldmVudEJyaWRnZUVuYWJsZWQ6IHRydWUsXG4gICAgICBlbmZvcmNlU1NMOiB0cnVlLFxuICAgICAgZW5jcnlwdGlvbjogUzMuQnVja2V0RW5jcnlwdGlvbi5VTkVOQ1JZUFRFRCxcbiAgICB9KTtcblxuICAgIHJldHVybiBidWNrZXQ7XG4gIH1cblxuICAvKipcbiAgICogQWxsb3cgbGlzdEJ1Y2tldCB0byB0aGUgb3JpZ2luIGFjY2VzcyBpZGVudGl0eVxuICAgKlxuICAgKiBOZWNlc3Nhcnkgc28gY2xvdWRmcm9udCByZWNlaXZlcyA0MDQncyBhcyA0MDQgaW5zdGVhZCBvZiA0MDMuIFRoaXMgYWxzbyBhbGxvd3NcbiAgICogYSBsaXN0aW5nIG9mIHRoZSBidWNrZXQgaWYgbm8gL2luZGV4Lmh0bWwgaXMgcHJlc2VudCBpbiB0aGUgYnVja2V0LlxuICAgKlxuICAgKiBAcGFyYW0gb3JpZ2luQWNjZXNzSWRlbnRpdHlcbiAgICogQHBhcmFtIGJ1Y2tldFxuICAgKi9cbiAgYWxsb3dPcmlnaW5BY2Nlc3NJZGVudGl0eUFjY2Vzc1RvQnVja2V0KG9yaWdpbkFjY2Vzc0lkZW50aXR5OiBPcmlnaW5BY2Nlc3NJZGVudGl0eSwgYnVja2V0OiBTMy5CdWNrZXQpIHtcbiAgICBidWNrZXQuYWRkVG9SZXNvdXJjZVBvbGljeShuZXcgSUFNLlBvbGljeVN0YXRlbWVudCh7XG4gICAgICByZXNvdXJjZXM6IFtcbiAgICAgICAgYCR7YnVja2V0LmJ1Y2tldEFybn1gLFxuICAgICAgICBgJHtidWNrZXQuYnVja2V0QXJufS8qYCxcbiAgICAgIF0sXG4gICAgICBhY3Rpb25zOiBbXG4gICAgICAgICdzMzpHZXRPYmplY3QnLFxuICAgICAgICAnczM6TGlzdEJ1Y2tldCcsXG4gICAgICBdLFxuICAgICAgZWZmZWN0OiBJQU0uRWZmZWN0LkFMTE9XLFxuICAgICAgcHJpbmNpcGFsczogW29yaWdpbkFjY2Vzc0lkZW50aXR5LmdyYW50UHJpbmNpcGFsXSxcbiAgICB9KSxcbiAgICApO1xuICB9XG5cbiAgLyoqXG4gICAqIERlcGxveSBjb250ZW50cyBvZiBmb2xkZXIgdG8gdGhlIHMzIGJ1Y2tldFxuICAgKlxuICAgKiBJbnZhbGlkYXRlcyB0aGUgY29ycmVjdCBjbG91ZGZyb250IHBhdGhcbiAgICogQHBhcmFtIGJ1Y2tldCBzMy5CdWNrZXRcbiAgICogQHBhcmFtIGRpc3RyaWJ1dGlvbiBEaXN0cmlidXRpb25cbiAgICovXG4gIGRlcGxveUJ1Y2tldChwcm9wczogQ2xvdWRGcm9udFByb3BzLCBidWNrZXQ6IFMzLkJ1Y2tldCwgZGlzdHJpYnV0aW9uOiBEaXN0cmlidXRpb24pIHtcblxuICAgIC8vIERvIHNvbWUgc3ludGggdGltZSB2YWxpZGF0aW9uIG9uIHRoZSBkaXJlY3RvcnkgcHJvdmlkZWQhXG4gICAgY29uc3Qgc3RhdGljRGlyID0gcGF0aC5qb2luKHByb3BzLndlYmFwcE9wdGlvbnMuc3RhdGljUmVzb3VyY2VzRGlyZWN0b3J5LCAnc3RhdGljJyk7XG4gICAgaWYgKCFmcy5leGlzdHNTeW5jKHN0YXRpY0RpcikpIHtcbiAgICAgIHRocm93IEVycm9yKGBUaGVycyBubyBkaXJlY3RvcnkgZm9yIHN0YXRpY3MuIEV4cGVjdGVkOiAke3N0YXRpY0Rpcn1gKTtcbiAgICB9XG5cbiAgICBjb25zdCB3ZWxsS25vd24gPSBwYXRoLmpvaW4ocHJvcHMud2ViYXBwT3B0aW9ucy5zdGF0aWNSZXNvdXJjZXNEaXJlY3RvcnksICcud2VsbC1rbm93bicpO1xuICAgIGlmICghZnMuZXhpc3RzU3luYyh3ZWxsS25vd24pKSB7XG4gICAgICB0aHJvdyBFcnJvcihgVGhlcnMgbm8gZGlyZWN0b3J5IGZvciAud2VsbC1rbm93bi4gRXhwZWN0ZWQ6ICR7d2VsbEtub3dufWApO1xuICAgIH1cblxuICAgIC8vRGVwbG95IHN0YXRpYyByZXNvdXJjZXMgdG8gczNcbiAgICBuZXcgYXdzX3MzX2RlcGxveW1lbnQuQnVja2V0RGVwbG95bWVudCh0aGlzLCAnc3RhdGljUmVzb3VyY2VzJywge1xuICAgICAgc291cmNlczogW2F3c19zM19kZXBsb3ltZW50LlNvdXJjZS5hc3NldChwcm9wcy53ZWJhcHBPcHRpb25zLnN0YXRpY1Jlc291cmNlc0RpcmVjdG9yeSldLFxuICAgICAgZGVzdGluYXRpb25CdWNrZXQ6IGJ1Y2tldCxcbiAgICAgIGRpc3RyaWJ1dGlvbjogZGlzdHJpYnV0aW9uLFxuICAgICAgZGlzdHJpYnV0aW9uUGF0aHM6IFsnL3N0YXRpYy8qJywgJy8ud2VsbC1rbm93bi8nXSxcbiAgICB9KTtcbiAgfVxuXG4gIHByaXZhdGUgZG9tYWluTmFtZXMocHJvcHM6IENsb3VkRnJvbnRQcm9wcykge1xuICAgIGxldCBjbG91ZGZyb250RG9tYWluTmFtZXMgPSBwcm9wcy53ZWJhcHBPcHRpb25zLmFsdGVybmF0aXZlRG9tYWluTmFtZXMgPz8gW107XG4gICAgY2xvdWRmcm9udERvbWFpbk5hbWVzLnB1c2gocHJvcHMud2ViYXBwT3B0aW9ucy5kb21haW5OYW1lKTtcbiAgICByZXR1cm4gY2xvdWRmcm9udERvbWFpbk5hbWVzO1xuICB9XG5cbn1cbiJdfQ==
|