@rio-cloud/cdk-v2-constructs 6.12.6 → 6.13.0
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 +254 -108
- package/docs/API.md +189 -0
- package/docs/changelog.md +7 -0
- package/esbuild.mjs +4 -0
- package/lib/datadogv2/datadog-service-catalog-entry.d.ts +37 -0
- package/lib/datadogv2/datadog-service-catalog-entry.js +61 -0
- package/lib/datadogv2/index.d.ts +1 -0
- package/lib/datadogv2/index.js +2 -1
- package/lib/datadogv2/secret-locator-custom-resource/on-create.cjs +26162 -19065
- package/lib/datadogv2/secret-locator-custom-resource/on-create.d.ts +0 -1
- package/lib/datadogv2/secret-locator-custom-resource/on-create.js +7 -8
- package/lib/datadogv2/service-catalog-custom-resource/on-create.cjs +20375 -0
- package/lib/datadogv2/service-catalog-custom-resource/on-create.d.ts +12 -0
- package/lib/datadogv2/service-catalog-custom-resource/on-create.js +62 -0
- package/lib/fargate/codedeploy-custom-resources/create-deployment-is-complete.cjs +9287 -9112
- package/lib/fargate/codedeploy-custom-resources/create-deployment-on-create.cjs +9287 -9112
- package/lib/fargate/codedeploy-custom-resources/run-monitoring-test-suite-runner.cjs +9305 -9130
- package/lib/fargate/rio-fargate-service.js +10 -1
- package/node_modules/@aws-lambda-powertools/commons/LICENSE +14 -0
- package/node_modules/@aws-lambda-powertools/commons/README.md +147 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/LRUCache.d.ts +109 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/LRUCache.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/LRUCache.js +223 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/Utility.d.ts +98 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/Utility.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/Utility.js +113 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/awsSdkUtils.d.ts +33 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/awsSdkUtils.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/awsSdkUtils.js +98 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/config/EnvironmentVariablesService.d.ts +78 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/config/EnvironmentVariablesService.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/config/EnvironmentVariablesService.js +106 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/fromBase64.d.ts +23 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/fromBase64.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/fromBase64.js +35 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/index.d.ts +8 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/index.js +29 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/middleware/cleanupMiddlewares.d.ts +49 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/middleware/cleanupMiddlewares.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/middleware/cleanupMiddlewares.js +74 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/middleware/constants.d.ts +32 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/middleware/constants.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/middleware/constants.js +38 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/package.json +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/typeUtils.d.ts +165 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/typeUtils.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/typeUtils.js +293 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/ConfigServiceInterface.d.ts +44 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/ConfigServiceInterface.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/ConfigServiceInterface.js +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/LRUCache.d.ts +8 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/LRUCache.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/LRUCache.js +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/LambdaInterface.d.ts +38 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/LambdaInterface.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/LambdaInterface.js +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/awsSdk.d.ts +29 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/awsSdk.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/awsSdk.js +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/index.d.ts +6 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/index.js +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/json.d.ts +20 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/json.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/json.js +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/middy.d.ts +60 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/middy.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/middy.js +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/version.d.ts +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/version.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/version.js +5 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/LRUCache.d.ts +109 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/LRUCache.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/LRUCache.js +220 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/Utility.d.ts +98 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/Utility.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/Utility.js +109 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/awsSdkUtils.d.ts +33 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/awsSdkUtils.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/awsSdkUtils.js +93 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/config/EnvironmentVariablesService.d.ts +78 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/config/EnvironmentVariablesService.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/config/EnvironmentVariablesService.js +103 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/fromBase64.d.ts +23 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/fromBase64.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/fromBase64.js +32 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/index.d.ts +8 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/index.js +7 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/middleware/cleanupMiddlewares.d.ts +49 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/middleware/cleanupMiddlewares.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/middleware/cleanupMiddlewares.js +71 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/middleware/constants.d.ts +32 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/middleware/constants.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/middleware/constants.js +31 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/package.json +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/typeUtils.d.ts +165 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/typeUtils.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/typeUtils.js +282 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/ConfigServiceInterface.d.ts +44 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/ConfigServiceInterface.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/ConfigServiceInterface.js +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/LRUCache.d.ts +8 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/LRUCache.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/LRUCache.js +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/LambdaInterface.d.ts +38 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/LambdaInterface.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/LambdaInterface.js +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/awsSdk.d.ts +29 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/awsSdk.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/awsSdk.js +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/index.d.ts +6 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/index.js +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/json.d.ts +20 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/json.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/json.js +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/middy.d.ts +60 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/middy.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/middy.js +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/version.d.ts +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/version.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/version.js +2 -0
- package/node_modules/@aws-lambda-powertools/commons/package.json +79 -0
- package/node_modules/@aws-lambda-powertools/parameters/LICENSE +14 -0
- package/node_modules/@aws-lambda-powertools/parameters/README.md +250 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/appconfig/AppConfigProvider.d.ts +248 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/appconfig/AppConfigProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/appconfig/AppConfigProvider.js +307 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/appconfig/getAppConfig.d.ts +140 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/appconfig/getAppConfig.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/appconfig/getAppConfig.js +156 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/appconfig/index.d.ts +3 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/appconfig/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/appconfig/index.js +7 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/BaseProvider.d.ts +83 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/BaseProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/BaseProvider.js +154 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/DefaultProviders.d.ts +10 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/DefaultProviders.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/DefaultProviders.js +19 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/ExpirableValue.d.ts +25 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/ExpirableValue.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/ExpirableValue.js +32 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/GetMultipleOptions.d.ts +14 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/GetMultipleOptions.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/GetMultipleOptions.js +19 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/GetOptions.d.ts +16 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/GetOptions.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/GetOptions.js +23 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/index.d.ts +5 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/index.js +11 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/transformValue.d.ts +28 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/transformValue.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/transformValue.js +65 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/config/EnvironmentVariablesService.d.ts +20 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/config/EnvironmentVariablesService.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/config/EnvironmentVariablesService.js +36 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/constants.d.ts +24 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/constants.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/constants.js +31 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/dynamodb/DynamoDBProvider.d.ts +309 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/dynamodb/DynamoDBProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/dynamodb/DynamoDBProvider.js +364 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/dynamodb/index.d.ts +2 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/dynamodb/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/dynamodb/index.js +5 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/errors.d.ts +24 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/errors.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/errors.js +38 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/index.d.ts +4 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/index.js +10 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/package.json +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/secrets/SecretsProvider.d.ts +192 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/secrets/SecretsProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/secrets/SecretsProvider.js +212 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/secrets/getSecret.d.ts +105 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/secrets/getSecret.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/secrets/getSecret.js +113 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/secrets/index.d.ts +3 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/secrets/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/secrets/index.js +7 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/SSMProvider.d.ts +475 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/SSMProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/SSMProvider.js +740 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/getParameter.d.ts +139 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/getParameter.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/getParameter.js +147 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/getParameters.d.ts +140 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/getParameters.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/getParameters.js +148 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/getParametersByName.d.ts +161 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/getParametersByName.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/getParametersByName.js +169 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/index.d.ts +6 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/index.js +13 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/setParameter.d.ts +77 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/setParameter.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/setParameter.js +85 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/AppConfigProvider.d.ts +90 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/AppConfigProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/AppConfigProvider.js +2 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/BaseProvider.d.ts +73 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/BaseProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/BaseProvider.js +2 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/ConfigServiceInterface.d.ts +24 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/ConfigServiceInterface.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/ConfigServiceInterface.js +2 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/DynamoDBProvider.d.ts +120 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/DynamoDBProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/DynamoDBProvider.js +2 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/SSMProvider.d.ts +204 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/SSMProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/SSMProvider.js +2 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/SecretsProvider.d.ts +73 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/SecretsProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/SecretsProvider.js +2 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/appconfig/AppConfigProvider.d.ts +248 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/appconfig/AppConfigProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/appconfig/AppConfigProvider.js +304 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/appconfig/getAppConfig.d.ts +140 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/appconfig/getAppConfig.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/appconfig/getAppConfig.js +153 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/appconfig/index.d.ts +3 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/appconfig/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/appconfig/index.js +2 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/BaseProvider.d.ts +83 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/BaseProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/BaseProvider.js +151 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/DefaultProviders.d.ts +10 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/DefaultProviders.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/DefaultProviders.js +15 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/ExpirableValue.d.ts +25 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/ExpirableValue.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/ExpirableValue.js +29 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/GetMultipleOptions.d.ts +14 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/GetMultipleOptions.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/GetMultipleOptions.js +16 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/GetOptions.d.ts +16 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/GetOptions.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/GetOptions.js +20 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/index.d.ts +5 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/index.js +4 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/transformValue.d.ts +28 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/transformValue.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/transformValue.js +62 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/config/EnvironmentVariablesService.d.ts +20 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/config/EnvironmentVariablesService.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/config/EnvironmentVariablesService.js +33 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/constants.d.ts +24 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/constants.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/constants.js +23 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/dynamodb/DynamoDBProvider.d.ts +309 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/dynamodb/DynamoDBProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/dynamodb/DynamoDBProvider.js +361 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/dynamodb/index.d.ts +2 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/dynamodb/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/dynamodb/index.js +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/errors.d.ts +24 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/errors.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/errors.js +33 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/index.d.ts +4 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/index.js +3 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/package.json +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/secrets/SecretsProvider.d.ts +192 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/secrets/SecretsProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/secrets/SecretsProvider.js +209 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/secrets/getSecret.d.ts +105 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/secrets/getSecret.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/secrets/getSecret.js +110 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/secrets/index.d.ts +3 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/secrets/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/secrets/index.js +2 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/SSMProvider.d.ts +475 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/SSMProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/SSMProvider.js +737 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/getParameter.d.ts +139 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/getParameter.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/getParameter.js +144 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/getParameters.d.ts +140 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/getParameters.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/getParameters.js +145 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/getParametersByName.d.ts +161 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/getParametersByName.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/getParametersByName.js +166 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/index.d.ts +6 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/index.js +5 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/setParameter.d.ts +77 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/setParameter.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/setParameter.js +82 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/AppConfigProvider.d.ts +90 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/AppConfigProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/AppConfigProvider.js +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/BaseProvider.d.ts +73 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/BaseProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/BaseProvider.js +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/ConfigServiceInterface.d.ts +24 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/ConfigServiceInterface.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/ConfigServiceInterface.js +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/DynamoDBProvider.d.ts +120 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/DynamoDBProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/DynamoDBProvider.js +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/SSMProvider.d.ts +204 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/SSMProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/SSMProvider.js +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/SecretsProvider.d.ts +73 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/SecretsProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/SecretsProvider.js +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/package.json +168 -0
- package/node_modules/@aws-sdk/client-secrets-manager/README.md +1 -1
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/README.md +252 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-cjs/auth/httpAuthSchemeProvider.js +68 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-cjs/index.js +611 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.browser.js +38 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.js +48 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.shared.js +40 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/SSO.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/SSOClient.js +46 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/auth/httpAuthSchemeProvider.js +62 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/commands/GetRoleCredentialsCommand.js +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountRolesCommand.js +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountsCommand.js +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/commands/LogoutCommand.js +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/commands/index.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/endpoint/EndpointParameters.js +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/endpoint/endpointResolver.js +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/index.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/models/SSOServiceException.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/models/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/models/models_0.js +75 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/pagination/Interfaces.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/pagination/ListAccountRolesPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/pagination/ListAccountsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/pagination/index.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/protocols/Aws_restJson1.js +210 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.browser.js +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.js +43 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.shared.js +36 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/runtimeExtensions.js +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/SSO.d.ts +53 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/SSOClient.d.ts +182 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/commands/GetRoleCredentialsCommand.d.ts +94 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountRolesCommand.d.ts +95 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountsCommand.d.ts +97 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/commands/LogoutCommand.d.ts +94 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/commands/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/endpoint/EndpointParameters.d.ts +40 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/index.d.ts +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/models/SSOServiceException.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/models/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/models/models_0.d.ts +266 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/pagination/Interfaces.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/pagination/ListAccountRolesPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/pagination/ListAccountsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/pagination/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/protocols/Aws_restJson1.d.ts +38 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.browser.d.ts +55 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.d.ts +55 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.native.d.ts +54 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.shared.d.ts +32 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSO.d.ts +73 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSOClient.d.ts +137 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +43 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/GetRoleCredentialsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountRolesCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountsCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/LogoutCommand.d.ts +41 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/index.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/SSOServiceException.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/models_0.d.ts +93 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/Interfaces.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/ListAccountRolesPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/ListAccountsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +53 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.browser.d.ts +115 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.d.ts +112 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.native.d.ts +109 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.shared.d.ts +49 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/package.json +98 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/README.md +274 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/auth/httpAuthSchemeProvider.js +64 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/index.js +1052 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.browser.js +39 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.js +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.shared.js +40 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-es/SSOOIDC.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-es/SSOOIDCClient.js +46 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-es/auth/httpAuthSchemeProvider.js +58 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/CreateTokenCommand.js +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/CreateTokenWithIAMCommand.js +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/RegisterClientCommand.js +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/StartDeviceAuthorizationCommand.js +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/index.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-es/endpoint/EndpointParameters.js +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-es/endpoint/endpointResolver.js +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-es/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-es/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-es/index.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-es/models/SSOOIDCServiceException.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-es/models/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-es/models/models_0.js +233 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-es/protocols/Aws_restJson1.js +427 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeConfig.browser.js +34 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeConfig.js +45 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeConfig.shared.js +36 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeExtensions.js +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/SSOOIDC.d.ts +75 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/SSOOIDCClient.d.ts +210 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/CreateTokenCommand.d.ts +175 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/CreateTokenWithIAMCommand.d.ts +257 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/RegisterClientCommand.d.ts +143 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/StartDeviceAuthorizationCommand.d.ts +123 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/endpoint/EndpointParameters.d.ts +40 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/index.d.ts +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/models/SSOOIDCServiceException.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/models/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/models/models_0.d.ts +795 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/protocols/Aws_restJson1.d.ts +38 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeConfig.browser.d.ts +56 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeConfig.d.ts +56 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeConfig.native.d.ts +55 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeConfig.shared.d.ts +32 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/SSOOIDC.d.ts +73 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/SSOOIDCClient.d.ts +142 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/CreateTokenCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/CreateTokenWithIAMCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/RegisterClientCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/StartDeviceAuthorizationCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/models/SSOOIDCServiceException.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/models/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/models/models_0.d.ts +216 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +53 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeConfig.browser.d.ts +118 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeConfig.d.ts +119 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeConfig.native.d.ts +112 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeConfig.shared.d.ts +49 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso-oidc/package.json +102 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/README.md +273 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-cjs/STSClient.js +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-cjs/auth/httpAuthSchemeProvider.js +67 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/EndpointParameters.js +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-cjs/index.js +1458 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.browser.js +39 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.js +64 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.shared.js +40 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeExtensions.js +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-es/STS.js +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-es/STSClient.js +46 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-es/auth/httpAuthSchemeProvider.js +60 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleCommand.js +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleWithSAMLCommand.js +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleWithWebIdentityCommand.js +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-es/commands/DecodeAuthorizationMessageCommand.js +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-es/commands/GetAccessKeyInfoCommand.js +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-es/commands/GetCallerIdentityCommand.js +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-es/commands/GetFederationTokenCommand.js +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-es/commands/GetSessionTokenCommand.js +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-es/commands/index.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-es/defaultRoleAssumers.js +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-es/defaultStsRoleAssumers.js +93 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-es/endpoint/EndpointParameters.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-es/endpoint/endpointResolver.js +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-es/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-es/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-es/index.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-es/models/STSServiceException.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-es/models/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-es/models/models_0.js +130 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-es/protocols/Aws_query.js +885 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.browser.js +34 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.js +59 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.shared.js +36 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-es/runtimeExtensions.js +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/STS.d.ts +71 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/STSClient.d.ts +180 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/auth/httpAuthSchemeProvider.d.ts +71 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/commands/AssumeRoleCommand.d.ts +269 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/commands/AssumeRoleWithSAMLCommand.d.ts +294 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/commands/AssumeRoleWithWebIdentityCommand.d.ts +303 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/commands/DecodeAuthorizationMessageCommand.d.ts +127 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/commands/GetAccessKeyInfoCommand.d.ts +87 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/commands/GetCallerIdentityCommand.d.ts +128 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/commands/GetFederationTokenCommand.d.ts +242 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/commands/GetSessionTokenCommand.d.ts +166 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/commands/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/defaultRoleAssumers.d.ts +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/defaultStsRoleAssumers.d.ts +43 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/endpoint/EndpointParameters.d.ts +46 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/index.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/models/STSServiceException.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/models/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/models/models_0.d.ts +1213 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/protocols/Aws_query.d.ts +74 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.browser.d.ts +57 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.d.ts +55 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.native.d.ts +56 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.shared.d.ts +32 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/STS.d.ts +143 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/STSClient.d.ts +163 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +54 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleWithSAMLCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleWithWebIdentityCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/DecodeAuthorizationMessageCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetAccessKeyInfoCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetCallerIdentityCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetFederationTokenCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetSessionTokenCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/defaultRoleAssumers.d.ts +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/defaultStsRoleAssumers.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +57 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/index.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/STSServiceException.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/models_0.d.ts +206 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/protocols/Aws_query.d.ts +101 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.browser.d.ts +124 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.d.ts +114 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.native.d.ts +118 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.shared.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sts/package.json +102 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/README.md +39 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/account-id-endpoint.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/account-id-endpoint.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/client.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/client.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-cjs/index.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-cjs/submodules/account-id-endpoint/index.js +97 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +78 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-cjs/submodules/httpAuthSchemes/index.js +303 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +228 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/index.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/AccountIdEndpointModeConfigResolver.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/AccountIdEndpointModeConstants.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/index.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/client/emitWarningIfUnsupportedVersion.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/client/index.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/client/setCredentialFeature.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/client/setFeature.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.js +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.js +72 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/index.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.js +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.js +87 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getDateHeader.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getSkewCorrectedDate.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getUpdatedSystemClockOffset.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/index.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/isClockSkewed.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/coercing-serializers.js +53 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/common.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/index.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/awsExpectUnion.js +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/parseJsonBody.js +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/parseXmlBody.js +57 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/index.d.ts +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/AccountIdEndpointModeConfigResolver.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/AccountIdEndpointModeConstants.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/client/emitWarningIfUnsupportedVersion.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/client/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/client/setCredentialFeature.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/client/setFeature.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.d.ts +42 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.d.ts +38 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.d.ts +95 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/getDateHeader.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/getSkewCorrectedDate.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/getUpdatedSystemClockOffset.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/isClockSkewed.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/coercing-serializers.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/common.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/awsExpectUnion.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/parseJsonBody.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/parseXmlBody.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/AccountIdEndpointModeConfigResolver.d.ts +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/AccountIdEndpointModeConstants.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/emitWarningIfUnsupportedVersion.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/setCredentialFeature.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/setFeature.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.d.ts +39 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.d.ts +55 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/getDateHeader.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/getSkewCorrectedDate.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/getUpdatedSystemClockOffset.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/isClockSkewed.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/coercing-serializers.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/common.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/awsExpectUnion.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/parseJsonBody.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/parseXmlBody.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/httpAuthSchemes.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/httpAuthSchemes.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/package.json +119 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/protocols.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/protocols.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-env/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-env/README.md +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js +77 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-env/dist-es/fromEnv.js +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-env/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-env/dist-types/fromEnv.d.ts +36 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-env/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/fromEnv.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-env/package.json +62 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/README.md +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/checkUrl.js +46 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.browser.js +31 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js +68 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttpTypes.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/requestHelpers.js +54 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/retry-wrapper.js +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.browser.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/checkUrl.js +42 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.browser.js +27 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.js +63 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttpTypes.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/requestHelpers.js +49 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/retry-wrapper.js +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-es/index.browser.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/checkUrl.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttp.browser.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttp.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttpTypes.d.ts +69 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/requestHelpers.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/retry-wrapper.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/index.browser.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/checkUrl.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/fromHttp.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/fromHttp.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/fromHttpTypes.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/requestHelpers.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/retry-wrapper.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/index.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/package.json +69 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/README.md +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +263 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-es/fromIni.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveAssumeRoleCredentials.js +77 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveCredentialSource.js +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProcessCredentials.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProfileData.js +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveSsoCredentials.js +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveStaticCredentials.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveWebIdentityCredentials.js +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/fromIni.d.ts +48 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveAssumeRoleCredentials.d.ts +47 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveCredentialSource.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProcessCredentials.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProfileData.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveSsoCredentials.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveStaticCredentials.d.ts +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveWebIdentityCredentials.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/fromIni.d.ts +26 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveAssumeRoleCredentials.d.ts +26 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveCredentialSource.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProcessCredentials.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProfileData.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveSsoCredentials.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveStaticCredentials.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveWebIdentityCredentials.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/package.json +72 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/README.md +104 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +154 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/dist-es/defaultProvider.js +62 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/dist-es/remoteProvider.js +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/dist-types/defaultProvider.d.ts +58 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/dist-types/remoteProvider.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/defaultProvider.d.ts +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/remoteProvider.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/package.json +70 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/README.md +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js +110 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-es/ProcessCredentials.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-es/fromProcess.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-es/getValidatedProcessCredentials.js +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-es/resolveProcessCredentials.js +35 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-types/ProcessCredentials.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-types/fromProcess.d.ts +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-types/getValidatedProcessCredentials.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-types/resolveProcessCredentials.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/ProcessCredentials.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/fromProcess.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/getValidatedProcessCredentials.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/resolveProcessCredentials.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/package.json +63 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/README.md +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +241 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-es/fromSSO.js +69 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-es/index.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-es/isSsoProfile.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-es/loadSso.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-es/resolveSSOCredentials.js +83 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-es/validateSsoProfile.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-types/fromSSO.d.ts +69 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-types/index.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-types/isSsoProfile.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-types/loadSso.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-types/resolveSSOCredentials.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/fromSSO.d.ts +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/isSsoProfile.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/loadSso.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/resolveSSOCredentials.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/types.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/validateSsoProfile.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-types/types.d.ts +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-types/validateSsoProfile.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/package.json +65 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/README.md +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js +32 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js +49 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/index.js +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromTokenFile.js +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromWebToken.js +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromTokenFile.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromWebToken.d.ts +145 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromTokenFile.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromWebToken.d.ts +40 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/package.json +73 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-host-header/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-host-header/README.md +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js +71 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-host-header/dist-es/index.js +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-host-header/dist-types/index.d.ts +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-host-header/dist-types/ts3.4/index.d.ts +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-host-header/package.json +57 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-logger/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-logger/README.md +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js +80 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-logger/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-logger/dist-es/loggerMiddleware.js +42 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-logger/dist-types/loggerMiddleware.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/loggerMiddleware.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-logger/package.json +58 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/README.md +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/index.js +68 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/index.js +34 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/index.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/index.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/package.json +57 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/README.md +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js +231 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-es/check-features.js +49 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-es/configurations.js +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-es/constants.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-es/encode-features.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js +82 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-types/check-features.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-types/configurations.d.ts +44 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-types/constants.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-types/encode-features.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/check-features.d.ts +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/configurations.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/constants.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/encode-features.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/user-agent-middleware.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-types/user-agent-middleware.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/package.json +61 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/README.md +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-cjs/index.js +116 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-es/extensions/index.js +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/config.js +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/getRealRegion.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/index.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/isFipsRegion.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/resolveRegionConfig.js +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-types/extensions/index.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/config.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/getRealRegion.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/isFipsRegion.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/resolveRegionConfig.d.ts +37 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/extensions/index.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/config.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/getRealRegion.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/isFipsRegion.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/resolveRegionConfig.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/package.json +59 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/README.md +53 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +209 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-es/constants.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-es/fromSso.js +79 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-es/fromStatic.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-es/getNewSsoOidcToken.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-es/getSsoOidcClient.js +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-es/index.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-es/nodeProvider.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-es/validateTokenExpiry.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-es/validateTokenKey.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-es/writeSSOTokenToFile.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/constants.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/fromSso.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/fromStatic.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/getNewSsoOidcToken.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/getSsoOidcClient.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/nodeProvider.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/constants.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromSso.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromStatic.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getNewSsoOidcToken.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getSsoOidcClient.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/nodeProvider.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenExpiry.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenKey.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/writeSSOTokenToFile.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/validateTokenExpiry.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/validateTokenKey.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/writeSSOTokenToFile.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/package.json +69 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/README.md +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-cjs/index.js +295 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/abort.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/auth.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/blob/blob-types.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/checksum.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/client.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/command.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/connection.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/credentials.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/crypto.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/dns.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/encode.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/endpoint.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/eventStream.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/extensions/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/feature-ids.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/http.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/identity/Identity.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/identity/index.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/index.js +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/logger.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/middleware.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/pagination.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/profile.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/request.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/response.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/retry.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/serde.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/shapes.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/signature.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/stream.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/token.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/transfer.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/uri.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/util.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/waiter.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/abort.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/auth.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/client.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/command.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/connection.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +49 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/dns.d.ts +85 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/encode.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts +59 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/http.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/index.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/logger.d.ts +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/profile.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/request.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/response.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/retry.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/serde.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/signature.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/stream.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/token.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/feature-ids.d.ts +54 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +47 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/uri.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/util.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/package.json +56 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/README.md +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js +417 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partitions.json +223 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/aws.js +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/index.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/index.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/isVirtualHostableS3Bucket.js +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/parseArn.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partition.js +41 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partitions.json +223 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/lib/isIpAddress.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/resolveEndpoint.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointError.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointRuleObject.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/types/ErrorRuleObject.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/types/RuleSetObject.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/types/TreeRuleObject.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/types/index.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/types/shared.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/aws.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/isVirtualHostableS3Bucket.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/parseArn.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/partition.d.ts +38 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/lib/isIpAddress.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/resolveEndpoint.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/aws.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/isVirtualHostableS3Bucket.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/parseArn.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/partition.d.ts +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveEndpoint.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointError.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointRuleObject.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/ErrorRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/RuleSetObject.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/TreeRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/shared.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointError.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/types/RuleSetObject.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/types/TreeRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/types/shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/package.json +58 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/README.md +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/configurations.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.js +27 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.native.js +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-es/configurations.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.js +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.native.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-types/configurations.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.native.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/configurations.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.native.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/package.json +54 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/README.md +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js +102 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-es/crt-availability.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-es/defaultUserAgent.js +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-es/is-crt-available.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-es/nodeAppIdConfigOptions.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-types/crt-availability.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-types/defaultUserAgent.d.ts +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-types/is-crt-available.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-types/nodeAppIdConfigOptions.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/crt-availability.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/defaultUserAgent.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/is-crt-available.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/nodeAppIdConfigOptions.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/package.json +65 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/README.md +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-cjs/fetch-http-handler.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +230 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-cjs/request-timeout.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-cjs/stream-collector.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-es/fetch-http-handler.js +138 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-es/request-timeout.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-es/stream-collector.js +27 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-types/request-timeout.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/fetch-http-handler.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/request-timeout.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/stream-collector.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/package.json +62 -0
- package/node_modules/@aws-sdk/client-secrets-manager/package.json +35 -35
- package/node_modules/@smithy/abort-controller/package.json +2 -2
- package/node_modules/@smithy/config-resolver/package.json +4 -4
- package/node_modules/@smithy/core/dist-cjs/index.js +79 -158
- package/node_modules/@smithy/core/dist-cjs/setFeature.js +1 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/cbor/index.js +2 -2
- package/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +163 -0
- package/node_modules/@smithy/core/dist-es/index.js +4 -3
- package/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.js +1 -2
- package/node_modules/@smithy/core/dist-es/middleware-http-signing/getHttpSigningMiddleware.js +1 -2
- package/node_modules/@smithy/core/dist-es/protocols/requestBuilder.js +1 -67
- package/node_modules/@smithy/core/dist-es/setFeature.js +11 -0
- package/node_modules/@smithy/core/dist-es/submodules/cbor/parseCborBody.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/protocols/collect-stream-body.js +11 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/extended-encode-uri-component.js +5 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/index.js +4 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/requestBuilder.js +67 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/resolve-path.js +19 -0
- package/node_modules/@smithy/core/dist-types/index.d.ts +4 -3
- package/node_modules/@smithy/core/dist-types/protocols/requestBuilder.d.ts +2 -48
- package/node_modules/@smithy/core/dist-types/setFeature.d.ts +12 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/collect-stream-body.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/extended-encode-uri-component.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/index.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/requestBuilder.d.ts +51 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/resolve-path.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/index.d.ts +4 -3
- package/node_modules/@smithy/core/dist-types/ts3.4/protocols/requestBuilder.d.ts +2 -48
- package/node_modules/@smithy/core/dist-types/ts3.4/setFeature.d.ts +12 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/collect-stream-body.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/extended-encode-uri-component.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/index.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/requestBuilder.d.ts +51 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/resolve-path.d.ts +4 -0
- package/node_modules/@smithy/core/package.json +15 -8
- package/node_modules/@smithy/core/protocols.d.ts +7 -0
- package/node_modules/@smithy/core/protocols.js +6 -0
- package/node_modules/@smithy/credential-provider-imds/package.json +5 -5
- package/node_modules/@smithy/hash-node/package.json +2 -2
- package/node_modules/@smithy/invalid-dependency/package.json +2 -2
- package/node_modules/@smithy/middleware-content-length/package.json +3 -3
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/index.js +4 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/endpointMiddleware.js +4 -0
- package/node_modules/@smithy/middleware-endpoint/package.json +8 -7
- package/node_modules/@smithy/middleware-retry/package.json +8 -8
- package/node_modules/@smithy/middleware-serde/package.json +2 -2
- package/node_modules/@smithy/middleware-stack/package.json +2 -2
- package/node_modules/@smithy/node-config-provider/package.json +4 -4
- package/node_modules/@smithy/node-http-handler/package.json +5 -5
- package/node_modules/@smithy/property-provider/package.json +2 -2
- package/node_modules/@smithy/querystring-builder/package.json +2 -2
- package/node_modules/@smithy/querystring-parser/package.json +2 -2
- package/node_modules/@smithy/shared-ini-file-loader/package.json +2 -2
- package/node_modules/@smithy/smithy-client/dist-cjs/index.js +6 -35
- package/node_modules/@smithy/smithy-client/dist-es/collect-stream-body.js +1 -11
- package/node_modules/@smithy/smithy-client/dist-es/extended-encode-uri-component.js +1 -5
- package/node_modules/@smithy/smithy-client/dist-es/resolve-path.js +1 -19
- package/node_modules/@smithy/smithy-client/dist-types/collect-stream-body.d.ts +2 -7
- package/node_modules/@smithy/smithy-client/dist-types/extended-encode-uri-component.d.ts +2 -4
- package/node_modules/@smithy/smithy-client/dist-types/resolve-path.d.ts +2 -1
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/collect-stream-body.d.ts +2 -7
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extended-encode-uri-component.d.ts +2 -4
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/resolve-path.d.ts +2 -1
- package/node_modules/@smithy/smithy-client/package.json +7 -6
- package/node_modules/@smithy/url-parser/package.json +3 -3
- package/node_modules/@smithy/util-defaults-mode-browser/package.json +4 -4
- package/node_modules/@smithy/util-defaults-mode-node/package.json +7 -7
- package/node_modules/@smithy/util-endpoints/package.json +3 -3
- package/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.browser.js +7 -0
- package/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.js +49 -0
- package/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.browser.js +40 -0
- package/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.js +13 -0
- package/node_modules/@smithy/util-stream/dist-cjs/index.js +5 -1
- package/node_modules/@smithy/util-stream/dist-es/checksum/ChecksumStream.browser.js +3 -0
- package/node_modules/@smithy/util-stream/dist-es/checksum/ChecksumStream.js +44 -0
- package/node_modules/@smithy/util-stream/dist-es/checksum/createChecksumStream.browser.js +35 -0
- package/node_modules/@smithy/util-stream/dist-es/checksum/createChecksumStream.js +9 -0
- package/node_modules/@smithy/util-stream/dist-es/index.js +2 -0
- package/node_modules/@smithy/util-stream/dist-types/checksum/ChecksumStream.browser.d.ts +37 -0
- package/node_modules/@smithy/util-stream/dist-types/checksum/ChecksumStream.d.ts +61 -0
- package/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.browser.d.ts +15 -0
- package/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.d.ts +12 -0
- package/node_modules/@smithy/util-stream/dist-types/index.d.ts +2 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/ChecksumStream.browser.d.ts +37 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/ChecksumStream.d.ts +60 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/createChecksumStream.browser.d.ts +15 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/createChecksumStream.d.ts +12 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/LICENSE +201 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/README.md +11 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-cjs/fetch-http-handler.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +230 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-cjs/request-timeout.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-cjs/stream-collector.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-es/fetch-http-handler.js +138 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-es/index.js +2 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-es/request-timeout.js +11 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-es/stream-collector.js +27 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts +33 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-types/index.d.ts +2 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-types/request-timeout.d.ts +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts +2 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/fetch-http-handler.d.ts +33 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/request-timeout.d.ts +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/stream-collector.d.ts +2 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/package.json +62 -0
- package/node_modules/@smithy/util-stream/package.json +10 -4
- package/package.json +6 -4
- package/version.json +1 -1
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
import type { LRUCacheOptions } from './types/LRUCache.js';
|
|
2
|
+
/**
|
|
3
|
+
* A simple LRU cache implementation that uses a doubly linked list to track the order of items in
|
|
4
|
+
* an hash map.
|
|
5
|
+
*
|
|
6
|
+
* Illustration of the design:
|
|
7
|
+
*```text
|
|
8
|
+
* oldest newest
|
|
9
|
+
* entry entry entry entry
|
|
10
|
+
* ______ ______ ______ ______
|
|
11
|
+
* | head |.newer => | |.newer => | |.newer => | tail |
|
|
12
|
+
* | A | | B | | C | | D |
|
|
13
|
+
* |______| <= older.|______| <= older.|______| <= older.|______|
|
|
14
|
+
*
|
|
15
|
+
* removed <-- <-- <-- <-- <-- <-- <-- <-- <-- <-- added
|
|
16
|
+
* ```
|
|
17
|
+
*
|
|
18
|
+
* Items are added to the cache using the `add()` method. When an item is added, it's marked
|
|
19
|
+
* as the most recently used item. If the cache is full, the oldest item is removed from the
|
|
20
|
+
* cache.
|
|
21
|
+
*
|
|
22
|
+
* Each item also tracks the item that was added before it, and the item that was added after
|
|
23
|
+
* it. This allows us to quickly remove the oldest item from the cache without having to
|
|
24
|
+
* iterate through the entire cache.
|
|
25
|
+
*
|
|
26
|
+
* **Note**: This implementation is loosely based on the implementation found in the lru_map package
|
|
27
|
+
* which is licensed under the MIT license and [recommends users to copy the code into their
|
|
28
|
+
* own projects](https://github.com/rsms/js-lru/tree/master#usage).
|
|
29
|
+
*
|
|
30
|
+
* @typeParam K - The type of the key
|
|
31
|
+
* @typeParam V - The type of the value
|
|
32
|
+
*/
|
|
33
|
+
declare class LRUCache<K, V> {
|
|
34
|
+
private leastRecentlyUsed?;
|
|
35
|
+
private readonly map;
|
|
36
|
+
private readonly maxSize;
|
|
37
|
+
private mostRecentlyUsed?;
|
|
38
|
+
/**
|
|
39
|
+
* A simple LRU cache implementation that uses a doubly linked list to track the order of items in
|
|
40
|
+
* an hash map.
|
|
41
|
+
*
|
|
42
|
+
* When instatiating the cache, you can optionally specify the type of the key and value, as well
|
|
43
|
+
* as the maximum size of the cache. If no maximum size is specified, the cache will default to
|
|
44
|
+
* a size of 100.
|
|
45
|
+
*
|
|
46
|
+
* @example
|
|
47
|
+
* ```typescript
|
|
48
|
+
* const cache = new LRUCache<string, number>({ maxSize: 100 });
|
|
49
|
+
* // or
|
|
50
|
+
* // const cache = new LRUCache();
|
|
51
|
+
*
|
|
52
|
+
* cache.add('a', 1);
|
|
53
|
+
* cache.add('b', 2);
|
|
54
|
+
*
|
|
55
|
+
* cache.get('a');
|
|
56
|
+
*
|
|
57
|
+
* console.log(cache.size()); // 2
|
|
58
|
+
* ```
|
|
59
|
+
*
|
|
60
|
+
* @param config - The configuration options for the cache
|
|
61
|
+
*/
|
|
62
|
+
constructor(config?: LRUCacheOptions);
|
|
63
|
+
/**
|
|
64
|
+
* Adds a new item to the cache.
|
|
65
|
+
*
|
|
66
|
+
* If the key already exists, it updates the value and marks the item as the most recently used.
|
|
67
|
+
* If inserting the new item would exceed the max size, the oldest item is removed from the cache.
|
|
68
|
+
*
|
|
69
|
+
* @param key - The key to add to the cache
|
|
70
|
+
* @param value - The value to add to the cache
|
|
71
|
+
*/
|
|
72
|
+
add(key: K, value: V): void;
|
|
73
|
+
/**
|
|
74
|
+
* Returns a value from the cache, or undefined if it's not in the cache.
|
|
75
|
+
*
|
|
76
|
+
* When a value is returned, it's marked as the most recently used item in the cache.
|
|
77
|
+
*
|
|
78
|
+
* @param key - The key to retrieve from the cache
|
|
79
|
+
*/
|
|
80
|
+
get(key: K): V | undefined;
|
|
81
|
+
/**
|
|
82
|
+
* Returns `true` if the key exists in the cache, `false` otherwise.
|
|
83
|
+
*
|
|
84
|
+
* @param key - The key to check for in the cache
|
|
85
|
+
*/
|
|
86
|
+
has(key: K): boolean;
|
|
87
|
+
/**
|
|
88
|
+
* Removes an item from the cache, while doing so it also reconciles the linked list.
|
|
89
|
+
*
|
|
90
|
+
* @param key - The key to remove from the cache
|
|
91
|
+
*/
|
|
92
|
+
remove(key: K): void;
|
|
93
|
+
/**
|
|
94
|
+
* Returns the current size of the cache.
|
|
95
|
+
*/
|
|
96
|
+
size(): number;
|
|
97
|
+
/**
|
|
98
|
+
* Removes the oldest item from the cache and unlinks it from the linked list.
|
|
99
|
+
*/
|
|
100
|
+
private shift;
|
|
101
|
+
/**
|
|
102
|
+
* Marks an item as the most recently used item in the cache.
|
|
103
|
+
*
|
|
104
|
+
* @param item - The item to mark as the most recently used
|
|
105
|
+
*/
|
|
106
|
+
private trackItemUse;
|
|
107
|
+
}
|
|
108
|
+
export { LRUCache };
|
|
109
|
+
//# sourceMappingURL=LRUCache.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LRUCache.d.ts","sourceRoot":"","sources":["../../src/LRUCache.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAoB3D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BG;AACH,cAAM,QAAQ,CAAC,CAAC,EAAE,CAAC;IACjB,OAAO,CAAC,iBAAiB,CAAC,CAAa;IACvC,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAqB;IACzC,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAS;IACjC,OAAO,CAAC,gBAAgB,CAAC,CAAa;IAEtC;;;;;;;;;;;;;;;;;;;;;;;OAuBG;gBACgB,MAAM,CAAC,EAAE,eAAe;IAM3C;;;;;;;;OAQG;IACI,GAAG,CAAC,GAAG,EAAE,CAAC,EAAE,KAAK,EAAE,CAAC,GAAG,IAAI;IAiClC;;;;;;OAMG;IACI,GAAG,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,GAAG,SAAS;IAQjC;;;;OAIG;IACI,GAAG,CAAC,GAAG,EAAE,CAAC,GAAG,OAAO;IAI3B;;;;OAIG;IACI,MAAM,CAAC,GAAG,EAAE,CAAC,GAAG,IAAI;IAwB3B;;OAEG;IACI,IAAI,IAAI,MAAM;IAIrB;;OAEG;IACH,OAAO,CAAC,KAAK;IAgBb;;;;OAIG;IACH,OAAO,CAAC,YAAY;CAqBrB;AAED,OAAO,EAAE,QAAQ,EAAE,CAAC"}
|
|
@@ -0,0 +1,220 @@
|
|
|
1
|
+
const DEFAULT_MAX_SIZE = 100;
|
|
2
|
+
const NEWER = Symbol('newer');
|
|
3
|
+
const OLDER = Symbol('older');
|
|
4
|
+
class Item {
|
|
5
|
+
key;
|
|
6
|
+
value;
|
|
7
|
+
[NEWER];
|
|
8
|
+
[OLDER];
|
|
9
|
+
constructor(key, value) {
|
|
10
|
+
this.key = key;
|
|
11
|
+
this.value = value;
|
|
12
|
+
this[NEWER] = undefined;
|
|
13
|
+
this[OLDER] = undefined;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* A simple LRU cache implementation that uses a doubly linked list to track the order of items in
|
|
18
|
+
* an hash map.
|
|
19
|
+
*
|
|
20
|
+
* Illustration of the design:
|
|
21
|
+
*```text
|
|
22
|
+
* oldest newest
|
|
23
|
+
* entry entry entry entry
|
|
24
|
+
* ______ ______ ______ ______
|
|
25
|
+
* | head |.newer => | |.newer => | |.newer => | tail |
|
|
26
|
+
* | A | | B | | C | | D |
|
|
27
|
+
* |______| <= older.|______| <= older.|______| <= older.|______|
|
|
28
|
+
*
|
|
29
|
+
* removed <-- <-- <-- <-- <-- <-- <-- <-- <-- <-- added
|
|
30
|
+
* ```
|
|
31
|
+
*
|
|
32
|
+
* Items are added to the cache using the `add()` method. When an item is added, it's marked
|
|
33
|
+
* as the most recently used item. If the cache is full, the oldest item is removed from the
|
|
34
|
+
* cache.
|
|
35
|
+
*
|
|
36
|
+
* Each item also tracks the item that was added before it, and the item that was added after
|
|
37
|
+
* it. This allows us to quickly remove the oldest item from the cache without having to
|
|
38
|
+
* iterate through the entire cache.
|
|
39
|
+
*
|
|
40
|
+
* **Note**: This implementation is loosely based on the implementation found in the lru_map package
|
|
41
|
+
* which is licensed under the MIT license and [recommends users to copy the code into their
|
|
42
|
+
* own projects](https://github.com/rsms/js-lru/tree/master#usage).
|
|
43
|
+
*
|
|
44
|
+
* @typeParam K - The type of the key
|
|
45
|
+
* @typeParam V - The type of the value
|
|
46
|
+
*/
|
|
47
|
+
class LRUCache {
|
|
48
|
+
leastRecentlyUsed;
|
|
49
|
+
map;
|
|
50
|
+
maxSize;
|
|
51
|
+
mostRecentlyUsed;
|
|
52
|
+
/**
|
|
53
|
+
* A simple LRU cache implementation that uses a doubly linked list to track the order of items in
|
|
54
|
+
* an hash map.
|
|
55
|
+
*
|
|
56
|
+
* When instatiating the cache, you can optionally specify the type of the key and value, as well
|
|
57
|
+
* as the maximum size of the cache. If no maximum size is specified, the cache will default to
|
|
58
|
+
* a size of 100.
|
|
59
|
+
*
|
|
60
|
+
* @example
|
|
61
|
+
* ```typescript
|
|
62
|
+
* const cache = new LRUCache<string, number>({ maxSize: 100 });
|
|
63
|
+
* // or
|
|
64
|
+
* // const cache = new LRUCache();
|
|
65
|
+
*
|
|
66
|
+
* cache.add('a', 1);
|
|
67
|
+
* cache.add('b', 2);
|
|
68
|
+
*
|
|
69
|
+
* cache.get('a');
|
|
70
|
+
*
|
|
71
|
+
* console.log(cache.size()); // 2
|
|
72
|
+
* ```
|
|
73
|
+
*
|
|
74
|
+
* @param config - The configuration options for the cache
|
|
75
|
+
*/
|
|
76
|
+
constructor(config) {
|
|
77
|
+
this.maxSize =
|
|
78
|
+
config?.maxSize !== undefined ? config.maxSize : DEFAULT_MAX_SIZE;
|
|
79
|
+
this.map = new Map();
|
|
80
|
+
}
|
|
81
|
+
/**
|
|
82
|
+
* Adds a new item to the cache.
|
|
83
|
+
*
|
|
84
|
+
* If the key already exists, it updates the value and marks the item as the most recently used.
|
|
85
|
+
* If inserting the new item would exceed the max size, the oldest item is removed from the cache.
|
|
86
|
+
*
|
|
87
|
+
* @param key - The key to add to the cache
|
|
88
|
+
* @param value - The value to add to the cache
|
|
89
|
+
*/
|
|
90
|
+
add(key, value) {
|
|
91
|
+
// If the key already exists, we just update the value and mark it as the most recently used
|
|
92
|
+
if (this.map.has(key)) {
|
|
93
|
+
// biome-ignore lint/style/noNonNullAssertion: At this point, we know that the key exists in the map, so we can safely use the non-null
|
|
94
|
+
const item = this.map.get(key);
|
|
95
|
+
item.value = value;
|
|
96
|
+
this.trackItemUse(item);
|
|
97
|
+
return;
|
|
98
|
+
}
|
|
99
|
+
// If the key doesn't exist, we add it to the map
|
|
100
|
+
const item = new Item(key, value);
|
|
101
|
+
this.map.set(key, item);
|
|
102
|
+
// If there's an existing newest item, link it to the new item
|
|
103
|
+
if (this.mostRecentlyUsed) {
|
|
104
|
+
this.mostRecentlyUsed[NEWER] = item;
|
|
105
|
+
item[OLDER] = this.mostRecentlyUsed;
|
|
106
|
+
// If there's no existing newest item, this is the first item (oldest and newest)
|
|
107
|
+
}
|
|
108
|
+
else {
|
|
109
|
+
this.leastRecentlyUsed = item;
|
|
110
|
+
}
|
|
111
|
+
// The new item is now the newest item
|
|
112
|
+
this.mostRecentlyUsed = item;
|
|
113
|
+
// If the map is full, we remove the oldest entry
|
|
114
|
+
if (this.map.size > this.maxSize) {
|
|
115
|
+
this.shift();
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
/**
|
|
119
|
+
* Returns a value from the cache, or undefined if it's not in the cache.
|
|
120
|
+
*
|
|
121
|
+
* When a value is returned, it's marked as the most recently used item in the cache.
|
|
122
|
+
*
|
|
123
|
+
* @param key - The key to retrieve from the cache
|
|
124
|
+
*/
|
|
125
|
+
get(key) {
|
|
126
|
+
const item = this.map.get(key);
|
|
127
|
+
if (!item)
|
|
128
|
+
return;
|
|
129
|
+
this.trackItemUse(item);
|
|
130
|
+
return item.value;
|
|
131
|
+
}
|
|
132
|
+
/**
|
|
133
|
+
* Returns `true` if the key exists in the cache, `false` otherwise.
|
|
134
|
+
*
|
|
135
|
+
* @param key - The key to check for in the cache
|
|
136
|
+
*/
|
|
137
|
+
has(key) {
|
|
138
|
+
return this.map.has(key);
|
|
139
|
+
}
|
|
140
|
+
/**
|
|
141
|
+
* Removes an item from the cache, while doing so it also reconciles the linked list.
|
|
142
|
+
*
|
|
143
|
+
* @param key - The key to remove from the cache
|
|
144
|
+
*/
|
|
145
|
+
remove(key) {
|
|
146
|
+
const item = this.map.get(key);
|
|
147
|
+
if (!item)
|
|
148
|
+
return;
|
|
149
|
+
this.map.delete(key);
|
|
150
|
+
if (item[NEWER] && item[OLDER]) {
|
|
151
|
+
// relink the older entry with the newer entry
|
|
152
|
+
item[OLDER][NEWER] = item[NEWER];
|
|
153
|
+
item[NEWER][OLDER] = item[OLDER];
|
|
154
|
+
}
|
|
155
|
+
else if (item[NEWER]) {
|
|
156
|
+
// remove the link to us
|
|
157
|
+
item[NEWER][OLDER] = undefined;
|
|
158
|
+
// link the newer entry to head
|
|
159
|
+
this.leastRecentlyUsed = item[NEWER];
|
|
160
|
+
}
|
|
161
|
+
else if (item[OLDER]) {
|
|
162
|
+
// remove the link to us
|
|
163
|
+
item[OLDER][NEWER] = undefined;
|
|
164
|
+
// link the newer entry to head
|
|
165
|
+
this.mostRecentlyUsed = item[OLDER];
|
|
166
|
+
}
|
|
167
|
+
else {
|
|
168
|
+
this.leastRecentlyUsed = this.mostRecentlyUsed = undefined;
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
/**
|
|
172
|
+
* Returns the current size of the cache.
|
|
173
|
+
*/
|
|
174
|
+
size() {
|
|
175
|
+
return this.map.size;
|
|
176
|
+
}
|
|
177
|
+
/**
|
|
178
|
+
* Removes the oldest item from the cache and unlinks it from the linked list.
|
|
179
|
+
*/
|
|
180
|
+
shift() {
|
|
181
|
+
// biome-ignore lint/style/noNonNullAssertion: If this function is called, we know that the least recently used item exists
|
|
182
|
+
const item = this.leastRecentlyUsed;
|
|
183
|
+
// If there's a newer item, make it the oldest
|
|
184
|
+
if (item[NEWER]) {
|
|
185
|
+
this.leastRecentlyUsed = item[NEWER];
|
|
186
|
+
this.leastRecentlyUsed[OLDER] = undefined;
|
|
187
|
+
}
|
|
188
|
+
// Remove the item from the map
|
|
189
|
+
this.map.delete(item.key);
|
|
190
|
+
item[NEWER] = undefined;
|
|
191
|
+
item[OLDER] = undefined;
|
|
192
|
+
}
|
|
193
|
+
/**
|
|
194
|
+
* Marks an item as the most recently used item in the cache.
|
|
195
|
+
*
|
|
196
|
+
* @param item - The item to mark as the most recently used
|
|
197
|
+
*/
|
|
198
|
+
trackItemUse(item) {
|
|
199
|
+
// If the item is already the newest, we don't need to do anything
|
|
200
|
+
if (this.mostRecentlyUsed === item)
|
|
201
|
+
return;
|
|
202
|
+
// If the item is not the newest, we need to mark it as the newest
|
|
203
|
+
if (item[NEWER]) {
|
|
204
|
+
if (item === this.leastRecentlyUsed) {
|
|
205
|
+
this.leastRecentlyUsed = item[NEWER];
|
|
206
|
+
}
|
|
207
|
+
item[NEWER][OLDER] = item[OLDER];
|
|
208
|
+
}
|
|
209
|
+
if (item[OLDER]) {
|
|
210
|
+
item[OLDER][NEWER] = item[NEWER];
|
|
211
|
+
}
|
|
212
|
+
item[NEWER] = undefined;
|
|
213
|
+
item[OLDER] = this.mostRecentlyUsed;
|
|
214
|
+
if (this.mostRecentlyUsed) {
|
|
215
|
+
this.mostRecentlyUsed[NEWER] = item;
|
|
216
|
+
}
|
|
217
|
+
this.mostRecentlyUsed = item;
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
export { LRUCache };
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `Utility` is a base class that other Powertools for AWS Lambda (TypeScript) utilites can extend to inherit shared logic.
|
|
3
|
+
*
|
|
4
|
+
* Its main purpose is to encapsulate the cold start heuristic logic. Cold start is a term commonly used to describe the `Init` phase of a Lambda function.
|
|
5
|
+
* In this phase, Lambda creates or unfreezes an execution environment with the configured resources, downloads the code for the function and all layers,
|
|
6
|
+
* initializes any extensions, initializes the runtime, and then runs the function’s initialization code (the code outside the main handler).
|
|
7
|
+
*
|
|
8
|
+
* The Init phase happens either during the first invocation, or in advance of function invocations if you have enabled provisioned concurrency.
|
|
9
|
+
*
|
|
10
|
+
* To learn more about the Lambda execution environment lifecycle, see the [Execution environment section](https://docs.aws.amazon.com/lambda/latest/dg/runtimes-context.html) of the AWS Lambda documentation.
|
|
11
|
+
*
|
|
12
|
+
* As a Powertools for AWS Lambda (TypeScript) user you probably won't be using this class directly, in fact if you use other Powertools for AWS utilities the cold start heuristic found here is already used to:
|
|
13
|
+
* * Add a `coldStart` key to the structured logs when injecting context information in `Logger`
|
|
14
|
+
* * Emit a metric during a cold start function invocation in `Metrics`
|
|
15
|
+
* * Annotate the invocation segment with a `coldStart` key in `Tracer`
|
|
16
|
+
*
|
|
17
|
+
* If you want to use this logic in your own utilities, `Utility` provides two methods:
|
|
18
|
+
*
|
|
19
|
+
* `Utility.getColdStart()`
|
|
20
|
+
*
|
|
21
|
+
* Since the `Utility` class is instantiated outside of the Lambda handler it will persist across invocations of the same execution environment. This means that if you call `getColdStart()` multiple times, it will return `true` during the first invocation, and `false` afterwards.
|
|
22
|
+
*
|
|
23
|
+
* @example
|
|
24
|
+
* ```typescript
|
|
25
|
+
* import { Utility } from '@aws-lambda-powertools/commons';
|
|
26
|
+
*
|
|
27
|
+
* const utility = new Utility();
|
|
28
|
+
*
|
|
29
|
+
* export const handler = async (_event: any, _context: any) => {
|
|
30
|
+
* utility.getColdStart();
|
|
31
|
+
* };
|
|
32
|
+
* ```
|
|
33
|
+
*
|
|
34
|
+
* `Utility.isColdStart()`
|
|
35
|
+
*
|
|
36
|
+
* This method is an alias of `getColdStart()` and is exposed for convenience and better readability in certain usages.
|
|
37
|
+
*
|
|
38
|
+
* @example
|
|
39
|
+
* ```typescript
|
|
40
|
+
* import { Utility } from '@aws-lambda-powertools/commons';
|
|
41
|
+
*
|
|
42
|
+
* const utility = new Utility();
|
|
43
|
+
*
|
|
44
|
+
* export const handler = async (_event: any, _context: any) => {
|
|
45
|
+
* if (utility.isColdStart()) {
|
|
46
|
+
* // do something, this block is only executed on the first invocation of the function
|
|
47
|
+
* } else {
|
|
48
|
+
* // do something else, this block gets executed on all subsequent invocations
|
|
49
|
+
* }
|
|
50
|
+
* };
|
|
51
|
+
* ```
|
|
52
|
+
*/
|
|
53
|
+
export declare class Utility {
|
|
54
|
+
private coldStart;
|
|
55
|
+
private readonly defaultServiceName;
|
|
56
|
+
/**
|
|
57
|
+
* Get the cold start status of the current execution environment.
|
|
58
|
+
*
|
|
59
|
+
* @example
|
|
60
|
+
* ```typescript
|
|
61
|
+
* import { Utility } from '@aws-lambda-powertools/commons';
|
|
62
|
+
*
|
|
63
|
+
* const utility = new Utility();
|
|
64
|
+
* utility.isColdStart(); // true
|
|
65
|
+
* utility.isColdStart(); // false
|
|
66
|
+
* ```
|
|
67
|
+
*
|
|
68
|
+
* The method also flips the cold start status to `false` after the first invocation.
|
|
69
|
+
*/
|
|
70
|
+
getColdStart(): boolean;
|
|
71
|
+
/**
|
|
72
|
+
* Get the cold start status of the current execution environment.
|
|
73
|
+
*
|
|
74
|
+
* @example
|
|
75
|
+
* ```typescript
|
|
76
|
+
* import { Utility } from '@aws-lambda-powertools/commons';
|
|
77
|
+
*
|
|
78
|
+
* const utility = new Utility();
|
|
79
|
+
* utility.isColdStart(); // true
|
|
80
|
+
* utility.isColdStart(); // false
|
|
81
|
+
* ```
|
|
82
|
+
*
|
|
83
|
+
* @see {@link getColdStart}
|
|
84
|
+
*/
|
|
85
|
+
isColdStart(): boolean;
|
|
86
|
+
/**
|
|
87
|
+
* Get the default service name.
|
|
88
|
+
*/
|
|
89
|
+
protected getDefaultServiceName(): string;
|
|
90
|
+
/**
|
|
91
|
+
* Validate that the service name provided is valid.
|
|
92
|
+
* Used internally during initialization.
|
|
93
|
+
*
|
|
94
|
+
* @param serviceName Service name to validate
|
|
95
|
+
*/
|
|
96
|
+
protected isValidServiceName(serviceName?: string): boolean;
|
|
97
|
+
}
|
|
98
|
+
//# sourceMappingURL=Utility.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Utility.d.ts","sourceRoot":"","sources":["../../src/Utility.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmDG;AACH,qBAAa,OAAO;IAClB,OAAO,CAAC,SAAS,CAAQ;IACzB,OAAO,CAAC,QAAQ,CAAC,kBAAkB,CAA+B;IAElE;;;;;;;;;;;;;OAaG;IACI,YAAY,IAAI,OAAO;IAU9B;;;;;;;;;;;;;OAaG;IACI,WAAW,IAAI,OAAO;IAI7B;;OAEG;IACH,SAAS,CAAC,qBAAqB,IAAI,MAAM;IAIzC;;;;;OAKG;IACH,SAAS,CAAC,kBAAkB,CAAC,WAAW,CAAC,EAAE,MAAM,GAAG,OAAO;CAG5D"}
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `Utility` is a base class that other Powertools for AWS Lambda (TypeScript) utilites can extend to inherit shared logic.
|
|
3
|
+
*
|
|
4
|
+
* Its main purpose is to encapsulate the cold start heuristic logic. Cold start is a term commonly used to describe the `Init` phase of a Lambda function.
|
|
5
|
+
* In this phase, Lambda creates or unfreezes an execution environment with the configured resources, downloads the code for the function and all layers,
|
|
6
|
+
* initializes any extensions, initializes the runtime, and then runs the function’s initialization code (the code outside the main handler).
|
|
7
|
+
*
|
|
8
|
+
* The Init phase happens either during the first invocation, or in advance of function invocations if you have enabled provisioned concurrency.
|
|
9
|
+
*
|
|
10
|
+
* To learn more about the Lambda execution environment lifecycle, see the [Execution environment section](https://docs.aws.amazon.com/lambda/latest/dg/runtimes-context.html) of the AWS Lambda documentation.
|
|
11
|
+
*
|
|
12
|
+
* As a Powertools for AWS Lambda (TypeScript) user you probably won't be using this class directly, in fact if you use other Powertools for AWS utilities the cold start heuristic found here is already used to:
|
|
13
|
+
* * Add a `coldStart` key to the structured logs when injecting context information in `Logger`
|
|
14
|
+
* * Emit a metric during a cold start function invocation in `Metrics`
|
|
15
|
+
* * Annotate the invocation segment with a `coldStart` key in `Tracer`
|
|
16
|
+
*
|
|
17
|
+
* If you want to use this logic in your own utilities, `Utility` provides two methods:
|
|
18
|
+
*
|
|
19
|
+
* `Utility.getColdStart()`
|
|
20
|
+
*
|
|
21
|
+
* Since the `Utility` class is instantiated outside of the Lambda handler it will persist across invocations of the same execution environment. This means that if you call `getColdStart()` multiple times, it will return `true` during the first invocation, and `false` afterwards.
|
|
22
|
+
*
|
|
23
|
+
* @example
|
|
24
|
+
* ```typescript
|
|
25
|
+
* import { Utility } from '@aws-lambda-powertools/commons';
|
|
26
|
+
*
|
|
27
|
+
* const utility = new Utility();
|
|
28
|
+
*
|
|
29
|
+
* export const handler = async (_event: any, _context: any) => {
|
|
30
|
+
* utility.getColdStart();
|
|
31
|
+
* };
|
|
32
|
+
* ```
|
|
33
|
+
*
|
|
34
|
+
* `Utility.isColdStart()`
|
|
35
|
+
*
|
|
36
|
+
* This method is an alias of `getColdStart()` and is exposed for convenience and better readability in certain usages.
|
|
37
|
+
*
|
|
38
|
+
* @example
|
|
39
|
+
* ```typescript
|
|
40
|
+
* import { Utility } from '@aws-lambda-powertools/commons';
|
|
41
|
+
*
|
|
42
|
+
* const utility = new Utility();
|
|
43
|
+
*
|
|
44
|
+
* export const handler = async (_event: any, _context: any) => {
|
|
45
|
+
* if (utility.isColdStart()) {
|
|
46
|
+
* // do something, this block is only executed on the first invocation of the function
|
|
47
|
+
* } else {
|
|
48
|
+
* // do something else, this block gets executed on all subsequent invocations
|
|
49
|
+
* }
|
|
50
|
+
* };
|
|
51
|
+
* ```
|
|
52
|
+
*/
|
|
53
|
+
export class Utility {
|
|
54
|
+
coldStart = true;
|
|
55
|
+
defaultServiceName = 'service_undefined';
|
|
56
|
+
/**
|
|
57
|
+
* Get the cold start status of the current execution environment.
|
|
58
|
+
*
|
|
59
|
+
* @example
|
|
60
|
+
* ```typescript
|
|
61
|
+
* import { Utility } from '@aws-lambda-powertools/commons';
|
|
62
|
+
*
|
|
63
|
+
* const utility = new Utility();
|
|
64
|
+
* utility.isColdStart(); // true
|
|
65
|
+
* utility.isColdStart(); // false
|
|
66
|
+
* ```
|
|
67
|
+
*
|
|
68
|
+
* The method also flips the cold start status to `false` after the first invocation.
|
|
69
|
+
*/
|
|
70
|
+
getColdStart() {
|
|
71
|
+
if (this.coldStart) {
|
|
72
|
+
this.coldStart = false;
|
|
73
|
+
return true;
|
|
74
|
+
}
|
|
75
|
+
return false;
|
|
76
|
+
}
|
|
77
|
+
/**
|
|
78
|
+
* Get the cold start status of the current execution environment.
|
|
79
|
+
*
|
|
80
|
+
* @example
|
|
81
|
+
* ```typescript
|
|
82
|
+
* import { Utility } from '@aws-lambda-powertools/commons';
|
|
83
|
+
*
|
|
84
|
+
* const utility = new Utility();
|
|
85
|
+
* utility.isColdStart(); // true
|
|
86
|
+
* utility.isColdStart(); // false
|
|
87
|
+
* ```
|
|
88
|
+
*
|
|
89
|
+
* @see {@link getColdStart}
|
|
90
|
+
*/
|
|
91
|
+
isColdStart() {
|
|
92
|
+
return this.getColdStart();
|
|
93
|
+
}
|
|
94
|
+
/**
|
|
95
|
+
* Get the default service name.
|
|
96
|
+
*/
|
|
97
|
+
getDefaultServiceName() {
|
|
98
|
+
return this.defaultServiceName;
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* Validate that the service name provided is valid.
|
|
102
|
+
* Used internally during initialization.
|
|
103
|
+
*
|
|
104
|
+
* @param serviceName Service name to validate
|
|
105
|
+
*/
|
|
106
|
+
isValidServiceName(serviceName) {
|
|
107
|
+
return typeof serviceName === 'string' && serviceName.trim().length > 0;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import type { MiddlewareArgsLike, SdkClient } from './types/awsSdk.js';
|
|
2
|
+
/**
|
|
3
|
+
* Type guard to check if the client provided is a valid AWS SDK v3 client.
|
|
4
|
+
*
|
|
5
|
+
* @internal
|
|
6
|
+
*/
|
|
7
|
+
declare const isSdkClient: (client: unknown) => client is SdkClient;
|
|
8
|
+
/**
|
|
9
|
+
* Helper function to create a custom user agent middleware for the AWS SDK v3 clients.
|
|
10
|
+
*
|
|
11
|
+
* The middleware will append the provided feature name and the current version of
|
|
12
|
+
* the Powertools for AWS Lambda library to the user agent string.
|
|
13
|
+
*
|
|
14
|
+
* @example "PT/Tracer/2.1.0 PTEnv/nodejs20x"
|
|
15
|
+
*
|
|
16
|
+
* @param feature The feature name to be added to the user agent
|
|
17
|
+
*
|
|
18
|
+
* @internal
|
|
19
|
+
*/
|
|
20
|
+
declare const customUserAgentMiddleware: (feature: string) => <T extends MiddlewareArgsLike>(next: (arg0: T) => Promise<T>) => (args: T) => Promise<T>;
|
|
21
|
+
/**
|
|
22
|
+
* Add the Powertools for AWS Lambda user agent middleware to the
|
|
23
|
+
* AWS SDK v3 client provided.
|
|
24
|
+
*
|
|
25
|
+
* We use this middleware to unbotrusively track the usage of the library
|
|
26
|
+
* and secure continued investment in the project.
|
|
27
|
+
*
|
|
28
|
+
* @param client The AWS SDK v3 client to add the middleware to
|
|
29
|
+
* @param feature The feature name to be added to the user agent
|
|
30
|
+
*/
|
|
31
|
+
declare const addUserAgentMiddleware: (client: unknown, feature: string) => void;
|
|
32
|
+
export { customUserAgentMiddleware, addUserAgentMiddleware, isSdkClient };
|
|
33
|
+
//# sourceMappingURL=awsSdkUtils.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"awsSdkUtils.d.ts","sourceRoot":"","sources":["../../src/awsSdkUtils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,kBAAkB,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAWvE;;;;GAIG;AACH,QAAA,MAAM,WAAW,WAAY,OAAO,KAAG,MAAM,IAAI,SAgBW,CAAC;AAE7D;;;;;;;;;;;GAWG;AACH,QAAA,MAAM,yBAAyB,YAAa,MAAM,MACxC,CAAC,SAAS,kBAAkB,QAAQ,CAAC,IAAI,EAAE,CAAC,KAAK,OAAO,CAAC,CAAC,CAAC,YACpD,CAAC,eAOjB,CAAC;AAqBF;;;;;;;;;GASG;AACH,QAAA,MAAM,sBAAsB,WAAY,OAAO,WAAW,MAAM,KAAG,IAkBlE,CAAC;AAEF,OAAO,EAAE,yBAAyB,EAAE,sBAAsB,EAAE,WAAW,EAAE,CAAC"}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import { PT_VERSION } from './version.js';
|
|
2
|
+
const EXEC_ENV = process.env.AWS_EXECUTION_ENV || 'NA';
|
|
3
|
+
const middlewareOptions = {
|
|
4
|
+
relation: 'after',
|
|
5
|
+
toMiddleware: 'getUserAgentMiddleware',
|
|
6
|
+
name: 'addPowertoolsToUserAgent',
|
|
7
|
+
tags: ['POWERTOOLS', 'USER_AGENT'],
|
|
8
|
+
};
|
|
9
|
+
/**
|
|
10
|
+
* Type guard to check if the client provided is a valid AWS SDK v3 client.
|
|
11
|
+
*
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
const isSdkClient = (client) => typeof client === 'object' &&
|
|
15
|
+
client !== null &&
|
|
16
|
+
'send' in client &&
|
|
17
|
+
typeof client.send === 'function' &&
|
|
18
|
+
'config' in client &&
|
|
19
|
+
client.config !== undefined &&
|
|
20
|
+
typeof client.config === 'object' &&
|
|
21
|
+
client.config !== null &&
|
|
22
|
+
'middlewareStack' in client &&
|
|
23
|
+
client.middlewareStack !== undefined &&
|
|
24
|
+
typeof client.middlewareStack === 'object' &&
|
|
25
|
+
client.middlewareStack !== null &&
|
|
26
|
+
'identify' in client.middlewareStack &&
|
|
27
|
+
typeof client.middlewareStack.identify === 'function' &&
|
|
28
|
+
'addRelativeTo' in client.middlewareStack &&
|
|
29
|
+
typeof client.middlewareStack.addRelativeTo === 'function';
|
|
30
|
+
/**
|
|
31
|
+
* Helper function to create a custom user agent middleware for the AWS SDK v3 clients.
|
|
32
|
+
*
|
|
33
|
+
* The middleware will append the provided feature name and the current version of
|
|
34
|
+
* the Powertools for AWS Lambda library to the user agent string.
|
|
35
|
+
*
|
|
36
|
+
* @example "PT/Tracer/2.1.0 PTEnv/nodejs20x"
|
|
37
|
+
*
|
|
38
|
+
* @param feature The feature name to be added to the user agent
|
|
39
|
+
*
|
|
40
|
+
* @internal
|
|
41
|
+
*/
|
|
42
|
+
const customUserAgentMiddleware = (feature) => {
|
|
43
|
+
return (next) => async (args) => {
|
|
44
|
+
const powertoolsUserAgent = `PT/${feature}/${PT_VERSION} PTEnv/${EXEC_ENV}`;
|
|
45
|
+
args.request.headers['user-agent'] =
|
|
46
|
+
`${args.request.headers['user-agent']} ${powertoolsUserAgent}`;
|
|
47
|
+
return await next(args);
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
/**
|
|
51
|
+
* Check if the provided middleware stack already has the Powertools for AWS Lambda
|
|
52
|
+
* user agent middleware.
|
|
53
|
+
*
|
|
54
|
+
* @param middlewareStack The middleware stack to check
|
|
55
|
+
*
|
|
56
|
+
* @internal
|
|
57
|
+
*/
|
|
58
|
+
const hasPowertools = (middlewareStack) => {
|
|
59
|
+
let found = false;
|
|
60
|
+
for (const middleware of middlewareStack) {
|
|
61
|
+
if (middleware.includes('addPowertoolsToUserAgent')) {
|
|
62
|
+
found = true;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
return found;
|
|
66
|
+
};
|
|
67
|
+
/**
|
|
68
|
+
* Add the Powertools for AWS Lambda user agent middleware to the
|
|
69
|
+
* AWS SDK v3 client provided.
|
|
70
|
+
*
|
|
71
|
+
* We use this middleware to unbotrusively track the usage of the library
|
|
72
|
+
* and secure continued investment in the project.
|
|
73
|
+
*
|
|
74
|
+
* @param client The AWS SDK v3 client to add the middleware to
|
|
75
|
+
* @param feature The feature name to be added to the user agent
|
|
76
|
+
*/
|
|
77
|
+
const addUserAgentMiddleware = (client, feature) => {
|
|
78
|
+
try {
|
|
79
|
+
if (isSdkClient(client)) {
|
|
80
|
+
if (hasPowertools(client.middlewareStack.identify())) {
|
|
81
|
+
return;
|
|
82
|
+
}
|
|
83
|
+
client.middlewareStack.addRelativeTo(customUserAgentMiddleware(feature), middlewareOptions);
|
|
84
|
+
}
|
|
85
|
+
else {
|
|
86
|
+
throw new Error('The client provided does not match the expected interface');
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
catch (error) {
|
|
90
|
+
console.warn('Failed to add user agent middleware', error);
|
|
91
|
+
}
|
|
92
|
+
};
|
|
93
|
+
export { customUserAgentMiddleware, addUserAgentMiddleware, isSdkClient };
|