@ndlib/ndlib-cdk2 1.0.7 → 1.0.9
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/README.md +46 -0
- package/lib/dashboards/summary-dashboard.js +2 -2
- package/lib/ec2s/ec2-with-database.js +1 -0
- package/lib/edge-lambdas/spaRedirectionLambda/index.js +1 -1
- package/lib/edge-lambdas/transclusionLambda/index.js +1 -1
- package/lib/edge-lambdas/transclusionLambda/src/getFromS3.d.ts +3 -0
- package/lib/edge-lambdas/transclusionLambda/src/getFromS3.js +20 -0
- package/lib/edge-lambdas/transclusionLambda/src/getFromS3.ts +20 -0
- package/lib/edge-lambdas/transclusionLambda/src/handler.d.ts +7 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/.package-lock.json +4 -4
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/.yarn-integrity +107 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/CHANGELOG.md +47 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/LICENSE +201 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/README.md +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/build/convertToBuffer.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/build/convertToBuffer.js +24 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/build/convertToBuffer.js.map +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/build/index.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/build/index.js +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/build/index.js.map +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/build/isEmptyData.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/build/isEmptyData.js +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/build/isEmptyData.js.map +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/build/numToUint8.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/build/numToUint8.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/build/numToUint8.js.map +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/build/uint32ArrayFrom.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/build/uint32ArrayFrom.js +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/build/uint32ArrayFrom.js.map +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/node_modules/tslib/LICENSE.txt +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/node_modules/tslib/README.md +142 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/node_modules/tslib/modules/index.js +51 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/node_modules/tslib/modules/package.json +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/node_modules/tslib/package.json +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js +23 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/node_modules/tslib/tslib.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/node_modules/tslib/tslib.es6.html +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/node_modules/tslib/tslib.es6.js +218 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/node_modules/tslib/tslib.html +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/node_modules/tslib/tslib.js +284 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/package.json +31 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/src/convertToBuffer.ts +30 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/src/index.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/src/isEmptyData.ts +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/src/numToUint8.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/src/uint32ArrayFrom.ts +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-crypto/util/tsconfig.json +23 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/abort-controller/dist-cjs/AbortController.js +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/abort-controller/dist-cjs/AbortSignal.js +24 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/abort-controller/dist-cjs/index.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/abort-controller/dist-es/AbortController.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/abort-controller/dist-es/AbortSignal.js +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/abort-controller/dist-es/index.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/abort-controller/dist-types/AbortController.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/abort-controller/dist-types/AbortSignal.d.ts +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/abort-controller/dist-types/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/abort-controller/dist-types/ts3.4/AbortController.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/abort-controller/dist-types/ts3.4/AbortSignal.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/abort-controller/dist-types/ts3.4/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/CodePipeline.js +592 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/CodePipelineClient.js +40 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/AcknowledgeJobCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/AcknowledgeThirdPartyJobCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/CreateCustomActionTypeCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/CreatePipelineCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/DeleteCustomActionTypeCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/DeletePipelineCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/DeleteWebhookCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/DeregisterWebhookWithThirdPartyCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/DisableStageTransitionCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/EnableStageTransitionCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/GetActionTypeCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/GetJobDetailsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/GetPipelineCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/GetPipelineExecutionCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/GetPipelineStateCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/GetThirdPartyJobDetailsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/ListActionExecutionsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/ListActionTypesCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/ListPipelineExecutionsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/ListPipelinesCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/ListTagsForResourceCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/ListWebhooksCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/PollForJobsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/PollForThirdPartyJobsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/PutActionRevisionCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/PutApprovalResultCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/PutJobFailureResultCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/PutJobSuccessResultCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/PutThirdPartyJobFailureResultCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/PutThirdPartyJobSuccessResultCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/PutWebhookCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/RegisterWebhookWithThirdPartyCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/RetryStageExecutionCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/StartPipelineExecutionCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/StopPipelineExecutionCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/TagResourceCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/UntagResourceCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/UpdateActionTypeCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/UpdatePipelineCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/commands/index.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/endpoint/EndpointParameters.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/endpoint/ruleset.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/index.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/models/CodePipelineServiceException.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/models/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/models/models_0.js +1151 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/pagination/Interfaces.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/pagination/ListActionExecutionsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/pagination/ListActionTypesPaginator.js +35 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/pagination/ListPipelineExecutionsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/pagination/ListPipelinesPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/pagination/ListTagsForResourcePaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/pagination/ListWebhooksPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/pagination/index.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/protocols/Aws_json1_1.js +4307 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/runtimeConfig.browser.js +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/runtimeConfig.js +48 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/runtimeConfig.native.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-cjs/runtimeConfig.shared.js +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/CodePipeline.js +588 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/CodePipelineClient.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/AcknowledgeJobCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/AcknowledgeThirdPartyJobCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/CreateCustomActionTypeCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/CreatePipelineCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/DeleteCustomActionTypeCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/DeletePipelineCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/DeleteWebhookCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/DeregisterWebhookWithThirdPartyCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/DisableStageTransitionCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/EnableStageTransitionCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/GetActionTypeCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/GetJobDetailsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/GetPipelineCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/GetPipelineExecutionCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/GetPipelineStateCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/GetThirdPartyJobDetailsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/ListActionExecutionsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/ListActionTypesCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/ListPipelineExecutionsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/ListPipelinesCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/ListTagsForResourceCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/ListWebhooksCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/PollForJobsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/PollForThirdPartyJobsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/PutActionRevisionCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/PutApprovalResultCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/PutJobFailureResultCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/PutJobSuccessResultCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/PutThirdPartyJobFailureResultCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/PutThirdPartyJobSuccessResultCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/PutWebhookCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/RegisterWebhookWithThirdPartyCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/RetryStageExecutionCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/StartPipelineExecutionCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/StopPipelineExecutionCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/TagResourceCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/UntagResourceCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/UpdateActionTypeCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/UpdatePipelineCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/commands/index.js +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/endpoint/EndpointParameters.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/endpoint/endpointResolver.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/endpoint/ruleset.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/index.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/models/CodePipelineServiceException.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/models/index.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/models/models_0.js +972 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/pagination/Interfaces.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/pagination/ListActionExecutionsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/pagination/ListActionTypesPaginator.js +31 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/pagination/ListPipelineExecutionsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/pagination/ListPipelinesPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/pagination/ListTagsForResourcePaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/pagination/ListWebhooksPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/pagination/index.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/protocols/Aws_json1_1.js +4225 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/runtimeConfig.browser.js +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/runtimeConfig.js +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/runtimeConfig.native.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-es/runtimeConfig.shared.js +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/CodePipeline.d.ts +570 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/CodePipelineClient.d.ts +374 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/AcknowledgeJobCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/AcknowledgeThirdPartyJobCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/CreateCustomActionTypeCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/CreatePipelineCommand.d.ts +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/DeleteCustomActionTypeCommand.d.ts +45 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/DeletePipelineCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/DeleteWebhookCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/DeregisterWebhookWithThirdPartyCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/DisableStageTransitionCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/EnableStageTransitionCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/GetActionTypeCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/GetJobDetailsCommand.d.ts +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/GetPipelineCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/GetPipelineExecutionCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/GetPipelineStateCommand.d.ts +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/GetThirdPartyJobDetailsCommand.d.ts +44 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/ListActionExecutionsCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/ListActionTypesCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/ListPipelineExecutionsCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/ListPipelinesCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/ListTagsForResourceCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/ListWebhooksCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/PollForJobsCommand.d.ts +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/PollForThirdPartyJobsCommand.d.ts +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/PutActionRevisionCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/PutApprovalResultCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/PutJobFailureResultCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/PutJobSuccessResultCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/PutThirdPartyJobFailureResultCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/PutThirdPartyJobSuccessResultCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/PutWebhookCommand.d.ts +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/RegisterWebhookWithThirdPartyCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/RetryStageExecutionCommand.d.ts +40 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/StartPipelineExecutionCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/StopPipelineExecutionCommand.d.ts +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/TagResourceCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/UntagResourceCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/UpdateActionTypeCommand.d.ts +40 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/UpdatePipelineCommand.d.ts +40 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/commands/index.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/endpoint/EndpointParameters.d.ts +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/endpoint/ruleset.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/index.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/models/CodePipelineServiceException.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/models/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/models/models_0.d.ts +3823 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/pagination/Interfaces.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/pagination/ListActionExecutionsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/pagination/ListActionTypesPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/pagination/ListPipelineExecutionsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/pagination/ListPipelinesPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/pagination/ListTagsForResourcePaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/pagination/ListWebhooksPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/pagination/index.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/protocols/Aws_json1_1.d.ts +119 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/runtimeConfig.browser.d.ts +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/runtimeConfig.d.ts +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/runtimeConfig.native.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/runtimeConfig.shared.d.ts +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/CodePipeline.d.ts +667 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/CodePipelineClient.d.ts +347 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/AcknowledgeJobCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/AcknowledgeThirdPartyJobCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/CreateCustomActionTypeCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/CreatePipelineCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/DeleteCustomActionTypeCommand.d.ts +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/DeletePipelineCommand.d.ts +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/DeleteWebhookCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/DeregisterWebhookWithThirdPartyCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/DisableStageTransitionCommand.d.ts +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/EnableStageTransitionCommand.d.ts +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/GetActionTypeCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/GetJobDetailsCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/GetPipelineCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/GetPipelineExecutionCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/GetPipelineStateCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/GetThirdPartyJobDetailsCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/ListActionExecutionsCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/ListActionTypesCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/ListPipelineExecutionsCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/ListPipelinesCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/ListWebhooksCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/PollForJobsCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/PollForThirdPartyJobsCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/PutActionRevisionCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/PutApprovalResultCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/PutJobFailureResultCommand.d.ts +33 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/PutJobSuccessResultCommand.d.ts +33 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/PutThirdPartyJobFailureResultCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/PutThirdPartyJobSuccessResultCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/PutWebhookCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/RegisterWebhookWithThirdPartyCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/RetryStageExecutionCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/StartPipelineExecutionCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/StopPipelineExecutionCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/UpdateActionTypeCommand.d.ts +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/UpdatePipelineCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/commands/index.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/index.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/models/CodePipelineServiceException.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/models/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/models/models_0.d.ts +1439 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/pagination/ListActionExecutionsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/pagination/ListActionTypesPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/pagination/ListPipelineExecutionsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/pagination/ListPipelinesPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/pagination/ListWebhooksPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/pagination/index.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +473 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/runtimeConfig.browser.d.ts +91 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/runtimeConfig.d.ts +91 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/runtimeConfig.native.d.ts +80 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-codepipeline/dist-types/ts3.4/runtimeConfig.shared.d.ts +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/SSM.js +2077 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/SSMClient.js +40 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/AddTagsToResourceCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/AssociateOpsItemRelatedItemCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CancelCommandCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CancelMaintenanceWindowExecutionCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreateActivationCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreateAssociationBatchCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreateAssociationCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreateDocumentCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreateMaintenanceWindowCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreateOpsItemCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreateOpsMetadataCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreatePatchBaselineCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreateResourceDataSyncCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteActivationCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteAssociationCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteDocumentCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteInventoryCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteMaintenanceWindowCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteOpsMetadataCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteParameterCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteParametersCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeletePatchBaselineCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteResourceDataSyncCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteResourcePolicyCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeregisterManagedInstanceCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeregisterPatchBaselineForPatchGroupCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeregisterTargetFromMaintenanceWindowCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeregisterTaskFromMaintenanceWindowCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeActivationsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeAssociationCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeAssociationExecutionTargetsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeAssociationExecutionsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeAutomationExecutionsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeAutomationStepExecutionsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeAvailablePatchesCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeDocumentCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeDocumentPermissionCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeEffectiveInstanceAssociationsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeEffectivePatchesForPatchBaselineCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeInstanceAssociationsStatusCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeInstanceInformationCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeInstancePatchStatesCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeInstancePatchStatesForPatchGroupCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeInstancePatchesCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeInventoryDeletionsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeMaintenanceWindowExecutionTasksCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeMaintenanceWindowExecutionsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeMaintenanceWindowScheduleCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeMaintenanceWindowTargetsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeMaintenanceWindowTasksCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeMaintenanceWindowsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeMaintenanceWindowsForTargetCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeOpsItemsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeParametersCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribePatchBaselinesCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribePatchGroupStateCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribePatchGroupsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribePatchPropertiesCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeSessionsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DisassociateOpsItemRelatedItemCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetAutomationExecutionCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetCalendarStateCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetCommandInvocationCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetConnectionStatusCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetDefaultPatchBaselineCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetDeployablePatchSnapshotForInstanceCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetDocumentCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetInventoryCommand.js +47 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetInventorySchemaCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetMaintenanceWindowCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetMaintenanceWindowExecutionCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetMaintenanceWindowExecutionTaskCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetMaintenanceWindowTaskCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetOpsItemCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetOpsMetadataCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetOpsSummaryCommand.js +47 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetParameterCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetParameterHistoryCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetParametersByPathCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetParametersCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetPatchBaselineCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetPatchBaselineForPatchGroupCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetResourcePoliciesCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetServiceSettingCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/LabelParameterVersionCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListAssociationVersionsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListAssociationsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListCommandInvocationsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListCommandsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListComplianceItemsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListComplianceSummariesCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListDocumentMetadataHistoryCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListDocumentVersionsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListDocumentsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListInventoryEntriesCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListOpsItemEventsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListOpsItemRelatedItemsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListOpsMetadataCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListResourceComplianceSummariesCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListResourceDataSyncCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListTagsForResourceCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ModifyDocumentPermissionCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/PutComplianceItemsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/PutInventoryCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/PutParameterCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/PutResourcePolicyCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/RegisterDefaultPatchBaselineCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/RegisterPatchBaselineForPatchGroupCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/RegisterTargetWithMaintenanceWindowCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/RegisterTaskWithMaintenanceWindowCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/RemoveTagsFromResourceCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ResetServiceSettingCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ResumeSessionCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/SendAutomationSignalCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/SendCommandCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/StartAssociationsOnceCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/StartAutomationExecutionCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/StartChangeRequestExecutionCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/StartSessionCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/StopAutomationExecutionCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/TerminateSessionCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UnlabelParameterVersionCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateAssociationCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateAssociationStatusCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateDocumentCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateDocumentDefaultVersionCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateDocumentMetadataCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateMaintenanceWindowCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateMaintenanceWindowTargetCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateMaintenanceWindowTaskCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateManagedInstanceRoleCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateOpsItemCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateOpsMetadataCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdatePatchBaselineCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateResourceDataSyncCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateServiceSettingCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/index.js +141 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/EndpointParameters.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/ruleset.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/index.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/models/SSMServiceException.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/models/index.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/models/models_0.js +2122 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/models/models_1.js +1881 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/models/models_2.js +271 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeActivationsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeAssociationExecutionTargetsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeAssociationExecutionsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeAutomationExecutionsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeAutomationStepExecutionsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeAvailablePatchesPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeEffectiveInstanceAssociationsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeEffectivePatchesForPatchBaselinePaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeInstanceAssociationsStatusPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeInstanceInformationPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeInstancePatchStatesForPatchGroupPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeInstancePatchStatesPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeInstancePatchesPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeInventoryDeletionsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeMaintenanceWindowExecutionTaskInvocationsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeMaintenanceWindowExecutionTasksPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeMaintenanceWindowExecutionsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeMaintenanceWindowSchedulePaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeMaintenanceWindowTargetsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeMaintenanceWindowTasksPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeMaintenanceWindowsForTargetPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeMaintenanceWindowsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeOpsItemsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeParametersPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribePatchBaselinesPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribePatchGroupsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribePatchPropertiesPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeSessionsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/GetInventoryPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/GetInventorySchemaPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/GetOpsSummaryPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/GetParameterHistoryPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/GetParametersByPathPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/GetResourcePoliciesPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/Interfaces.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListAssociationVersionsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListAssociationsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListCommandInvocationsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListCommandsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListComplianceItemsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListComplianceSummariesPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListDocumentVersionsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListDocumentsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListOpsItemEventsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListOpsItemRelatedItemsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListOpsMetadataPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListResourceComplianceSummariesPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListResourceDataSyncPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/index.js +51 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/protocols/Aws_json1_1.js +15578 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.browser.js +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.js +48 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.native.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.shared.js +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/waiters/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-cjs/waiters/waitForCommandExecuted.js +102 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/SSM.js +2073 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/SSMClient.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/AddTagsToResourceCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/AssociateOpsItemRelatedItemCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/CancelCommandCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/CancelMaintenanceWindowExecutionCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateActivationCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateAssociationBatchCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateAssociationCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateDocumentCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateMaintenanceWindowCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateOpsItemCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateOpsMetadataCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreatePatchBaselineCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateResourceDataSyncCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteActivationCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteAssociationCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteDocumentCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteInventoryCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteMaintenanceWindowCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteOpsMetadataCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteParameterCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteParametersCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeletePatchBaselineCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteResourceDataSyncCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteResourcePolicyCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterManagedInstanceCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterPatchBaselineForPatchGroupCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterTargetFromMaintenanceWindowCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterTaskFromMaintenanceWindowCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeActivationsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAssociationCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAssociationExecutionTargetsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAssociationExecutionsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAutomationExecutionsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAutomationStepExecutionsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAvailablePatchesCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeDocumentCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeDocumentPermissionCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeEffectiveInstanceAssociationsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeEffectivePatchesForPatchBaselineCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstanceAssociationsStatusCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstanceInformationCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePatchStatesCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePatchStatesForPatchGroupCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePatchesCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInventoryDeletionsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowExecutionTasksCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowExecutionsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowScheduleCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowTargetsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowTasksCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowsForTargetCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeOpsItemsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeParametersCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchBaselinesCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchGroupStateCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchGroupsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchPropertiesCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeSessionsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/DisassociateOpsItemRelatedItemCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetAutomationExecutionCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetCalendarStateCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetCommandInvocationCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetConnectionStatusCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetDefaultPatchBaselineCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetDeployablePatchSnapshotForInstanceCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetDocumentCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetInventoryCommand.js +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetInventorySchemaCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowExecutionCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowExecutionTaskCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowTaskCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetOpsItemCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetOpsMetadataCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetOpsSummaryCommand.js +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParameterCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParameterHistoryCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParametersByPathCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParametersCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetPatchBaselineCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetPatchBaselineForPatchGroupCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetResourcePoliciesCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetServiceSettingCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/LabelParameterVersionCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListAssociationVersionsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListAssociationsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListCommandInvocationsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListCommandsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListComplianceItemsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListComplianceSummariesCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListDocumentMetadataHistoryCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListDocumentVersionsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListDocumentsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListInventoryEntriesCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListOpsItemEventsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListOpsItemRelatedItemsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListOpsMetadataCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListResourceComplianceSummariesCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListResourceDataSyncCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListTagsForResourceCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/ModifyDocumentPermissionCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutComplianceItemsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutInventoryCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutParameterCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutResourcePolicyCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterDefaultPatchBaselineCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterPatchBaselineForPatchGroupCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterTargetWithMaintenanceWindowCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterTaskWithMaintenanceWindowCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/RemoveTagsFromResourceCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/ResetServiceSettingCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/ResumeSessionCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/SendAutomationSignalCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/SendCommandCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartAssociationsOnceCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartAutomationExecutionCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartChangeRequestExecutionCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartSessionCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/StopAutomationExecutionCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/TerminateSessionCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/UnlabelParameterVersionCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateAssociationCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateAssociationStatusCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateDocumentCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateDocumentDefaultVersionCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateDocumentMetadataCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateMaintenanceWindowCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateMaintenanceWindowTargetCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateMaintenanceWindowTaskCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateManagedInstanceRoleCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateOpsItemCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateOpsMetadataCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdatePatchBaselineCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateResourceDataSyncCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateServiceSettingCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/commands/index.js +138 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/endpoint/EndpointParameters.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/endpoint/endpointResolver.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/endpoint/ruleset.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/index.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/models/SSMServiceException.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/models/index.js +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/models/models_0.js +1862 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/models/models_1.js +1609 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/models/models_2.js +227 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeActivationsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeAssociationExecutionTargetsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeAssociationExecutionsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeAutomationExecutionsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeAutomationStepExecutionsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeAvailablePatchesPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeEffectiveInstanceAssociationsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeEffectivePatchesForPatchBaselinePaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeInstanceAssociationsStatusPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeInstanceInformationPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeInstancePatchStatesForPatchGroupPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeInstancePatchStatesPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeInstancePatchesPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeInventoryDeletionsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeMaintenanceWindowExecutionTaskInvocationsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeMaintenanceWindowExecutionTasksPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeMaintenanceWindowExecutionsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeMaintenanceWindowSchedulePaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeMaintenanceWindowTargetsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeMaintenanceWindowTasksPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeMaintenanceWindowsForTargetPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeMaintenanceWindowsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeOpsItemsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeParametersPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribePatchBaselinesPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribePatchGroupsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribePatchPropertiesPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeSessionsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/GetInventoryPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/GetInventorySchemaPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/GetOpsSummaryPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/GetParameterHistoryPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/GetParametersByPathPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/GetResourcePoliciesPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/Interfaces.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListAssociationVersionsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListAssociationsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListCommandInvocationsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListCommandsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListComplianceItemsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListComplianceSummariesPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListDocumentVersionsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListDocumentsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListOpsItemEventsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListOpsItemRelatedItemsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListOpsMetadataPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListResourceComplianceSummariesPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListResourceDataSyncPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/pagination/index.js +48 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/protocols/Aws_json1_1.js +15294 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.browser.js +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.js +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.native.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.shared.js +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/waiters/index.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-es/waiters/waitForCommandExecuted.js +97 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/SSM.d.ts +1647 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/SSMClient.d.ts +314 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/AddTagsToResourceCommand.d.ts +83 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/AssociateOpsItemRelatedItemCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/CancelCommandCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/CancelMaintenanceWindowExecutionCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateActivationCommand.d.ts +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateAssociationBatchCommand.d.ts +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateAssociationCommand.d.ts +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateDocumentCommand.d.ts +40 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateMaintenanceWindowCommand.d.ts +45 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateOpsItemCommand.d.ts +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateOpsMetadataCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreatePatchBaselineCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateResourceDataSyncCommand.d.ts +57 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteActivationCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteAssociationCommand.d.ts +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteDocumentCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteInventoryCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteMaintenanceWindowCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteOpsMetadataCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteParameterCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteParametersCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeletePatchBaselineCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteResourceDataSyncCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteResourcePolicyCommand.d.ts +40 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterManagedInstanceCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterPatchBaselineForPatchGroupCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterTargetFromMaintenanceWindowCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterTaskFromMaintenanceWindowCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeActivationsCommand.d.ts +40 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAssociationCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAssociationExecutionTargetsCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAssociationExecutionsCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAutomationExecutionsCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAutomationStepExecutionsCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAvailablePatchesCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeDocumentCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeDocumentPermissionCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeEffectiveInstanceAssociationsCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeEffectivePatchesForPatchBaselineCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstanceAssociationsStatusCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstanceInformationCommand.d.ts +47 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePatchStatesCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePatchStatesForPatchGroupCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePatchesCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInventoryDeletionsCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowExecutionTasksCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowExecutionsCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowScheduleCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowTargetsCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowTasksCommand.d.ts +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowsCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowsForTargetCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeOpsItemsCommand.d.ts +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeParametersCommand.d.ts +49 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchBaselinesCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchGroupStateCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchGroupsCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchPropertiesCommand.d.ts +100 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeSessionsCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/DisassociateOpsItemRelatedItemCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetAutomationExecutionCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetCalendarStateCommand.d.ts +45 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetCommandInvocationCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetConnectionStatusCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetDefaultPatchBaselineCommand.d.ts +40 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetDeployablePatchSnapshotForInstanceCommand.d.ts +45 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetDocumentCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetInventoryCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetInventorySchemaCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowExecutionCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowExecutionTaskCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowTaskCommand.d.ts +44 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetOpsItemCommand.d.ts +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetOpsMetadataCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetOpsSummaryCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParameterCommand.d.ts +40 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParameterHistoryCommand.d.ts +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParametersByPathCommand.d.ts +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParametersCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetPatchBaselineCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetPatchBaselineForPatchGroupCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetResourcePoliciesCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetServiceSettingCommand.d.ts +50 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/LabelParameterVersionCommand.d.ts +73 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListAssociationVersionsCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListAssociationsCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListCommandInvocationsCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListCommandsCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListComplianceItemsCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListComplianceSummariesCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListDocumentMetadataHistoryCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListDocumentVersionsCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListDocumentsCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListInventoryEntriesCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListOpsItemEventsCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListOpsItemRelatedItemsCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListOpsMetadataCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListResourceComplianceSummariesCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListResourceDataSyncCommand.d.ts +45 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListTagsForResourceCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/ModifyDocumentPermissionCommand.d.ts +40 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutComplianceItemsCommand.d.ts +92 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutInventoryCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutParameterCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutResourcePolicyCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterDefaultPatchBaselineCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterPatchBaselineForPatchGroupCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterTargetWithMaintenanceWindowCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterTaskWithMaintenanceWindowCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/ResetServiceSettingCommand.d.ts +51 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/ResumeSessionCommand.d.ts +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/SendAutomationSignalCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/SendCommandCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartAssociationsOnceCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartAutomationExecutionCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartChangeRequestExecutionCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartSessionCommand.d.ts +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/StopAutomationExecutionCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/TerminateSessionCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/UnlabelParameterVersionCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateAssociationCommand.d.ts +56 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateAssociationStatusCommand.d.ts +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateDocumentCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateDocumentDefaultVersionCommand.d.ts +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateDocumentMetadataCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateMaintenanceWindowCommand.d.ts +45 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateMaintenanceWindowTargetCommand.d.ts +62 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateMaintenanceWindowTaskCommand.d.ts +92 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateManagedInstanceRoleCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateOpsItemCommand.d.ts +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateOpsMetadataCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdatePatchBaselineCommand.d.ts +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateResourceDataSyncCommand.d.ts +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateServiceSettingCommand.d.ts +50 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/commands/index.d.ts +138 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/endpoint/EndpointParameters.d.ts +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/endpoint/ruleset.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/index.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/models/SSMServiceException.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/models/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/models/models_0.d.ts +7138 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/models/models_1.d.ts +8291 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/models/models_2.d.ts +1474 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeActivationsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeAssociationExecutionTargetsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeAssociationExecutionsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeAutomationExecutionsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeAutomationStepExecutionsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeAvailablePatchesPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeEffectiveInstanceAssociationsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeEffectivePatchesForPatchBaselinePaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeInstanceAssociationsStatusPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeInstanceInformationPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeInstancePatchStatesForPatchGroupPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeInstancePatchStatesPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeInstancePatchesPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeInventoryDeletionsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowExecutionTaskInvocationsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowExecutionTasksPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowExecutionsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowSchedulePaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowTargetsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowTasksPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowsForTargetPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeOpsItemsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeParametersPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribePatchBaselinesPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribePatchGroupsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribePatchPropertiesPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeSessionsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/GetInventoryPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/GetInventorySchemaPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/GetOpsSummaryPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/GetParameterHistoryPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/GetParametersByPathPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/GetResourcePoliciesPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/Interfaces.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListAssociationVersionsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListAssociationsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListCommandInvocationsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListCommandsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListComplianceItemsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListComplianceSummariesPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListDocumentVersionsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListDocumentsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListOpsItemEventsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListOpsItemRelatedItemsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListOpsMetadataPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListResourceComplianceSummariesPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListResourceDataSyncPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/pagination/index.d.ts +48 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/protocols/Aws_json1_1.d.ts +416 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.browser.d.ts +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.d.ts +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.native.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.shared.d.ts +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/SSM.d.ts +2464 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/SSMClient.d.ts +939 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/AddTagsToResourceCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/AssociateOpsItemRelatedItemCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CancelCommandCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CancelMaintenanceWindowExecutionCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateActivationCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateAssociationBatchCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateAssociationCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateDocumentCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateMaintenanceWindowCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateOpsItemCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateOpsMetadataCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreatePatchBaselineCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateResourceDataSyncCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteActivationCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteAssociationCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteDocumentCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteInventoryCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteMaintenanceWindowCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteOpsMetadataCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteParameterCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteParametersCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeletePatchBaselineCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteResourceDataSyncCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterManagedInstanceCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterPatchBaselineForPatchGroupCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterTargetFromMaintenanceWindowCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterTaskFromMaintenanceWindowCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeActivationsCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAssociationCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAssociationExecutionTargetsCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAssociationExecutionsCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAutomationExecutionsCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAutomationStepExecutionsCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAvailablePatchesCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeDocumentCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeDocumentPermissionCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeEffectiveInstanceAssociationsCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeEffectivePatchesForPatchBaselineCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstanceAssociationsStatusCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstanceInformationCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePatchStatesCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePatchStatesForPatchGroupCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePatchesCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInventoryDeletionsCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.d.ts +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowExecutionTasksCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowExecutionsCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowScheduleCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowTargetsCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowTasksCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowsCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowsForTargetCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeOpsItemsCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeParametersCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchBaselinesCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchGroupStateCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchGroupsCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchPropertiesCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeSessionsCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DisassociateOpsItemRelatedItemCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetAutomationExecutionCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetCalendarStateCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetCommandInvocationCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetConnectionStatusCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetDefaultPatchBaselineCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetDeployablePatchSnapshotForInstanceCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetDocumentCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetInventoryCommand.d.ts +35 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetInventorySchemaCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowExecutionCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowExecutionTaskCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowTaskCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetOpsItemCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetOpsMetadataCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetOpsSummaryCommand.d.ts +35 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParameterCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParameterHistoryCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParametersByPathCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParametersCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetPatchBaselineCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetPatchBaselineForPatchGroupCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetResourcePoliciesCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetServiceSettingCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/LabelParameterVersionCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListAssociationVersionsCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListAssociationsCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListCommandInvocationsCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListCommandsCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListComplianceItemsCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListComplianceSummariesCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListDocumentMetadataHistoryCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListDocumentVersionsCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListDocumentsCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListInventoryEntriesCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListOpsItemEventsCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListOpsItemRelatedItemsCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListOpsMetadataCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListResourceComplianceSummariesCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListResourceDataSyncCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ModifyDocumentPermissionCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutComplianceItemsCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutInventoryCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutParameterCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterDefaultPatchBaselineCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterPatchBaselineForPatchGroupCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterTargetWithMaintenanceWindowCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterTaskWithMaintenanceWindowCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RemoveTagsFromResourceCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ResetServiceSettingCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ResumeSessionCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/SendAutomationSignalCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/SendCommandCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartAssociationsOnceCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartAutomationExecutionCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartChangeRequestExecutionCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartSessionCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StopAutomationExecutionCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/TerminateSessionCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UnlabelParameterVersionCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateAssociationCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateAssociationStatusCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateDocumentCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateDocumentDefaultVersionCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateDocumentMetadataCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateMaintenanceWindowCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateMaintenanceWindowTargetCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateMaintenanceWindowTaskCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateManagedInstanceRoleCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateOpsItemCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateOpsMetadataCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdatePatchBaselineCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateResourceDataSyncCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateServiceSettingCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/index.d.ts +138 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/index.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/SSMServiceException.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/models_0.d.ts +2539 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/models_1.d.ts +2715 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/models_2.d.ts +459 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeActivationsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeAssociationExecutionTargetsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeAssociationExecutionsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeAutomationExecutionsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeAutomationStepExecutionsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeAvailablePatchesPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeEffectiveInstanceAssociationsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeEffectivePatchesForPatchBaselinePaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeInstanceAssociationsStatusPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeInstanceInformationPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeInstancePatchStatesForPatchGroupPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeInstancePatchStatesPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeInstancePatchesPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeInventoryDeletionsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeMaintenanceWindowExecutionTaskInvocationsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeMaintenanceWindowExecutionTasksPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeMaintenanceWindowExecutionsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeMaintenanceWindowSchedulePaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeMaintenanceWindowTargetsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeMaintenanceWindowTasksPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeMaintenanceWindowsForTargetPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeMaintenanceWindowsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeOpsItemsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeParametersPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribePatchBaselinesPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribePatchGroupsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribePatchPropertiesPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeSessionsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/GetInventoryPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/GetInventorySchemaPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/GetOpsSummaryPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/GetParameterHistoryPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/GetParametersByPathPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/GetResourcePoliciesPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListAssociationVersionsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListAssociationsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListCommandInvocationsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListCommandsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListComplianceItemsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListComplianceSummariesPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListDocumentVersionsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListDocumentsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListOpsItemEventsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListOpsItemRelatedItemsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListOpsMetadataPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListResourceComplianceSummariesPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListResourceDataSyncPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/index.d.ts +48 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +1661 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.browser.d.ts +91 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.d.ts +91 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.native.d.ts +80 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.shared.d.ts +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/waiters/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/waiters/waitForCommandExecuted.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/waiters/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-ssm/dist-types/waiters/waitForCommandExecuted.d.ts +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/SSO.js +67 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/SSOClient.js +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/commands/GetRoleCredentialsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/commands/ListAccountRolesCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/commands/ListAccountsCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/commands/LogoutCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/commands/index.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/EndpointParameters.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/ruleset.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/index.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/models/SSOServiceException.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/models/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/models/models_0.js +104 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/pagination/Interfaces.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/pagination/ListAccountRolesPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/pagination/ListAccountsPaginator.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/pagination/index.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/protocols/Aws_restJson1.js +417 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.browser.js +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.js +45 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.native.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.shared.js +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/SSO.js +63 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/SSOClient.js +33 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/commands/GetRoleCredentialsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountRolesCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountsCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/commands/LogoutCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/commands/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/endpoint/EndpointParameters.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/endpoint/endpointResolver.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/endpoint/ruleset.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/index.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/models/SSOServiceException.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/models/index.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/models/models_0.js +87 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/pagination/Interfaces.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/pagination/ListAccountRolesPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/pagination/ListAccountsPaginator.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/pagination/index.js +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/protocols/Aws_restJson1.js +406 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.browser.js +33 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.js +40 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.native.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.shared.js +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/SSO.d.ts +71 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/SSOClient.d.ts +157 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/commands/GetRoleCredentialsCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountRolesCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountsCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/commands/LogoutCommand.d.ts +52 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/commands/index.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/endpoint/EndpointParameters.d.ts +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/endpoint/ruleset.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/index.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/models/SSOServiceException.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/models/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/models/models_0.d.ts +229 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/pagination/Interfaces.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/pagination/ListAccountRolesPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/pagination/ListAccountsPaginator.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/pagination/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/protocols/Aws_restJson1.d.ts +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.browser.d.ts +35 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.d.ts +35 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.native.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.shared.d.ts +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSO.d.ts +72 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSOClient.d.ts +127 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/GetRoleCredentialsCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountRolesCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountsCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/LogoutCommand.d.ts +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/index.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/SSOServiceException.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/models_0.d.ts +101 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/ListAccountRolesPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/ListAccountsPaginator.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +53 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.d.ts +67 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.native.d.ts +56 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.shared.d.ts +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/LICENSE +201 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/README.md +244 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/SSOOIDC.js +52 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/SSOOIDCClient.js +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/commands/CreateTokenCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/commands/RegisterClientCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/commands/StartDeviceAuthorizationCommand.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/commands/index.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/endpoint/EndpointParameters.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/endpoint/ruleset.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/index.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/models/SSOOIDCServiceException.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/models/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/models/models_0.js +208 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/protocols/Aws_restJson1.js +522 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.browser.js +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.js +45 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.native.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.shared.js +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-es/SSOOIDC.js +48 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-es/SSOOIDCClient.js +33 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/CreateTokenCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/RegisterClientCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/StartDeviceAuthorizationCommand.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/index.js +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-es/endpoint/EndpointParameters.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-es/endpoint/endpointResolver.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-es/endpoint/ruleset.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-es/index.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-es/models/SSOOIDCServiceException.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-es/models/index.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-es/models/models_0.js +187 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-es/protocols/Aws_restJson1.js +513 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeConfig.browser.js +33 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeConfig.js +40 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeConfig.native.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeConfig.shared.js +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/SSOOIDC.d.ts +71 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/SSOOIDCClient.d.ts +177 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/CreateTokenCommand.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/RegisterClientCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/StartDeviceAuthorizationCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/endpoint/EndpointParameters.d.ts +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/endpoint/ruleset.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/index.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/models/SSOOIDCServiceException.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/models/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/models/models_0.d.ts +371 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/protocols/Aws_restJson1.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeConfig.browser.d.ts +35 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeConfig.d.ts +35 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeConfig.native.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeConfig.shared.d.ts +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/SSOOIDC.d.ts +55 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/SSOOIDCClient.d.ts +122 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/CreateTokenCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/RegisterClientCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/StartDeviceAuthorizationCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/index.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/models/SSOOIDCServiceException.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/models/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/models/models_0.d.ts +169 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeConfig.d.ts +67 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeConfig.native.d.ts +56 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeConfig.shared.d.ts +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sso-oidc/package.json +99 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/STS.js +127 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/STSClient.js +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/commands/AssumeRoleCommand.js +49 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/commands/AssumeRoleWithSAMLCommand.js +47 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/commands/AssumeRoleWithWebIdentityCommand.js +47 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/commands/DecodeAuthorizationMessageCommand.js +49 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/commands/GetAccessKeyInfoCommand.js +49 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/commands/GetCallerIdentityCommand.js +49 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/commands/GetFederationTokenCommand.js +49 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/commands/GetSessionTokenCommand.js +49 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/commands/index.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/defaultRoleAssumers.js +28 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/defaultStsRoleAssumers.js +76 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/EndpointParameters.js +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/ruleset.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/index.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/models/STSServiceException.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/models/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/models/models_0.js +192 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/protocols/Aws_query.js +1083 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.browser.js +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.js +48 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.native.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.shared.js +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/STS.js +123 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/STSClient.js +35 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleCommand.js +45 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleWithSAMLCommand.js +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleWithWebIdentityCommand.js +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/commands/DecodeAuthorizationMessageCommand.js +45 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/commands/GetAccessKeyInfoCommand.js +45 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/commands/GetCallerIdentityCommand.js +45 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/commands/GetFederationTokenCommand.js +45 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/commands/GetSessionTokenCommand.js +45 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/commands/index.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/defaultRoleAssumers.js +22 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/defaultStsRoleAssumers.js +70 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/endpoint/EndpointParameters.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/endpoint/endpointResolver.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/endpoint/ruleset.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/index.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/models/STSServiceException.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/models/index.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/models/models_0.js +160 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/protocols/Aws_query.js +1064 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.browser.js +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.js +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.native.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.shared.js +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/STS.d.ts +619 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/STSClient.d.ts +153 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/commands/AssumeRoleCommand.d.ts +124 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/commands/AssumeRoleWithSAMLCommand.d.ts +165 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/commands/AssumeRoleWithWebIdentityCommand.d.ts +169 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/commands/DecodeAuthorizationMessageCommand.d.ts +72 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/commands/GetAccessKeyInfoCommand.d.ts +54 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/commands/GetCallerIdentityCommand.d.ts +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/commands/GetFederationTokenCommand.d.ts +123 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/commands/GetSessionTokenCommand.d.ts +95 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/commands/index.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/defaultRoleAssumers.d.ts +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/defaultStsRoleAssumers.d.ts +35 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/endpoint/EndpointParameters.d.ts +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/endpoint/ruleset.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/index.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/models/STSServiceException.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/models/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/models/models_0.d.ts +1115 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/protocols/Aws_query.d.ts +26 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.browser.d.ts +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.d.ts +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.native.d.ts +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.shared.d.ts +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/STS.d.ts +140 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/STSClient.d.ts +159 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleCommand.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleWithSAMLCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleWithWebIdentityCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/DecodeAuthorizationMessageCommand.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetAccessKeyInfoCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetCallerIdentityCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetFederationTokenCommand.d.ts +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetSessionTokenCommand.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/index.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/defaultRoleAssumers.d.ts +22 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/defaultStsRoleAssumers.d.ts +25 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/index.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/STSServiceException.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/models_0.d.ts +238 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/protocols/Aws_query.d.ts +101 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.browser.d.ts +95 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.d.ts +93 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.native.d.ts +84 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.shared.d.ts +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/endpointsConfig/index.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/endpointsConfig/resolveCustomEndpointsConfig.js +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/endpointsConfig/resolveEndpointsConfig.js +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/endpointsConfig/utils/getEndpointFromRegion.js +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/index.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/regionConfig/config.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/regionConfig/getRealRegion.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/regionConfig/index.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/regionConfig/isFipsRegion.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/regionConfig/resolveRegionConfig.js +29 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/EndpointVariant.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/EndpointVariantTag.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/PartitionHash.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/RegionHash.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/getHostnameFromVariants.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/getRegionInfo.js +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/getResolvedHostname.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/getResolvedPartition.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/getResolvedSigningRegion.js +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/index.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/resolveCustomEndpointsConfig.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/utils/getEndpointFromRegion.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/index.js +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/config.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/getRealRegion.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/index.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/isFipsRegion.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/resolveRegionConfig.js +25 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/EndpointVariant.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/EndpointVariantTag.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/PartitionHash.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/RegionHash.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getHostnameFromVariants.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getRegionInfo.js +29 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedHostname.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedPartition.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedSigningRegion.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/index.js +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/endpointsConfig/index.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/endpointsConfig/resolveCustomEndpointsConfig.d.ts +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/endpointsConfig/resolveEndpointsConfig.d.ts +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/endpointsConfig/utils/getEndpointFromRegion.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/regionConfig/config.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/regionConfig/getRealRegion.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/regionConfig/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/regionConfig/isFipsRegion.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/regionConfig/resolveRegionConfig.d.ts +25 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/EndpointVariant.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/EndpointVariantTag.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/PartitionHash.d.ts +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/RegionHash.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/getHostnameFromVariants.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/getRegionInfo.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/getResolvedHostname.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/getResolvedPartition.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/getResolvedSigningRegion.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/index.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/resolveCustomEndpointsConfig.d.ts +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/resolveEndpointsConfig.d.ts +27 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/utils/getEndpointFromRegion.d.ts +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionConfig/config.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionConfig/getRealRegion.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionConfig/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionConfig/isFipsRegion.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionConfig/resolveRegionConfig.d.ts +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariant.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariantTag.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/PartitionHash.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/RegionHash.d.ts +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/getHostnameFromVariants.d.ts +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/getRegionInfo.d.ts +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/getResolvedHostname.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/getResolvedPartition.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/getResolvedSigningRegion.d.ts +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-env/dist-cjs/fromEnv.js +24 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-env/dist-es/fromEnv.js +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-env/dist-es/index.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-env/dist-types/fromEnv.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-env/dist-types/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/fromEnv.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/config/Endpoint.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/config/EndpointConfigOptions.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/config/EndpointMode.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/config/EndpointModeConfigOptions.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/fromContainerMetadata.js +70 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/fromInstanceMetadata.js +95 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/index.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/remoteProvider/ImdsCredentials.js +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/remoteProvider/RemoteProviderInit.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/remoteProvider/httpRequest.js +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/remoteProvider/index.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/remoteProvider/retry.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/types.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/utils/getExtendedInstanceMetadataCredentials.js +22 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/utils/getInstanceMetadataEndpoint.js +23 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/utils/staticStabilityProvider.js +29 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-es/config/Endpoint.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-es/config/EndpointConfigOptions.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-es/config/EndpointMode.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-es/config/EndpointModeConfigOptions.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-es/fromContainerMetadata.js +66 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-es/fromInstanceMetadata.js +91 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-es/index.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-es/remoteProvider/ImdsCredentials.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-es/remoteProvider/RemoteProviderInit.js +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-es/remoteProvider/httpRequest.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-es/remoteProvider/index.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-es/remoteProvider/retry.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-es/types.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-es/utils/getExtendedInstanceMetadataCredentials.js +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-es/utils/getInstanceMetadataEndpoint.js +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-es/utils/staticStabilityProvider.js +25 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/config/Endpoint.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/config/EndpointConfigOptions.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/config/EndpointMode.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/config/EndpointModeConfigOptions.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/fromContainerMetadata.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/fromInstanceMetadata.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/index.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/remoteProvider/ImdsCredentials.d.ts +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/remoteProvider/RemoteProviderInit.d.ts +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/remoteProvider/httpRequest.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/remoteProvider/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/remoteProvider/retry.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/config/Endpoint.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/config/EndpointConfigOptions.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/config/EndpointMode.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/config/EndpointModeConfigOptions.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/fromContainerMetadata.d.ts +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/fromInstanceMetadata.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/index.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/remoteProvider/ImdsCredentials.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/remoteProvider/RemoteProviderInit.d.ts +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/remoteProvider/httpRequest.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/remoteProvider/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/remoteProvider/retry.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/types.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/utils/getExtendedInstanceMetadataCredentials.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/utils/getInstanceMetadataEndpoint.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/utils/staticStabilityProvider.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/types.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/utils/getExtendedInstanceMetadataCredentials.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/utils/getInstanceMetadataEndpoint.d.ts +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-imds/dist-types/utils/staticStabilityProvider.d.ts +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/fromIni.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveAssumeRoleCredentials.js +51 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveCredentialSource.js +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveProcessCredentials.js +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveProfileData.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveSsoCredentials.js +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveStaticCredentials.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveWebIdentityCredentials.js +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-es/fromIni.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-es/index.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveAssumeRoleCredentials.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveCredentialSource.js +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProcessCredentials.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProfileData.js +28 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveSsoCredentials.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveStaticCredentials.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveWebIdentityCredentials.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-types/fromIni.d.ts +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-types/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveAssumeRoleCredentials.d.ts +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveCredentialSource.d.ts +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProcessCredentials.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProfileData.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveSsoCredentials.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveStaticCredentials.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveWebIdentityCredentials.d.ts +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/fromIni.d.ts +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveAssumeRoleCredentials.d.ts +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveCredentialSource.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProcessCredentials.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProfileData.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveSsoCredentials.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveStaticCredentials.d.ts +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveWebIdentityCredentials.d.ts +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-node/dist-cjs/defaultProvider.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-node/dist-cjs/remoteProvider.js +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-node/dist-es/defaultProvider.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-node/dist-es/index.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-node/dist-es/remoteProvider.js +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-node/dist-types/defaultProvider.d.ts +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-node/dist-types/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-node/dist-types/remoteProvider.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/defaultProvider.d.ts +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/remoteProvider.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-process/dist-cjs/ProcessCredentials.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-process/dist-cjs/fromProcess.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-process/dist-cjs/getValidatedProcessCredentials.js +25 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-process/dist-cjs/resolveProcessCredentials.js +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-process/dist-es/ProcessCredentials.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-process/dist-es/fromProcess.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-process/dist-es/getValidatedProcessCredentials.js +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-process/dist-es/index.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-process/dist-es/resolveProcessCredentials.js +33 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-process/dist-types/ProcessCredentials.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-process/dist-types/fromProcess.d.ts +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-process/dist-types/getValidatedProcessCredentials.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-process/dist-types/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-process/dist-types/resolveProcessCredentials.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/ProcessCredentials.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/fromProcess.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/getValidatedProcessCredentials.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/resolveProcessCredentials.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/fromSSO.js +61 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/isSsoProfile.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/resolveSSOCredentials.js +55 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/types.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/validateSsoProfile.js +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-es/fromSSO.js +57 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-es/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-es/isSsoProfile.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-es/resolveSSOCredentials.js +51 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-es/types.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-es/validateSsoProfile.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-types/fromSSO.d.ts +59 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-types/index.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-types/isSsoProfile.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-types/resolveSSOCredentials.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/fromSSO.d.ts +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/index.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/isSsoProfile.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/resolveSSOCredentials.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/types.d.ts +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/validateSsoProfile.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-types/types.d.ts +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-sso/dist-types/validateSsoProfile.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js +28 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/index.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromTokenFile.js +23 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromWebToken.js +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/index.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromTokenFile.d.ts +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromWebToken.d.ts +126 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromTokenFile.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromWebToken.d.ts +35 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/fetch-http-handler/dist-cjs/fetch-http-handler.js +87 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/fetch-http-handler/dist-cjs/index.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/fetch-http-handler/dist-cjs/request-timeout.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/fetch-http-handler/dist-cjs/stream-collector.js +50 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/fetch-http-handler/dist-es/fetch-http-handler.js +83 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/fetch-http-handler/dist-es/index.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/fetch-http-handler/dist-es/request-timeout.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/fetch-http-handler/dist-es/stream-collector.js +45 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/fetch-http-handler/dist-types/fetch-http-handler.d.ts +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/fetch-http-handler/dist-types/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/fetch-http-handler/dist-types/request-timeout.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/fetch-http-handler/dist-types/stream-collector.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/fetch-http-handler/dist-types/ts3.4/fetch-http-handler.d.ts +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/fetch-http-handler/dist-types/ts3.4/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/fetch-http-handler/dist-types/ts3.4/request-timeout.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/fetch-http-handler/dist-types/ts3.4/stream-collector.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/hash-node/dist-cjs/index.js +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/hash-node/dist-es/index.js +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/hash-node/dist-types/index.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/hash-node/dist-types/ts3.4/index.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/invalid-dependency/dist-cjs/index.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/invalid-dependency/dist-cjs/invalidFunction.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/invalid-dependency/dist-cjs/invalidProvider.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/invalid-dependency/dist-es/index.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/invalid-dependency/dist-es/invalidFunction.js +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/invalid-dependency/dist-es/invalidProvider.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/invalid-dependency/dist-types/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/invalid-dependency/dist-types/invalidFunction.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/invalid-dependency/dist-types/invalidProvider.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/invalid-dependency/dist-types/ts3.4/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/invalid-dependency/dist-types/ts3.4/invalidFunction.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/invalid-dependency/dist-types/ts3.4/invalidProvider.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/is-array-buffer/dist-cjs/index.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/is-array-buffer/dist-es/index.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/is-array-buffer/dist-types/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/is-array-buffer/dist-types/ts3.4/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-content-length/dist-cjs/index.js +44 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-content-length/dist-es/index.js +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-content-length/dist-types/index.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-content-length/dist-types/ts3.4/index.d.ts +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/LICENSE +201 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/README.md +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-cjs/adaptors/createConfigValueProvider.js +30 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-cjs/adaptors/getEndpointFromInstructions.js +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-cjs/adaptors/index.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-cjs/adaptors/toEndpointV1.js +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-cjs/endpointMiddleware.js +25 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-cjs/getEndpointPlugin.js +22 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-cjs/index.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-cjs/resolveEndpointConfig.js +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-cjs/service-customizations/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-cjs/service-customizations/s3.js +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-cjs/types.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-es/adaptors/createConfigValueProvider.js +25 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-es/adaptors/getEndpointFromInstructions.js +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-es/adaptors/index.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-es/adaptors/toEndpointV1.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-es/endpointMiddleware.js +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-es/getEndpointPlugin.js +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-es/index.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-es/resolveEndpointConfig.js +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-es/service-customizations/index.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-es/service-customizations/s3.js +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-es/types.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/adaptors/createConfigValueProvider.d.ts +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/adaptors/getEndpointFromInstructions.d.ts +22 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/adaptors/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/adaptors/toEndpointV1.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/endpointMiddleware.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/getEndpointPlugin.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/index.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/resolveEndpointConfig.d.ts +81 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/service-customizations/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/service-customizations/s3.d.ts +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/ts3.4/adaptors/createConfigValueProvider.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromInstructions.d.ts +29 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/ts3.4/adaptors/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/ts3.4/adaptors/toEndpointV1.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/ts3.4/endpointMiddleware.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/ts3.4/getEndpointPlugin.d.ts +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/ts3.4/index.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/ts3.4/resolveEndpointConfig.d.ts +62 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/ts3.4/service-customizations/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/ts3.4/service-customizations/s3.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/ts3.4/types.d.ts +23 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/dist-types/types.d.ts +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-endpoint/package.json +59 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-host-header/dist-es/index.js +30 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-host-header/dist-types/index.d.ts +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-host-header/dist-types/ts3.4/index.d.ts +29 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-logger/dist-cjs/loggerMiddleware.js +35 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-logger/dist-es/index.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-logger/dist-es/loggerMiddleware.js +30 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-logger/dist-types/loggerMiddleware.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/loggerMiddleware.d.ts +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-recursion-detection/LICENSE +201 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-recursion-detection/README.md +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/index.js +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/index.js +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/index.d.ts +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/index.d.ts +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-recursion-detection/package.json +54 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-cjs/AdaptiveRetryStrategy.js +24 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-cjs/StandardRetryStrategy.js +95 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-cjs/configurations.js +57 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-cjs/defaultRetryQuota.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-cjs/delayDecider.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-cjs/index.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-cjs/omitRetryHeadersMiddleware.js +27 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-cjs/retryDecider.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-cjs/retryMiddleware.js +110 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-cjs/types.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-cjs/util.js +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-es/AdaptiveRetryStrategy.js +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-es/StandardRetryStrategy.js +90 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-es/configurations.js +52 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-es/defaultRetryQuota.js +27 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-es/delayDecider.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-es/index.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-es/omitRetryHeadersMiddleware.js +22 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-es/retryDecider.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-es/retryMiddleware.js +104 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-es/types.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-es/util.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/AdaptiveRetryStrategy.d.ts +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/StandardRetryStrategy.d.ts +30 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/configurations.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/defaultRetryQuota.d.ts +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/delayDecider.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/index.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/omitRetryHeadersMiddleware.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/retryDecider.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/retryMiddleware.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +29 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/configurations.d.ts +23 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/defaultRetryQuota.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/delayDecider.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/index.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/omitRetryHeadersMiddleware.d.ts +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/retryDecider.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/retryMiddleware.d.ts +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/types.d.ts +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/util.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/types.d.ts +53 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-retry/dist-types/util.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-sdk-sts/dist-cjs/index.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-sdk-sts/dist-es/index.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-sdk-sts/dist-types/index.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-sdk-sts/dist-types/ts3.4/index.d.ts +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-serde/dist-cjs/deserializerMiddleware.js +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-serde/dist-cjs/index.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-serde/dist-cjs/serdePlugin.js +26 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-serde/dist-cjs/serializerMiddleware.js +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-serde/dist-es/deserializerMiddleware.js +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-serde/dist-es/index.js +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-serde/dist-es/serdePlugin.js +22 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-serde/dist-es/serializerMiddleware.js +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-serde/dist-types/deserializerMiddleware.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-serde/dist-types/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-serde/dist-types/serdePlugin.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-serde/dist-types/serializerMiddleware.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-serde/dist-types/ts3.4/deserializerMiddleware.d.ts +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-serde/dist-types/ts3.4/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-serde/dist-types/ts3.4/serdePlugin.d.ts +27 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-serde/dist-types/ts3.4/serializerMiddleware.d.ts +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-cjs/configurations.js +108 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-cjs/index.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-cjs/middleware.js +50 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-cjs/utils/getSkewCorrectedDate.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-cjs/utils/getUpdatedSystemClockOffset.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-cjs/utils/isClockSkewed.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-es/configurations.js +103 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-es/index.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-es/middleware.js +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getSkewCorrectedDate.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getUpdatedSystemClockOffset.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-es/utils/isClockSkewed.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-types/configurations.d.ts +92 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-types/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-types/middleware.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/configurations.d.ts +68 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/middleware.d.ts +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/utils/getSkewCorrectedDate.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/utils/getUpdatedSystemClockOffset.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/utils/isClockSkewed.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-types/utils/getSkewCorrectedDate.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-types/utils/getUpdatedSystemClockOffset.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-signing/dist-types/utils/isClockSkewed.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-stack/dist-cjs/MiddlewareStack.js +225 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-stack/dist-cjs/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-stack/dist-cjs/types.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-stack/dist-es/MiddlewareStack.js +221 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-stack/dist-es/index.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-stack/dist-es/types.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-stack/dist-types/MiddlewareStack.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-stack/dist-types/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-stack/dist-types/ts3.4/MiddlewareStack.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-stack/dist-types/ts3.4/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-stack/dist-types/ts3.4/types.d.ts +47 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-stack/dist-types/types.d.ts +22 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/configurations.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/constants.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/user-agent-middleware.js +61 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-user-agent/dist-es/configurations.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-user-agent/dist-es/constants.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-user-agent/dist-es/index.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js +55 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-user-agent/dist-types/configurations.d.ts +28 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-user-agent/dist-types/constants.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/configurations.d.ts +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/constants.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/user-agent-middleware.d.ts +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/middleware-user-agent/dist-types/user-agent-middleware.d.ts +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-config-provider/dist-cjs/configLoader.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-config-provider/dist-cjs/fromEnv.js +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-config-provider/dist-cjs/fromSharedConfigFiles.js +26 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-config-provider/dist-cjs/fromStatic.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-config-provider/dist-cjs/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-config-provider/dist-es/configLoader.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-config-provider/dist-es/fromEnv.js +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-config-provider/dist-es/fromSharedConfigFiles.js +22 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-config-provider/dist-es/fromStatic.js +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-config-provider/dist-es/index.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-config-provider/dist-types/configLoader.d.ts +22 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-config-provider/dist-types/fromEnv.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-config-provider/dist-types/fromSharedConfigFiles.d.ts +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-config-provider/dist-types/fromStatic.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-config-provider/dist-types/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-config-provider/dist-types/ts3.4/configLoader.d.ts +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-config-provider/dist-types/ts3.4/fromEnv.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-config-provider/dist-types/ts3.4/fromSharedConfigFiles.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-config-provider/dist-types/ts3.4/fromStatic.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-config-provider/dist-types/ts3.4/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-cjs/constants.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-cjs/get-transformed-headers.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-cjs/index.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-cjs/node-http-handler.js +100 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-cjs/node-http2-handler.js +147 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-cjs/readable.mock.js +23 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-cjs/server.mock.js +60 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-cjs/set-connection-timeout.js +22 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-cjs/set-socket-timeout.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-cjs/stream-collector/collector.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-cjs/stream-collector/index.js +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-cjs/stream-collector/readable.mock.js +23 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-cjs/write-request-body.js +27 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-es/constants.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-es/get-transformed-headers.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-es/index.js +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-es/node-http-handler.js +95 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-es/node-http2-handler.js +142 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-es/readable.mock.js +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-es/server.mock.js +51 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-es/set-connection-timeout.js +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-es/set-socket-timeout.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-es/stream-collector/collector.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-es/stream-collector/index.js +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-es/stream-collector/readable.mock.js +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-es/write-request-body.js +23 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/constants.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/get-transformed-headers.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/node-http-handler.d.ts +35 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/node-http2-handler.d.ts +57 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/readable.mock.d.ts +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/server.mock.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/set-connection-timeout.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/set-socket-timeout.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/stream-collector/collector.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/stream-collector/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/constants.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +28 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +28 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/server.mock.d.ts +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/stream-collector/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/node-http-handler/dist-types/write-request-body.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-cjs/CredentialsProviderError.js +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-cjs/ProviderError.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-cjs/TokenProviderError.js +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-cjs/chain.js +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-cjs/fromStatic.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-cjs/index.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-cjs/memoize.js +49 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-es/CredentialsProviderError.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-es/ProviderError.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-es/TokenProviderError.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-es/chain.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-es/fromStatic.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-es/index.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-es/memoize.js +45 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-types/CredentialsProviderError.d.ts +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-types/ProviderError.d.ts +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-types/TokenProviderError.d.ts +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-types/chain.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-types/fromStatic.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-types/index.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-types/memoize.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/CredentialsProviderError.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/ProviderError.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/TokenProviderError.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/chain.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/fromStatic.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/index.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/memoize.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-cjs/Field.js +29 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-cjs/FieldPosition.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-cjs/Fields.js +23 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-cjs/httpHandler.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-cjs/httpRequest.js +49 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-cjs/httpResponse.js +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-cjs/index.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-cjs/isValidHostname.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-es/Field.js +25 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-es/FieldPosition.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-es/Fields.js +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-es/httpHandler.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-es/httpRequest.js +45 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-es/httpResponse.js +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-es/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-es/isValidHostname.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-types/Field.d.ts +54 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-types/FieldPosition.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-types/Fields.d.ts +44 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-types/httpHandler.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-types/httpRequest.d.ts +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-types/httpResponse.d.ts +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-types/index.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-types/isValidHostname.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/Field.d.ts +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/FieldPosition.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/Fields.d.ts +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/httpHandler.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/httpRequest.d.ts +26 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/httpResponse.d.ts +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/index.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/isValidHostname.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/querystring-builder/dist-cjs/index.js +25 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/querystring-builder/dist-es/index.js +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/querystring-builder/dist-types/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/querystring-builder/dist-types/ts3.4/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/querystring-parser/dist-cjs/index.js +27 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/querystring-parser/dist-es/index.js +23 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/querystring-parser/dist-types/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/querystring-parser/dist-types/ts3.4/index.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/service-error-classification/dist-cjs/constants.js +30 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/service-error-classification/dist-cjs/index.js +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/service-error-classification/dist-es/constants.js +27 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/service-error-classification/dist-es/index.js +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/service-error-classification/dist-types/constants.d.ts +26 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/service-error-classification/dist-types/index.d.ts +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/service-error-classification/dist-types/ts3.4/constants.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/service-error-classification/dist-types/ts3.4/index.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-cjs/getConfigFilepath.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-cjs/getCredentialsFilepath.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-cjs/getHomeDir.js +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-cjs/getProfileData.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-cjs/getProfileName.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-cjs/getSSOTokenFilepath.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-cjs/getSSOTokenFromFile.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-cjs/getSsoSessionData.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-cjs/index.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-cjs/loadSharedConfigFiles.js +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-cjs/loadSsoSessionData.js +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-cjs/parseIni.js +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-cjs/parseKnownFiles.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-cjs/slurpFile.js +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-cjs/types.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-es/getConfigFilepath.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-es/getCredentialsFilepath.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-es/getHomeDir.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-es/getProfileData.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-es/getProfileName.js +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-es/getSSOTokenFilepath.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-es/getSSOTokenFromFile.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-es/getSsoSessionData.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-es/index.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-es/loadSharedConfigFiles.js +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-es/loadSsoSessionData.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-es/parseIni.js +30 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-es/parseKnownFiles.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-es/slurpFile.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-es/types.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/getConfigFilepath.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/getCredentialsFilepath.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/getHomeDir.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/getProfileData.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/getProfileName.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/getSSOTokenFilepath.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/getSSOTokenFromFile.d.ts +44 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/getSsoSessionData.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/index.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/loadSharedConfigFiles.d.ts +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/loadSsoSessionData.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/parseIni.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/parseKnownFiles.d.ts +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/slurpFile.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/getConfigFilepath.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/getCredentialsFilepath.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/getHomeDir.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/getProfileData.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/getProfileName.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFilepath.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFromFile.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/getSsoSessionData.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/index.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/loadSharedConfigFiles.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/loadSsoSessionData.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/parseIni.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/parseKnownFiles.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/slurpFile.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/types.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/types.d.ts +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-cjs/SignatureV4.js +175 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-cjs/cloneRequest.js +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-cjs/constants.js +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-cjs/credentialDerivation.js +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-cjs/getCanonicalHeaders.js +24 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-cjs/getCanonicalQuery.js +31 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-cjs/getPayloadHash.js +24 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-cjs/headerUtil.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-cjs/index.js +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-cjs/moveHeadersToQuery.js +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-cjs/prepareRequest.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-cjs/suite.fixture.js +402 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-cjs/utilDate.js +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-es/SignatureV4.js +171 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-es/cloneRequest.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-es/constants.js +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-es/credentialDerivation.js +33 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-es/getCanonicalHeaders.js +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-es/getCanonicalQuery.js +27 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-es/getPayloadHash.js +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-es/headerUtil.js +26 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-es/index.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-es/moveHeadersToQuery.js +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-es/prepareRequest.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-es/suite.fixture.js +399 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-es/utilDate.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/SignatureV4.d.ts +64 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/cloneRequest.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/constants.d.ts +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/credentialDerivation.d.ts +26 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/getCanonicalHeaders.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/getCanonicalQuery.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/getPayloadHash.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/headerUtil.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/index.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/moveHeadersToQuery.d.ts +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/prepareRequest.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/suite.fixture.d.ts +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/SignatureV4.d.ts +64 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/cloneRequest.d.ts +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/constants.d.ts +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/credentialDerivation.d.ts +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/getCanonicalHeaders.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/getCanonicalQuery.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/getPayloadHash.d.ts +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/headerUtil.d.ts +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/index.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/moveHeadersToQuery.d.ts +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/prepareRequest.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/suite.fixture.d.ts +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/utilDate.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/signature-v4/dist-types/utilDate.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-cjs/NoOpLogger.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-cjs/client.js +28 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-cjs/command.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-cjs/constants.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-cjs/date-utils.js +195 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-cjs/default-error-handler.js +24 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-cjs/defaults-mode.js +30 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-cjs/emitWarningIfUnsupportedVersion.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-cjs/exceptions.js +27 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-cjs/extended-encode-uri-component.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-cjs/get-array-if-single-item.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-cjs/get-value-from-text-node.js +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-cjs/index.js +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-cjs/lazy-json.js +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-cjs/object-mapping.js +74 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-cjs/parse-utils.js +253 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-cjs/resolve-path.js +23 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-cjs/ser-utils.js +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-cjs/split-every.js +31 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-es/NoOpLogger.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-es/client.js +24 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-es/command.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-es/constants.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-es/date-utils.js +187 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-es/default-error-handler.js +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-es/defaults-mode.js +26 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-es/emitWarningIfUnsupportedVersion.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-es/exceptions.js +22 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-es/extended-encode-uri-component.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-es/get-array-if-single-item.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-es/get-value-from-text-node.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-es/index.js +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-es/lazy-json.js +33 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-es/object-mapping.js +69 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-es/parse-utils.js +230 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-es/resolve-path.js +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-es/ser-utils.js +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-es/split-every.js +27 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/NoOpLogger.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/client.d.ts +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/command.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/constants.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/date-utils.d.ts +63 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/default-error-handler.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/defaults-mode.d.ts +28 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/emitWarningIfUnsupportedVersion.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/exceptions.d.ts +29 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/extended-encode-uri-component.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/get-array-if-single-item.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/get-value-from-text-node.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/index.d.ts +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/lazy-json.d.ts +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/object-mapping.d.ts +104 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/parse-utils.d.ts +220 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/resolve-path.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/ser-utils.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/split-every.d.ts +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/NoOpLogger.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/client.d.ts +56 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/command.d.ts +29 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/constants.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/date-utils.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/default-error-handler.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/defaults-mode.d.ts +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/emitWarningIfUnsupportedVersion.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/exceptions.d.ts +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/extended-encode-uri-component.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/get-array-if-single-item.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/get-value-from-text-node.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/index.d.ts +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/lazy-json.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/object-mapping.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/parse-utils.d.ts +62 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/resolve-path.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/ser-utils.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/split-every.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/LICENSE +201 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/README.md +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-cjs/constants.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-cjs/fromSso.js +82 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-cjs/fromStatic.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-cjs/getNewSsoOidcToken.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-cjs/getSsoOidcClient.js +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-cjs/nodeProvider.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-cjs/validateTokenExpiry.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-cjs/validateTokenKey.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-cjs/writeSSOTokenToFile.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-es/constants.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-es/fromSso.js +78 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-es/fromStatic.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-es/getNewSsoOidcToken.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-es/getSsoOidcClient.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-es/index.js +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-es/nodeProvider.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-es/validateTokenExpiry.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-es/validateTokenKey.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-es/writeSSOTokenToFile.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-types/constants.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-types/fromSso.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-types/fromStatic.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-types/getNewSsoOidcToken.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-types/getSsoOidcClient.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-types/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-types/nodeProvider.d.ts +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/constants.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromSso.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromStatic.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getNewSsoOidcToken.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getSsoOidcClient.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/nodeProvider.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenExpiry.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenKey.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/writeSSOTokenToFile.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-types/validateTokenExpiry.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-types/validateTokenKey.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/dist-types/writeSSOTokenToFile.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/token-providers/package.json +63 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/abort.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/auth.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/checksum.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/client.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/command.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/credentials.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/crypto.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/dns.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/endpoint.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/eventStream.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/http.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/identity/AnonymousIdentity.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/identity/AwsCredentialIdentity.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/identity/Identity.js +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/identity/LoginIdentity.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/identity/TokenIdentity.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/identity/index.js +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/index.js +30 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/logger.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/middleware.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/pagination.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/profile.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/request.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/response.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/retry.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/serde.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/shapes.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/signature.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/stream.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/token.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/transfer.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/util.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-cjs/waiter.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/abort.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/auth.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/checksum.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/client.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/command.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/credentials.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/crypto.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/dns.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/endpoint.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/eventStream.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/http.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/identity/Identity.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/identity/index.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/index.js +27 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/logger.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/middleware.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/pagination.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/profile.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/request.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/response.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/retry.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/serde.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/shapes.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/signature.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/stream.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/token.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/transfer.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/util.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-es/waiter.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/abort.d.ts +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/auth.d.ts +47 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +59 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/client.d.ts +23 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/command.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +49 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/dns.d.ts +68 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +56 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +96 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/http.d.ts +91 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/index.d.ts +27 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/logger.d.ts +27 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +367 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +22 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/profile.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/request.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/response.d.ts +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/retry.d.ts +112 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/serde.d.ts +102 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +54 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/signature.d.ts +100 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/stream.d.ts +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/token.d.ts +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +52 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +43 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +99 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +33 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +27 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +214 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +50 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +24 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +40 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +50 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/util.d.ts +131 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/url-parser/dist-cjs/index.js +22 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/url-parser/dist-es/index.js +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/url-parser/dist-types/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/url-parser/dist-types/ts3.4/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/LICENSE +201 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/README.md +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-cjs/constants.browser.js +35 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-cjs/fromBase64.browser.js +40 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-cjs/fromBase64.js +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-cjs/index.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-cjs/toBase64.browser.js +24 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-cjs/toBase64.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-es/constants.browser.js +28 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-es/fromBase64.browser.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-es/fromBase64.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-es/index.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-es/toBase64.browser.js +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-es/toBase64.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-types/constants.browser.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-types/fromBase64.browser.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-types/fromBase64.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-types/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-types/toBase64.browser.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-types/toBase64.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-types/ts3.4/constants.browser.d.ts +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-types/ts3.4/fromBase64.browser.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-types/ts3.4/fromBase64.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-types/ts3.4/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-types/ts3.4/toBase64.browser.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/dist-types/ts3.4/toBase64.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-base64/package.json +63 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-body-length-browser/dist-cjs/calculateBodyLength.js +26 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-body-length-browser/dist-cjs/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-body-length-browser/dist-es/calculateBodyLength.js +22 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-body-length-browser/dist-es/index.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-body-length-browser/dist-types/calculateBodyLength.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-body-length-browser/dist-types/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-body-length-browser/dist-types/ts3.4/calculateBodyLength.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-body-length-browser/dist-types/ts3.4/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-body-length-node/dist-cjs/calculateBodyLength.js +26 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-body-length-node/dist-cjs/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-body-length-node/dist-es/calculateBodyLength.js +22 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-body-length-node/dist-es/index.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-body-length-node/dist-types/calculateBodyLength.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-body-length-node/dist-types/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-body-length-node/dist-types/ts3.4/calculateBodyLength.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-body-length-node/dist-types/ts3.4/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-buffer-from/dist-cjs/index.js +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-buffer-from/dist-es/index.js +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-buffer-from/dist-types/index.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-buffer-from/dist-types/ts3.4/index.d.ts +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-config-provider/LICENSE +201 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-config-provider/README.md +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-config-provider/dist-cjs/booleanSelector.js +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-config-provider/dist-cjs/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-config-provider/dist-es/booleanSelector.js +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-config-provider/dist-es/index.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-config-provider/dist-types/booleanSelector.d.ts +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-config-provider/dist-types/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-config-provider/dist-types/ts3.4/booleanSelector.d.ts +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-config-provider/dist-types/ts3.4/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-config-provider/package.json +55 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-browser/LICENSE +201 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-browser/README.md +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-browser/dist-cjs/constants.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-browser/dist-cjs/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.js +33 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.native.js +23 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-browser/dist-es/constants.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-browser/dist-es/index.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.js +27 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.native.js +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-browser/dist-types/constants.d.ts +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-browser/dist-types/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.d.ts +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.native.d.ts +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-browser/dist-types/ts3.4/constants.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-browser/dist-types/ts3.4/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.native.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-browser/package.json +59 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-node/LICENSE +201 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-node/README.md +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-node/dist-cjs/constants.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-node/dist-cjs/defaultsModeConfig.js +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-node/dist-cjs/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-node/dist-cjs/resolveDefaultsModeConfig.js +57 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-node/dist-es/constants.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-node/dist-es/defaultsModeConfig.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-node/dist-es/index.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-node/dist-es/resolveDefaultsModeConfig.js +52 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-node/dist-types/constants.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-node/dist-types/defaultsModeConfig.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-node/dist-types/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-node/dist-types/resolveDefaultsModeConfig.d.ts +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-node/dist-types/ts3.4/constants.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-node/dist-types/ts3.4/defaultsModeConfig.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-node/dist-types/ts3.4/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-node/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-defaults-mode-node/package.json +58 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/LICENSE +201 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/README.md +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/debug/debugId.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/debug/index.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/debug/toDebugString.js +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/index.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/isVirtualHostableS3Bucket.js +29 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/parseArn.js +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partition.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partitions.json +181 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/booleanEquals.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/getAttr.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/getAttrPathList.js +29 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/index.js +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/isIpAddress.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/isSet.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/isValidHostLabel.js +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/not.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/parseURL.js +55 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/stringEquals.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/substring.js +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/uriEncode.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/resolveEndpoint.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/EndpointError.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/EndpointRuleObject.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/ErrorRuleObject.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/RuleSetObject.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/TreeRuleObject.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/index.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/shared.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/callFunction.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/evaluateCondition.js +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/evaluateConditions.js +27 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/evaluateEndpointRule.js +32 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/evaluateErrorRule.js +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/evaluateExpression.js +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/evaluateRules.js +31 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/evaluateTemplate.js +40 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/evaluateTreeRule.js +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/getEndpointHeaders.js +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/getEndpointProperties.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/getEndpointProperty.js +25 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/getEndpointUrl.js +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/getReferenceValue.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/debug/debugId.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/debug/index.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/debug/toDebugString.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/index.js +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/index.js +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/isVirtualHostableS3Bucket.js +25 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/parseArn.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partition.js +31 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partitions.json +181 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/lib/booleanEquals.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/lib/getAttr.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/lib/getAttrPathList.js +25 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/lib/index.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/lib/isIpAddress.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/lib/isSet.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/lib/isValidHostLabel.js +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/lib/not.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/lib/parseURL.js +51 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/lib/stringEquals.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/lib/substring.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/lib/uriEncode.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/resolveEndpoint.js +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointError.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointRuleObject.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/types/ErrorRuleObject.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/types/RuleSetObject.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/types/TreeRuleObject.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/types/index.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/types/shared.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/utils/callFunction.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/utils/evaluateCondition.js +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/utils/evaluateConditions.js +22 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/utils/evaluateEndpointRule.js +27 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/utils/evaluateErrorRule.js +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/utils/evaluateExpression.js +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/utils/evaluateRules.js +27 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/utils/evaluateTemplate.js +36 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/utils/evaluateTreeRule.js +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/utils/getEndpointHeaders.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/utils/getEndpointProperties.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/utils/getEndpointProperty.js +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/utils/getEndpointUrl.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/utils/getReferenceValue.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-es/utils/index.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/debug/debugId.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/debug/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/debug/toDebugString.d.ts +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/isVirtualHostableS3Bucket.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/parseArn.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/partition.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/lib/booleanEquals.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/lib/getAttr.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/lib/getAttrPathList.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/lib/index.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/lib/isIpAddress.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/lib/isSet.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/lib/isValidHostLabel.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/lib/not.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/lib/parseURL.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/lib/stringEquals.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/lib/substring.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/lib/uriEncode.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/resolveEndpoint.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/debug/debugId.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/debug/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/debug/toDebugString.d.ts +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/isVirtualHostableS3Bucket.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/parseArn.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/partition.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/booleanEquals.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/getAttr.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/getAttrPathList.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/index.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/isSet.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/isValidHostLabel.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/not.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/parseURL.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/stringEquals.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/substring.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/uriEncode.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveEndpoint.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointError.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointRuleObject.d.ts +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/ErrorRuleObject.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/RuleSetObject.d.ts +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/TreeRuleObject.d.ts +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/index.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/shared.d.ts +29 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/callFunction.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/evaluateCondition.d.ts +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/evaluateConditions.d.ts +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/evaluateEndpointRule.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/evaluateErrorRule.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/evaluateExpression.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/evaluateRules.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/evaluateTemplate.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/evaluateTreeRule.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/getEndpointHeaders.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/getEndpointProperties.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/getEndpointProperty.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/getEndpointUrl.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/getReferenceValue.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointError.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/types/RuleSetObject.d.ts +19 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/types/TreeRuleObject.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/types/index.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/types/shared.d.ts +25 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/utils/callFunction.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/utils/evaluateCondition.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/utils/evaluateConditions.d.ts +8 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/utils/evaluateEndpointRule.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/utils/evaluateErrorRule.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/utils/evaluateExpression.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/utils/evaluateRules.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/utils/evaluateTemplate.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/utils/evaluateTreeRule.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/utils/getEndpointHeaders.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/utils/getEndpointProperties.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/utils/getEndpointProperty.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/utils/getEndpointUrl.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/utils/getReferenceValue.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/dist-types/utils/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-endpoints/package.json +54 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-hex-encoding/dist-cjs/index.js +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-hex-encoding/dist-es/index.js +33 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-hex-encoding/dist-types/index.d.ts +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-hex-encoding/dist-types/ts3.4/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-locate-window/dist-cjs/index.js +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-locate-window/dist-es/index.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-locate-window/dist-types/index.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-locate-window/dist-types/ts3.4/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-middleware/LICENSE +201 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-middleware/README.md +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-middleware/dist-cjs/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-middleware/dist-cjs/normalizeProvider.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-middleware/dist-es/index.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-middleware/dist-es/normalizeProvider.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-middleware/dist-types/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-middleware/dist-types/normalizeProvider.d.ts +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-middleware/dist-types/ts3.4/index.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-middleware/dist-types/ts3.4/normalizeProvider.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-middleware/package.json +59 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/LICENSE +201 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/README.md +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-cjs/AdaptiveRetryStrategy.js +28 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-cjs/DefaultRateLimiter.js +104 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-cjs/StandardRetryStrategy.js +48 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-cjs/config.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-cjs/constants.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-cjs/defaultRetryBackoffStrategy.js +18 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-cjs/defaultRetryToken.js +55 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-cjs/index.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-cjs/types.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-es/AdaptiveRetryStrategy.js +24 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-es/DefaultRateLimiter.js +99 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-es/StandardRetryStrategy.js +44 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-es/config.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-es/constants.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-es/defaultRetryBackoffStrategy.js +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-es/defaultRetryToken.js +50 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-es/index.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-es/types.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-types/AdaptiveRetryStrategy.d.ts +29 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-types/DefaultRateLimiter.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-types/StandardRetryStrategy.d.ts +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-types/config.d.ts +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-types/constants.d.ts +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-types/defaultRetryBackoffStrategy.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-types/defaultRetryToken.d.ts +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-types/index.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +27 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-types/ts3.4/DefaultRateLimiter.d.ts +39 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +23 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-types/ts3.4/config.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-types/ts3.4/constants.d.ts +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-types/ts3.4/defaultRetryBackoffStrategy.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-types/ts3.4/defaultRetryToken.d.ts +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-types/ts3.4/index.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-types/ts3.4/types.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/dist-types/types.d.ts +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-retry/package.json +60 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-uri-escape/dist-cjs/escape-uri-path.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-uri-escape/dist-cjs/escape-uri.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-uri-escape/dist-cjs/index.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-uri-escape/dist-es/escape-uri-path.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-uri-escape/dist-es/escape-uri.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-uri-escape/dist-es/index.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-uri-escape/dist-types/escape-uri-path.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-uri-escape/dist-types/escape-uri.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-uri-escape/dist-types/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-uri-escape/dist-types/ts3.4/escape-uri-path.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-uri-escape/dist-types/ts3.4/escape-uri.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-uri-escape/dist-types/ts3.4/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/configurations.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.js +22 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.native.js +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-user-agent-browser/dist-es/configurations.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.js +16 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.native.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-user-agent-browser/dist-types/configurations.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.native.d.ts +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/configurations.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.native.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/is-crt-available.js +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-user-agent-node/dist-es/index.js +37 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-user-agent-node/dist-es/is-crt-available.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-user-agent-node/dist-types/is-crt-available.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/index.d.ts +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/is-crt-available.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/LICENSE +201 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/README.md +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-cjs/fromUtf8.browser.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-cjs/fromUtf8.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-cjs/index.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-cjs/toUint8Array.js +14 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-cjs/toUtf8.browser.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-cjs/toUtf8.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-es/fromUtf8.browser.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-es/fromUtf8.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-es/index.js +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-es/toUint8Array.js +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-es/toUtf8.browser.js +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-es/toUtf8.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-types/fromUtf8.browser.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-types/fromUtf8.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-types/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-types/toUint8Array.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-types/toUtf8.browser.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-types/toUtf8.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-types/ts3.4/fromUtf8.browser.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-types/ts3.4/index.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/dist-types/ts3.4/toUtf8.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8/package.json +62 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8-browser/dist-cjs/index.js +9 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8-browser/dist-cjs/pureJs.js +47 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8-browser/dist-cjs/whatwgEncodingApi.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8-browser/dist-es/index.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8-browser/dist-es/pureJs.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8-browser/dist-es/whatwgEncodingApi.js +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8-browser/dist-types/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8-browser/dist-types/pureJs.d.ts +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8-browser/dist-types/ts3.4/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8-browser/dist-types/ts3.4/pureJs.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8-browser/dist-types/ts3.4/whatwgEncodingApi.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-utf8-browser/dist-types/whatwgEncodingApi.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-cjs/createWaiter.js +27 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-cjs/index.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-cjs/poller.js +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-cjs/utils/index.js +5 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-cjs/utils/sleep.js +7 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-cjs/utils/validate.js +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-cjs/waiter.js +38 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-es/createWaiter.js +23 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-es/index.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-es/poller.js +33 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-es/utils/index.js +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-es/utils/sleep.js +3 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-es/utils/validate.js +17 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-es/waiter.js +34 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-types/createWaiter.d.ts +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-types/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-types/poller.d.ts +10 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/createWaiter.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/poller.d.ts +13 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/utils/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/utils/sleep.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/utils/validate.d.ts +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/waiter.d.ts +20 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-types/utils/index.d.ts +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-types/utils/sleep.d.ts +1 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-types/utils/validate.d.ts +6 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/@aws-sdk/util-waiter/dist-types/waiter.d.ts +33 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/fast-xml-parser/CHANGELOG.md +504 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/fast-xml-parser/src/cli/cli.js +93 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/fast-xml-parser/src/cli/man.js +12 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/fast-xml-parser/src/cli/read.js +92 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/fast-xml-parser/src/fxp.d.ts +97 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/fast-xml-parser/src/fxp.js +11 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/fast-xml-parser/src/xmlbuilder/json2xml.js +258 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/fast-xml-parser/src/xmlbuilder/orderedJs2Xml.js +109 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/fast-xml-parser/src/xmlbuilder/prettifyJs2Xml.js +0 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/fast-xml-parser/src/xmlparser/DocTypeReader.js +117 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/fast-xml-parser/src/xmlparser/OptionsBuilder.js +42 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/fast-xml-parser/src/xmlparser/OrderedObjParser.js +561 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/fast-xml-parser/src/xmlparser/XMLParser.js +58 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/fast-xml-parser/src/xmlparser/node2json.js +101 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/fast-xml-parser/src/xmlparser/xmlNode.js +23 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/glob/node_modules/brace-expansion/.github/FUNDING.yml +2 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/glob/node_modules/brace-expansion/LICENSE +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/glob/node_modules/brace-expansion/README.md +135 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/glob/node_modules/brace-expansion/index.js +203 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/glob/node_modules/brace-expansion/package.json +46 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/glob/node_modules/minimatch/LICENSE +15 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/glob/node_modules/minimatch/README.md +259 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/glob/node_modules/minimatch/lib/path.js +4 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/glob/node_modules/minimatch/minimatch.js +944 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/glob/node_modules/minimatch/package.json +35 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/minimatch/README.md +22 -1
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/minimatch/minimatch.js +93 -69
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/minimatch/package.json +6 -3
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/strnum/.vscode/launch.json +25 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/strnum/LICENSE +21 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/strnum/README.md +86 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/strnum/package.json +24 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/strnum/strnum.js +124 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/strnum/strnum.test.js +150 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/node_modules/tslib/SECURITY.md +41 -0
- package/lib/internal-lambdas/sourceWatcherLambda/src/package-lock.json +1820 -0
- package/lib/newman-runner.js +3 -3
- package/lib/pipeline-s3-sync.js +1 -1
- package/lib/slack-integration/index.d.ts +2 -0
- package/lib/slack-integration/index.js +18 -0
- package/lib/slack-integration/slack-integrated-manual-approval.d.ts +70 -0
- package/lib/slack-integration/slack-integrated-manual-approval.js +51 -0
- package/lib/slack-integration/slack-subscription.d.ts +24 -0
- package/lib/slack-integration/slack-subscription.js +27 -0
- package/lib/source-watcher.js +1 -1
- package/package.json +7 -8
|
@@ -0,0 +1,4307 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.deserializeAws_json1_1GetActionTypeCommand = exports.deserializeAws_json1_1EnableStageTransitionCommand = exports.deserializeAws_json1_1DisableStageTransitionCommand = exports.deserializeAws_json1_1DeregisterWebhookWithThirdPartyCommand = exports.deserializeAws_json1_1DeleteWebhookCommand = exports.deserializeAws_json1_1DeletePipelineCommand = exports.deserializeAws_json1_1DeleteCustomActionTypeCommand = exports.deserializeAws_json1_1CreatePipelineCommand = exports.deserializeAws_json1_1CreateCustomActionTypeCommand = exports.deserializeAws_json1_1AcknowledgeThirdPartyJobCommand = exports.deserializeAws_json1_1AcknowledgeJobCommand = exports.serializeAws_json1_1UpdatePipelineCommand = exports.serializeAws_json1_1UpdateActionTypeCommand = exports.serializeAws_json1_1UntagResourceCommand = exports.serializeAws_json1_1TagResourceCommand = exports.serializeAws_json1_1StopPipelineExecutionCommand = exports.serializeAws_json1_1StartPipelineExecutionCommand = exports.serializeAws_json1_1RetryStageExecutionCommand = exports.serializeAws_json1_1RegisterWebhookWithThirdPartyCommand = exports.serializeAws_json1_1PutWebhookCommand = exports.serializeAws_json1_1PutThirdPartyJobSuccessResultCommand = exports.serializeAws_json1_1PutThirdPartyJobFailureResultCommand = exports.serializeAws_json1_1PutJobSuccessResultCommand = exports.serializeAws_json1_1PutJobFailureResultCommand = exports.serializeAws_json1_1PutApprovalResultCommand = exports.serializeAws_json1_1PutActionRevisionCommand = exports.serializeAws_json1_1PollForThirdPartyJobsCommand = exports.serializeAws_json1_1PollForJobsCommand = exports.serializeAws_json1_1ListWebhooksCommand = exports.serializeAws_json1_1ListTagsForResourceCommand = exports.serializeAws_json1_1ListPipelinesCommand = exports.serializeAws_json1_1ListPipelineExecutionsCommand = exports.serializeAws_json1_1ListActionTypesCommand = exports.serializeAws_json1_1ListActionExecutionsCommand = exports.serializeAws_json1_1GetThirdPartyJobDetailsCommand = exports.serializeAws_json1_1GetPipelineStateCommand = exports.serializeAws_json1_1GetPipelineExecutionCommand = exports.serializeAws_json1_1GetPipelineCommand = exports.serializeAws_json1_1GetJobDetailsCommand = exports.serializeAws_json1_1GetActionTypeCommand = exports.serializeAws_json1_1EnableStageTransitionCommand = exports.serializeAws_json1_1DisableStageTransitionCommand = exports.serializeAws_json1_1DeregisterWebhookWithThirdPartyCommand = exports.serializeAws_json1_1DeleteWebhookCommand = exports.serializeAws_json1_1DeletePipelineCommand = exports.serializeAws_json1_1DeleteCustomActionTypeCommand = exports.serializeAws_json1_1CreatePipelineCommand = exports.serializeAws_json1_1CreateCustomActionTypeCommand = exports.serializeAws_json1_1AcknowledgeThirdPartyJobCommand = exports.serializeAws_json1_1AcknowledgeJobCommand = void 0;
|
|
4
|
+
exports.deserializeAws_json1_1UpdatePipelineCommand = exports.deserializeAws_json1_1UpdateActionTypeCommand = exports.deserializeAws_json1_1UntagResourceCommand = exports.deserializeAws_json1_1TagResourceCommand = exports.deserializeAws_json1_1StopPipelineExecutionCommand = exports.deserializeAws_json1_1StartPipelineExecutionCommand = exports.deserializeAws_json1_1RetryStageExecutionCommand = exports.deserializeAws_json1_1RegisterWebhookWithThirdPartyCommand = exports.deserializeAws_json1_1PutWebhookCommand = exports.deserializeAws_json1_1PutThirdPartyJobSuccessResultCommand = exports.deserializeAws_json1_1PutThirdPartyJobFailureResultCommand = exports.deserializeAws_json1_1PutJobSuccessResultCommand = exports.deserializeAws_json1_1PutJobFailureResultCommand = exports.deserializeAws_json1_1PutApprovalResultCommand = exports.deserializeAws_json1_1PutActionRevisionCommand = exports.deserializeAws_json1_1PollForThirdPartyJobsCommand = exports.deserializeAws_json1_1PollForJobsCommand = exports.deserializeAws_json1_1ListWebhooksCommand = exports.deserializeAws_json1_1ListTagsForResourceCommand = exports.deserializeAws_json1_1ListPipelinesCommand = exports.deserializeAws_json1_1ListPipelineExecutionsCommand = exports.deserializeAws_json1_1ListActionTypesCommand = exports.deserializeAws_json1_1ListActionExecutionsCommand = exports.deserializeAws_json1_1GetThirdPartyJobDetailsCommand = exports.deserializeAws_json1_1GetPipelineStateCommand = exports.deserializeAws_json1_1GetPipelineExecutionCommand = exports.deserializeAws_json1_1GetPipelineCommand = exports.deserializeAws_json1_1GetJobDetailsCommand = void 0;
|
|
5
|
+
const protocol_http_1 = require("@aws-sdk/protocol-http");
|
|
6
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
const uuid_1 = require("uuid");
|
|
8
|
+
const CodePipelineServiceException_1 = require("../models/CodePipelineServiceException");
|
|
9
|
+
const models_0_1 = require("../models/models_0");
|
|
10
|
+
const serializeAws_json1_1AcknowledgeJobCommand = async (input, context) => {
|
|
11
|
+
const headers = {
|
|
12
|
+
"content-type": "application/x-amz-json-1.1",
|
|
13
|
+
"x-amz-target": "CodePipeline_20150709.AcknowledgeJob",
|
|
14
|
+
};
|
|
15
|
+
let body;
|
|
16
|
+
body = JSON.stringify(serializeAws_json1_1AcknowledgeJobInput(input, context));
|
|
17
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
18
|
+
};
|
|
19
|
+
exports.serializeAws_json1_1AcknowledgeJobCommand = serializeAws_json1_1AcknowledgeJobCommand;
|
|
20
|
+
const serializeAws_json1_1AcknowledgeThirdPartyJobCommand = async (input, context) => {
|
|
21
|
+
const headers = {
|
|
22
|
+
"content-type": "application/x-amz-json-1.1",
|
|
23
|
+
"x-amz-target": "CodePipeline_20150709.AcknowledgeThirdPartyJob",
|
|
24
|
+
};
|
|
25
|
+
let body;
|
|
26
|
+
body = JSON.stringify(serializeAws_json1_1AcknowledgeThirdPartyJobInput(input, context));
|
|
27
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
28
|
+
};
|
|
29
|
+
exports.serializeAws_json1_1AcknowledgeThirdPartyJobCommand = serializeAws_json1_1AcknowledgeThirdPartyJobCommand;
|
|
30
|
+
const serializeAws_json1_1CreateCustomActionTypeCommand = async (input, context) => {
|
|
31
|
+
const headers = {
|
|
32
|
+
"content-type": "application/x-amz-json-1.1",
|
|
33
|
+
"x-amz-target": "CodePipeline_20150709.CreateCustomActionType",
|
|
34
|
+
};
|
|
35
|
+
let body;
|
|
36
|
+
body = JSON.stringify(serializeAws_json1_1CreateCustomActionTypeInput(input, context));
|
|
37
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
38
|
+
};
|
|
39
|
+
exports.serializeAws_json1_1CreateCustomActionTypeCommand = serializeAws_json1_1CreateCustomActionTypeCommand;
|
|
40
|
+
const serializeAws_json1_1CreatePipelineCommand = async (input, context) => {
|
|
41
|
+
const headers = {
|
|
42
|
+
"content-type": "application/x-amz-json-1.1",
|
|
43
|
+
"x-amz-target": "CodePipeline_20150709.CreatePipeline",
|
|
44
|
+
};
|
|
45
|
+
let body;
|
|
46
|
+
body = JSON.stringify(serializeAws_json1_1CreatePipelineInput(input, context));
|
|
47
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
48
|
+
};
|
|
49
|
+
exports.serializeAws_json1_1CreatePipelineCommand = serializeAws_json1_1CreatePipelineCommand;
|
|
50
|
+
const serializeAws_json1_1DeleteCustomActionTypeCommand = async (input, context) => {
|
|
51
|
+
const headers = {
|
|
52
|
+
"content-type": "application/x-amz-json-1.1",
|
|
53
|
+
"x-amz-target": "CodePipeline_20150709.DeleteCustomActionType",
|
|
54
|
+
};
|
|
55
|
+
let body;
|
|
56
|
+
body = JSON.stringify(serializeAws_json1_1DeleteCustomActionTypeInput(input, context));
|
|
57
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
58
|
+
};
|
|
59
|
+
exports.serializeAws_json1_1DeleteCustomActionTypeCommand = serializeAws_json1_1DeleteCustomActionTypeCommand;
|
|
60
|
+
const serializeAws_json1_1DeletePipelineCommand = async (input, context) => {
|
|
61
|
+
const headers = {
|
|
62
|
+
"content-type": "application/x-amz-json-1.1",
|
|
63
|
+
"x-amz-target": "CodePipeline_20150709.DeletePipeline",
|
|
64
|
+
};
|
|
65
|
+
let body;
|
|
66
|
+
body = JSON.stringify(serializeAws_json1_1DeletePipelineInput(input, context));
|
|
67
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
68
|
+
};
|
|
69
|
+
exports.serializeAws_json1_1DeletePipelineCommand = serializeAws_json1_1DeletePipelineCommand;
|
|
70
|
+
const serializeAws_json1_1DeleteWebhookCommand = async (input, context) => {
|
|
71
|
+
const headers = {
|
|
72
|
+
"content-type": "application/x-amz-json-1.1",
|
|
73
|
+
"x-amz-target": "CodePipeline_20150709.DeleteWebhook",
|
|
74
|
+
};
|
|
75
|
+
let body;
|
|
76
|
+
body = JSON.stringify(serializeAws_json1_1DeleteWebhookInput(input, context));
|
|
77
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
78
|
+
};
|
|
79
|
+
exports.serializeAws_json1_1DeleteWebhookCommand = serializeAws_json1_1DeleteWebhookCommand;
|
|
80
|
+
const serializeAws_json1_1DeregisterWebhookWithThirdPartyCommand = async (input, context) => {
|
|
81
|
+
const headers = {
|
|
82
|
+
"content-type": "application/x-amz-json-1.1",
|
|
83
|
+
"x-amz-target": "CodePipeline_20150709.DeregisterWebhookWithThirdParty",
|
|
84
|
+
};
|
|
85
|
+
let body;
|
|
86
|
+
body = JSON.stringify(serializeAws_json1_1DeregisterWebhookWithThirdPartyInput(input, context));
|
|
87
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
88
|
+
};
|
|
89
|
+
exports.serializeAws_json1_1DeregisterWebhookWithThirdPartyCommand = serializeAws_json1_1DeregisterWebhookWithThirdPartyCommand;
|
|
90
|
+
const serializeAws_json1_1DisableStageTransitionCommand = async (input, context) => {
|
|
91
|
+
const headers = {
|
|
92
|
+
"content-type": "application/x-amz-json-1.1",
|
|
93
|
+
"x-amz-target": "CodePipeline_20150709.DisableStageTransition",
|
|
94
|
+
};
|
|
95
|
+
let body;
|
|
96
|
+
body = JSON.stringify(serializeAws_json1_1DisableStageTransitionInput(input, context));
|
|
97
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
98
|
+
};
|
|
99
|
+
exports.serializeAws_json1_1DisableStageTransitionCommand = serializeAws_json1_1DisableStageTransitionCommand;
|
|
100
|
+
const serializeAws_json1_1EnableStageTransitionCommand = async (input, context) => {
|
|
101
|
+
const headers = {
|
|
102
|
+
"content-type": "application/x-amz-json-1.1",
|
|
103
|
+
"x-amz-target": "CodePipeline_20150709.EnableStageTransition",
|
|
104
|
+
};
|
|
105
|
+
let body;
|
|
106
|
+
body = JSON.stringify(serializeAws_json1_1EnableStageTransitionInput(input, context));
|
|
107
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
108
|
+
};
|
|
109
|
+
exports.serializeAws_json1_1EnableStageTransitionCommand = serializeAws_json1_1EnableStageTransitionCommand;
|
|
110
|
+
const serializeAws_json1_1GetActionTypeCommand = async (input, context) => {
|
|
111
|
+
const headers = {
|
|
112
|
+
"content-type": "application/x-amz-json-1.1",
|
|
113
|
+
"x-amz-target": "CodePipeline_20150709.GetActionType",
|
|
114
|
+
};
|
|
115
|
+
let body;
|
|
116
|
+
body = JSON.stringify(serializeAws_json1_1GetActionTypeInput(input, context));
|
|
117
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
118
|
+
};
|
|
119
|
+
exports.serializeAws_json1_1GetActionTypeCommand = serializeAws_json1_1GetActionTypeCommand;
|
|
120
|
+
const serializeAws_json1_1GetJobDetailsCommand = async (input, context) => {
|
|
121
|
+
const headers = {
|
|
122
|
+
"content-type": "application/x-amz-json-1.1",
|
|
123
|
+
"x-amz-target": "CodePipeline_20150709.GetJobDetails",
|
|
124
|
+
};
|
|
125
|
+
let body;
|
|
126
|
+
body = JSON.stringify(serializeAws_json1_1GetJobDetailsInput(input, context));
|
|
127
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
128
|
+
};
|
|
129
|
+
exports.serializeAws_json1_1GetJobDetailsCommand = serializeAws_json1_1GetJobDetailsCommand;
|
|
130
|
+
const serializeAws_json1_1GetPipelineCommand = async (input, context) => {
|
|
131
|
+
const headers = {
|
|
132
|
+
"content-type": "application/x-amz-json-1.1",
|
|
133
|
+
"x-amz-target": "CodePipeline_20150709.GetPipeline",
|
|
134
|
+
};
|
|
135
|
+
let body;
|
|
136
|
+
body = JSON.stringify(serializeAws_json1_1GetPipelineInput(input, context));
|
|
137
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
138
|
+
};
|
|
139
|
+
exports.serializeAws_json1_1GetPipelineCommand = serializeAws_json1_1GetPipelineCommand;
|
|
140
|
+
const serializeAws_json1_1GetPipelineExecutionCommand = async (input, context) => {
|
|
141
|
+
const headers = {
|
|
142
|
+
"content-type": "application/x-amz-json-1.1",
|
|
143
|
+
"x-amz-target": "CodePipeline_20150709.GetPipelineExecution",
|
|
144
|
+
};
|
|
145
|
+
let body;
|
|
146
|
+
body = JSON.stringify(serializeAws_json1_1GetPipelineExecutionInput(input, context));
|
|
147
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
148
|
+
};
|
|
149
|
+
exports.serializeAws_json1_1GetPipelineExecutionCommand = serializeAws_json1_1GetPipelineExecutionCommand;
|
|
150
|
+
const serializeAws_json1_1GetPipelineStateCommand = async (input, context) => {
|
|
151
|
+
const headers = {
|
|
152
|
+
"content-type": "application/x-amz-json-1.1",
|
|
153
|
+
"x-amz-target": "CodePipeline_20150709.GetPipelineState",
|
|
154
|
+
};
|
|
155
|
+
let body;
|
|
156
|
+
body = JSON.stringify(serializeAws_json1_1GetPipelineStateInput(input, context));
|
|
157
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
158
|
+
};
|
|
159
|
+
exports.serializeAws_json1_1GetPipelineStateCommand = serializeAws_json1_1GetPipelineStateCommand;
|
|
160
|
+
const serializeAws_json1_1GetThirdPartyJobDetailsCommand = async (input, context) => {
|
|
161
|
+
const headers = {
|
|
162
|
+
"content-type": "application/x-amz-json-1.1",
|
|
163
|
+
"x-amz-target": "CodePipeline_20150709.GetThirdPartyJobDetails",
|
|
164
|
+
};
|
|
165
|
+
let body;
|
|
166
|
+
body = JSON.stringify(serializeAws_json1_1GetThirdPartyJobDetailsInput(input, context));
|
|
167
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
168
|
+
};
|
|
169
|
+
exports.serializeAws_json1_1GetThirdPartyJobDetailsCommand = serializeAws_json1_1GetThirdPartyJobDetailsCommand;
|
|
170
|
+
const serializeAws_json1_1ListActionExecutionsCommand = async (input, context) => {
|
|
171
|
+
const headers = {
|
|
172
|
+
"content-type": "application/x-amz-json-1.1",
|
|
173
|
+
"x-amz-target": "CodePipeline_20150709.ListActionExecutions",
|
|
174
|
+
};
|
|
175
|
+
let body;
|
|
176
|
+
body = JSON.stringify(serializeAws_json1_1ListActionExecutionsInput(input, context));
|
|
177
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
178
|
+
};
|
|
179
|
+
exports.serializeAws_json1_1ListActionExecutionsCommand = serializeAws_json1_1ListActionExecutionsCommand;
|
|
180
|
+
const serializeAws_json1_1ListActionTypesCommand = async (input, context) => {
|
|
181
|
+
const headers = {
|
|
182
|
+
"content-type": "application/x-amz-json-1.1",
|
|
183
|
+
"x-amz-target": "CodePipeline_20150709.ListActionTypes",
|
|
184
|
+
};
|
|
185
|
+
let body;
|
|
186
|
+
body = JSON.stringify(serializeAws_json1_1ListActionTypesInput(input, context));
|
|
187
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
188
|
+
};
|
|
189
|
+
exports.serializeAws_json1_1ListActionTypesCommand = serializeAws_json1_1ListActionTypesCommand;
|
|
190
|
+
const serializeAws_json1_1ListPipelineExecutionsCommand = async (input, context) => {
|
|
191
|
+
const headers = {
|
|
192
|
+
"content-type": "application/x-amz-json-1.1",
|
|
193
|
+
"x-amz-target": "CodePipeline_20150709.ListPipelineExecutions",
|
|
194
|
+
};
|
|
195
|
+
let body;
|
|
196
|
+
body = JSON.stringify(serializeAws_json1_1ListPipelineExecutionsInput(input, context));
|
|
197
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
198
|
+
};
|
|
199
|
+
exports.serializeAws_json1_1ListPipelineExecutionsCommand = serializeAws_json1_1ListPipelineExecutionsCommand;
|
|
200
|
+
const serializeAws_json1_1ListPipelinesCommand = async (input, context) => {
|
|
201
|
+
const headers = {
|
|
202
|
+
"content-type": "application/x-amz-json-1.1",
|
|
203
|
+
"x-amz-target": "CodePipeline_20150709.ListPipelines",
|
|
204
|
+
};
|
|
205
|
+
let body;
|
|
206
|
+
body = JSON.stringify(serializeAws_json1_1ListPipelinesInput(input, context));
|
|
207
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
208
|
+
};
|
|
209
|
+
exports.serializeAws_json1_1ListPipelinesCommand = serializeAws_json1_1ListPipelinesCommand;
|
|
210
|
+
const serializeAws_json1_1ListTagsForResourceCommand = async (input, context) => {
|
|
211
|
+
const headers = {
|
|
212
|
+
"content-type": "application/x-amz-json-1.1",
|
|
213
|
+
"x-amz-target": "CodePipeline_20150709.ListTagsForResource",
|
|
214
|
+
};
|
|
215
|
+
let body;
|
|
216
|
+
body = JSON.stringify(serializeAws_json1_1ListTagsForResourceInput(input, context));
|
|
217
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
218
|
+
};
|
|
219
|
+
exports.serializeAws_json1_1ListTagsForResourceCommand = serializeAws_json1_1ListTagsForResourceCommand;
|
|
220
|
+
const serializeAws_json1_1ListWebhooksCommand = async (input, context) => {
|
|
221
|
+
const headers = {
|
|
222
|
+
"content-type": "application/x-amz-json-1.1",
|
|
223
|
+
"x-amz-target": "CodePipeline_20150709.ListWebhooks",
|
|
224
|
+
};
|
|
225
|
+
let body;
|
|
226
|
+
body = JSON.stringify(serializeAws_json1_1ListWebhooksInput(input, context));
|
|
227
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
228
|
+
};
|
|
229
|
+
exports.serializeAws_json1_1ListWebhooksCommand = serializeAws_json1_1ListWebhooksCommand;
|
|
230
|
+
const serializeAws_json1_1PollForJobsCommand = async (input, context) => {
|
|
231
|
+
const headers = {
|
|
232
|
+
"content-type": "application/x-amz-json-1.1",
|
|
233
|
+
"x-amz-target": "CodePipeline_20150709.PollForJobs",
|
|
234
|
+
};
|
|
235
|
+
let body;
|
|
236
|
+
body = JSON.stringify(serializeAws_json1_1PollForJobsInput(input, context));
|
|
237
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
238
|
+
};
|
|
239
|
+
exports.serializeAws_json1_1PollForJobsCommand = serializeAws_json1_1PollForJobsCommand;
|
|
240
|
+
const serializeAws_json1_1PollForThirdPartyJobsCommand = async (input, context) => {
|
|
241
|
+
const headers = {
|
|
242
|
+
"content-type": "application/x-amz-json-1.1",
|
|
243
|
+
"x-amz-target": "CodePipeline_20150709.PollForThirdPartyJobs",
|
|
244
|
+
};
|
|
245
|
+
let body;
|
|
246
|
+
body = JSON.stringify(serializeAws_json1_1PollForThirdPartyJobsInput(input, context));
|
|
247
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
248
|
+
};
|
|
249
|
+
exports.serializeAws_json1_1PollForThirdPartyJobsCommand = serializeAws_json1_1PollForThirdPartyJobsCommand;
|
|
250
|
+
const serializeAws_json1_1PutActionRevisionCommand = async (input, context) => {
|
|
251
|
+
const headers = {
|
|
252
|
+
"content-type": "application/x-amz-json-1.1",
|
|
253
|
+
"x-amz-target": "CodePipeline_20150709.PutActionRevision",
|
|
254
|
+
};
|
|
255
|
+
let body;
|
|
256
|
+
body = JSON.stringify(serializeAws_json1_1PutActionRevisionInput(input, context));
|
|
257
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
258
|
+
};
|
|
259
|
+
exports.serializeAws_json1_1PutActionRevisionCommand = serializeAws_json1_1PutActionRevisionCommand;
|
|
260
|
+
const serializeAws_json1_1PutApprovalResultCommand = async (input, context) => {
|
|
261
|
+
const headers = {
|
|
262
|
+
"content-type": "application/x-amz-json-1.1",
|
|
263
|
+
"x-amz-target": "CodePipeline_20150709.PutApprovalResult",
|
|
264
|
+
};
|
|
265
|
+
let body;
|
|
266
|
+
body = JSON.stringify(serializeAws_json1_1PutApprovalResultInput(input, context));
|
|
267
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
268
|
+
};
|
|
269
|
+
exports.serializeAws_json1_1PutApprovalResultCommand = serializeAws_json1_1PutApprovalResultCommand;
|
|
270
|
+
const serializeAws_json1_1PutJobFailureResultCommand = async (input, context) => {
|
|
271
|
+
const headers = {
|
|
272
|
+
"content-type": "application/x-amz-json-1.1",
|
|
273
|
+
"x-amz-target": "CodePipeline_20150709.PutJobFailureResult",
|
|
274
|
+
};
|
|
275
|
+
let body;
|
|
276
|
+
body = JSON.stringify(serializeAws_json1_1PutJobFailureResultInput(input, context));
|
|
277
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
278
|
+
};
|
|
279
|
+
exports.serializeAws_json1_1PutJobFailureResultCommand = serializeAws_json1_1PutJobFailureResultCommand;
|
|
280
|
+
const serializeAws_json1_1PutJobSuccessResultCommand = async (input, context) => {
|
|
281
|
+
const headers = {
|
|
282
|
+
"content-type": "application/x-amz-json-1.1",
|
|
283
|
+
"x-amz-target": "CodePipeline_20150709.PutJobSuccessResult",
|
|
284
|
+
};
|
|
285
|
+
let body;
|
|
286
|
+
body = JSON.stringify(serializeAws_json1_1PutJobSuccessResultInput(input, context));
|
|
287
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
288
|
+
};
|
|
289
|
+
exports.serializeAws_json1_1PutJobSuccessResultCommand = serializeAws_json1_1PutJobSuccessResultCommand;
|
|
290
|
+
const serializeAws_json1_1PutThirdPartyJobFailureResultCommand = async (input, context) => {
|
|
291
|
+
const headers = {
|
|
292
|
+
"content-type": "application/x-amz-json-1.1",
|
|
293
|
+
"x-amz-target": "CodePipeline_20150709.PutThirdPartyJobFailureResult",
|
|
294
|
+
};
|
|
295
|
+
let body;
|
|
296
|
+
body = JSON.stringify(serializeAws_json1_1PutThirdPartyJobFailureResultInput(input, context));
|
|
297
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
298
|
+
};
|
|
299
|
+
exports.serializeAws_json1_1PutThirdPartyJobFailureResultCommand = serializeAws_json1_1PutThirdPartyJobFailureResultCommand;
|
|
300
|
+
const serializeAws_json1_1PutThirdPartyJobSuccessResultCommand = async (input, context) => {
|
|
301
|
+
const headers = {
|
|
302
|
+
"content-type": "application/x-amz-json-1.1",
|
|
303
|
+
"x-amz-target": "CodePipeline_20150709.PutThirdPartyJobSuccessResult",
|
|
304
|
+
};
|
|
305
|
+
let body;
|
|
306
|
+
body = JSON.stringify(serializeAws_json1_1PutThirdPartyJobSuccessResultInput(input, context));
|
|
307
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
308
|
+
};
|
|
309
|
+
exports.serializeAws_json1_1PutThirdPartyJobSuccessResultCommand = serializeAws_json1_1PutThirdPartyJobSuccessResultCommand;
|
|
310
|
+
const serializeAws_json1_1PutWebhookCommand = async (input, context) => {
|
|
311
|
+
const headers = {
|
|
312
|
+
"content-type": "application/x-amz-json-1.1",
|
|
313
|
+
"x-amz-target": "CodePipeline_20150709.PutWebhook",
|
|
314
|
+
};
|
|
315
|
+
let body;
|
|
316
|
+
body = JSON.stringify(serializeAws_json1_1PutWebhookInput(input, context));
|
|
317
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
318
|
+
};
|
|
319
|
+
exports.serializeAws_json1_1PutWebhookCommand = serializeAws_json1_1PutWebhookCommand;
|
|
320
|
+
const serializeAws_json1_1RegisterWebhookWithThirdPartyCommand = async (input, context) => {
|
|
321
|
+
const headers = {
|
|
322
|
+
"content-type": "application/x-amz-json-1.1",
|
|
323
|
+
"x-amz-target": "CodePipeline_20150709.RegisterWebhookWithThirdParty",
|
|
324
|
+
};
|
|
325
|
+
let body;
|
|
326
|
+
body = JSON.stringify(serializeAws_json1_1RegisterWebhookWithThirdPartyInput(input, context));
|
|
327
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
328
|
+
};
|
|
329
|
+
exports.serializeAws_json1_1RegisterWebhookWithThirdPartyCommand = serializeAws_json1_1RegisterWebhookWithThirdPartyCommand;
|
|
330
|
+
const serializeAws_json1_1RetryStageExecutionCommand = async (input, context) => {
|
|
331
|
+
const headers = {
|
|
332
|
+
"content-type": "application/x-amz-json-1.1",
|
|
333
|
+
"x-amz-target": "CodePipeline_20150709.RetryStageExecution",
|
|
334
|
+
};
|
|
335
|
+
let body;
|
|
336
|
+
body = JSON.stringify(serializeAws_json1_1RetryStageExecutionInput(input, context));
|
|
337
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
338
|
+
};
|
|
339
|
+
exports.serializeAws_json1_1RetryStageExecutionCommand = serializeAws_json1_1RetryStageExecutionCommand;
|
|
340
|
+
const serializeAws_json1_1StartPipelineExecutionCommand = async (input, context) => {
|
|
341
|
+
const headers = {
|
|
342
|
+
"content-type": "application/x-amz-json-1.1",
|
|
343
|
+
"x-amz-target": "CodePipeline_20150709.StartPipelineExecution",
|
|
344
|
+
};
|
|
345
|
+
let body;
|
|
346
|
+
body = JSON.stringify(serializeAws_json1_1StartPipelineExecutionInput(input, context));
|
|
347
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
348
|
+
};
|
|
349
|
+
exports.serializeAws_json1_1StartPipelineExecutionCommand = serializeAws_json1_1StartPipelineExecutionCommand;
|
|
350
|
+
const serializeAws_json1_1StopPipelineExecutionCommand = async (input, context) => {
|
|
351
|
+
const headers = {
|
|
352
|
+
"content-type": "application/x-amz-json-1.1",
|
|
353
|
+
"x-amz-target": "CodePipeline_20150709.StopPipelineExecution",
|
|
354
|
+
};
|
|
355
|
+
let body;
|
|
356
|
+
body = JSON.stringify(serializeAws_json1_1StopPipelineExecutionInput(input, context));
|
|
357
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
358
|
+
};
|
|
359
|
+
exports.serializeAws_json1_1StopPipelineExecutionCommand = serializeAws_json1_1StopPipelineExecutionCommand;
|
|
360
|
+
const serializeAws_json1_1TagResourceCommand = async (input, context) => {
|
|
361
|
+
const headers = {
|
|
362
|
+
"content-type": "application/x-amz-json-1.1",
|
|
363
|
+
"x-amz-target": "CodePipeline_20150709.TagResource",
|
|
364
|
+
};
|
|
365
|
+
let body;
|
|
366
|
+
body = JSON.stringify(serializeAws_json1_1TagResourceInput(input, context));
|
|
367
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
368
|
+
};
|
|
369
|
+
exports.serializeAws_json1_1TagResourceCommand = serializeAws_json1_1TagResourceCommand;
|
|
370
|
+
const serializeAws_json1_1UntagResourceCommand = async (input, context) => {
|
|
371
|
+
const headers = {
|
|
372
|
+
"content-type": "application/x-amz-json-1.1",
|
|
373
|
+
"x-amz-target": "CodePipeline_20150709.UntagResource",
|
|
374
|
+
};
|
|
375
|
+
let body;
|
|
376
|
+
body = JSON.stringify(serializeAws_json1_1UntagResourceInput(input, context));
|
|
377
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
378
|
+
};
|
|
379
|
+
exports.serializeAws_json1_1UntagResourceCommand = serializeAws_json1_1UntagResourceCommand;
|
|
380
|
+
const serializeAws_json1_1UpdateActionTypeCommand = async (input, context) => {
|
|
381
|
+
const headers = {
|
|
382
|
+
"content-type": "application/x-amz-json-1.1",
|
|
383
|
+
"x-amz-target": "CodePipeline_20150709.UpdateActionType",
|
|
384
|
+
};
|
|
385
|
+
let body;
|
|
386
|
+
body = JSON.stringify(serializeAws_json1_1UpdateActionTypeInput(input, context));
|
|
387
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
388
|
+
};
|
|
389
|
+
exports.serializeAws_json1_1UpdateActionTypeCommand = serializeAws_json1_1UpdateActionTypeCommand;
|
|
390
|
+
const serializeAws_json1_1UpdatePipelineCommand = async (input, context) => {
|
|
391
|
+
const headers = {
|
|
392
|
+
"content-type": "application/x-amz-json-1.1",
|
|
393
|
+
"x-amz-target": "CodePipeline_20150709.UpdatePipeline",
|
|
394
|
+
};
|
|
395
|
+
let body;
|
|
396
|
+
body = JSON.stringify(serializeAws_json1_1UpdatePipelineInput(input, context));
|
|
397
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
398
|
+
};
|
|
399
|
+
exports.serializeAws_json1_1UpdatePipelineCommand = serializeAws_json1_1UpdatePipelineCommand;
|
|
400
|
+
const deserializeAws_json1_1AcknowledgeJobCommand = async (output, context) => {
|
|
401
|
+
if (output.statusCode >= 300) {
|
|
402
|
+
return deserializeAws_json1_1AcknowledgeJobCommandError(output, context);
|
|
403
|
+
}
|
|
404
|
+
const data = await parseBody(output.body, context);
|
|
405
|
+
let contents = {};
|
|
406
|
+
contents = deserializeAws_json1_1AcknowledgeJobOutput(data, context);
|
|
407
|
+
const response = {
|
|
408
|
+
$metadata: deserializeMetadata(output),
|
|
409
|
+
...contents,
|
|
410
|
+
};
|
|
411
|
+
return Promise.resolve(response);
|
|
412
|
+
};
|
|
413
|
+
exports.deserializeAws_json1_1AcknowledgeJobCommand = deserializeAws_json1_1AcknowledgeJobCommand;
|
|
414
|
+
const deserializeAws_json1_1AcknowledgeJobCommandError = async (output, context) => {
|
|
415
|
+
const parsedOutput = {
|
|
416
|
+
...output,
|
|
417
|
+
body: await parseErrorBody(output.body, context),
|
|
418
|
+
};
|
|
419
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
420
|
+
switch (errorCode) {
|
|
421
|
+
case "InvalidNonceException":
|
|
422
|
+
case "com.amazonaws.codepipeline#InvalidNonceException":
|
|
423
|
+
throw await deserializeAws_json1_1InvalidNonceExceptionResponse(parsedOutput, context);
|
|
424
|
+
case "JobNotFoundException":
|
|
425
|
+
case "com.amazonaws.codepipeline#JobNotFoundException":
|
|
426
|
+
throw await deserializeAws_json1_1JobNotFoundExceptionResponse(parsedOutput, context);
|
|
427
|
+
case "ValidationException":
|
|
428
|
+
case "com.amazonaws.codepipeline#ValidationException":
|
|
429
|
+
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
430
|
+
default:
|
|
431
|
+
const parsedBody = parsedOutput.body;
|
|
432
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
433
|
+
output,
|
|
434
|
+
parsedBody,
|
|
435
|
+
exceptionCtor: CodePipelineServiceException_1.CodePipelineServiceException,
|
|
436
|
+
errorCode,
|
|
437
|
+
});
|
|
438
|
+
}
|
|
439
|
+
};
|
|
440
|
+
const deserializeAws_json1_1AcknowledgeThirdPartyJobCommand = async (output, context) => {
|
|
441
|
+
if (output.statusCode >= 300) {
|
|
442
|
+
return deserializeAws_json1_1AcknowledgeThirdPartyJobCommandError(output, context);
|
|
443
|
+
}
|
|
444
|
+
const data = await parseBody(output.body, context);
|
|
445
|
+
let contents = {};
|
|
446
|
+
contents = deserializeAws_json1_1AcknowledgeThirdPartyJobOutput(data, context);
|
|
447
|
+
const response = {
|
|
448
|
+
$metadata: deserializeMetadata(output),
|
|
449
|
+
...contents,
|
|
450
|
+
};
|
|
451
|
+
return Promise.resolve(response);
|
|
452
|
+
};
|
|
453
|
+
exports.deserializeAws_json1_1AcknowledgeThirdPartyJobCommand = deserializeAws_json1_1AcknowledgeThirdPartyJobCommand;
|
|
454
|
+
const deserializeAws_json1_1AcknowledgeThirdPartyJobCommandError = async (output, context) => {
|
|
455
|
+
const parsedOutput = {
|
|
456
|
+
...output,
|
|
457
|
+
body: await parseErrorBody(output.body, context),
|
|
458
|
+
};
|
|
459
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
460
|
+
switch (errorCode) {
|
|
461
|
+
case "InvalidClientTokenException":
|
|
462
|
+
case "com.amazonaws.codepipeline#InvalidClientTokenException":
|
|
463
|
+
throw await deserializeAws_json1_1InvalidClientTokenExceptionResponse(parsedOutput, context);
|
|
464
|
+
case "InvalidNonceException":
|
|
465
|
+
case "com.amazonaws.codepipeline#InvalidNonceException":
|
|
466
|
+
throw await deserializeAws_json1_1InvalidNonceExceptionResponse(parsedOutput, context);
|
|
467
|
+
case "JobNotFoundException":
|
|
468
|
+
case "com.amazonaws.codepipeline#JobNotFoundException":
|
|
469
|
+
throw await deserializeAws_json1_1JobNotFoundExceptionResponse(parsedOutput, context);
|
|
470
|
+
case "ValidationException":
|
|
471
|
+
case "com.amazonaws.codepipeline#ValidationException":
|
|
472
|
+
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
473
|
+
default:
|
|
474
|
+
const parsedBody = parsedOutput.body;
|
|
475
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
476
|
+
output,
|
|
477
|
+
parsedBody,
|
|
478
|
+
exceptionCtor: CodePipelineServiceException_1.CodePipelineServiceException,
|
|
479
|
+
errorCode,
|
|
480
|
+
});
|
|
481
|
+
}
|
|
482
|
+
};
|
|
483
|
+
const deserializeAws_json1_1CreateCustomActionTypeCommand = async (output, context) => {
|
|
484
|
+
if (output.statusCode >= 300) {
|
|
485
|
+
return deserializeAws_json1_1CreateCustomActionTypeCommandError(output, context);
|
|
486
|
+
}
|
|
487
|
+
const data = await parseBody(output.body, context);
|
|
488
|
+
let contents = {};
|
|
489
|
+
contents = deserializeAws_json1_1CreateCustomActionTypeOutput(data, context);
|
|
490
|
+
const response = {
|
|
491
|
+
$metadata: deserializeMetadata(output),
|
|
492
|
+
...contents,
|
|
493
|
+
};
|
|
494
|
+
return Promise.resolve(response);
|
|
495
|
+
};
|
|
496
|
+
exports.deserializeAws_json1_1CreateCustomActionTypeCommand = deserializeAws_json1_1CreateCustomActionTypeCommand;
|
|
497
|
+
const deserializeAws_json1_1CreateCustomActionTypeCommandError = async (output, context) => {
|
|
498
|
+
const parsedOutput = {
|
|
499
|
+
...output,
|
|
500
|
+
body: await parseErrorBody(output.body, context),
|
|
501
|
+
};
|
|
502
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
503
|
+
switch (errorCode) {
|
|
504
|
+
case "ConcurrentModificationException":
|
|
505
|
+
case "com.amazonaws.codepipeline#ConcurrentModificationException":
|
|
506
|
+
throw await deserializeAws_json1_1ConcurrentModificationExceptionResponse(parsedOutput, context);
|
|
507
|
+
case "InvalidTagsException":
|
|
508
|
+
case "com.amazonaws.codepipeline#InvalidTagsException":
|
|
509
|
+
throw await deserializeAws_json1_1InvalidTagsExceptionResponse(parsedOutput, context);
|
|
510
|
+
case "LimitExceededException":
|
|
511
|
+
case "com.amazonaws.codepipeline#LimitExceededException":
|
|
512
|
+
throw await deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context);
|
|
513
|
+
case "TooManyTagsException":
|
|
514
|
+
case "com.amazonaws.codepipeline#TooManyTagsException":
|
|
515
|
+
throw await deserializeAws_json1_1TooManyTagsExceptionResponse(parsedOutput, context);
|
|
516
|
+
case "ValidationException":
|
|
517
|
+
case "com.amazonaws.codepipeline#ValidationException":
|
|
518
|
+
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
519
|
+
default:
|
|
520
|
+
const parsedBody = parsedOutput.body;
|
|
521
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
522
|
+
output,
|
|
523
|
+
parsedBody,
|
|
524
|
+
exceptionCtor: CodePipelineServiceException_1.CodePipelineServiceException,
|
|
525
|
+
errorCode,
|
|
526
|
+
});
|
|
527
|
+
}
|
|
528
|
+
};
|
|
529
|
+
const deserializeAws_json1_1CreatePipelineCommand = async (output, context) => {
|
|
530
|
+
if (output.statusCode >= 300) {
|
|
531
|
+
return deserializeAws_json1_1CreatePipelineCommandError(output, context);
|
|
532
|
+
}
|
|
533
|
+
const data = await parseBody(output.body, context);
|
|
534
|
+
let contents = {};
|
|
535
|
+
contents = deserializeAws_json1_1CreatePipelineOutput(data, context);
|
|
536
|
+
const response = {
|
|
537
|
+
$metadata: deserializeMetadata(output),
|
|
538
|
+
...contents,
|
|
539
|
+
};
|
|
540
|
+
return Promise.resolve(response);
|
|
541
|
+
};
|
|
542
|
+
exports.deserializeAws_json1_1CreatePipelineCommand = deserializeAws_json1_1CreatePipelineCommand;
|
|
543
|
+
const deserializeAws_json1_1CreatePipelineCommandError = async (output, context) => {
|
|
544
|
+
const parsedOutput = {
|
|
545
|
+
...output,
|
|
546
|
+
body: await parseErrorBody(output.body, context),
|
|
547
|
+
};
|
|
548
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
549
|
+
switch (errorCode) {
|
|
550
|
+
case "ConcurrentModificationException":
|
|
551
|
+
case "com.amazonaws.codepipeline#ConcurrentModificationException":
|
|
552
|
+
throw await deserializeAws_json1_1ConcurrentModificationExceptionResponse(parsedOutput, context);
|
|
553
|
+
case "InvalidActionDeclarationException":
|
|
554
|
+
case "com.amazonaws.codepipeline#InvalidActionDeclarationException":
|
|
555
|
+
throw await deserializeAws_json1_1InvalidActionDeclarationExceptionResponse(parsedOutput, context);
|
|
556
|
+
case "InvalidBlockerDeclarationException":
|
|
557
|
+
case "com.amazonaws.codepipeline#InvalidBlockerDeclarationException":
|
|
558
|
+
throw await deserializeAws_json1_1InvalidBlockerDeclarationExceptionResponse(parsedOutput, context);
|
|
559
|
+
case "InvalidStageDeclarationException":
|
|
560
|
+
case "com.amazonaws.codepipeline#InvalidStageDeclarationException":
|
|
561
|
+
throw await deserializeAws_json1_1InvalidStageDeclarationExceptionResponse(parsedOutput, context);
|
|
562
|
+
case "InvalidStructureException":
|
|
563
|
+
case "com.amazonaws.codepipeline#InvalidStructureException":
|
|
564
|
+
throw await deserializeAws_json1_1InvalidStructureExceptionResponse(parsedOutput, context);
|
|
565
|
+
case "InvalidTagsException":
|
|
566
|
+
case "com.amazonaws.codepipeline#InvalidTagsException":
|
|
567
|
+
throw await deserializeAws_json1_1InvalidTagsExceptionResponse(parsedOutput, context);
|
|
568
|
+
case "LimitExceededException":
|
|
569
|
+
case "com.amazonaws.codepipeline#LimitExceededException":
|
|
570
|
+
throw await deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context);
|
|
571
|
+
case "PipelineNameInUseException":
|
|
572
|
+
case "com.amazonaws.codepipeline#PipelineNameInUseException":
|
|
573
|
+
throw await deserializeAws_json1_1PipelineNameInUseExceptionResponse(parsedOutput, context);
|
|
574
|
+
case "TooManyTagsException":
|
|
575
|
+
case "com.amazonaws.codepipeline#TooManyTagsException":
|
|
576
|
+
throw await deserializeAws_json1_1TooManyTagsExceptionResponse(parsedOutput, context);
|
|
577
|
+
case "ValidationException":
|
|
578
|
+
case "com.amazonaws.codepipeline#ValidationException":
|
|
579
|
+
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
580
|
+
default:
|
|
581
|
+
const parsedBody = parsedOutput.body;
|
|
582
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
583
|
+
output,
|
|
584
|
+
parsedBody,
|
|
585
|
+
exceptionCtor: CodePipelineServiceException_1.CodePipelineServiceException,
|
|
586
|
+
errorCode,
|
|
587
|
+
});
|
|
588
|
+
}
|
|
589
|
+
};
|
|
590
|
+
const deserializeAws_json1_1DeleteCustomActionTypeCommand = async (output, context) => {
|
|
591
|
+
if (output.statusCode >= 300) {
|
|
592
|
+
return deserializeAws_json1_1DeleteCustomActionTypeCommandError(output, context);
|
|
593
|
+
}
|
|
594
|
+
await collectBody(output.body, context);
|
|
595
|
+
const response = {
|
|
596
|
+
$metadata: deserializeMetadata(output),
|
|
597
|
+
};
|
|
598
|
+
return Promise.resolve(response);
|
|
599
|
+
};
|
|
600
|
+
exports.deserializeAws_json1_1DeleteCustomActionTypeCommand = deserializeAws_json1_1DeleteCustomActionTypeCommand;
|
|
601
|
+
const deserializeAws_json1_1DeleteCustomActionTypeCommandError = async (output, context) => {
|
|
602
|
+
const parsedOutput = {
|
|
603
|
+
...output,
|
|
604
|
+
body: await parseErrorBody(output.body, context),
|
|
605
|
+
};
|
|
606
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
607
|
+
switch (errorCode) {
|
|
608
|
+
case "ConcurrentModificationException":
|
|
609
|
+
case "com.amazonaws.codepipeline#ConcurrentModificationException":
|
|
610
|
+
throw await deserializeAws_json1_1ConcurrentModificationExceptionResponse(parsedOutput, context);
|
|
611
|
+
case "ValidationException":
|
|
612
|
+
case "com.amazonaws.codepipeline#ValidationException":
|
|
613
|
+
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
614
|
+
default:
|
|
615
|
+
const parsedBody = parsedOutput.body;
|
|
616
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
617
|
+
output,
|
|
618
|
+
parsedBody,
|
|
619
|
+
exceptionCtor: CodePipelineServiceException_1.CodePipelineServiceException,
|
|
620
|
+
errorCode,
|
|
621
|
+
});
|
|
622
|
+
}
|
|
623
|
+
};
|
|
624
|
+
const deserializeAws_json1_1DeletePipelineCommand = async (output, context) => {
|
|
625
|
+
if (output.statusCode >= 300) {
|
|
626
|
+
return deserializeAws_json1_1DeletePipelineCommandError(output, context);
|
|
627
|
+
}
|
|
628
|
+
await collectBody(output.body, context);
|
|
629
|
+
const response = {
|
|
630
|
+
$metadata: deserializeMetadata(output),
|
|
631
|
+
};
|
|
632
|
+
return Promise.resolve(response);
|
|
633
|
+
};
|
|
634
|
+
exports.deserializeAws_json1_1DeletePipelineCommand = deserializeAws_json1_1DeletePipelineCommand;
|
|
635
|
+
const deserializeAws_json1_1DeletePipelineCommandError = async (output, context) => {
|
|
636
|
+
const parsedOutput = {
|
|
637
|
+
...output,
|
|
638
|
+
body: await parseErrorBody(output.body, context),
|
|
639
|
+
};
|
|
640
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
641
|
+
switch (errorCode) {
|
|
642
|
+
case "ConcurrentModificationException":
|
|
643
|
+
case "com.amazonaws.codepipeline#ConcurrentModificationException":
|
|
644
|
+
throw await deserializeAws_json1_1ConcurrentModificationExceptionResponse(parsedOutput, context);
|
|
645
|
+
case "ValidationException":
|
|
646
|
+
case "com.amazonaws.codepipeline#ValidationException":
|
|
647
|
+
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
648
|
+
default:
|
|
649
|
+
const parsedBody = parsedOutput.body;
|
|
650
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
651
|
+
output,
|
|
652
|
+
parsedBody,
|
|
653
|
+
exceptionCtor: CodePipelineServiceException_1.CodePipelineServiceException,
|
|
654
|
+
errorCode,
|
|
655
|
+
});
|
|
656
|
+
}
|
|
657
|
+
};
|
|
658
|
+
const deserializeAws_json1_1DeleteWebhookCommand = async (output, context) => {
|
|
659
|
+
if (output.statusCode >= 300) {
|
|
660
|
+
return deserializeAws_json1_1DeleteWebhookCommandError(output, context);
|
|
661
|
+
}
|
|
662
|
+
const data = await parseBody(output.body, context);
|
|
663
|
+
let contents = {};
|
|
664
|
+
contents = deserializeAws_json1_1DeleteWebhookOutput(data, context);
|
|
665
|
+
const response = {
|
|
666
|
+
$metadata: deserializeMetadata(output),
|
|
667
|
+
...contents,
|
|
668
|
+
};
|
|
669
|
+
return Promise.resolve(response);
|
|
670
|
+
};
|
|
671
|
+
exports.deserializeAws_json1_1DeleteWebhookCommand = deserializeAws_json1_1DeleteWebhookCommand;
|
|
672
|
+
const deserializeAws_json1_1DeleteWebhookCommandError = async (output, context) => {
|
|
673
|
+
const parsedOutput = {
|
|
674
|
+
...output,
|
|
675
|
+
body: await parseErrorBody(output.body, context),
|
|
676
|
+
};
|
|
677
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
678
|
+
switch (errorCode) {
|
|
679
|
+
case "ConcurrentModificationException":
|
|
680
|
+
case "com.amazonaws.codepipeline#ConcurrentModificationException":
|
|
681
|
+
throw await deserializeAws_json1_1ConcurrentModificationExceptionResponse(parsedOutput, context);
|
|
682
|
+
case "ValidationException":
|
|
683
|
+
case "com.amazonaws.codepipeline#ValidationException":
|
|
684
|
+
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
685
|
+
default:
|
|
686
|
+
const parsedBody = parsedOutput.body;
|
|
687
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
688
|
+
output,
|
|
689
|
+
parsedBody,
|
|
690
|
+
exceptionCtor: CodePipelineServiceException_1.CodePipelineServiceException,
|
|
691
|
+
errorCode,
|
|
692
|
+
});
|
|
693
|
+
}
|
|
694
|
+
};
|
|
695
|
+
const deserializeAws_json1_1DeregisterWebhookWithThirdPartyCommand = async (output, context) => {
|
|
696
|
+
if (output.statusCode >= 300) {
|
|
697
|
+
return deserializeAws_json1_1DeregisterWebhookWithThirdPartyCommandError(output, context);
|
|
698
|
+
}
|
|
699
|
+
const data = await parseBody(output.body, context);
|
|
700
|
+
let contents = {};
|
|
701
|
+
contents = deserializeAws_json1_1DeregisterWebhookWithThirdPartyOutput(data, context);
|
|
702
|
+
const response = {
|
|
703
|
+
$metadata: deserializeMetadata(output),
|
|
704
|
+
...contents,
|
|
705
|
+
};
|
|
706
|
+
return Promise.resolve(response);
|
|
707
|
+
};
|
|
708
|
+
exports.deserializeAws_json1_1DeregisterWebhookWithThirdPartyCommand = deserializeAws_json1_1DeregisterWebhookWithThirdPartyCommand;
|
|
709
|
+
const deserializeAws_json1_1DeregisterWebhookWithThirdPartyCommandError = async (output, context) => {
|
|
710
|
+
const parsedOutput = {
|
|
711
|
+
...output,
|
|
712
|
+
body: await parseErrorBody(output.body, context),
|
|
713
|
+
};
|
|
714
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
715
|
+
switch (errorCode) {
|
|
716
|
+
case "ValidationException":
|
|
717
|
+
case "com.amazonaws.codepipeline#ValidationException":
|
|
718
|
+
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
719
|
+
case "WebhookNotFoundException":
|
|
720
|
+
case "com.amazonaws.codepipeline#WebhookNotFoundException":
|
|
721
|
+
throw await deserializeAws_json1_1WebhookNotFoundExceptionResponse(parsedOutput, context);
|
|
722
|
+
default:
|
|
723
|
+
const parsedBody = parsedOutput.body;
|
|
724
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
725
|
+
output,
|
|
726
|
+
parsedBody,
|
|
727
|
+
exceptionCtor: CodePipelineServiceException_1.CodePipelineServiceException,
|
|
728
|
+
errorCode,
|
|
729
|
+
});
|
|
730
|
+
}
|
|
731
|
+
};
|
|
732
|
+
const deserializeAws_json1_1DisableStageTransitionCommand = async (output, context) => {
|
|
733
|
+
if (output.statusCode >= 300) {
|
|
734
|
+
return deserializeAws_json1_1DisableStageTransitionCommandError(output, context);
|
|
735
|
+
}
|
|
736
|
+
await collectBody(output.body, context);
|
|
737
|
+
const response = {
|
|
738
|
+
$metadata: deserializeMetadata(output),
|
|
739
|
+
};
|
|
740
|
+
return Promise.resolve(response);
|
|
741
|
+
};
|
|
742
|
+
exports.deserializeAws_json1_1DisableStageTransitionCommand = deserializeAws_json1_1DisableStageTransitionCommand;
|
|
743
|
+
const deserializeAws_json1_1DisableStageTransitionCommandError = async (output, context) => {
|
|
744
|
+
const parsedOutput = {
|
|
745
|
+
...output,
|
|
746
|
+
body: await parseErrorBody(output.body, context),
|
|
747
|
+
};
|
|
748
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
749
|
+
switch (errorCode) {
|
|
750
|
+
case "PipelineNotFoundException":
|
|
751
|
+
case "com.amazonaws.codepipeline#PipelineNotFoundException":
|
|
752
|
+
throw await deserializeAws_json1_1PipelineNotFoundExceptionResponse(parsedOutput, context);
|
|
753
|
+
case "StageNotFoundException":
|
|
754
|
+
case "com.amazonaws.codepipeline#StageNotFoundException":
|
|
755
|
+
throw await deserializeAws_json1_1StageNotFoundExceptionResponse(parsedOutput, context);
|
|
756
|
+
case "ValidationException":
|
|
757
|
+
case "com.amazonaws.codepipeline#ValidationException":
|
|
758
|
+
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
759
|
+
default:
|
|
760
|
+
const parsedBody = parsedOutput.body;
|
|
761
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
762
|
+
output,
|
|
763
|
+
parsedBody,
|
|
764
|
+
exceptionCtor: CodePipelineServiceException_1.CodePipelineServiceException,
|
|
765
|
+
errorCode,
|
|
766
|
+
});
|
|
767
|
+
}
|
|
768
|
+
};
|
|
769
|
+
const deserializeAws_json1_1EnableStageTransitionCommand = async (output, context) => {
|
|
770
|
+
if (output.statusCode >= 300) {
|
|
771
|
+
return deserializeAws_json1_1EnableStageTransitionCommandError(output, context);
|
|
772
|
+
}
|
|
773
|
+
await collectBody(output.body, context);
|
|
774
|
+
const response = {
|
|
775
|
+
$metadata: deserializeMetadata(output),
|
|
776
|
+
};
|
|
777
|
+
return Promise.resolve(response);
|
|
778
|
+
};
|
|
779
|
+
exports.deserializeAws_json1_1EnableStageTransitionCommand = deserializeAws_json1_1EnableStageTransitionCommand;
|
|
780
|
+
const deserializeAws_json1_1EnableStageTransitionCommandError = async (output, context) => {
|
|
781
|
+
const parsedOutput = {
|
|
782
|
+
...output,
|
|
783
|
+
body: await parseErrorBody(output.body, context),
|
|
784
|
+
};
|
|
785
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
786
|
+
switch (errorCode) {
|
|
787
|
+
case "PipelineNotFoundException":
|
|
788
|
+
case "com.amazonaws.codepipeline#PipelineNotFoundException":
|
|
789
|
+
throw await deserializeAws_json1_1PipelineNotFoundExceptionResponse(parsedOutput, context);
|
|
790
|
+
case "StageNotFoundException":
|
|
791
|
+
case "com.amazonaws.codepipeline#StageNotFoundException":
|
|
792
|
+
throw await deserializeAws_json1_1StageNotFoundExceptionResponse(parsedOutput, context);
|
|
793
|
+
case "ValidationException":
|
|
794
|
+
case "com.amazonaws.codepipeline#ValidationException":
|
|
795
|
+
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
796
|
+
default:
|
|
797
|
+
const parsedBody = parsedOutput.body;
|
|
798
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
799
|
+
output,
|
|
800
|
+
parsedBody,
|
|
801
|
+
exceptionCtor: CodePipelineServiceException_1.CodePipelineServiceException,
|
|
802
|
+
errorCode,
|
|
803
|
+
});
|
|
804
|
+
}
|
|
805
|
+
};
|
|
806
|
+
const deserializeAws_json1_1GetActionTypeCommand = async (output, context) => {
|
|
807
|
+
if (output.statusCode >= 300) {
|
|
808
|
+
return deserializeAws_json1_1GetActionTypeCommandError(output, context);
|
|
809
|
+
}
|
|
810
|
+
const data = await parseBody(output.body, context);
|
|
811
|
+
let contents = {};
|
|
812
|
+
contents = deserializeAws_json1_1GetActionTypeOutput(data, context);
|
|
813
|
+
const response = {
|
|
814
|
+
$metadata: deserializeMetadata(output),
|
|
815
|
+
...contents,
|
|
816
|
+
};
|
|
817
|
+
return Promise.resolve(response);
|
|
818
|
+
};
|
|
819
|
+
exports.deserializeAws_json1_1GetActionTypeCommand = deserializeAws_json1_1GetActionTypeCommand;
|
|
820
|
+
const deserializeAws_json1_1GetActionTypeCommandError = async (output, context) => {
|
|
821
|
+
const parsedOutput = {
|
|
822
|
+
...output,
|
|
823
|
+
body: await parseErrorBody(output.body, context),
|
|
824
|
+
};
|
|
825
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
826
|
+
switch (errorCode) {
|
|
827
|
+
case "ActionTypeNotFoundException":
|
|
828
|
+
case "com.amazonaws.codepipeline#ActionTypeNotFoundException":
|
|
829
|
+
throw await deserializeAws_json1_1ActionTypeNotFoundExceptionResponse(parsedOutput, context);
|
|
830
|
+
case "ValidationException":
|
|
831
|
+
case "com.amazonaws.codepipeline#ValidationException":
|
|
832
|
+
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
833
|
+
default:
|
|
834
|
+
const parsedBody = parsedOutput.body;
|
|
835
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
836
|
+
output,
|
|
837
|
+
parsedBody,
|
|
838
|
+
exceptionCtor: CodePipelineServiceException_1.CodePipelineServiceException,
|
|
839
|
+
errorCode,
|
|
840
|
+
});
|
|
841
|
+
}
|
|
842
|
+
};
|
|
843
|
+
const deserializeAws_json1_1GetJobDetailsCommand = async (output, context) => {
|
|
844
|
+
if (output.statusCode >= 300) {
|
|
845
|
+
return deserializeAws_json1_1GetJobDetailsCommandError(output, context);
|
|
846
|
+
}
|
|
847
|
+
const data = await parseBody(output.body, context);
|
|
848
|
+
let contents = {};
|
|
849
|
+
contents = deserializeAws_json1_1GetJobDetailsOutput(data, context);
|
|
850
|
+
const response = {
|
|
851
|
+
$metadata: deserializeMetadata(output),
|
|
852
|
+
...contents,
|
|
853
|
+
};
|
|
854
|
+
return Promise.resolve(response);
|
|
855
|
+
};
|
|
856
|
+
exports.deserializeAws_json1_1GetJobDetailsCommand = deserializeAws_json1_1GetJobDetailsCommand;
|
|
857
|
+
const deserializeAws_json1_1GetJobDetailsCommandError = async (output, context) => {
|
|
858
|
+
const parsedOutput = {
|
|
859
|
+
...output,
|
|
860
|
+
body: await parseErrorBody(output.body, context),
|
|
861
|
+
};
|
|
862
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
863
|
+
switch (errorCode) {
|
|
864
|
+
case "JobNotFoundException":
|
|
865
|
+
case "com.amazonaws.codepipeline#JobNotFoundException":
|
|
866
|
+
throw await deserializeAws_json1_1JobNotFoundExceptionResponse(parsedOutput, context);
|
|
867
|
+
case "ValidationException":
|
|
868
|
+
case "com.amazonaws.codepipeline#ValidationException":
|
|
869
|
+
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
870
|
+
default:
|
|
871
|
+
const parsedBody = parsedOutput.body;
|
|
872
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
873
|
+
output,
|
|
874
|
+
parsedBody,
|
|
875
|
+
exceptionCtor: CodePipelineServiceException_1.CodePipelineServiceException,
|
|
876
|
+
errorCode,
|
|
877
|
+
});
|
|
878
|
+
}
|
|
879
|
+
};
|
|
880
|
+
const deserializeAws_json1_1GetPipelineCommand = async (output, context) => {
|
|
881
|
+
if (output.statusCode >= 300) {
|
|
882
|
+
return deserializeAws_json1_1GetPipelineCommandError(output, context);
|
|
883
|
+
}
|
|
884
|
+
const data = await parseBody(output.body, context);
|
|
885
|
+
let contents = {};
|
|
886
|
+
contents = deserializeAws_json1_1GetPipelineOutput(data, context);
|
|
887
|
+
const response = {
|
|
888
|
+
$metadata: deserializeMetadata(output),
|
|
889
|
+
...contents,
|
|
890
|
+
};
|
|
891
|
+
return Promise.resolve(response);
|
|
892
|
+
};
|
|
893
|
+
exports.deserializeAws_json1_1GetPipelineCommand = deserializeAws_json1_1GetPipelineCommand;
|
|
894
|
+
const deserializeAws_json1_1GetPipelineCommandError = async (output, context) => {
|
|
895
|
+
const parsedOutput = {
|
|
896
|
+
...output,
|
|
897
|
+
body: await parseErrorBody(output.body, context),
|
|
898
|
+
};
|
|
899
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
900
|
+
switch (errorCode) {
|
|
901
|
+
case "PipelineNotFoundException":
|
|
902
|
+
case "com.amazonaws.codepipeline#PipelineNotFoundException":
|
|
903
|
+
throw await deserializeAws_json1_1PipelineNotFoundExceptionResponse(parsedOutput, context);
|
|
904
|
+
case "PipelineVersionNotFoundException":
|
|
905
|
+
case "com.amazonaws.codepipeline#PipelineVersionNotFoundException":
|
|
906
|
+
throw await deserializeAws_json1_1PipelineVersionNotFoundExceptionResponse(parsedOutput, context);
|
|
907
|
+
case "ValidationException":
|
|
908
|
+
case "com.amazonaws.codepipeline#ValidationException":
|
|
909
|
+
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
910
|
+
default:
|
|
911
|
+
const parsedBody = parsedOutput.body;
|
|
912
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
913
|
+
output,
|
|
914
|
+
parsedBody,
|
|
915
|
+
exceptionCtor: CodePipelineServiceException_1.CodePipelineServiceException,
|
|
916
|
+
errorCode,
|
|
917
|
+
});
|
|
918
|
+
}
|
|
919
|
+
};
|
|
920
|
+
const deserializeAws_json1_1GetPipelineExecutionCommand = async (output, context) => {
|
|
921
|
+
if (output.statusCode >= 300) {
|
|
922
|
+
return deserializeAws_json1_1GetPipelineExecutionCommandError(output, context);
|
|
923
|
+
}
|
|
924
|
+
const data = await parseBody(output.body, context);
|
|
925
|
+
let contents = {};
|
|
926
|
+
contents = deserializeAws_json1_1GetPipelineExecutionOutput(data, context);
|
|
927
|
+
const response = {
|
|
928
|
+
$metadata: deserializeMetadata(output),
|
|
929
|
+
...contents,
|
|
930
|
+
};
|
|
931
|
+
return Promise.resolve(response);
|
|
932
|
+
};
|
|
933
|
+
exports.deserializeAws_json1_1GetPipelineExecutionCommand = deserializeAws_json1_1GetPipelineExecutionCommand;
|
|
934
|
+
const deserializeAws_json1_1GetPipelineExecutionCommandError = async (output, context) => {
|
|
935
|
+
const parsedOutput = {
|
|
936
|
+
...output,
|
|
937
|
+
body: await parseErrorBody(output.body, context),
|
|
938
|
+
};
|
|
939
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
940
|
+
switch (errorCode) {
|
|
941
|
+
case "PipelineExecutionNotFoundException":
|
|
942
|
+
case "com.amazonaws.codepipeline#PipelineExecutionNotFoundException":
|
|
943
|
+
throw await deserializeAws_json1_1PipelineExecutionNotFoundExceptionResponse(parsedOutput, context);
|
|
944
|
+
case "PipelineNotFoundException":
|
|
945
|
+
case "com.amazonaws.codepipeline#PipelineNotFoundException":
|
|
946
|
+
throw await deserializeAws_json1_1PipelineNotFoundExceptionResponse(parsedOutput, context);
|
|
947
|
+
case "ValidationException":
|
|
948
|
+
case "com.amazonaws.codepipeline#ValidationException":
|
|
949
|
+
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
950
|
+
default:
|
|
951
|
+
const parsedBody = parsedOutput.body;
|
|
952
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
953
|
+
output,
|
|
954
|
+
parsedBody,
|
|
955
|
+
exceptionCtor: CodePipelineServiceException_1.CodePipelineServiceException,
|
|
956
|
+
errorCode,
|
|
957
|
+
});
|
|
958
|
+
}
|
|
959
|
+
};
|
|
960
|
+
const deserializeAws_json1_1GetPipelineStateCommand = async (output, context) => {
|
|
961
|
+
if (output.statusCode >= 300) {
|
|
962
|
+
return deserializeAws_json1_1GetPipelineStateCommandError(output, context);
|
|
963
|
+
}
|
|
964
|
+
const data = await parseBody(output.body, context);
|
|
965
|
+
let contents = {};
|
|
966
|
+
contents = deserializeAws_json1_1GetPipelineStateOutput(data, context);
|
|
967
|
+
const response = {
|
|
968
|
+
$metadata: deserializeMetadata(output),
|
|
969
|
+
...contents,
|
|
970
|
+
};
|
|
971
|
+
return Promise.resolve(response);
|
|
972
|
+
};
|
|
973
|
+
exports.deserializeAws_json1_1GetPipelineStateCommand = deserializeAws_json1_1GetPipelineStateCommand;
|
|
974
|
+
const deserializeAws_json1_1GetPipelineStateCommandError = async (output, context) => {
|
|
975
|
+
const parsedOutput = {
|
|
976
|
+
...output,
|
|
977
|
+
body: await parseErrorBody(output.body, context),
|
|
978
|
+
};
|
|
979
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
980
|
+
switch (errorCode) {
|
|
981
|
+
case "PipelineNotFoundException":
|
|
982
|
+
case "com.amazonaws.codepipeline#PipelineNotFoundException":
|
|
983
|
+
throw await deserializeAws_json1_1PipelineNotFoundExceptionResponse(parsedOutput, context);
|
|
984
|
+
case "ValidationException":
|
|
985
|
+
case "com.amazonaws.codepipeline#ValidationException":
|
|
986
|
+
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
987
|
+
default:
|
|
988
|
+
const parsedBody = parsedOutput.body;
|
|
989
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
990
|
+
output,
|
|
991
|
+
parsedBody,
|
|
992
|
+
exceptionCtor: CodePipelineServiceException_1.CodePipelineServiceException,
|
|
993
|
+
errorCode,
|
|
994
|
+
});
|
|
995
|
+
}
|
|
996
|
+
};
|
|
997
|
+
const deserializeAws_json1_1GetThirdPartyJobDetailsCommand = async (output, context) => {
|
|
998
|
+
if (output.statusCode >= 300) {
|
|
999
|
+
return deserializeAws_json1_1GetThirdPartyJobDetailsCommandError(output, context);
|
|
1000
|
+
}
|
|
1001
|
+
const data = await parseBody(output.body, context);
|
|
1002
|
+
let contents = {};
|
|
1003
|
+
contents = deserializeAws_json1_1GetThirdPartyJobDetailsOutput(data, context);
|
|
1004
|
+
const response = {
|
|
1005
|
+
$metadata: deserializeMetadata(output),
|
|
1006
|
+
...contents,
|
|
1007
|
+
};
|
|
1008
|
+
return Promise.resolve(response);
|
|
1009
|
+
};
|
|
1010
|
+
exports.deserializeAws_json1_1GetThirdPartyJobDetailsCommand = deserializeAws_json1_1GetThirdPartyJobDetailsCommand;
|
|
1011
|
+
const deserializeAws_json1_1GetThirdPartyJobDetailsCommandError = async (output, context) => {
|
|
1012
|
+
const parsedOutput = {
|
|
1013
|
+
...output,
|
|
1014
|
+
body: await parseErrorBody(output.body, context),
|
|
1015
|
+
};
|
|
1016
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1017
|
+
switch (errorCode) {
|
|
1018
|
+
case "InvalidClientTokenException":
|
|
1019
|
+
case "com.amazonaws.codepipeline#InvalidClientTokenException":
|
|
1020
|
+
throw await deserializeAws_json1_1InvalidClientTokenExceptionResponse(parsedOutput, context);
|
|
1021
|
+
case "InvalidJobException":
|
|
1022
|
+
case "com.amazonaws.codepipeline#InvalidJobException":
|
|
1023
|
+
throw await deserializeAws_json1_1InvalidJobExceptionResponse(parsedOutput, context);
|
|
1024
|
+
case "JobNotFoundException":
|
|
1025
|
+
case "com.amazonaws.codepipeline#JobNotFoundException":
|
|
1026
|
+
throw await deserializeAws_json1_1JobNotFoundExceptionResponse(parsedOutput, context);
|
|
1027
|
+
case "ValidationException":
|
|
1028
|
+
case "com.amazonaws.codepipeline#ValidationException":
|
|
1029
|
+
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
1030
|
+
default:
|
|
1031
|
+
const parsedBody = parsedOutput.body;
|
|
1032
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
1033
|
+
output,
|
|
1034
|
+
parsedBody,
|
|
1035
|
+
exceptionCtor: CodePipelineServiceException_1.CodePipelineServiceException,
|
|
1036
|
+
errorCode,
|
|
1037
|
+
});
|
|
1038
|
+
}
|
|
1039
|
+
};
|
|
1040
|
+
const deserializeAws_json1_1ListActionExecutionsCommand = async (output, context) => {
|
|
1041
|
+
if (output.statusCode >= 300) {
|
|
1042
|
+
return deserializeAws_json1_1ListActionExecutionsCommandError(output, context);
|
|
1043
|
+
}
|
|
1044
|
+
const data = await parseBody(output.body, context);
|
|
1045
|
+
let contents = {};
|
|
1046
|
+
contents = deserializeAws_json1_1ListActionExecutionsOutput(data, context);
|
|
1047
|
+
const response = {
|
|
1048
|
+
$metadata: deserializeMetadata(output),
|
|
1049
|
+
...contents,
|
|
1050
|
+
};
|
|
1051
|
+
return Promise.resolve(response);
|
|
1052
|
+
};
|
|
1053
|
+
exports.deserializeAws_json1_1ListActionExecutionsCommand = deserializeAws_json1_1ListActionExecutionsCommand;
|
|
1054
|
+
const deserializeAws_json1_1ListActionExecutionsCommandError = async (output, context) => {
|
|
1055
|
+
const parsedOutput = {
|
|
1056
|
+
...output,
|
|
1057
|
+
body: await parseErrorBody(output.body, context),
|
|
1058
|
+
};
|
|
1059
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1060
|
+
switch (errorCode) {
|
|
1061
|
+
case "InvalidNextTokenException":
|
|
1062
|
+
case "com.amazonaws.codepipeline#InvalidNextTokenException":
|
|
1063
|
+
throw await deserializeAws_json1_1InvalidNextTokenExceptionResponse(parsedOutput, context);
|
|
1064
|
+
case "PipelineExecutionNotFoundException":
|
|
1065
|
+
case "com.amazonaws.codepipeline#PipelineExecutionNotFoundException":
|
|
1066
|
+
throw await deserializeAws_json1_1PipelineExecutionNotFoundExceptionResponse(parsedOutput, context);
|
|
1067
|
+
case "PipelineNotFoundException":
|
|
1068
|
+
case "com.amazonaws.codepipeline#PipelineNotFoundException":
|
|
1069
|
+
throw await deserializeAws_json1_1PipelineNotFoundExceptionResponse(parsedOutput, context);
|
|
1070
|
+
case "ValidationException":
|
|
1071
|
+
case "com.amazonaws.codepipeline#ValidationException":
|
|
1072
|
+
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
1073
|
+
default:
|
|
1074
|
+
const parsedBody = parsedOutput.body;
|
|
1075
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
1076
|
+
output,
|
|
1077
|
+
parsedBody,
|
|
1078
|
+
exceptionCtor: CodePipelineServiceException_1.CodePipelineServiceException,
|
|
1079
|
+
errorCode,
|
|
1080
|
+
});
|
|
1081
|
+
}
|
|
1082
|
+
};
|
|
1083
|
+
const deserializeAws_json1_1ListActionTypesCommand = async (output, context) => {
|
|
1084
|
+
if (output.statusCode >= 300) {
|
|
1085
|
+
return deserializeAws_json1_1ListActionTypesCommandError(output, context);
|
|
1086
|
+
}
|
|
1087
|
+
const data = await parseBody(output.body, context);
|
|
1088
|
+
let contents = {};
|
|
1089
|
+
contents = deserializeAws_json1_1ListActionTypesOutput(data, context);
|
|
1090
|
+
const response = {
|
|
1091
|
+
$metadata: deserializeMetadata(output),
|
|
1092
|
+
...contents,
|
|
1093
|
+
};
|
|
1094
|
+
return Promise.resolve(response);
|
|
1095
|
+
};
|
|
1096
|
+
exports.deserializeAws_json1_1ListActionTypesCommand = deserializeAws_json1_1ListActionTypesCommand;
|
|
1097
|
+
const deserializeAws_json1_1ListActionTypesCommandError = async (output, context) => {
|
|
1098
|
+
const parsedOutput = {
|
|
1099
|
+
...output,
|
|
1100
|
+
body: await parseErrorBody(output.body, context),
|
|
1101
|
+
};
|
|
1102
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1103
|
+
switch (errorCode) {
|
|
1104
|
+
case "InvalidNextTokenException":
|
|
1105
|
+
case "com.amazonaws.codepipeline#InvalidNextTokenException":
|
|
1106
|
+
throw await deserializeAws_json1_1InvalidNextTokenExceptionResponse(parsedOutput, context);
|
|
1107
|
+
case "ValidationException":
|
|
1108
|
+
case "com.amazonaws.codepipeline#ValidationException":
|
|
1109
|
+
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
1110
|
+
default:
|
|
1111
|
+
const parsedBody = parsedOutput.body;
|
|
1112
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
1113
|
+
output,
|
|
1114
|
+
parsedBody,
|
|
1115
|
+
exceptionCtor: CodePipelineServiceException_1.CodePipelineServiceException,
|
|
1116
|
+
errorCode,
|
|
1117
|
+
});
|
|
1118
|
+
}
|
|
1119
|
+
};
|
|
1120
|
+
const deserializeAws_json1_1ListPipelineExecutionsCommand = async (output, context) => {
|
|
1121
|
+
if (output.statusCode >= 300) {
|
|
1122
|
+
return deserializeAws_json1_1ListPipelineExecutionsCommandError(output, context);
|
|
1123
|
+
}
|
|
1124
|
+
const data = await parseBody(output.body, context);
|
|
1125
|
+
let contents = {};
|
|
1126
|
+
contents = deserializeAws_json1_1ListPipelineExecutionsOutput(data, context);
|
|
1127
|
+
const response = {
|
|
1128
|
+
$metadata: deserializeMetadata(output),
|
|
1129
|
+
...contents,
|
|
1130
|
+
};
|
|
1131
|
+
return Promise.resolve(response);
|
|
1132
|
+
};
|
|
1133
|
+
exports.deserializeAws_json1_1ListPipelineExecutionsCommand = deserializeAws_json1_1ListPipelineExecutionsCommand;
|
|
1134
|
+
const deserializeAws_json1_1ListPipelineExecutionsCommandError = async (output, context) => {
|
|
1135
|
+
const parsedOutput = {
|
|
1136
|
+
...output,
|
|
1137
|
+
body: await parseErrorBody(output.body, context),
|
|
1138
|
+
};
|
|
1139
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1140
|
+
switch (errorCode) {
|
|
1141
|
+
case "InvalidNextTokenException":
|
|
1142
|
+
case "com.amazonaws.codepipeline#InvalidNextTokenException":
|
|
1143
|
+
throw await deserializeAws_json1_1InvalidNextTokenExceptionResponse(parsedOutput, context);
|
|
1144
|
+
case "PipelineNotFoundException":
|
|
1145
|
+
case "com.amazonaws.codepipeline#PipelineNotFoundException":
|
|
1146
|
+
throw await deserializeAws_json1_1PipelineNotFoundExceptionResponse(parsedOutput, context);
|
|
1147
|
+
case "ValidationException":
|
|
1148
|
+
case "com.amazonaws.codepipeline#ValidationException":
|
|
1149
|
+
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
1150
|
+
default:
|
|
1151
|
+
const parsedBody = parsedOutput.body;
|
|
1152
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
1153
|
+
output,
|
|
1154
|
+
parsedBody,
|
|
1155
|
+
exceptionCtor: CodePipelineServiceException_1.CodePipelineServiceException,
|
|
1156
|
+
errorCode,
|
|
1157
|
+
});
|
|
1158
|
+
}
|
|
1159
|
+
};
|
|
1160
|
+
const deserializeAws_json1_1ListPipelinesCommand = async (output, context) => {
|
|
1161
|
+
if (output.statusCode >= 300) {
|
|
1162
|
+
return deserializeAws_json1_1ListPipelinesCommandError(output, context);
|
|
1163
|
+
}
|
|
1164
|
+
const data = await parseBody(output.body, context);
|
|
1165
|
+
let contents = {};
|
|
1166
|
+
contents = deserializeAws_json1_1ListPipelinesOutput(data, context);
|
|
1167
|
+
const response = {
|
|
1168
|
+
$metadata: deserializeMetadata(output),
|
|
1169
|
+
...contents,
|
|
1170
|
+
};
|
|
1171
|
+
return Promise.resolve(response);
|
|
1172
|
+
};
|
|
1173
|
+
exports.deserializeAws_json1_1ListPipelinesCommand = deserializeAws_json1_1ListPipelinesCommand;
|
|
1174
|
+
const deserializeAws_json1_1ListPipelinesCommandError = async (output, context) => {
|
|
1175
|
+
const parsedOutput = {
|
|
1176
|
+
...output,
|
|
1177
|
+
body: await parseErrorBody(output.body, context),
|
|
1178
|
+
};
|
|
1179
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1180
|
+
switch (errorCode) {
|
|
1181
|
+
case "InvalidNextTokenException":
|
|
1182
|
+
case "com.amazonaws.codepipeline#InvalidNextTokenException":
|
|
1183
|
+
throw await deserializeAws_json1_1InvalidNextTokenExceptionResponse(parsedOutput, context);
|
|
1184
|
+
case "ValidationException":
|
|
1185
|
+
case "com.amazonaws.codepipeline#ValidationException":
|
|
1186
|
+
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
1187
|
+
default:
|
|
1188
|
+
const parsedBody = parsedOutput.body;
|
|
1189
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
1190
|
+
output,
|
|
1191
|
+
parsedBody,
|
|
1192
|
+
exceptionCtor: CodePipelineServiceException_1.CodePipelineServiceException,
|
|
1193
|
+
errorCode,
|
|
1194
|
+
});
|
|
1195
|
+
}
|
|
1196
|
+
};
|
|
1197
|
+
const deserializeAws_json1_1ListTagsForResourceCommand = async (output, context) => {
|
|
1198
|
+
if (output.statusCode >= 300) {
|
|
1199
|
+
return deserializeAws_json1_1ListTagsForResourceCommandError(output, context);
|
|
1200
|
+
}
|
|
1201
|
+
const data = await parseBody(output.body, context);
|
|
1202
|
+
let contents = {};
|
|
1203
|
+
contents = deserializeAws_json1_1ListTagsForResourceOutput(data, context);
|
|
1204
|
+
const response = {
|
|
1205
|
+
$metadata: deserializeMetadata(output),
|
|
1206
|
+
...contents,
|
|
1207
|
+
};
|
|
1208
|
+
return Promise.resolve(response);
|
|
1209
|
+
};
|
|
1210
|
+
exports.deserializeAws_json1_1ListTagsForResourceCommand = deserializeAws_json1_1ListTagsForResourceCommand;
|
|
1211
|
+
const deserializeAws_json1_1ListTagsForResourceCommandError = async (output, context) => {
|
|
1212
|
+
const parsedOutput = {
|
|
1213
|
+
...output,
|
|
1214
|
+
body: await parseErrorBody(output.body, context),
|
|
1215
|
+
};
|
|
1216
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1217
|
+
switch (errorCode) {
|
|
1218
|
+
case "InvalidArnException":
|
|
1219
|
+
case "com.amazonaws.codepipeline#InvalidArnException":
|
|
1220
|
+
throw await deserializeAws_json1_1InvalidArnExceptionResponse(parsedOutput, context);
|
|
1221
|
+
case "InvalidNextTokenException":
|
|
1222
|
+
case "com.amazonaws.codepipeline#InvalidNextTokenException":
|
|
1223
|
+
throw await deserializeAws_json1_1InvalidNextTokenExceptionResponse(parsedOutput, context);
|
|
1224
|
+
case "ResourceNotFoundException":
|
|
1225
|
+
case "com.amazonaws.codepipeline#ResourceNotFoundException":
|
|
1226
|
+
throw await deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context);
|
|
1227
|
+
case "ValidationException":
|
|
1228
|
+
case "com.amazonaws.codepipeline#ValidationException":
|
|
1229
|
+
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
1230
|
+
default:
|
|
1231
|
+
const parsedBody = parsedOutput.body;
|
|
1232
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
1233
|
+
output,
|
|
1234
|
+
parsedBody,
|
|
1235
|
+
exceptionCtor: CodePipelineServiceException_1.CodePipelineServiceException,
|
|
1236
|
+
errorCode,
|
|
1237
|
+
});
|
|
1238
|
+
}
|
|
1239
|
+
};
|
|
1240
|
+
const deserializeAws_json1_1ListWebhooksCommand = async (output, context) => {
|
|
1241
|
+
if (output.statusCode >= 300) {
|
|
1242
|
+
return deserializeAws_json1_1ListWebhooksCommandError(output, context);
|
|
1243
|
+
}
|
|
1244
|
+
const data = await parseBody(output.body, context);
|
|
1245
|
+
let contents = {};
|
|
1246
|
+
contents = deserializeAws_json1_1ListWebhooksOutput(data, context);
|
|
1247
|
+
const response = {
|
|
1248
|
+
$metadata: deserializeMetadata(output),
|
|
1249
|
+
...contents,
|
|
1250
|
+
};
|
|
1251
|
+
return Promise.resolve(response);
|
|
1252
|
+
};
|
|
1253
|
+
exports.deserializeAws_json1_1ListWebhooksCommand = deserializeAws_json1_1ListWebhooksCommand;
|
|
1254
|
+
const deserializeAws_json1_1ListWebhooksCommandError = async (output, context) => {
|
|
1255
|
+
const parsedOutput = {
|
|
1256
|
+
...output,
|
|
1257
|
+
body: await parseErrorBody(output.body, context),
|
|
1258
|
+
};
|
|
1259
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1260
|
+
switch (errorCode) {
|
|
1261
|
+
case "InvalidNextTokenException":
|
|
1262
|
+
case "com.amazonaws.codepipeline#InvalidNextTokenException":
|
|
1263
|
+
throw await deserializeAws_json1_1InvalidNextTokenExceptionResponse(parsedOutput, context);
|
|
1264
|
+
case "ValidationException":
|
|
1265
|
+
case "com.amazonaws.codepipeline#ValidationException":
|
|
1266
|
+
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
1267
|
+
default:
|
|
1268
|
+
const parsedBody = parsedOutput.body;
|
|
1269
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
1270
|
+
output,
|
|
1271
|
+
parsedBody,
|
|
1272
|
+
exceptionCtor: CodePipelineServiceException_1.CodePipelineServiceException,
|
|
1273
|
+
errorCode,
|
|
1274
|
+
});
|
|
1275
|
+
}
|
|
1276
|
+
};
|
|
1277
|
+
const deserializeAws_json1_1PollForJobsCommand = async (output, context) => {
|
|
1278
|
+
if (output.statusCode >= 300) {
|
|
1279
|
+
return deserializeAws_json1_1PollForJobsCommandError(output, context);
|
|
1280
|
+
}
|
|
1281
|
+
const data = await parseBody(output.body, context);
|
|
1282
|
+
let contents = {};
|
|
1283
|
+
contents = deserializeAws_json1_1PollForJobsOutput(data, context);
|
|
1284
|
+
const response = {
|
|
1285
|
+
$metadata: deserializeMetadata(output),
|
|
1286
|
+
...contents,
|
|
1287
|
+
};
|
|
1288
|
+
return Promise.resolve(response);
|
|
1289
|
+
};
|
|
1290
|
+
exports.deserializeAws_json1_1PollForJobsCommand = deserializeAws_json1_1PollForJobsCommand;
|
|
1291
|
+
const deserializeAws_json1_1PollForJobsCommandError = async (output, context) => {
|
|
1292
|
+
const parsedOutput = {
|
|
1293
|
+
...output,
|
|
1294
|
+
body: await parseErrorBody(output.body, context),
|
|
1295
|
+
};
|
|
1296
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1297
|
+
switch (errorCode) {
|
|
1298
|
+
case "ActionTypeNotFoundException":
|
|
1299
|
+
case "com.amazonaws.codepipeline#ActionTypeNotFoundException":
|
|
1300
|
+
throw await deserializeAws_json1_1ActionTypeNotFoundExceptionResponse(parsedOutput, context);
|
|
1301
|
+
case "ValidationException":
|
|
1302
|
+
case "com.amazonaws.codepipeline#ValidationException":
|
|
1303
|
+
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
1304
|
+
default:
|
|
1305
|
+
const parsedBody = parsedOutput.body;
|
|
1306
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
1307
|
+
output,
|
|
1308
|
+
parsedBody,
|
|
1309
|
+
exceptionCtor: CodePipelineServiceException_1.CodePipelineServiceException,
|
|
1310
|
+
errorCode,
|
|
1311
|
+
});
|
|
1312
|
+
}
|
|
1313
|
+
};
|
|
1314
|
+
const deserializeAws_json1_1PollForThirdPartyJobsCommand = async (output, context) => {
|
|
1315
|
+
if (output.statusCode >= 300) {
|
|
1316
|
+
return deserializeAws_json1_1PollForThirdPartyJobsCommandError(output, context);
|
|
1317
|
+
}
|
|
1318
|
+
const data = await parseBody(output.body, context);
|
|
1319
|
+
let contents = {};
|
|
1320
|
+
contents = deserializeAws_json1_1PollForThirdPartyJobsOutput(data, context);
|
|
1321
|
+
const response = {
|
|
1322
|
+
$metadata: deserializeMetadata(output),
|
|
1323
|
+
...contents,
|
|
1324
|
+
};
|
|
1325
|
+
return Promise.resolve(response);
|
|
1326
|
+
};
|
|
1327
|
+
exports.deserializeAws_json1_1PollForThirdPartyJobsCommand = deserializeAws_json1_1PollForThirdPartyJobsCommand;
|
|
1328
|
+
const deserializeAws_json1_1PollForThirdPartyJobsCommandError = async (output, context) => {
|
|
1329
|
+
const parsedOutput = {
|
|
1330
|
+
...output,
|
|
1331
|
+
body: await parseErrorBody(output.body, context),
|
|
1332
|
+
};
|
|
1333
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1334
|
+
switch (errorCode) {
|
|
1335
|
+
case "ActionTypeNotFoundException":
|
|
1336
|
+
case "com.amazonaws.codepipeline#ActionTypeNotFoundException":
|
|
1337
|
+
throw await deserializeAws_json1_1ActionTypeNotFoundExceptionResponse(parsedOutput, context);
|
|
1338
|
+
case "ValidationException":
|
|
1339
|
+
case "com.amazonaws.codepipeline#ValidationException":
|
|
1340
|
+
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
1341
|
+
default:
|
|
1342
|
+
const parsedBody = parsedOutput.body;
|
|
1343
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
1344
|
+
output,
|
|
1345
|
+
parsedBody,
|
|
1346
|
+
exceptionCtor: CodePipelineServiceException_1.CodePipelineServiceException,
|
|
1347
|
+
errorCode,
|
|
1348
|
+
});
|
|
1349
|
+
}
|
|
1350
|
+
};
|
|
1351
|
+
const deserializeAws_json1_1PutActionRevisionCommand = async (output, context) => {
|
|
1352
|
+
if (output.statusCode >= 300) {
|
|
1353
|
+
return deserializeAws_json1_1PutActionRevisionCommandError(output, context);
|
|
1354
|
+
}
|
|
1355
|
+
const data = await parseBody(output.body, context);
|
|
1356
|
+
let contents = {};
|
|
1357
|
+
contents = deserializeAws_json1_1PutActionRevisionOutput(data, context);
|
|
1358
|
+
const response = {
|
|
1359
|
+
$metadata: deserializeMetadata(output),
|
|
1360
|
+
...contents,
|
|
1361
|
+
};
|
|
1362
|
+
return Promise.resolve(response);
|
|
1363
|
+
};
|
|
1364
|
+
exports.deserializeAws_json1_1PutActionRevisionCommand = deserializeAws_json1_1PutActionRevisionCommand;
|
|
1365
|
+
const deserializeAws_json1_1PutActionRevisionCommandError = async (output, context) => {
|
|
1366
|
+
const parsedOutput = {
|
|
1367
|
+
...output,
|
|
1368
|
+
body: await parseErrorBody(output.body, context),
|
|
1369
|
+
};
|
|
1370
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1371
|
+
switch (errorCode) {
|
|
1372
|
+
case "ActionNotFoundException":
|
|
1373
|
+
case "com.amazonaws.codepipeline#ActionNotFoundException":
|
|
1374
|
+
throw await deserializeAws_json1_1ActionNotFoundExceptionResponse(parsedOutput, context);
|
|
1375
|
+
case "PipelineNotFoundException":
|
|
1376
|
+
case "com.amazonaws.codepipeline#PipelineNotFoundException":
|
|
1377
|
+
throw await deserializeAws_json1_1PipelineNotFoundExceptionResponse(parsedOutput, context);
|
|
1378
|
+
case "StageNotFoundException":
|
|
1379
|
+
case "com.amazonaws.codepipeline#StageNotFoundException":
|
|
1380
|
+
throw await deserializeAws_json1_1StageNotFoundExceptionResponse(parsedOutput, context);
|
|
1381
|
+
case "ValidationException":
|
|
1382
|
+
case "com.amazonaws.codepipeline#ValidationException":
|
|
1383
|
+
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
1384
|
+
default:
|
|
1385
|
+
const parsedBody = parsedOutput.body;
|
|
1386
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
1387
|
+
output,
|
|
1388
|
+
parsedBody,
|
|
1389
|
+
exceptionCtor: CodePipelineServiceException_1.CodePipelineServiceException,
|
|
1390
|
+
errorCode,
|
|
1391
|
+
});
|
|
1392
|
+
}
|
|
1393
|
+
};
|
|
1394
|
+
const deserializeAws_json1_1PutApprovalResultCommand = async (output, context) => {
|
|
1395
|
+
if (output.statusCode >= 300) {
|
|
1396
|
+
return deserializeAws_json1_1PutApprovalResultCommandError(output, context);
|
|
1397
|
+
}
|
|
1398
|
+
const data = await parseBody(output.body, context);
|
|
1399
|
+
let contents = {};
|
|
1400
|
+
contents = deserializeAws_json1_1PutApprovalResultOutput(data, context);
|
|
1401
|
+
const response = {
|
|
1402
|
+
$metadata: deserializeMetadata(output),
|
|
1403
|
+
...contents,
|
|
1404
|
+
};
|
|
1405
|
+
return Promise.resolve(response);
|
|
1406
|
+
};
|
|
1407
|
+
exports.deserializeAws_json1_1PutApprovalResultCommand = deserializeAws_json1_1PutApprovalResultCommand;
|
|
1408
|
+
const deserializeAws_json1_1PutApprovalResultCommandError = async (output, context) => {
|
|
1409
|
+
const parsedOutput = {
|
|
1410
|
+
...output,
|
|
1411
|
+
body: await parseErrorBody(output.body, context),
|
|
1412
|
+
};
|
|
1413
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1414
|
+
switch (errorCode) {
|
|
1415
|
+
case "ActionNotFoundException":
|
|
1416
|
+
case "com.amazonaws.codepipeline#ActionNotFoundException":
|
|
1417
|
+
throw await deserializeAws_json1_1ActionNotFoundExceptionResponse(parsedOutput, context);
|
|
1418
|
+
case "ApprovalAlreadyCompletedException":
|
|
1419
|
+
case "com.amazonaws.codepipeline#ApprovalAlreadyCompletedException":
|
|
1420
|
+
throw await deserializeAws_json1_1ApprovalAlreadyCompletedExceptionResponse(parsedOutput, context);
|
|
1421
|
+
case "InvalidApprovalTokenException":
|
|
1422
|
+
case "com.amazonaws.codepipeline#InvalidApprovalTokenException":
|
|
1423
|
+
throw await deserializeAws_json1_1InvalidApprovalTokenExceptionResponse(parsedOutput, context);
|
|
1424
|
+
case "PipelineNotFoundException":
|
|
1425
|
+
case "com.amazonaws.codepipeline#PipelineNotFoundException":
|
|
1426
|
+
throw await deserializeAws_json1_1PipelineNotFoundExceptionResponse(parsedOutput, context);
|
|
1427
|
+
case "StageNotFoundException":
|
|
1428
|
+
case "com.amazonaws.codepipeline#StageNotFoundException":
|
|
1429
|
+
throw await deserializeAws_json1_1StageNotFoundExceptionResponse(parsedOutput, context);
|
|
1430
|
+
case "ValidationException":
|
|
1431
|
+
case "com.amazonaws.codepipeline#ValidationException":
|
|
1432
|
+
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
1433
|
+
default:
|
|
1434
|
+
const parsedBody = parsedOutput.body;
|
|
1435
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
1436
|
+
output,
|
|
1437
|
+
parsedBody,
|
|
1438
|
+
exceptionCtor: CodePipelineServiceException_1.CodePipelineServiceException,
|
|
1439
|
+
errorCode,
|
|
1440
|
+
});
|
|
1441
|
+
}
|
|
1442
|
+
};
|
|
1443
|
+
const deserializeAws_json1_1PutJobFailureResultCommand = async (output, context) => {
|
|
1444
|
+
if (output.statusCode >= 300) {
|
|
1445
|
+
return deserializeAws_json1_1PutJobFailureResultCommandError(output, context);
|
|
1446
|
+
}
|
|
1447
|
+
await collectBody(output.body, context);
|
|
1448
|
+
const response = {
|
|
1449
|
+
$metadata: deserializeMetadata(output),
|
|
1450
|
+
};
|
|
1451
|
+
return Promise.resolve(response);
|
|
1452
|
+
};
|
|
1453
|
+
exports.deserializeAws_json1_1PutJobFailureResultCommand = deserializeAws_json1_1PutJobFailureResultCommand;
|
|
1454
|
+
const deserializeAws_json1_1PutJobFailureResultCommandError = async (output, context) => {
|
|
1455
|
+
const parsedOutput = {
|
|
1456
|
+
...output,
|
|
1457
|
+
body: await parseErrorBody(output.body, context),
|
|
1458
|
+
};
|
|
1459
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1460
|
+
switch (errorCode) {
|
|
1461
|
+
case "InvalidJobStateException":
|
|
1462
|
+
case "com.amazonaws.codepipeline#InvalidJobStateException":
|
|
1463
|
+
throw await deserializeAws_json1_1InvalidJobStateExceptionResponse(parsedOutput, context);
|
|
1464
|
+
case "JobNotFoundException":
|
|
1465
|
+
case "com.amazonaws.codepipeline#JobNotFoundException":
|
|
1466
|
+
throw await deserializeAws_json1_1JobNotFoundExceptionResponse(parsedOutput, context);
|
|
1467
|
+
case "ValidationException":
|
|
1468
|
+
case "com.amazonaws.codepipeline#ValidationException":
|
|
1469
|
+
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
1470
|
+
default:
|
|
1471
|
+
const parsedBody = parsedOutput.body;
|
|
1472
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
1473
|
+
output,
|
|
1474
|
+
parsedBody,
|
|
1475
|
+
exceptionCtor: CodePipelineServiceException_1.CodePipelineServiceException,
|
|
1476
|
+
errorCode,
|
|
1477
|
+
});
|
|
1478
|
+
}
|
|
1479
|
+
};
|
|
1480
|
+
const deserializeAws_json1_1PutJobSuccessResultCommand = async (output, context) => {
|
|
1481
|
+
if (output.statusCode >= 300) {
|
|
1482
|
+
return deserializeAws_json1_1PutJobSuccessResultCommandError(output, context);
|
|
1483
|
+
}
|
|
1484
|
+
await collectBody(output.body, context);
|
|
1485
|
+
const response = {
|
|
1486
|
+
$metadata: deserializeMetadata(output),
|
|
1487
|
+
};
|
|
1488
|
+
return Promise.resolve(response);
|
|
1489
|
+
};
|
|
1490
|
+
exports.deserializeAws_json1_1PutJobSuccessResultCommand = deserializeAws_json1_1PutJobSuccessResultCommand;
|
|
1491
|
+
const deserializeAws_json1_1PutJobSuccessResultCommandError = async (output, context) => {
|
|
1492
|
+
const parsedOutput = {
|
|
1493
|
+
...output,
|
|
1494
|
+
body: await parseErrorBody(output.body, context),
|
|
1495
|
+
};
|
|
1496
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1497
|
+
switch (errorCode) {
|
|
1498
|
+
case "InvalidJobStateException":
|
|
1499
|
+
case "com.amazonaws.codepipeline#InvalidJobStateException":
|
|
1500
|
+
throw await deserializeAws_json1_1InvalidJobStateExceptionResponse(parsedOutput, context);
|
|
1501
|
+
case "JobNotFoundException":
|
|
1502
|
+
case "com.amazonaws.codepipeline#JobNotFoundException":
|
|
1503
|
+
throw await deserializeAws_json1_1JobNotFoundExceptionResponse(parsedOutput, context);
|
|
1504
|
+
case "OutputVariablesSizeExceededException":
|
|
1505
|
+
case "com.amazonaws.codepipeline#OutputVariablesSizeExceededException":
|
|
1506
|
+
throw await deserializeAws_json1_1OutputVariablesSizeExceededExceptionResponse(parsedOutput, context);
|
|
1507
|
+
case "ValidationException":
|
|
1508
|
+
case "com.amazonaws.codepipeline#ValidationException":
|
|
1509
|
+
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
1510
|
+
default:
|
|
1511
|
+
const parsedBody = parsedOutput.body;
|
|
1512
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
1513
|
+
output,
|
|
1514
|
+
parsedBody,
|
|
1515
|
+
exceptionCtor: CodePipelineServiceException_1.CodePipelineServiceException,
|
|
1516
|
+
errorCode,
|
|
1517
|
+
});
|
|
1518
|
+
}
|
|
1519
|
+
};
|
|
1520
|
+
const deserializeAws_json1_1PutThirdPartyJobFailureResultCommand = async (output, context) => {
|
|
1521
|
+
if (output.statusCode >= 300) {
|
|
1522
|
+
return deserializeAws_json1_1PutThirdPartyJobFailureResultCommandError(output, context);
|
|
1523
|
+
}
|
|
1524
|
+
await collectBody(output.body, context);
|
|
1525
|
+
const response = {
|
|
1526
|
+
$metadata: deserializeMetadata(output),
|
|
1527
|
+
};
|
|
1528
|
+
return Promise.resolve(response);
|
|
1529
|
+
};
|
|
1530
|
+
exports.deserializeAws_json1_1PutThirdPartyJobFailureResultCommand = deserializeAws_json1_1PutThirdPartyJobFailureResultCommand;
|
|
1531
|
+
const deserializeAws_json1_1PutThirdPartyJobFailureResultCommandError = async (output, context) => {
|
|
1532
|
+
const parsedOutput = {
|
|
1533
|
+
...output,
|
|
1534
|
+
body: await parseErrorBody(output.body, context),
|
|
1535
|
+
};
|
|
1536
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1537
|
+
switch (errorCode) {
|
|
1538
|
+
case "InvalidClientTokenException":
|
|
1539
|
+
case "com.amazonaws.codepipeline#InvalidClientTokenException":
|
|
1540
|
+
throw await deserializeAws_json1_1InvalidClientTokenExceptionResponse(parsedOutput, context);
|
|
1541
|
+
case "InvalidJobStateException":
|
|
1542
|
+
case "com.amazonaws.codepipeline#InvalidJobStateException":
|
|
1543
|
+
throw await deserializeAws_json1_1InvalidJobStateExceptionResponse(parsedOutput, context);
|
|
1544
|
+
case "JobNotFoundException":
|
|
1545
|
+
case "com.amazonaws.codepipeline#JobNotFoundException":
|
|
1546
|
+
throw await deserializeAws_json1_1JobNotFoundExceptionResponse(parsedOutput, context);
|
|
1547
|
+
case "ValidationException":
|
|
1548
|
+
case "com.amazonaws.codepipeline#ValidationException":
|
|
1549
|
+
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
1550
|
+
default:
|
|
1551
|
+
const parsedBody = parsedOutput.body;
|
|
1552
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
1553
|
+
output,
|
|
1554
|
+
parsedBody,
|
|
1555
|
+
exceptionCtor: CodePipelineServiceException_1.CodePipelineServiceException,
|
|
1556
|
+
errorCode,
|
|
1557
|
+
});
|
|
1558
|
+
}
|
|
1559
|
+
};
|
|
1560
|
+
const deserializeAws_json1_1PutThirdPartyJobSuccessResultCommand = async (output, context) => {
|
|
1561
|
+
if (output.statusCode >= 300) {
|
|
1562
|
+
return deserializeAws_json1_1PutThirdPartyJobSuccessResultCommandError(output, context);
|
|
1563
|
+
}
|
|
1564
|
+
await collectBody(output.body, context);
|
|
1565
|
+
const response = {
|
|
1566
|
+
$metadata: deserializeMetadata(output),
|
|
1567
|
+
};
|
|
1568
|
+
return Promise.resolve(response);
|
|
1569
|
+
};
|
|
1570
|
+
exports.deserializeAws_json1_1PutThirdPartyJobSuccessResultCommand = deserializeAws_json1_1PutThirdPartyJobSuccessResultCommand;
|
|
1571
|
+
const deserializeAws_json1_1PutThirdPartyJobSuccessResultCommandError = async (output, context) => {
|
|
1572
|
+
const parsedOutput = {
|
|
1573
|
+
...output,
|
|
1574
|
+
body: await parseErrorBody(output.body, context),
|
|
1575
|
+
};
|
|
1576
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1577
|
+
switch (errorCode) {
|
|
1578
|
+
case "InvalidClientTokenException":
|
|
1579
|
+
case "com.amazonaws.codepipeline#InvalidClientTokenException":
|
|
1580
|
+
throw await deserializeAws_json1_1InvalidClientTokenExceptionResponse(parsedOutput, context);
|
|
1581
|
+
case "InvalidJobStateException":
|
|
1582
|
+
case "com.amazonaws.codepipeline#InvalidJobStateException":
|
|
1583
|
+
throw await deserializeAws_json1_1InvalidJobStateExceptionResponse(parsedOutput, context);
|
|
1584
|
+
case "JobNotFoundException":
|
|
1585
|
+
case "com.amazonaws.codepipeline#JobNotFoundException":
|
|
1586
|
+
throw await deserializeAws_json1_1JobNotFoundExceptionResponse(parsedOutput, context);
|
|
1587
|
+
case "ValidationException":
|
|
1588
|
+
case "com.amazonaws.codepipeline#ValidationException":
|
|
1589
|
+
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
1590
|
+
default:
|
|
1591
|
+
const parsedBody = parsedOutput.body;
|
|
1592
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
1593
|
+
output,
|
|
1594
|
+
parsedBody,
|
|
1595
|
+
exceptionCtor: CodePipelineServiceException_1.CodePipelineServiceException,
|
|
1596
|
+
errorCode,
|
|
1597
|
+
});
|
|
1598
|
+
}
|
|
1599
|
+
};
|
|
1600
|
+
const deserializeAws_json1_1PutWebhookCommand = async (output, context) => {
|
|
1601
|
+
if (output.statusCode >= 300) {
|
|
1602
|
+
return deserializeAws_json1_1PutWebhookCommandError(output, context);
|
|
1603
|
+
}
|
|
1604
|
+
const data = await parseBody(output.body, context);
|
|
1605
|
+
let contents = {};
|
|
1606
|
+
contents = deserializeAws_json1_1PutWebhookOutput(data, context);
|
|
1607
|
+
const response = {
|
|
1608
|
+
$metadata: deserializeMetadata(output),
|
|
1609
|
+
...contents,
|
|
1610
|
+
};
|
|
1611
|
+
return Promise.resolve(response);
|
|
1612
|
+
};
|
|
1613
|
+
exports.deserializeAws_json1_1PutWebhookCommand = deserializeAws_json1_1PutWebhookCommand;
|
|
1614
|
+
const deserializeAws_json1_1PutWebhookCommandError = async (output, context) => {
|
|
1615
|
+
const parsedOutput = {
|
|
1616
|
+
...output,
|
|
1617
|
+
body: await parseErrorBody(output.body, context),
|
|
1618
|
+
};
|
|
1619
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1620
|
+
switch (errorCode) {
|
|
1621
|
+
case "ConcurrentModificationException":
|
|
1622
|
+
case "com.amazonaws.codepipeline#ConcurrentModificationException":
|
|
1623
|
+
throw await deserializeAws_json1_1ConcurrentModificationExceptionResponse(parsedOutput, context);
|
|
1624
|
+
case "InvalidTagsException":
|
|
1625
|
+
case "com.amazonaws.codepipeline#InvalidTagsException":
|
|
1626
|
+
throw await deserializeAws_json1_1InvalidTagsExceptionResponse(parsedOutput, context);
|
|
1627
|
+
case "InvalidWebhookAuthenticationParametersException":
|
|
1628
|
+
case "com.amazonaws.codepipeline#InvalidWebhookAuthenticationParametersException":
|
|
1629
|
+
throw await deserializeAws_json1_1InvalidWebhookAuthenticationParametersExceptionResponse(parsedOutput, context);
|
|
1630
|
+
case "InvalidWebhookFilterPatternException":
|
|
1631
|
+
case "com.amazonaws.codepipeline#InvalidWebhookFilterPatternException":
|
|
1632
|
+
throw await deserializeAws_json1_1InvalidWebhookFilterPatternExceptionResponse(parsedOutput, context);
|
|
1633
|
+
case "LimitExceededException":
|
|
1634
|
+
case "com.amazonaws.codepipeline#LimitExceededException":
|
|
1635
|
+
throw await deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context);
|
|
1636
|
+
case "PipelineNotFoundException":
|
|
1637
|
+
case "com.amazonaws.codepipeline#PipelineNotFoundException":
|
|
1638
|
+
throw await deserializeAws_json1_1PipelineNotFoundExceptionResponse(parsedOutput, context);
|
|
1639
|
+
case "TooManyTagsException":
|
|
1640
|
+
case "com.amazonaws.codepipeline#TooManyTagsException":
|
|
1641
|
+
throw await deserializeAws_json1_1TooManyTagsExceptionResponse(parsedOutput, context);
|
|
1642
|
+
case "ValidationException":
|
|
1643
|
+
case "com.amazonaws.codepipeline#ValidationException":
|
|
1644
|
+
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
1645
|
+
default:
|
|
1646
|
+
const parsedBody = parsedOutput.body;
|
|
1647
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
1648
|
+
output,
|
|
1649
|
+
parsedBody,
|
|
1650
|
+
exceptionCtor: CodePipelineServiceException_1.CodePipelineServiceException,
|
|
1651
|
+
errorCode,
|
|
1652
|
+
});
|
|
1653
|
+
}
|
|
1654
|
+
};
|
|
1655
|
+
const deserializeAws_json1_1RegisterWebhookWithThirdPartyCommand = async (output, context) => {
|
|
1656
|
+
if (output.statusCode >= 300) {
|
|
1657
|
+
return deserializeAws_json1_1RegisterWebhookWithThirdPartyCommandError(output, context);
|
|
1658
|
+
}
|
|
1659
|
+
const data = await parseBody(output.body, context);
|
|
1660
|
+
let contents = {};
|
|
1661
|
+
contents = deserializeAws_json1_1RegisterWebhookWithThirdPartyOutput(data, context);
|
|
1662
|
+
const response = {
|
|
1663
|
+
$metadata: deserializeMetadata(output),
|
|
1664
|
+
...contents,
|
|
1665
|
+
};
|
|
1666
|
+
return Promise.resolve(response);
|
|
1667
|
+
};
|
|
1668
|
+
exports.deserializeAws_json1_1RegisterWebhookWithThirdPartyCommand = deserializeAws_json1_1RegisterWebhookWithThirdPartyCommand;
|
|
1669
|
+
const deserializeAws_json1_1RegisterWebhookWithThirdPartyCommandError = async (output, context) => {
|
|
1670
|
+
const parsedOutput = {
|
|
1671
|
+
...output,
|
|
1672
|
+
body: await parseErrorBody(output.body, context),
|
|
1673
|
+
};
|
|
1674
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1675
|
+
switch (errorCode) {
|
|
1676
|
+
case "ValidationException":
|
|
1677
|
+
case "com.amazonaws.codepipeline#ValidationException":
|
|
1678
|
+
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
1679
|
+
case "WebhookNotFoundException":
|
|
1680
|
+
case "com.amazonaws.codepipeline#WebhookNotFoundException":
|
|
1681
|
+
throw await deserializeAws_json1_1WebhookNotFoundExceptionResponse(parsedOutput, context);
|
|
1682
|
+
default:
|
|
1683
|
+
const parsedBody = parsedOutput.body;
|
|
1684
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
1685
|
+
output,
|
|
1686
|
+
parsedBody,
|
|
1687
|
+
exceptionCtor: CodePipelineServiceException_1.CodePipelineServiceException,
|
|
1688
|
+
errorCode,
|
|
1689
|
+
});
|
|
1690
|
+
}
|
|
1691
|
+
};
|
|
1692
|
+
const deserializeAws_json1_1RetryStageExecutionCommand = async (output, context) => {
|
|
1693
|
+
if (output.statusCode >= 300) {
|
|
1694
|
+
return deserializeAws_json1_1RetryStageExecutionCommandError(output, context);
|
|
1695
|
+
}
|
|
1696
|
+
const data = await parseBody(output.body, context);
|
|
1697
|
+
let contents = {};
|
|
1698
|
+
contents = deserializeAws_json1_1RetryStageExecutionOutput(data, context);
|
|
1699
|
+
const response = {
|
|
1700
|
+
$metadata: deserializeMetadata(output),
|
|
1701
|
+
...contents,
|
|
1702
|
+
};
|
|
1703
|
+
return Promise.resolve(response);
|
|
1704
|
+
};
|
|
1705
|
+
exports.deserializeAws_json1_1RetryStageExecutionCommand = deserializeAws_json1_1RetryStageExecutionCommand;
|
|
1706
|
+
const deserializeAws_json1_1RetryStageExecutionCommandError = async (output, context) => {
|
|
1707
|
+
const parsedOutput = {
|
|
1708
|
+
...output,
|
|
1709
|
+
body: await parseErrorBody(output.body, context),
|
|
1710
|
+
};
|
|
1711
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1712
|
+
switch (errorCode) {
|
|
1713
|
+
case "ConflictException":
|
|
1714
|
+
case "com.amazonaws.codepipeline#ConflictException":
|
|
1715
|
+
throw await deserializeAws_json1_1ConflictExceptionResponse(parsedOutput, context);
|
|
1716
|
+
case "NotLatestPipelineExecutionException":
|
|
1717
|
+
case "com.amazonaws.codepipeline#NotLatestPipelineExecutionException":
|
|
1718
|
+
throw await deserializeAws_json1_1NotLatestPipelineExecutionExceptionResponse(parsedOutput, context);
|
|
1719
|
+
case "PipelineNotFoundException":
|
|
1720
|
+
case "com.amazonaws.codepipeline#PipelineNotFoundException":
|
|
1721
|
+
throw await deserializeAws_json1_1PipelineNotFoundExceptionResponse(parsedOutput, context);
|
|
1722
|
+
case "StageNotFoundException":
|
|
1723
|
+
case "com.amazonaws.codepipeline#StageNotFoundException":
|
|
1724
|
+
throw await deserializeAws_json1_1StageNotFoundExceptionResponse(parsedOutput, context);
|
|
1725
|
+
case "StageNotRetryableException":
|
|
1726
|
+
case "com.amazonaws.codepipeline#StageNotRetryableException":
|
|
1727
|
+
throw await deserializeAws_json1_1StageNotRetryableExceptionResponse(parsedOutput, context);
|
|
1728
|
+
case "ValidationException":
|
|
1729
|
+
case "com.amazonaws.codepipeline#ValidationException":
|
|
1730
|
+
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
1731
|
+
default:
|
|
1732
|
+
const parsedBody = parsedOutput.body;
|
|
1733
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
1734
|
+
output,
|
|
1735
|
+
parsedBody,
|
|
1736
|
+
exceptionCtor: CodePipelineServiceException_1.CodePipelineServiceException,
|
|
1737
|
+
errorCode,
|
|
1738
|
+
});
|
|
1739
|
+
}
|
|
1740
|
+
};
|
|
1741
|
+
const deserializeAws_json1_1StartPipelineExecutionCommand = async (output, context) => {
|
|
1742
|
+
if (output.statusCode >= 300) {
|
|
1743
|
+
return deserializeAws_json1_1StartPipelineExecutionCommandError(output, context);
|
|
1744
|
+
}
|
|
1745
|
+
const data = await parseBody(output.body, context);
|
|
1746
|
+
let contents = {};
|
|
1747
|
+
contents = deserializeAws_json1_1StartPipelineExecutionOutput(data, context);
|
|
1748
|
+
const response = {
|
|
1749
|
+
$metadata: deserializeMetadata(output),
|
|
1750
|
+
...contents,
|
|
1751
|
+
};
|
|
1752
|
+
return Promise.resolve(response);
|
|
1753
|
+
};
|
|
1754
|
+
exports.deserializeAws_json1_1StartPipelineExecutionCommand = deserializeAws_json1_1StartPipelineExecutionCommand;
|
|
1755
|
+
const deserializeAws_json1_1StartPipelineExecutionCommandError = async (output, context) => {
|
|
1756
|
+
const parsedOutput = {
|
|
1757
|
+
...output,
|
|
1758
|
+
body: await parseErrorBody(output.body, context),
|
|
1759
|
+
};
|
|
1760
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1761
|
+
switch (errorCode) {
|
|
1762
|
+
case "ConflictException":
|
|
1763
|
+
case "com.amazonaws.codepipeline#ConflictException":
|
|
1764
|
+
throw await deserializeAws_json1_1ConflictExceptionResponse(parsedOutput, context);
|
|
1765
|
+
case "PipelineNotFoundException":
|
|
1766
|
+
case "com.amazonaws.codepipeline#PipelineNotFoundException":
|
|
1767
|
+
throw await deserializeAws_json1_1PipelineNotFoundExceptionResponse(parsedOutput, context);
|
|
1768
|
+
case "ValidationException":
|
|
1769
|
+
case "com.amazonaws.codepipeline#ValidationException":
|
|
1770
|
+
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
1771
|
+
default:
|
|
1772
|
+
const parsedBody = parsedOutput.body;
|
|
1773
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
1774
|
+
output,
|
|
1775
|
+
parsedBody,
|
|
1776
|
+
exceptionCtor: CodePipelineServiceException_1.CodePipelineServiceException,
|
|
1777
|
+
errorCode,
|
|
1778
|
+
});
|
|
1779
|
+
}
|
|
1780
|
+
};
|
|
1781
|
+
const deserializeAws_json1_1StopPipelineExecutionCommand = async (output, context) => {
|
|
1782
|
+
if (output.statusCode >= 300) {
|
|
1783
|
+
return deserializeAws_json1_1StopPipelineExecutionCommandError(output, context);
|
|
1784
|
+
}
|
|
1785
|
+
const data = await parseBody(output.body, context);
|
|
1786
|
+
let contents = {};
|
|
1787
|
+
contents = deserializeAws_json1_1StopPipelineExecutionOutput(data, context);
|
|
1788
|
+
const response = {
|
|
1789
|
+
$metadata: deserializeMetadata(output),
|
|
1790
|
+
...contents,
|
|
1791
|
+
};
|
|
1792
|
+
return Promise.resolve(response);
|
|
1793
|
+
};
|
|
1794
|
+
exports.deserializeAws_json1_1StopPipelineExecutionCommand = deserializeAws_json1_1StopPipelineExecutionCommand;
|
|
1795
|
+
const deserializeAws_json1_1StopPipelineExecutionCommandError = async (output, context) => {
|
|
1796
|
+
const parsedOutput = {
|
|
1797
|
+
...output,
|
|
1798
|
+
body: await parseErrorBody(output.body, context),
|
|
1799
|
+
};
|
|
1800
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1801
|
+
switch (errorCode) {
|
|
1802
|
+
case "ConflictException":
|
|
1803
|
+
case "com.amazonaws.codepipeline#ConflictException":
|
|
1804
|
+
throw await deserializeAws_json1_1ConflictExceptionResponse(parsedOutput, context);
|
|
1805
|
+
case "DuplicatedStopRequestException":
|
|
1806
|
+
case "com.amazonaws.codepipeline#DuplicatedStopRequestException":
|
|
1807
|
+
throw await deserializeAws_json1_1DuplicatedStopRequestExceptionResponse(parsedOutput, context);
|
|
1808
|
+
case "PipelineExecutionNotStoppableException":
|
|
1809
|
+
case "com.amazonaws.codepipeline#PipelineExecutionNotStoppableException":
|
|
1810
|
+
throw await deserializeAws_json1_1PipelineExecutionNotStoppableExceptionResponse(parsedOutput, context);
|
|
1811
|
+
case "PipelineNotFoundException":
|
|
1812
|
+
case "com.amazonaws.codepipeline#PipelineNotFoundException":
|
|
1813
|
+
throw await deserializeAws_json1_1PipelineNotFoundExceptionResponse(parsedOutput, context);
|
|
1814
|
+
case "ValidationException":
|
|
1815
|
+
case "com.amazonaws.codepipeline#ValidationException":
|
|
1816
|
+
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
1817
|
+
default:
|
|
1818
|
+
const parsedBody = parsedOutput.body;
|
|
1819
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
1820
|
+
output,
|
|
1821
|
+
parsedBody,
|
|
1822
|
+
exceptionCtor: CodePipelineServiceException_1.CodePipelineServiceException,
|
|
1823
|
+
errorCode,
|
|
1824
|
+
});
|
|
1825
|
+
}
|
|
1826
|
+
};
|
|
1827
|
+
const deserializeAws_json1_1TagResourceCommand = async (output, context) => {
|
|
1828
|
+
if (output.statusCode >= 300) {
|
|
1829
|
+
return deserializeAws_json1_1TagResourceCommandError(output, context);
|
|
1830
|
+
}
|
|
1831
|
+
const data = await parseBody(output.body, context);
|
|
1832
|
+
let contents = {};
|
|
1833
|
+
contents = deserializeAws_json1_1TagResourceOutput(data, context);
|
|
1834
|
+
const response = {
|
|
1835
|
+
$metadata: deserializeMetadata(output),
|
|
1836
|
+
...contents,
|
|
1837
|
+
};
|
|
1838
|
+
return Promise.resolve(response);
|
|
1839
|
+
};
|
|
1840
|
+
exports.deserializeAws_json1_1TagResourceCommand = deserializeAws_json1_1TagResourceCommand;
|
|
1841
|
+
const deserializeAws_json1_1TagResourceCommandError = async (output, context) => {
|
|
1842
|
+
const parsedOutput = {
|
|
1843
|
+
...output,
|
|
1844
|
+
body: await parseErrorBody(output.body, context),
|
|
1845
|
+
};
|
|
1846
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1847
|
+
switch (errorCode) {
|
|
1848
|
+
case "ConcurrentModificationException":
|
|
1849
|
+
case "com.amazonaws.codepipeline#ConcurrentModificationException":
|
|
1850
|
+
throw await deserializeAws_json1_1ConcurrentModificationExceptionResponse(parsedOutput, context);
|
|
1851
|
+
case "InvalidArnException":
|
|
1852
|
+
case "com.amazonaws.codepipeline#InvalidArnException":
|
|
1853
|
+
throw await deserializeAws_json1_1InvalidArnExceptionResponse(parsedOutput, context);
|
|
1854
|
+
case "InvalidTagsException":
|
|
1855
|
+
case "com.amazonaws.codepipeline#InvalidTagsException":
|
|
1856
|
+
throw await deserializeAws_json1_1InvalidTagsExceptionResponse(parsedOutput, context);
|
|
1857
|
+
case "ResourceNotFoundException":
|
|
1858
|
+
case "com.amazonaws.codepipeline#ResourceNotFoundException":
|
|
1859
|
+
throw await deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context);
|
|
1860
|
+
case "TooManyTagsException":
|
|
1861
|
+
case "com.amazonaws.codepipeline#TooManyTagsException":
|
|
1862
|
+
throw await deserializeAws_json1_1TooManyTagsExceptionResponse(parsedOutput, context);
|
|
1863
|
+
case "ValidationException":
|
|
1864
|
+
case "com.amazonaws.codepipeline#ValidationException":
|
|
1865
|
+
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
1866
|
+
default:
|
|
1867
|
+
const parsedBody = parsedOutput.body;
|
|
1868
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
1869
|
+
output,
|
|
1870
|
+
parsedBody,
|
|
1871
|
+
exceptionCtor: CodePipelineServiceException_1.CodePipelineServiceException,
|
|
1872
|
+
errorCode,
|
|
1873
|
+
});
|
|
1874
|
+
}
|
|
1875
|
+
};
|
|
1876
|
+
const deserializeAws_json1_1UntagResourceCommand = async (output, context) => {
|
|
1877
|
+
if (output.statusCode >= 300) {
|
|
1878
|
+
return deserializeAws_json1_1UntagResourceCommandError(output, context);
|
|
1879
|
+
}
|
|
1880
|
+
const data = await parseBody(output.body, context);
|
|
1881
|
+
let contents = {};
|
|
1882
|
+
contents = deserializeAws_json1_1UntagResourceOutput(data, context);
|
|
1883
|
+
const response = {
|
|
1884
|
+
$metadata: deserializeMetadata(output),
|
|
1885
|
+
...contents,
|
|
1886
|
+
};
|
|
1887
|
+
return Promise.resolve(response);
|
|
1888
|
+
};
|
|
1889
|
+
exports.deserializeAws_json1_1UntagResourceCommand = deserializeAws_json1_1UntagResourceCommand;
|
|
1890
|
+
const deserializeAws_json1_1UntagResourceCommandError = async (output, context) => {
|
|
1891
|
+
const parsedOutput = {
|
|
1892
|
+
...output,
|
|
1893
|
+
body: await parseErrorBody(output.body, context),
|
|
1894
|
+
};
|
|
1895
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1896
|
+
switch (errorCode) {
|
|
1897
|
+
case "ConcurrentModificationException":
|
|
1898
|
+
case "com.amazonaws.codepipeline#ConcurrentModificationException":
|
|
1899
|
+
throw await deserializeAws_json1_1ConcurrentModificationExceptionResponse(parsedOutput, context);
|
|
1900
|
+
case "InvalidArnException":
|
|
1901
|
+
case "com.amazonaws.codepipeline#InvalidArnException":
|
|
1902
|
+
throw await deserializeAws_json1_1InvalidArnExceptionResponse(parsedOutput, context);
|
|
1903
|
+
case "InvalidTagsException":
|
|
1904
|
+
case "com.amazonaws.codepipeline#InvalidTagsException":
|
|
1905
|
+
throw await deserializeAws_json1_1InvalidTagsExceptionResponse(parsedOutput, context);
|
|
1906
|
+
case "ResourceNotFoundException":
|
|
1907
|
+
case "com.amazonaws.codepipeline#ResourceNotFoundException":
|
|
1908
|
+
throw await deserializeAws_json1_1ResourceNotFoundExceptionResponse(parsedOutput, context);
|
|
1909
|
+
case "ValidationException":
|
|
1910
|
+
case "com.amazonaws.codepipeline#ValidationException":
|
|
1911
|
+
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
1912
|
+
default:
|
|
1913
|
+
const parsedBody = parsedOutput.body;
|
|
1914
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
1915
|
+
output,
|
|
1916
|
+
parsedBody,
|
|
1917
|
+
exceptionCtor: CodePipelineServiceException_1.CodePipelineServiceException,
|
|
1918
|
+
errorCode,
|
|
1919
|
+
});
|
|
1920
|
+
}
|
|
1921
|
+
};
|
|
1922
|
+
const deserializeAws_json1_1UpdateActionTypeCommand = async (output, context) => {
|
|
1923
|
+
if (output.statusCode >= 300) {
|
|
1924
|
+
return deserializeAws_json1_1UpdateActionTypeCommandError(output, context);
|
|
1925
|
+
}
|
|
1926
|
+
await collectBody(output.body, context);
|
|
1927
|
+
const response = {
|
|
1928
|
+
$metadata: deserializeMetadata(output),
|
|
1929
|
+
};
|
|
1930
|
+
return Promise.resolve(response);
|
|
1931
|
+
};
|
|
1932
|
+
exports.deserializeAws_json1_1UpdateActionTypeCommand = deserializeAws_json1_1UpdateActionTypeCommand;
|
|
1933
|
+
const deserializeAws_json1_1UpdateActionTypeCommandError = async (output, context) => {
|
|
1934
|
+
const parsedOutput = {
|
|
1935
|
+
...output,
|
|
1936
|
+
body: await parseErrorBody(output.body, context),
|
|
1937
|
+
};
|
|
1938
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1939
|
+
switch (errorCode) {
|
|
1940
|
+
case "ActionTypeNotFoundException":
|
|
1941
|
+
case "com.amazonaws.codepipeline#ActionTypeNotFoundException":
|
|
1942
|
+
throw await deserializeAws_json1_1ActionTypeNotFoundExceptionResponse(parsedOutput, context);
|
|
1943
|
+
case "RequestFailedException":
|
|
1944
|
+
case "com.amazonaws.codepipeline#RequestFailedException":
|
|
1945
|
+
throw await deserializeAws_json1_1RequestFailedExceptionResponse(parsedOutput, context);
|
|
1946
|
+
case "ValidationException":
|
|
1947
|
+
case "com.amazonaws.codepipeline#ValidationException":
|
|
1948
|
+
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
1949
|
+
default:
|
|
1950
|
+
const parsedBody = parsedOutput.body;
|
|
1951
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
1952
|
+
output,
|
|
1953
|
+
parsedBody,
|
|
1954
|
+
exceptionCtor: CodePipelineServiceException_1.CodePipelineServiceException,
|
|
1955
|
+
errorCode,
|
|
1956
|
+
});
|
|
1957
|
+
}
|
|
1958
|
+
};
|
|
1959
|
+
const deserializeAws_json1_1UpdatePipelineCommand = async (output, context) => {
|
|
1960
|
+
if (output.statusCode >= 300) {
|
|
1961
|
+
return deserializeAws_json1_1UpdatePipelineCommandError(output, context);
|
|
1962
|
+
}
|
|
1963
|
+
const data = await parseBody(output.body, context);
|
|
1964
|
+
let contents = {};
|
|
1965
|
+
contents = deserializeAws_json1_1UpdatePipelineOutput(data, context);
|
|
1966
|
+
const response = {
|
|
1967
|
+
$metadata: deserializeMetadata(output),
|
|
1968
|
+
...contents,
|
|
1969
|
+
};
|
|
1970
|
+
return Promise.resolve(response);
|
|
1971
|
+
};
|
|
1972
|
+
exports.deserializeAws_json1_1UpdatePipelineCommand = deserializeAws_json1_1UpdatePipelineCommand;
|
|
1973
|
+
const deserializeAws_json1_1UpdatePipelineCommandError = async (output, context) => {
|
|
1974
|
+
const parsedOutput = {
|
|
1975
|
+
...output,
|
|
1976
|
+
body: await parseErrorBody(output.body, context),
|
|
1977
|
+
};
|
|
1978
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1979
|
+
switch (errorCode) {
|
|
1980
|
+
case "InvalidActionDeclarationException":
|
|
1981
|
+
case "com.amazonaws.codepipeline#InvalidActionDeclarationException":
|
|
1982
|
+
throw await deserializeAws_json1_1InvalidActionDeclarationExceptionResponse(parsedOutput, context);
|
|
1983
|
+
case "InvalidBlockerDeclarationException":
|
|
1984
|
+
case "com.amazonaws.codepipeline#InvalidBlockerDeclarationException":
|
|
1985
|
+
throw await deserializeAws_json1_1InvalidBlockerDeclarationExceptionResponse(parsedOutput, context);
|
|
1986
|
+
case "InvalidStageDeclarationException":
|
|
1987
|
+
case "com.amazonaws.codepipeline#InvalidStageDeclarationException":
|
|
1988
|
+
throw await deserializeAws_json1_1InvalidStageDeclarationExceptionResponse(parsedOutput, context);
|
|
1989
|
+
case "InvalidStructureException":
|
|
1990
|
+
case "com.amazonaws.codepipeline#InvalidStructureException":
|
|
1991
|
+
throw await deserializeAws_json1_1InvalidStructureExceptionResponse(parsedOutput, context);
|
|
1992
|
+
case "LimitExceededException":
|
|
1993
|
+
case "com.amazonaws.codepipeline#LimitExceededException":
|
|
1994
|
+
throw await deserializeAws_json1_1LimitExceededExceptionResponse(parsedOutput, context);
|
|
1995
|
+
case "ValidationException":
|
|
1996
|
+
case "com.amazonaws.codepipeline#ValidationException":
|
|
1997
|
+
throw await deserializeAws_json1_1ValidationExceptionResponse(parsedOutput, context);
|
|
1998
|
+
default:
|
|
1999
|
+
const parsedBody = parsedOutput.body;
|
|
2000
|
+
(0, smithy_client_1.throwDefaultError)({
|
|
2001
|
+
output,
|
|
2002
|
+
parsedBody,
|
|
2003
|
+
exceptionCtor: CodePipelineServiceException_1.CodePipelineServiceException,
|
|
2004
|
+
errorCode,
|
|
2005
|
+
});
|
|
2006
|
+
}
|
|
2007
|
+
};
|
|
2008
|
+
const deserializeAws_json1_1ActionNotFoundExceptionResponse = async (parsedOutput, context) => {
|
|
2009
|
+
const body = parsedOutput.body;
|
|
2010
|
+
const deserialized = deserializeAws_json1_1ActionNotFoundException(body, context);
|
|
2011
|
+
const exception = new models_0_1.ActionNotFoundException({
|
|
2012
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
2013
|
+
...deserialized,
|
|
2014
|
+
});
|
|
2015
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
2016
|
+
};
|
|
2017
|
+
const deserializeAws_json1_1ActionTypeNotFoundExceptionResponse = async (parsedOutput, context) => {
|
|
2018
|
+
const body = parsedOutput.body;
|
|
2019
|
+
const deserialized = deserializeAws_json1_1ActionTypeNotFoundException(body, context);
|
|
2020
|
+
const exception = new models_0_1.ActionTypeNotFoundException({
|
|
2021
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
2022
|
+
...deserialized,
|
|
2023
|
+
});
|
|
2024
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
2025
|
+
};
|
|
2026
|
+
const deserializeAws_json1_1ApprovalAlreadyCompletedExceptionResponse = async (parsedOutput, context) => {
|
|
2027
|
+
const body = parsedOutput.body;
|
|
2028
|
+
const deserialized = deserializeAws_json1_1ApprovalAlreadyCompletedException(body, context);
|
|
2029
|
+
const exception = new models_0_1.ApprovalAlreadyCompletedException({
|
|
2030
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
2031
|
+
...deserialized,
|
|
2032
|
+
});
|
|
2033
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
2034
|
+
};
|
|
2035
|
+
const deserializeAws_json1_1ConcurrentModificationExceptionResponse = async (parsedOutput, context) => {
|
|
2036
|
+
const body = parsedOutput.body;
|
|
2037
|
+
const deserialized = deserializeAws_json1_1ConcurrentModificationException(body, context);
|
|
2038
|
+
const exception = new models_0_1.ConcurrentModificationException({
|
|
2039
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
2040
|
+
...deserialized,
|
|
2041
|
+
});
|
|
2042
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
2043
|
+
};
|
|
2044
|
+
const deserializeAws_json1_1ConflictExceptionResponse = async (parsedOutput, context) => {
|
|
2045
|
+
const body = parsedOutput.body;
|
|
2046
|
+
const deserialized = deserializeAws_json1_1ConflictException(body, context);
|
|
2047
|
+
const exception = new models_0_1.ConflictException({
|
|
2048
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
2049
|
+
...deserialized,
|
|
2050
|
+
});
|
|
2051
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
2052
|
+
};
|
|
2053
|
+
const deserializeAws_json1_1DuplicatedStopRequestExceptionResponse = async (parsedOutput, context) => {
|
|
2054
|
+
const body = parsedOutput.body;
|
|
2055
|
+
const deserialized = deserializeAws_json1_1DuplicatedStopRequestException(body, context);
|
|
2056
|
+
const exception = new models_0_1.DuplicatedStopRequestException({
|
|
2057
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
2058
|
+
...deserialized,
|
|
2059
|
+
});
|
|
2060
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
2061
|
+
};
|
|
2062
|
+
const deserializeAws_json1_1InvalidActionDeclarationExceptionResponse = async (parsedOutput, context) => {
|
|
2063
|
+
const body = parsedOutput.body;
|
|
2064
|
+
const deserialized = deserializeAws_json1_1InvalidActionDeclarationException(body, context);
|
|
2065
|
+
const exception = new models_0_1.InvalidActionDeclarationException({
|
|
2066
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
2067
|
+
...deserialized,
|
|
2068
|
+
});
|
|
2069
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
2070
|
+
};
|
|
2071
|
+
const deserializeAws_json1_1InvalidApprovalTokenExceptionResponse = async (parsedOutput, context) => {
|
|
2072
|
+
const body = parsedOutput.body;
|
|
2073
|
+
const deserialized = deserializeAws_json1_1InvalidApprovalTokenException(body, context);
|
|
2074
|
+
const exception = new models_0_1.InvalidApprovalTokenException({
|
|
2075
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
2076
|
+
...deserialized,
|
|
2077
|
+
});
|
|
2078
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
2079
|
+
};
|
|
2080
|
+
const deserializeAws_json1_1InvalidArnExceptionResponse = async (parsedOutput, context) => {
|
|
2081
|
+
const body = parsedOutput.body;
|
|
2082
|
+
const deserialized = deserializeAws_json1_1InvalidArnException(body, context);
|
|
2083
|
+
const exception = new models_0_1.InvalidArnException({
|
|
2084
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
2085
|
+
...deserialized,
|
|
2086
|
+
});
|
|
2087
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
2088
|
+
};
|
|
2089
|
+
const deserializeAws_json1_1InvalidBlockerDeclarationExceptionResponse = async (parsedOutput, context) => {
|
|
2090
|
+
const body = parsedOutput.body;
|
|
2091
|
+
const deserialized = deserializeAws_json1_1InvalidBlockerDeclarationException(body, context);
|
|
2092
|
+
const exception = new models_0_1.InvalidBlockerDeclarationException({
|
|
2093
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
2094
|
+
...deserialized,
|
|
2095
|
+
});
|
|
2096
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
2097
|
+
};
|
|
2098
|
+
const deserializeAws_json1_1InvalidClientTokenExceptionResponse = async (parsedOutput, context) => {
|
|
2099
|
+
const body = parsedOutput.body;
|
|
2100
|
+
const deserialized = deserializeAws_json1_1InvalidClientTokenException(body, context);
|
|
2101
|
+
const exception = new models_0_1.InvalidClientTokenException({
|
|
2102
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
2103
|
+
...deserialized,
|
|
2104
|
+
});
|
|
2105
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
2106
|
+
};
|
|
2107
|
+
const deserializeAws_json1_1InvalidJobExceptionResponse = async (parsedOutput, context) => {
|
|
2108
|
+
const body = parsedOutput.body;
|
|
2109
|
+
const deserialized = deserializeAws_json1_1InvalidJobException(body, context);
|
|
2110
|
+
const exception = new models_0_1.InvalidJobException({
|
|
2111
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
2112
|
+
...deserialized,
|
|
2113
|
+
});
|
|
2114
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
2115
|
+
};
|
|
2116
|
+
const deserializeAws_json1_1InvalidJobStateExceptionResponse = async (parsedOutput, context) => {
|
|
2117
|
+
const body = parsedOutput.body;
|
|
2118
|
+
const deserialized = deserializeAws_json1_1InvalidJobStateException(body, context);
|
|
2119
|
+
const exception = new models_0_1.InvalidJobStateException({
|
|
2120
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
2121
|
+
...deserialized,
|
|
2122
|
+
});
|
|
2123
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
2124
|
+
};
|
|
2125
|
+
const deserializeAws_json1_1InvalidNextTokenExceptionResponse = async (parsedOutput, context) => {
|
|
2126
|
+
const body = parsedOutput.body;
|
|
2127
|
+
const deserialized = deserializeAws_json1_1InvalidNextTokenException(body, context);
|
|
2128
|
+
const exception = new models_0_1.InvalidNextTokenException({
|
|
2129
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
2130
|
+
...deserialized,
|
|
2131
|
+
});
|
|
2132
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
2133
|
+
};
|
|
2134
|
+
const deserializeAws_json1_1InvalidNonceExceptionResponse = async (parsedOutput, context) => {
|
|
2135
|
+
const body = parsedOutput.body;
|
|
2136
|
+
const deserialized = deserializeAws_json1_1InvalidNonceException(body, context);
|
|
2137
|
+
const exception = new models_0_1.InvalidNonceException({
|
|
2138
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
2139
|
+
...deserialized,
|
|
2140
|
+
});
|
|
2141
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
2142
|
+
};
|
|
2143
|
+
const deserializeAws_json1_1InvalidStageDeclarationExceptionResponse = async (parsedOutput, context) => {
|
|
2144
|
+
const body = parsedOutput.body;
|
|
2145
|
+
const deserialized = deserializeAws_json1_1InvalidStageDeclarationException(body, context);
|
|
2146
|
+
const exception = new models_0_1.InvalidStageDeclarationException({
|
|
2147
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
2148
|
+
...deserialized,
|
|
2149
|
+
});
|
|
2150
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
2151
|
+
};
|
|
2152
|
+
const deserializeAws_json1_1InvalidStructureExceptionResponse = async (parsedOutput, context) => {
|
|
2153
|
+
const body = parsedOutput.body;
|
|
2154
|
+
const deserialized = deserializeAws_json1_1InvalidStructureException(body, context);
|
|
2155
|
+
const exception = new models_0_1.InvalidStructureException({
|
|
2156
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
2157
|
+
...deserialized,
|
|
2158
|
+
});
|
|
2159
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
2160
|
+
};
|
|
2161
|
+
const deserializeAws_json1_1InvalidTagsExceptionResponse = async (parsedOutput, context) => {
|
|
2162
|
+
const body = parsedOutput.body;
|
|
2163
|
+
const deserialized = deserializeAws_json1_1InvalidTagsException(body, context);
|
|
2164
|
+
const exception = new models_0_1.InvalidTagsException({
|
|
2165
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
2166
|
+
...deserialized,
|
|
2167
|
+
});
|
|
2168
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
2169
|
+
};
|
|
2170
|
+
const deserializeAws_json1_1InvalidWebhookAuthenticationParametersExceptionResponse = async (parsedOutput, context) => {
|
|
2171
|
+
const body = parsedOutput.body;
|
|
2172
|
+
const deserialized = deserializeAws_json1_1InvalidWebhookAuthenticationParametersException(body, context);
|
|
2173
|
+
const exception = new models_0_1.InvalidWebhookAuthenticationParametersException({
|
|
2174
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
2175
|
+
...deserialized,
|
|
2176
|
+
});
|
|
2177
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
2178
|
+
};
|
|
2179
|
+
const deserializeAws_json1_1InvalidWebhookFilterPatternExceptionResponse = async (parsedOutput, context) => {
|
|
2180
|
+
const body = parsedOutput.body;
|
|
2181
|
+
const deserialized = deserializeAws_json1_1InvalidWebhookFilterPatternException(body, context);
|
|
2182
|
+
const exception = new models_0_1.InvalidWebhookFilterPatternException({
|
|
2183
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
2184
|
+
...deserialized,
|
|
2185
|
+
});
|
|
2186
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
2187
|
+
};
|
|
2188
|
+
const deserializeAws_json1_1JobNotFoundExceptionResponse = async (parsedOutput, context) => {
|
|
2189
|
+
const body = parsedOutput.body;
|
|
2190
|
+
const deserialized = deserializeAws_json1_1JobNotFoundException(body, context);
|
|
2191
|
+
const exception = new models_0_1.JobNotFoundException({
|
|
2192
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
2193
|
+
...deserialized,
|
|
2194
|
+
});
|
|
2195
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
2196
|
+
};
|
|
2197
|
+
const deserializeAws_json1_1LimitExceededExceptionResponse = async (parsedOutput, context) => {
|
|
2198
|
+
const body = parsedOutput.body;
|
|
2199
|
+
const deserialized = deserializeAws_json1_1LimitExceededException(body, context);
|
|
2200
|
+
const exception = new models_0_1.LimitExceededException({
|
|
2201
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
2202
|
+
...deserialized,
|
|
2203
|
+
});
|
|
2204
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
2205
|
+
};
|
|
2206
|
+
const deserializeAws_json1_1NotLatestPipelineExecutionExceptionResponse = async (parsedOutput, context) => {
|
|
2207
|
+
const body = parsedOutput.body;
|
|
2208
|
+
const deserialized = deserializeAws_json1_1NotLatestPipelineExecutionException(body, context);
|
|
2209
|
+
const exception = new models_0_1.NotLatestPipelineExecutionException({
|
|
2210
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
2211
|
+
...deserialized,
|
|
2212
|
+
});
|
|
2213
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
2214
|
+
};
|
|
2215
|
+
const deserializeAws_json1_1OutputVariablesSizeExceededExceptionResponse = async (parsedOutput, context) => {
|
|
2216
|
+
const body = parsedOutput.body;
|
|
2217
|
+
const deserialized = deserializeAws_json1_1OutputVariablesSizeExceededException(body, context);
|
|
2218
|
+
const exception = new models_0_1.OutputVariablesSizeExceededException({
|
|
2219
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
2220
|
+
...deserialized,
|
|
2221
|
+
});
|
|
2222
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
2223
|
+
};
|
|
2224
|
+
const deserializeAws_json1_1PipelineExecutionNotFoundExceptionResponse = async (parsedOutput, context) => {
|
|
2225
|
+
const body = parsedOutput.body;
|
|
2226
|
+
const deserialized = deserializeAws_json1_1PipelineExecutionNotFoundException(body, context);
|
|
2227
|
+
const exception = new models_0_1.PipelineExecutionNotFoundException({
|
|
2228
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
2229
|
+
...deserialized,
|
|
2230
|
+
});
|
|
2231
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
2232
|
+
};
|
|
2233
|
+
const deserializeAws_json1_1PipelineExecutionNotStoppableExceptionResponse = async (parsedOutput, context) => {
|
|
2234
|
+
const body = parsedOutput.body;
|
|
2235
|
+
const deserialized = deserializeAws_json1_1PipelineExecutionNotStoppableException(body, context);
|
|
2236
|
+
const exception = new models_0_1.PipelineExecutionNotStoppableException({
|
|
2237
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
2238
|
+
...deserialized,
|
|
2239
|
+
});
|
|
2240
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
2241
|
+
};
|
|
2242
|
+
const deserializeAws_json1_1PipelineNameInUseExceptionResponse = async (parsedOutput, context) => {
|
|
2243
|
+
const body = parsedOutput.body;
|
|
2244
|
+
const deserialized = deserializeAws_json1_1PipelineNameInUseException(body, context);
|
|
2245
|
+
const exception = new models_0_1.PipelineNameInUseException({
|
|
2246
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
2247
|
+
...deserialized,
|
|
2248
|
+
});
|
|
2249
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
2250
|
+
};
|
|
2251
|
+
const deserializeAws_json1_1PipelineNotFoundExceptionResponse = async (parsedOutput, context) => {
|
|
2252
|
+
const body = parsedOutput.body;
|
|
2253
|
+
const deserialized = deserializeAws_json1_1PipelineNotFoundException(body, context);
|
|
2254
|
+
const exception = new models_0_1.PipelineNotFoundException({
|
|
2255
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
2256
|
+
...deserialized,
|
|
2257
|
+
});
|
|
2258
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
2259
|
+
};
|
|
2260
|
+
const deserializeAws_json1_1PipelineVersionNotFoundExceptionResponse = async (parsedOutput, context) => {
|
|
2261
|
+
const body = parsedOutput.body;
|
|
2262
|
+
const deserialized = deserializeAws_json1_1PipelineVersionNotFoundException(body, context);
|
|
2263
|
+
const exception = new models_0_1.PipelineVersionNotFoundException({
|
|
2264
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
2265
|
+
...deserialized,
|
|
2266
|
+
});
|
|
2267
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
2268
|
+
};
|
|
2269
|
+
const deserializeAws_json1_1RequestFailedExceptionResponse = async (parsedOutput, context) => {
|
|
2270
|
+
const body = parsedOutput.body;
|
|
2271
|
+
const deserialized = deserializeAws_json1_1RequestFailedException(body, context);
|
|
2272
|
+
const exception = new models_0_1.RequestFailedException({
|
|
2273
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
2274
|
+
...deserialized,
|
|
2275
|
+
});
|
|
2276
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
2277
|
+
};
|
|
2278
|
+
const deserializeAws_json1_1ResourceNotFoundExceptionResponse = async (parsedOutput, context) => {
|
|
2279
|
+
const body = parsedOutput.body;
|
|
2280
|
+
const deserialized = deserializeAws_json1_1ResourceNotFoundException(body, context);
|
|
2281
|
+
const exception = new models_0_1.ResourceNotFoundException({
|
|
2282
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
2283
|
+
...deserialized,
|
|
2284
|
+
});
|
|
2285
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
2286
|
+
};
|
|
2287
|
+
const deserializeAws_json1_1StageNotFoundExceptionResponse = async (parsedOutput, context) => {
|
|
2288
|
+
const body = parsedOutput.body;
|
|
2289
|
+
const deserialized = deserializeAws_json1_1StageNotFoundException(body, context);
|
|
2290
|
+
const exception = new models_0_1.StageNotFoundException({
|
|
2291
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
2292
|
+
...deserialized,
|
|
2293
|
+
});
|
|
2294
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
2295
|
+
};
|
|
2296
|
+
const deserializeAws_json1_1StageNotRetryableExceptionResponse = async (parsedOutput, context) => {
|
|
2297
|
+
const body = parsedOutput.body;
|
|
2298
|
+
const deserialized = deserializeAws_json1_1StageNotRetryableException(body, context);
|
|
2299
|
+
const exception = new models_0_1.StageNotRetryableException({
|
|
2300
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
2301
|
+
...deserialized,
|
|
2302
|
+
});
|
|
2303
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
2304
|
+
};
|
|
2305
|
+
const deserializeAws_json1_1TooManyTagsExceptionResponse = async (parsedOutput, context) => {
|
|
2306
|
+
const body = parsedOutput.body;
|
|
2307
|
+
const deserialized = deserializeAws_json1_1TooManyTagsException(body, context);
|
|
2308
|
+
const exception = new models_0_1.TooManyTagsException({
|
|
2309
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
2310
|
+
...deserialized,
|
|
2311
|
+
});
|
|
2312
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
2313
|
+
};
|
|
2314
|
+
const deserializeAws_json1_1ValidationExceptionResponse = async (parsedOutput, context) => {
|
|
2315
|
+
const body = parsedOutput.body;
|
|
2316
|
+
const deserialized = deserializeAws_json1_1ValidationException(body, context);
|
|
2317
|
+
const exception = new models_0_1.ValidationException({
|
|
2318
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
2319
|
+
...deserialized,
|
|
2320
|
+
});
|
|
2321
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
2322
|
+
};
|
|
2323
|
+
const deserializeAws_json1_1WebhookNotFoundExceptionResponse = async (parsedOutput, context) => {
|
|
2324
|
+
const body = parsedOutput.body;
|
|
2325
|
+
const deserialized = deserializeAws_json1_1WebhookNotFoundException(body, context);
|
|
2326
|
+
const exception = new models_0_1.WebhookNotFoundException({
|
|
2327
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
2328
|
+
...deserialized,
|
|
2329
|
+
});
|
|
2330
|
+
return (0, smithy_client_1.decorateServiceException)(exception, body);
|
|
2331
|
+
};
|
|
2332
|
+
const serializeAws_json1_1AcknowledgeJobInput = (input, context) => {
|
|
2333
|
+
return {
|
|
2334
|
+
...(input.jobId != null && { jobId: input.jobId }),
|
|
2335
|
+
...(input.nonce != null && { nonce: input.nonce }),
|
|
2336
|
+
};
|
|
2337
|
+
};
|
|
2338
|
+
const serializeAws_json1_1AcknowledgeThirdPartyJobInput = (input, context) => {
|
|
2339
|
+
return {
|
|
2340
|
+
...(input.clientToken != null && { clientToken: input.clientToken }),
|
|
2341
|
+
...(input.jobId != null && { jobId: input.jobId }),
|
|
2342
|
+
...(input.nonce != null && { nonce: input.nonce }),
|
|
2343
|
+
};
|
|
2344
|
+
};
|
|
2345
|
+
const serializeAws_json1_1ActionConfigurationMap = (input, context) => {
|
|
2346
|
+
return Object.entries(input).reduce((acc, [key, value]) => {
|
|
2347
|
+
if (value === null) {
|
|
2348
|
+
return acc;
|
|
2349
|
+
}
|
|
2350
|
+
acc[key] = value;
|
|
2351
|
+
return acc;
|
|
2352
|
+
}, {});
|
|
2353
|
+
};
|
|
2354
|
+
const serializeAws_json1_1ActionConfigurationProperty = (input, context) => {
|
|
2355
|
+
return {
|
|
2356
|
+
...(input.description != null && { description: input.description }),
|
|
2357
|
+
...(input.key != null && { key: input.key }),
|
|
2358
|
+
...(input.name != null && { name: input.name }),
|
|
2359
|
+
...(input.queryable != null && { queryable: input.queryable }),
|
|
2360
|
+
...(input.required != null && { required: input.required }),
|
|
2361
|
+
...(input.secret != null && { secret: input.secret }),
|
|
2362
|
+
...(input.type != null && { type: input.type }),
|
|
2363
|
+
};
|
|
2364
|
+
};
|
|
2365
|
+
const serializeAws_json1_1ActionConfigurationPropertyList = (input, context) => {
|
|
2366
|
+
return input
|
|
2367
|
+
.filter((e) => e != null)
|
|
2368
|
+
.map((entry) => {
|
|
2369
|
+
return serializeAws_json1_1ActionConfigurationProperty(entry, context);
|
|
2370
|
+
});
|
|
2371
|
+
};
|
|
2372
|
+
const serializeAws_json1_1ActionDeclaration = (input, context) => {
|
|
2373
|
+
return {
|
|
2374
|
+
...(input.actionTypeId != null && { actionTypeId: serializeAws_json1_1ActionTypeId(input.actionTypeId, context) }),
|
|
2375
|
+
...(input.configuration != null && {
|
|
2376
|
+
configuration: serializeAws_json1_1ActionConfigurationMap(input.configuration, context),
|
|
2377
|
+
}),
|
|
2378
|
+
...(input.inputArtifacts != null && {
|
|
2379
|
+
inputArtifacts: serializeAws_json1_1InputArtifactList(input.inputArtifacts, context),
|
|
2380
|
+
}),
|
|
2381
|
+
...(input.name != null && { name: input.name }),
|
|
2382
|
+
...(input.namespace != null && { namespace: input.namespace }),
|
|
2383
|
+
...(input.outputArtifacts != null && {
|
|
2384
|
+
outputArtifacts: serializeAws_json1_1OutputArtifactList(input.outputArtifacts, context),
|
|
2385
|
+
}),
|
|
2386
|
+
...(input.region != null && { region: input.region }),
|
|
2387
|
+
...(input.roleArn != null && { roleArn: input.roleArn }),
|
|
2388
|
+
...(input.runOrder != null && { runOrder: input.runOrder }),
|
|
2389
|
+
};
|
|
2390
|
+
};
|
|
2391
|
+
const serializeAws_json1_1ActionExecutionFilter = (input, context) => {
|
|
2392
|
+
return {
|
|
2393
|
+
...(input.pipelineExecutionId != null && { pipelineExecutionId: input.pipelineExecutionId }),
|
|
2394
|
+
};
|
|
2395
|
+
};
|
|
2396
|
+
const serializeAws_json1_1ActionRevision = (input, context) => {
|
|
2397
|
+
return {
|
|
2398
|
+
...(input.created != null && { created: Math.round(input.created.getTime() / 1000) }),
|
|
2399
|
+
...(input.revisionChangeId != null && { revisionChangeId: input.revisionChangeId }),
|
|
2400
|
+
...(input.revisionId != null && { revisionId: input.revisionId }),
|
|
2401
|
+
};
|
|
2402
|
+
};
|
|
2403
|
+
const serializeAws_json1_1ActionTypeArtifactDetails = (input, context) => {
|
|
2404
|
+
return {
|
|
2405
|
+
...(input.maximumCount != null && { maximumCount: input.maximumCount }),
|
|
2406
|
+
...(input.minimumCount != null && { minimumCount: input.minimumCount }),
|
|
2407
|
+
};
|
|
2408
|
+
};
|
|
2409
|
+
const serializeAws_json1_1ActionTypeDeclaration = (input, context) => {
|
|
2410
|
+
return {
|
|
2411
|
+
...(input.description != null && { description: input.description }),
|
|
2412
|
+
...(input.executor != null && { executor: serializeAws_json1_1ActionTypeExecutor(input.executor, context) }),
|
|
2413
|
+
...(input.id != null && { id: serializeAws_json1_1ActionTypeIdentifier(input.id, context) }),
|
|
2414
|
+
...(input.inputArtifactDetails != null && {
|
|
2415
|
+
inputArtifactDetails: serializeAws_json1_1ActionTypeArtifactDetails(input.inputArtifactDetails, context),
|
|
2416
|
+
}),
|
|
2417
|
+
...(input.outputArtifactDetails != null && {
|
|
2418
|
+
outputArtifactDetails: serializeAws_json1_1ActionTypeArtifactDetails(input.outputArtifactDetails, context),
|
|
2419
|
+
}),
|
|
2420
|
+
...(input.permissions != null && {
|
|
2421
|
+
permissions: serializeAws_json1_1ActionTypePermissions(input.permissions, context),
|
|
2422
|
+
}),
|
|
2423
|
+
...(input.properties != null && {
|
|
2424
|
+
properties: serializeAws_json1_1ActionTypeProperties(input.properties, context),
|
|
2425
|
+
}),
|
|
2426
|
+
...(input.urls != null && { urls: serializeAws_json1_1ActionTypeUrls(input.urls, context) }),
|
|
2427
|
+
};
|
|
2428
|
+
};
|
|
2429
|
+
const serializeAws_json1_1ActionTypeExecutor = (input, context) => {
|
|
2430
|
+
return {
|
|
2431
|
+
...(input.configuration != null && {
|
|
2432
|
+
configuration: serializeAws_json1_1ExecutorConfiguration(input.configuration, context),
|
|
2433
|
+
}),
|
|
2434
|
+
...(input.jobTimeout != null && { jobTimeout: input.jobTimeout }),
|
|
2435
|
+
...(input.policyStatementsTemplate != null && { policyStatementsTemplate: input.policyStatementsTemplate }),
|
|
2436
|
+
...(input.type != null && { type: input.type }),
|
|
2437
|
+
};
|
|
2438
|
+
};
|
|
2439
|
+
const serializeAws_json1_1ActionTypeId = (input, context) => {
|
|
2440
|
+
return {
|
|
2441
|
+
...(input.category != null && { category: input.category }),
|
|
2442
|
+
...(input.owner != null && { owner: input.owner }),
|
|
2443
|
+
...(input.provider != null && { provider: input.provider }),
|
|
2444
|
+
...(input.version != null && { version: input.version }),
|
|
2445
|
+
};
|
|
2446
|
+
};
|
|
2447
|
+
const serializeAws_json1_1ActionTypeIdentifier = (input, context) => {
|
|
2448
|
+
return {
|
|
2449
|
+
...(input.category != null && { category: input.category }),
|
|
2450
|
+
...(input.owner != null && { owner: input.owner }),
|
|
2451
|
+
...(input.provider != null && { provider: input.provider }),
|
|
2452
|
+
...(input.version != null && { version: input.version }),
|
|
2453
|
+
};
|
|
2454
|
+
};
|
|
2455
|
+
const serializeAws_json1_1ActionTypePermissions = (input, context) => {
|
|
2456
|
+
return {
|
|
2457
|
+
...(input.allowedAccounts != null && {
|
|
2458
|
+
allowedAccounts: serializeAws_json1_1AllowedAccounts(input.allowedAccounts, context),
|
|
2459
|
+
}),
|
|
2460
|
+
};
|
|
2461
|
+
};
|
|
2462
|
+
const serializeAws_json1_1ActionTypeProperties = (input, context) => {
|
|
2463
|
+
return input
|
|
2464
|
+
.filter((e) => e != null)
|
|
2465
|
+
.map((entry) => {
|
|
2466
|
+
return serializeAws_json1_1ActionTypeProperty(entry, context);
|
|
2467
|
+
});
|
|
2468
|
+
};
|
|
2469
|
+
const serializeAws_json1_1ActionTypeProperty = (input, context) => {
|
|
2470
|
+
return {
|
|
2471
|
+
...(input.description != null && { description: input.description }),
|
|
2472
|
+
...(input.key != null && { key: input.key }),
|
|
2473
|
+
...(input.name != null && { name: input.name }),
|
|
2474
|
+
...(input.noEcho != null && { noEcho: input.noEcho }),
|
|
2475
|
+
...(input.optional != null && { optional: input.optional }),
|
|
2476
|
+
...(input.queryable != null && { queryable: input.queryable }),
|
|
2477
|
+
};
|
|
2478
|
+
};
|
|
2479
|
+
const serializeAws_json1_1ActionTypeSettings = (input, context) => {
|
|
2480
|
+
return {
|
|
2481
|
+
...(input.entityUrlTemplate != null && { entityUrlTemplate: input.entityUrlTemplate }),
|
|
2482
|
+
...(input.executionUrlTemplate != null && { executionUrlTemplate: input.executionUrlTemplate }),
|
|
2483
|
+
...(input.revisionUrlTemplate != null && { revisionUrlTemplate: input.revisionUrlTemplate }),
|
|
2484
|
+
...(input.thirdPartyConfigurationUrl != null && { thirdPartyConfigurationUrl: input.thirdPartyConfigurationUrl }),
|
|
2485
|
+
};
|
|
2486
|
+
};
|
|
2487
|
+
const serializeAws_json1_1ActionTypeUrls = (input, context) => {
|
|
2488
|
+
return {
|
|
2489
|
+
...(input.configurationUrl != null && { configurationUrl: input.configurationUrl }),
|
|
2490
|
+
...(input.entityUrlTemplate != null && { entityUrlTemplate: input.entityUrlTemplate }),
|
|
2491
|
+
...(input.executionUrlTemplate != null && { executionUrlTemplate: input.executionUrlTemplate }),
|
|
2492
|
+
...(input.revisionUrlTemplate != null && { revisionUrlTemplate: input.revisionUrlTemplate }),
|
|
2493
|
+
};
|
|
2494
|
+
};
|
|
2495
|
+
const serializeAws_json1_1AllowedAccounts = (input, context) => {
|
|
2496
|
+
return input
|
|
2497
|
+
.filter((e) => e != null)
|
|
2498
|
+
.map((entry) => {
|
|
2499
|
+
return entry;
|
|
2500
|
+
});
|
|
2501
|
+
};
|
|
2502
|
+
const serializeAws_json1_1ApprovalResult = (input, context) => {
|
|
2503
|
+
return {
|
|
2504
|
+
...(input.status != null && { status: input.status }),
|
|
2505
|
+
...(input.summary != null && { summary: input.summary }),
|
|
2506
|
+
};
|
|
2507
|
+
};
|
|
2508
|
+
const serializeAws_json1_1ArtifactDetails = (input, context) => {
|
|
2509
|
+
return {
|
|
2510
|
+
...(input.maximumCount != null && { maximumCount: input.maximumCount }),
|
|
2511
|
+
...(input.minimumCount != null && { minimumCount: input.minimumCount }),
|
|
2512
|
+
};
|
|
2513
|
+
};
|
|
2514
|
+
const serializeAws_json1_1ArtifactStore = (input, context) => {
|
|
2515
|
+
return {
|
|
2516
|
+
...(input.encryptionKey != null && {
|
|
2517
|
+
encryptionKey: serializeAws_json1_1EncryptionKey(input.encryptionKey, context),
|
|
2518
|
+
}),
|
|
2519
|
+
...(input.location != null && { location: input.location }),
|
|
2520
|
+
...(input.type != null && { type: input.type }),
|
|
2521
|
+
};
|
|
2522
|
+
};
|
|
2523
|
+
const serializeAws_json1_1ArtifactStoreMap = (input, context) => {
|
|
2524
|
+
return Object.entries(input).reduce((acc, [key, value]) => {
|
|
2525
|
+
if (value === null) {
|
|
2526
|
+
return acc;
|
|
2527
|
+
}
|
|
2528
|
+
acc[key] = serializeAws_json1_1ArtifactStore(value, context);
|
|
2529
|
+
return acc;
|
|
2530
|
+
}, {});
|
|
2531
|
+
};
|
|
2532
|
+
const serializeAws_json1_1BlockerDeclaration = (input, context) => {
|
|
2533
|
+
return {
|
|
2534
|
+
...(input.name != null && { name: input.name }),
|
|
2535
|
+
...(input.type != null && { type: input.type }),
|
|
2536
|
+
};
|
|
2537
|
+
};
|
|
2538
|
+
const serializeAws_json1_1CreateCustomActionTypeInput = (input, context) => {
|
|
2539
|
+
return {
|
|
2540
|
+
...(input.category != null && { category: input.category }),
|
|
2541
|
+
...(input.configurationProperties != null && {
|
|
2542
|
+
configurationProperties: serializeAws_json1_1ActionConfigurationPropertyList(input.configurationProperties, context),
|
|
2543
|
+
}),
|
|
2544
|
+
...(input.inputArtifactDetails != null && {
|
|
2545
|
+
inputArtifactDetails: serializeAws_json1_1ArtifactDetails(input.inputArtifactDetails, context),
|
|
2546
|
+
}),
|
|
2547
|
+
...(input.outputArtifactDetails != null && {
|
|
2548
|
+
outputArtifactDetails: serializeAws_json1_1ArtifactDetails(input.outputArtifactDetails, context),
|
|
2549
|
+
}),
|
|
2550
|
+
...(input.provider != null && { provider: input.provider }),
|
|
2551
|
+
...(input.settings != null && { settings: serializeAws_json1_1ActionTypeSettings(input.settings, context) }),
|
|
2552
|
+
...(input.tags != null && { tags: serializeAws_json1_1TagList(input.tags, context) }),
|
|
2553
|
+
...(input.version != null && { version: input.version }),
|
|
2554
|
+
};
|
|
2555
|
+
};
|
|
2556
|
+
const serializeAws_json1_1CreatePipelineInput = (input, context) => {
|
|
2557
|
+
return {
|
|
2558
|
+
...(input.pipeline != null && { pipeline: serializeAws_json1_1PipelineDeclaration(input.pipeline, context) }),
|
|
2559
|
+
...(input.tags != null && { tags: serializeAws_json1_1TagList(input.tags, context) }),
|
|
2560
|
+
};
|
|
2561
|
+
};
|
|
2562
|
+
const serializeAws_json1_1CurrentRevision = (input, context) => {
|
|
2563
|
+
return {
|
|
2564
|
+
...(input.changeIdentifier != null && { changeIdentifier: input.changeIdentifier }),
|
|
2565
|
+
...(input.created != null && { created: Math.round(input.created.getTime() / 1000) }),
|
|
2566
|
+
...(input.revision != null && { revision: input.revision }),
|
|
2567
|
+
...(input.revisionSummary != null && { revisionSummary: input.revisionSummary }),
|
|
2568
|
+
};
|
|
2569
|
+
};
|
|
2570
|
+
const serializeAws_json1_1DeleteCustomActionTypeInput = (input, context) => {
|
|
2571
|
+
return {
|
|
2572
|
+
...(input.category != null && { category: input.category }),
|
|
2573
|
+
...(input.provider != null && { provider: input.provider }),
|
|
2574
|
+
...(input.version != null && { version: input.version }),
|
|
2575
|
+
};
|
|
2576
|
+
};
|
|
2577
|
+
const serializeAws_json1_1DeletePipelineInput = (input, context) => {
|
|
2578
|
+
return {
|
|
2579
|
+
...(input.name != null && { name: input.name }),
|
|
2580
|
+
};
|
|
2581
|
+
};
|
|
2582
|
+
const serializeAws_json1_1DeleteWebhookInput = (input, context) => {
|
|
2583
|
+
return {
|
|
2584
|
+
...(input.name != null && { name: input.name }),
|
|
2585
|
+
};
|
|
2586
|
+
};
|
|
2587
|
+
const serializeAws_json1_1DeregisterWebhookWithThirdPartyInput = (input, context) => {
|
|
2588
|
+
return {
|
|
2589
|
+
...(input.webhookName != null && { webhookName: input.webhookName }),
|
|
2590
|
+
};
|
|
2591
|
+
};
|
|
2592
|
+
const serializeAws_json1_1DisableStageTransitionInput = (input, context) => {
|
|
2593
|
+
return {
|
|
2594
|
+
...(input.pipelineName != null && { pipelineName: input.pipelineName }),
|
|
2595
|
+
...(input.reason != null && { reason: input.reason }),
|
|
2596
|
+
...(input.stageName != null && { stageName: input.stageName }),
|
|
2597
|
+
...(input.transitionType != null && { transitionType: input.transitionType }),
|
|
2598
|
+
};
|
|
2599
|
+
};
|
|
2600
|
+
const serializeAws_json1_1EnableStageTransitionInput = (input, context) => {
|
|
2601
|
+
return {
|
|
2602
|
+
...(input.pipelineName != null && { pipelineName: input.pipelineName }),
|
|
2603
|
+
...(input.stageName != null && { stageName: input.stageName }),
|
|
2604
|
+
...(input.transitionType != null && { transitionType: input.transitionType }),
|
|
2605
|
+
};
|
|
2606
|
+
};
|
|
2607
|
+
const serializeAws_json1_1EncryptionKey = (input, context) => {
|
|
2608
|
+
return {
|
|
2609
|
+
...(input.id != null && { id: input.id }),
|
|
2610
|
+
...(input.type != null && { type: input.type }),
|
|
2611
|
+
};
|
|
2612
|
+
};
|
|
2613
|
+
const serializeAws_json1_1ExecutionDetails = (input, context) => {
|
|
2614
|
+
return {
|
|
2615
|
+
...(input.externalExecutionId != null && { externalExecutionId: input.externalExecutionId }),
|
|
2616
|
+
...(input.percentComplete != null && { percentComplete: input.percentComplete }),
|
|
2617
|
+
...(input.summary != null && { summary: input.summary }),
|
|
2618
|
+
};
|
|
2619
|
+
};
|
|
2620
|
+
const serializeAws_json1_1ExecutorConfiguration = (input, context) => {
|
|
2621
|
+
return {
|
|
2622
|
+
...(input.jobWorkerExecutorConfiguration != null && {
|
|
2623
|
+
jobWorkerExecutorConfiguration: serializeAws_json1_1JobWorkerExecutorConfiguration(input.jobWorkerExecutorConfiguration, context),
|
|
2624
|
+
}),
|
|
2625
|
+
...(input.lambdaExecutorConfiguration != null && {
|
|
2626
|
+
lambdaExecutorConfiguration: serializeAws_json1_1LambdaExecutorConfiguration(input.lambdaExecutorConfiguration, context),
|
|
2627
|
+
}),
|
|
2628
|
+
};
|
|
2629
|
+
};
|
|
2630
|
+
const serializeAws_json1_1FailureDetails = (input, context) => {
|
|
2631
|
+
return {
|
|
2632
|
+
...(input.externalExecutionId != null && { externalExecutionId: input.externalExecutionId }),
|
|
2633
|
+
...(input.message != null && { message: input.message }),
|
|
2634
|
+
...(input.type != null && { type: input.type }),
|
|
2635
|
+
};
|
|
2636
|
+
};
|
|
2637
|
+
const serializeAws_json1_1GetActionTypeInput = (input, context) => {
|
|
2638
|
+
return {
|
|
2639
|
+
...(input.category != null && { category: input.category }),
|
|
2640
|
+
...(input.owner != null && { owner: input.owner }),
|
|
2641
|
+
...(input.provider != null && { provider: input.provider }),
|
|
2642
|
+
...(input.version != null && { version: input.version }),
|
|
2643
|
+
};
|
|
2644
|
+
};
|
|
2645
|
+
const serializeAws_json1_1GetJobDetailsInput = (input, context) => {
|
|
2646
|
+
return {
|
|
2647
|
+
...(input.jobId != null && { jobId: input.jobId }),
|
|
2648
|
+
};
|
|
2649
|
+
};
|
|
2650
|
+
const serializeAws_json1_1GetPipelineExecutionInput = (input, context) => {
|
|
2651
|
+
return {
|
|
2652
|
+
...(input.pipelineExecutionId != null && { pipelineExecutionId: input.pipelineExecutionId }),
|
|
2653
|
+
...(input.pipelineName != null && { pipelineName: input.pipelineName }),
|
|
2654
|
+
};
|
|
2655
|
+
};
|
|
2656
|
+
const serializeAws_json1_1GetPipelineInput = (input, context) => {
|
|
2657
|
+
return {
|
|
2658
|
+
...(input.name != null && { name: input.name }),
|
|
2659
|
+
...(input.version != null && { version: input.version }),
|
|
2660
|
+
};
|
|
2661
|
+
};
|
|
2662
|
+
const serializeAws_json1_1GetPipelineStateInput = (input, context) => {
|
|
2663
|
+
return {
|
|
2664
|
+
...(input.name != null && { name: input.name }),
|
|
2665
|
+
};
|
|
2666
|
+
};
|
|
2667
|
+
const serializeAws_json1_1GetThirdPartyJobDetailsInput = (input, context) => {
|
|
2668
|
+
return {
|
|
2669
|
+
...(input.clientToken != null && { clientToken: input.clientToken }),
|
|
2670
|
+
...(input.jobId != null && { jobId: input.jobId }),
|
|
2671
|
+
};
|
|
2672
|
+
};
|
|
2673
|
+
const serializeAws_json1_1InputArtifact = (input, context) => {
|
|
2674
|
+
return {
|
|
2675
|
+
...(input.name != null && { name: input.name }),
|
|
2676
|
+
};
|
|
2677
|
+
};
|
|
2678
|
+
const serializeAws_json1_1InputArtifactList = (input, context) => {
|
|
2679
|
+
return input
|
|
2680
|
+
.filter((e) => e != null)
|
|
2681
|
+
.map((entry) => {
|
|
2682
|
+
return serializeAws_json1_1InputArtifact(entry, context);
|
|
2683
|
+
});
|
|
2684
|
+
};
|
|
2685
|
+
const serializeAws_json1_1JobWorkerExecutorConfiguration = (input, context) => {
|
|
2686
|
+
return {
|
|
2687
|
+
...(input.pollingAccounts != null && {
|
|
2688
|
+
pollingAccounts: serializeAws_json1_1PollingAccountList(input.pollingAccounts, context),
|
|
2689
|
+
}),
|
|
2690
|
+
...(input.pollingServicePrincipals != null && {
|
|
2691
|
+
pollingServicePrincipals: serializeAws_json1_1PollingServicePrincipalList(input.pollingServicePrincipals, context),
|
|
2692
|
+
}),
|
|
2693
|
+
};
|
|
2694
|
+
};
|
|
2695
|
+
const serializeAws_json1_1LambdaExecutorConfiguration = (input, context) => {
|
|
2696
|
+
return {
|
|
2697
|
+
...(input.lambdaFunctionArn != null && { lambdaFunctionArn: input.lambdaFunctionArn }),
|
|
2698
|
+
};
|
|
2699
|
+
};
|
|
2700
|
+
const serializeAws_json1_1ListActionExecutionsInput = (input, context) => {
|
|
2701
|
+
return {
|
|
2702
|
+
...(input.filter != null && { filter: serializeAws_json1_1ActionExecutionFilter(input.filter, context) }),
|
|
2703
|
+
...(input.maxResults != null && { maxResults: input.maxResults }),
|
|
2704
|
+
...(input.nextToken != null && { nextToken: input.nextToken }),
|
|
2705
|
+
...(input.pipelineName != null && { pipelineName: input.pipelineName }),
|
|
2706
|
+
};
|
|
2707
|
+
};
|
|
2708
|
+
const serializeAws_json1_1ListActionTypesInput = (input, context) => {
|
|
2709
|
+
return {
|
|
2710
|
+
...(input.actionOwnerFilter != null && { actionOwnerFilter: input.actionOwnerFilter }),
|
|
2711
|
+
...(input.nextToken != null && { nextToken: input.nextToken }),
|
|
2712
|
+
...(input.regionFilter != null && { regionFilter: input.regionFilter }),
|
|
2713
|
+
};
|
|
2714
|
+
};
|
|
2715
|
+
const serializeAws_json1_1ListPipelineExecutionsInput = (input, context) => {
|
|
2716
|
+
return {
|
|
2717
|
+
...(input.maxResults != null && { maxResults: input.maxResults }),
|
|
2718
|
+
...(input.nextToken != null && { nextToken: input.nextToken }),
|
|
2719
|
+
...(input.pipelineName != null && { pipelineName: input.pipelineName }),
|
|
2720
|
+
};
|
|
2721
|
+
};
|
|
2722
|
+
const serializeAws_json1_1ListPipelinesInput = (input, context) => {
|
|
2723
|
+
return {
|
|
2724
|
+
...(input.maxResults != null && { maxResults: input.maxResults }),
|
|
2725
|
+
...(input.nextToken != null && { nextToken: input.nextToken }),
|
|
2726
|
+
};
|
|
2727
|
+
};
|
|
2728
|
+
const serializeAws_json1_1ListTagsForResourceInput = (input, context) => {
|
|
2729
|
+
return {
|
|
2730
|
+
...(input.maxResults != null && { maxResults: input.maxResults }),
|
|
2731
|
+
...(input.nextToken != null && { nextToken: input.nextToken }),
|
|
2732
|
+
...(input.resourceArn != null && { resourceArn: input.resourceArn }),
|
|
2733
|
+
};
|
|
2734
|
+
};
|
|
2735
|
+
const serializeAws_json1_1ListWebhooksInput = (input, context) => {
|
|
2736
|
+
return {
|
|
2737
|
+
...(input.MaxResults != null && { MaxResults: input.MaxResults }),
|
|
2738
|
+
...(input.NextToken != null && { NextToken: input.NextToken }),
|
|
2739
|
+
};
|
|
2740
|
+
};
|
|
2741
|
+
const serializeAws_json1_1OutputArtifact = (input, context) => {
|
|
2742
|
+
return {
|
|
2743
|
+
...(input.name != null && { name: input.name }),
|
|
2744
|
+
};
|
|
2745
|
+
};
|
|
2746
|
+
const serializeAws_json1_1OutputArtifactList = (input, context) => {
|
|
2747
|
+
return input
|
|
2748
|
+
.filter((e) => e != null)
|
|
2749
|
+
.map((entry) => {
|
|
2750
|
+
return serializeAws_json1_1OutputArtifact(entry, context);
|
|
2751
|
+
});
|
|
2752
|
+
};
|
|
2753
|
+
const serializeAws_json1_1OutputVariablesMap = (input, context) => {
|
|
2754
|
+
return Object.entries(input).reduce((acc, [key, value]) => {
|
|
2755
|
+
if (value === null) {
|
|
2756
|
+
return acc;
|
|
2757
|
+
}
|
|
2758
|
+
acc[key] = value;
|
|
2759
|
+
return acc;
|
|
2760
|
+
}, {});
|
|
2761
|
+
};
|
|
2762
|
+
const serializeAws_json1_1PipelineDeclaration = (input, context) => {
|
|
2763
|
+
return {
|
|
2764
|
+
...(input.artifactStore != null && {
|
|
2765
|
+
artifactStore: serializeAws_json1_1ArtifactStore(input.artifactStore, context),
|
|
2766
|
+
}),
|
|
2767
|
+
...(input.artifactStores != null && {
|
|
2768
|
+
artifactStores: serializeAws_json1_1ArtifactStoreMap(input.artifactStores, context),
|
|
2769
|
+
}),
|
|
2770
|
+
...(input.name != null && { name: input.name }),
|
|
2771
|
+
...(input.roleArn != null && { roleArn: input.roleArn }),
|
|
2772
|
+
...(input.stages != null && { stages: serializeAws_json1_1PipelineStageDeclarationList(input.stages, context) }),
|
|
2773
|
+
...(input.version != null && { version: input.version }),
|
|
2774
|
+
};
|
|
2775
|
+
};
|
|
2776
|
+
const serializeAws_json1_1PipelineStageDeclarationList = (input, context) => {
|
|
2777
|
+
return input
|
|
2778
|
+
.filter((e) => e != null)
|
|
2779
|
+
.map((entry) => {
|
|
2780
|
+
return serializeAws_json1_1StageDeclaration(entry, context);
|
|
2781
|
+
});
|
|
2782
|
+
};
|
|
2783
|
+
const serializeAws_json1_1PollForJobsInput = (input, context) => {
|
|
2784
|
+
return {
|
|
2785
|
+
...(input.actionTypeId != null && { actionTypeId: serializeAws_json1_1ActionTypeId(input.actionTypeId, context) }),
|
|
2786
|
+
...(input.maxBatchSize != null && { maxBatchSize: input.maxBatchSize }),
|
|
2787
|
+
...(input.queryParam != null && { queryParam: serializeAws_json1_1QueryParamMap(input.queryParam, context) }),
|
|
2788
|
+
};
|
|
2789
|
+
};
|
|
2790
|
+
const serializeAws_json1_1PollForThirdPartyJobsInput = (input, context) => {
|
|
2791
|
+
return {
|
|
2792
|
+
...(input.actionTypeId != null && { actionTypeId: serializeAws_json1_1ActionTypeId(input.actionTypeId, context) }),
|
|
2793
|
+
...(input.maxBatchSize != null && { maxBatchSize: input.maxBatchSize }),
|
|
2794
|
+
};
|
|
2795
|
+
};
|
|
2796
|
+
const serializeAws_json1_1PollingAccountList = (input, context) => {
|
|
2797
|
+
return input
|
|
2798
|
+
.filter((e) => e != null)
|
|
2799
|
+
.map((entry) => {
|
|
2800
|
+
return entry;
|
|
2801
|
+
});
|
|
2802
|
+
};
|
|
2803
|
+
const serializeAws_json1_1PollingServicePrincipalList = (input, context) => {
|
|
2804
|
+
return input
|
|
2805
|
+
.filter((e) => e != null)
|
|
2806
|
+
.map((entry) => {
|
|
2807
|
+
return entry;
|
|
2808
|
+
});
|
|
2809
|
+
};
|
|
2810
|
+
const serializeAws_json1_1PutActionRevisionInput = (input, context) => {
|
|
2811
|
+
return {
|
|
2812
|
+
...(input.actionName != null && { actionName: input.actionName }),
|
|
2813
|
+
...(input.actionRevision != null && {
|
|
2814
|
+
actionRevision: serializeAws_json1_1ActionRevision(input.actionRevision, context),
|
|
2815
|
+
}),
|
|
2816
|
+
...(input.pipelineName != null && { pipelineName: input.pipelineName }),
|
|
2817
|
+
...(input.stageName != null && { stageName: input.stageName }),
|
|
2818
|
+
};
|
|
2819
|
+
};
|
|
2820
|
+
const serializeAws_json1_1PutApprovalResultInput = (input, context) => {
|
|
2821
|
+
return {
|
|
2822
|
+
...(input.actionName != null && { actionName: input.actionName }),
|
|
2823
|
+
...(input.pipelineName != null && { pipelineName: input.pipelineName }),
|
|
2824
|
+
...(input.result != null && { result: serializeAws_json1_1ApprovalResult(input.result, context) }),
|
|
2825
|
+
...(input.stageName != null && { stageName: input.stageName }),
|
|
2826
|
+
...(input.token != null && { token: input.token }),
|
|
2827
|
+
};
|
|
2828
|
+
};
|
|
2829
|
+
const serializeAws_json1_1PutJobFailureResultInput = (input, context) => {
|
|
2830
|
+
return {
|
|
2831
|
+
...(input.failureDetails != null && {
|
|
2832
|
+
failureDetails: serializeAws_json1_1FailureDetails(input.failureDetails, context),
|
|
2833
|
+
}),
|
|
2834
|
+
...(input.jobId != null && { jobId: input.jobId }),
|
|
2835
|
+
};
|
|
2836
|
+
};
|
|
2837
|
+
const serializeAws_json1_1PutJobSuccessResultInput = (input, context) => {
|
|
2838
|
+
return {
|
|
2839
|
+
...(input.continuationToken != null && { continuationToken: input.continuationToken }),
|
|
2840
|
+
...(input.currentRevision != null && {
|
|
2841
|
+
currentRevision: serializeAws_json1_1CurrentRevision(input.currentRevision, context),
|
|
2842
|
+
}),
|
|
2843
|
+
...(input.executionDetails != null && {
|
|
2844
|
+
executionDetails: serializeAws_json1_1ExecutionDetails(input.executionDetails, context),
|
|
2845
|
+
}),
|
|
2846
|
+
...(input.jobId != null && { jobId: input.jobId }),
|
|
2847
|
+
...(input.outputVariables != null && {
|
|
2848
|
+
outputVariables: serializeAws_json1_1OutputVariablesMap(input.outputVariables, context),
|
|
2849
|
+
}),
|
|
2850
|
+
};
|
|
2851
|
+
};
|
|
2852
|
+
const serializeAws_json1_1PutThirdPartyJobFailureResultInput = (input, context) => {
|
|
2853
|
+
return {
|
|
2854
|
+
...(input.clientToken != null && { clientToken: input.clientToken }),
|
|
2855
|
+
...(input.failureDetails != null && {
|
|
2856
|
+
failureDetails: serializeAws_json1_1FailureDetails(input.failureDetails, context),
|
|
2857
|
+
}),
|
|
2858
|
+
...(input.jobId != null && { jobId: input.jobId }),
|
|
2859
|
+
};
|
|
2860
|
+
};
|
|
2861
|
+
const serializeAws_json1_1PutThirdPartyJobSuccessResultInput = (input, context) => {
|
|
2862
|
+
return {
|
|
2863
|
+
...(input.clientToken != null && { clientToken: input.clientToken }),
|
|
2864
|
+
...(input.continuationToken != null && { continuationToken: input.continuationToken }),
|
|
2865
|
+
...(input.currentRevision != null && {
|
|
2866
|
+
currentRevision: serializeAws_json1_1CurrentRevision(input.currentRevision, context),
|
|
2867
|
+
}),
|
|
2868
|
+
...(input.executionDetails != null && {
|
|
2869
|
+
executionDetails: serializeAws_json1_1ExecutionDetails(input.executionDetails, context),
|
|
2870
|
+
}),
|
|
2871
|
+
...(input.jobId != null && { jobId: input.jobId }),
|
|
2872
|
+
};
|
|
2873
|
+
};
|
|
2874
|
+
const serializeAws_json1_1PutWebhookInput = (input, context) => {
|
|
2875
|
+
return {
|
|
2876
|
+
...(input.tags != null && { tags: serializeAws_json1_1TagList(input.tags, context) }),
|
|
2877
|
+
...(input.webhook != null && { webhook: serializeAws_json1_1WebhookDefinition(input.webhook, context) }),
|
|
2878
|
+
};
|
|
2879
|
+
};
|
|
2880
|
+
const serializeAws_json1_1QueryParamMap = (input, context) => {
|
|
2881
|
+
return Object.entries(input).reduce((acc, [key, value]) => {
|
|
2882
|
+
if (value === null) {
|
|
2883
|
+
return acc;
|
|
2884
|
+
}
|
|
2885
|
+
acc[key] = value;
|
|
2886
|
+
return acc;
|
|
2887
|
+
}, {});
|
|
2888
|
+
};
|
|
2889
|
+
const serializeAws_json1_1RegisterWebhookWithThirdPartyInput = (input, context) => {
|
|
2890
|
+
return {
|
|
2891
|
+
...(input.webhookName != null && { webhookName: input.webhookName }),
|
|
2892
|
+
};
|
|
2893
|
+
};
|
|
2894
|
+
const serializeAws_json1_1RetryStageExecutionInput = (input, context) => {
|
|
2895
|
+
return {
|
|
2896
|
+
...(input.pipelineExecutionId != null && { pipelineExecutionId: input.pipelineExecutionId }),
|
|
2897
|
+
...(input.pipelineName != null && { pipelineName: input.pipelineName }),
|
|
2898
|
+
...(input.retryMode != null && { retryMode: input.retryMode }),
|
|
2899
|
+
...(input.stageName != null && { stageName: input.stageName }),
|
|
2900
|
+
};
|
|
2901
|
+
};
|
|
2902
|
+
const serializeAws_json1_1StageActionDeclarationList = (input, context) => {
|
|
2903
|
+
return input
|
|
2904
|
+
.filter((e) => e != null)
|
|
2905
|
+
.map((entry) => {
|
|
2906
|
+
return serializeAws_json1_1ActionDeclaration(entry, context);
|
|
2907
|
+
});
|
|
2908
|
+
};
|
|
2909
|
+
const serializeAws_json1_1StageBlockerDeclarationList = (input, context) => {
|
|
2910
|
+
return input
|
|
2911
|
+
.filter((e) => e != null)
|
|
2912
|
+
.map((entry) => {
|
|
2913
|
+
return serializeAws_json1_1BlockerDeclaration(entry, context);
|
|
2914
|
+
});
|
|
2915
|
+
};
|
|
2916
|
+
const serializeAws_json1_1StageDeclaration = (input, context) => {
|
|
2917
|
+
return {
|
|
2918
|
+
...(input.actions != null && { actions: serializeAws_json1_1StageActionDeclarationList(input.actions, context) }),
|
|
2919
|
+
...(input.blockers != null && {
|
|
2920
|
+
blockers: serializeAws_json1_1StageBlockerDeclarationList(input.blockers, context),
|
|
2921
|
+
}),
|
|
2922
|
+
...(input.name != null && { name: input.name }),
|
|
2923
|
+
};
|
|
2924
|
+
};
|
|
2925
|
+
const serializeAws_json1_1StartPipelineExecutionInput = (input, context) => {
|
|
2926
|
+
return {
|
|
2927
|
+
clientRequestToken: input.clientRequestToken ?? (0, uuid_1.v4)(),
|
|
2928
|
+
...(input.name != null && { name: input.name }),
|
|
2929
|
+
};
|
|
2930
|
+
};
|
|
2931
|
+
const serializeAws_json1_1StopPipelineExecutionInput = (input, context) => {
|
|
2932
|
+
return {
|
|
2933
|
+
...(input.abandon != null && { abandon: input.abandon }),
|
|
2934
|
+
...(input.pipelineExecutionId != null && { pipelineExecutionId: input.pipelineExecutionId }),
|
|
2935
|
+
...(input.pipelineName != null && { pipelineName: input.pipelineName }),
|
|
2936
|
+
...(input.reason != null && { reason: input.reason }),
|
|
2937
|
+
};
|
|
2938
|
+
};
|
|
2939
|
+
const serializeAws_json1_1Tag = (input, context) => {
|
|
2940
|
+
return {
|
|
2941
|
+
...(input.key != null && { key: input.key }),
|
|
2942
|
+
...(input.value != null && { value: input.value }),
|
|
2943
|
+
};
|
|
2944
|
+
};
|
|
2945
|
+
const serializeAws_json1_1TagKeyList = (input, context) => {
|
|
2946
|
+
return input
|
|
2947
|
+
.filter((e) => e != null)
|
|
2948
|
+
.map((entry) => {
|
|
2949
|
+
return entry;
|
|
2950
|
+
});
|
|
2951
|
+
};
|
|
2952
|
+
const serializeAws_json1_1TagList = (input, context) => {
|
|
2953
|
+
return input
|
|
2954
|
+
.filter((e) => e != null)
|
|
2955
|
+
.map((entry) => {
|
|
2956
|
+
return serializeAws_json1_1Tag(entry, context);
|
|
2957
|
+
});
|
|
2958
|
+
};
|
|
2959
|
+
const serializeAws_json1_1TagResourceInput = (input, context) => {
|
|
2960
|
+
return {
|
|
2961
|
+
...(input.resourceArn != null && { resourceArn: input.resourceArn }),
|
|
2962
|
+
...(input.tags != null && { tags: serializeAws_json1_1TagList(input.tags, context) }),
|
|
2963
|
+
};
|
|
2964
|
+
};
|
|
2965
|
+
const serializeAws_json1_1UntagResourceInput = (input, context) => {
|
|
2966
|
+
return {
|
|
2967
|
+
...(input.resourceArn != null && { resourceArn: input.resourceArn }),
|
|
2968
|
+
...(input.tagKeys != null && { tagKeys: serializeAws_json1_1TagKeyList(input.tagKeys, context) }),
|
|
2969
|
+
};
|
|
2970
|
+
};
|
|
2971
|
+
const serializeAws_json1_1UpdateActionTypeInput = (input, context) => {
|
|
2972
|
+
return {
|
|
2973
|
+
...(input.actionType != null && {
|
|
2974
|
+
actionType: serializeAws_json1_1ActionTypeDeclaration(input.actionType, context),
|
|
2975
|
+
}),
|
|
2976
|
+
};
|
|
2977
|
+
};
|
|
2978
|
+
const serializeAws_json1_1UpdatePipelineInput = (input, context) => {
|
|
2979
|
+
return {
|
|
2980
|
+
...(input.pipeline != null && { pipeline: serializeAws_json1_1PipelineDeclaration(input.pipeline, context) }),
|
|
2981
|
+
};
|
|
2982
|
+
};
|
|
2983
|
+
const serializeAws_json1_1WebhookAuthConfiguration = (input, context) => {
|
|
2984
|
+
return {
|
|
2985
|
+
...(input.AllowedIPRange != null && { AllowedIPRange: input.AllowedIPRange }),
|
|
2986
|
+
...(input.SecretToken != null && { SecretToken: input.SecretToken }),
|
|
2987
|
+
};
|
|
2988
|
+
};
|
|
2989
|
+
const serializeAws_json1_1WebhookDefinition = (input, context) => {
|
|
2990
|
+
return {
|
|
2991
|
+
...(input.authentication != null && { authentication: input.authentication }),
|
|
2992
|
+
...(input.authenticationConfiguration != null && {
|
|
2993
|
+
authenticationConfiguration: serializeAws_json1_1WebhookAuthConfiguration(input.authenticationConfiguration, context),
|
|
2994
|
+
}),
|
|
2995
|
+
...(input.filters != null && { filters: serializeAws_json1_1WebhookFilters(input.filters, context) }),
|
|
2996
|
+
...(input.name != null && { name: input.name }),
|
|
2997
|
+
...(input.targetAction != null && { targetAction: input.targetAction }),
|
|
2998
|
+
...(input.targetPipeline != null && { targetPipeline: input.targetPipeline }),
|
|
2999
|
+
};
|
|
3000
|
+
};
|
|
3001
|
+
const serializeAws_json1_1WebhookFilterRule = (input, context) => {
|
|
3002
|
+
return {
|
|
3003
|
+
...(input.jsonPath != null && { jsonPath: input.jsonPath }),
|
|
3004
|
+
...(input.matchEquals != null && { matchEquals: input.matchEquals }),
|
|
3005
|
+
};
|
|
3006
|
+
};
|
|
3007
|
+
const serializeAws_json1_1WebhookFilters = (input, context) => {
|
|
3008
|
+
return input
|
|
3009
|
+
.filter((e) => e != null)
|
|
3010
|
+
.map((entry) => {
|
|
3011
|
+
return serializeAws_json1_1WebhookFilterRule(entry, context);
|
|
3012
|
+
});
|
|
3013
|
+
};
|
|
3014
|
+
const deserializeAws_json1_1AcknowledgeJobOutput = (output, context) => {
|
|
3015
|
+
return {
|
|
3016
|
+
status: (0, smithy_client_1.expectString)(output.status),
|
|
3017
|
+
};
|
|
3018
|
+
};
|
|
3019
|
+
const deserializeAws_json1_1AcknowledgeThirdPartyJobOutput = (output, context) => {
|
|
3020
|
+
return {
|
|
3021
|
+
status: (0, smithy_client_1.expectString)(output.status),
|
|
3022
|
+
};
|
|
3023
|
+
};
|
|
3024
|
+
const deserializeAws_json1_1ActionConfiguration = (output, context) => {
|
|
3025
|
+
return {
|
|
3026
|
+
configuration: output.configuration != null
|
|
3027
|
+
? deserializeAws_json1_1ActionConfigurationMap(output.configuration, context)
|
|
3028
|
+
: undefined,
|
|
3029
|
+
};
|
|
3030
|
+
};
|
|
3031
|
+
const deserializeAws_json1_1ActionConfigurationMap = (output, context) => {
|
|
3032
|
+
return Object.entries(output).reduce((acc, [key, value]) => {
|
|
3033
|
+
if (value === null) {
|
|
3034
|
+
return acc;
|
|
3035
|
+
}
|
|
3036
|
+
acc[key] = (0, smithy_client_1.expectString)(value);
|
|
3037
|
+
return acc;
|
|
3038
|
+
}, {});
|
|
3039
|
+
};
|
|
3040
|
+
const deserializeAws_json1_1ActionConfigurationProperty = (output, context) => {
|
|
3041
|
+
return {
|
|
3042
|
+
description: (0, smithy_client_1.expectString)(output.description),
|
|
3043
|
+
key: (0, smithy_client_1.expectBoolean)(output.key),
|
|
3044
|
+
name: (0, smithy_client_1.expectString)(output.name),
|
|
3045
|
+
queryable: (0, smithy_client_1.expectBoolean)(output.queryable),
|
|
3046
|
+
required: (0, smithy_client_1.expectBoolean)(output.required),
|
|
3047
|
+
secret: (0, smithy_client_1.expectBoolean)(output.secret),
|
|
3048
|
+
type: (0, smithy_client_1.expectString)(output.type),
|
|
3049
|
+
};
|
|
3050
|
+
};
|
|
3051
|
+
const deserializeAws_json1_1ActionConfigurationPropertyList = (output, context) => {
|
|
3052
|
+
const retVal = (output || [])
|
|
3053
|
+
.filter((e) => e != null)
|
|
3054
|
+
.map((entry) => {
|
|
3055
|
+
if (entry === null) {
|
|
3056
|
+
return null;
|
|
3057
|
+
}
|
|
3058
|
+
return deserializeAws_json1_1ActionConfigurationProperty(entry, context);
|
|
3059
|
+
});
|
|
3060
|
+
return retVal;
|
|
3061
|
+
};
|
|
3062
|
+
const deserializeAws_json1_1ActionContext = (output, context) => {
|
|
3063
|
+
return {
|
|
3064
|
+
actionExecutionId: (0, smithy_client_1.expectString)(output.actionExecutionId),
|
|
3065
|
+
name: (0, smithy_client_1.expectString)(output.name),
|
|
3066
|
+
};
|
|
3067
|
+
};
|
|
3068
|
+
const deserializeAws_json1_1ActionDeclaration = (output, context) => {
|
|
3069
|
+
return {
|
|
3070
|
+
actionTypeId: output.actionTypeId != null ? deserializeAws_json1_1ActionTypeId(output.actionTypeId, context) : undefined,
|
|
3071
|
+
configuration: output.configuration != null
|
|
3072
|
+
? deserializeAws_json1_1ActionConfigurationMap(output.configuration, context)
|
|
3073
|
+
: undefined,
|
|
3074
|
+
inputArtifacts: output.inputArtifacts != null
|
|
3075
|
+
? deserializeAws_json1_1InputArtifactList(output.inputArtifacts, context)
|
|
3076
|
+
: undefined,
|
|
3077
|
+
name: (0, smithy_client_1.expectString)(output.name),
|
|
3078
|
+
namespace: (0, smithy_client_1.expectString)(output.namespace),
|
|
3079
|
+
outputArtifacts: output.outputArtifacts != null
|
|
3080
|
+
? deserializeAws_json1_1OutputArtifactList(output.outputArtifacts, context)
|
|
3081
|
+
: undefined,
|
|
3082
|
+
region: (0, smithy_client_1.expectString)(output.region),
|
|
3083
|
+
roleArn: (0, smithy_client_1.expectString)(output.roleArn),
|
|
3084
|
+
runOrder: (0, smithy_client_1.expectInt32)(output.runOrder),
|
|
3085
|
+
};
|
|
3086
|
+
};
|
|
3087
|
+
const deserializeAws_json1_1ActionExecution = (output, context) => {
|
|
3088
|
+
return {
|
|
3089
|
+
actionExecutionId: (0, smithy_client_1.expectString)(output.actionExecutionId),
|
|
3090
|
+
errorDetails: output.errorDetails != null ? deserializeAws_json1_1ErrorDetails(output.errorDetails, context) : undefined,
|
|
3091
|
+
externalExecutionId: (0, smithy_client_1.expectString)(output.externalExecutionId),
|
|
3092
|
+
externalExecutionUrl: (0, smithy_client_1.expectString)(output.externalExecutionUrl),
|
|
3093
|
+
lastStatusChange: output.lastStatusChange != null
|
|
3094
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.lastStatusChange)))
|
|
3095
|
+
: undefined,
|
|
3096
|
+
lastUpdatedBy: (0, smithy_client_1.expectString)(output.lastUpdatedBy),
|
|
3097
|
+
percentComplete: (0, smithy_client_1.expectInt32)(output.percentComplete),
|
|
3098
|
+
status: (0, smithy_client_1.expectString)(output.status),
|
|
3099
|
+
summary: (0, smithy_client_1.expectString)(output.summary),
|
|
3100
|
+
token: (0, smithy_client_1.expectString)(output.token),
|
|
3101
|
+
};
|
|
3102
|
+
};
|
|
3103
|
+
const deserializeAws_json1_1ActionExecutionDetail = (output, context) => {
|
|
3104
|
+
return {
|
|
3105
|
+
actionExecutionId: (0, smithy_client_1.expectString)(output.actionExecutionId),
|
|
3106
|
+
actionName: (0, smithy_client_1.expectString)(output.actionName),
|
|
3107
|
+
input: output.input != null ? deserializeAws_json1_1ActionExecutionInput(output.input, context) : undefined,
|
|
3108
|
+
lastUpdateTime: output.lastUpdateTime != null
|
|
3109
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.lastUpdateTime)))
|
|
3110
|
+
: undefined,
|
|
3111
|
+
output: output.output != null ? deserializeAws_json1_1ActionExecutionOutput(output.output, context) : undefined,
|
|
3112
|
+
pipelineExecutionId: (0, smithy_client_1.expectString)(output.pipelineExecutionId),
|
|
3113
|
+
pipelineVersion: (0, smithy_client_1.expectInt32)(output.pipelineVersion),
|
|
3114
|
+
stageName: (0, smithy_client_1.expectString)(output.stageName),
|
|
3115
|
+
startTime: output.startTime != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.startTime))) : undefined,
|
|
3116
|
+
status: (0, smithy_client_1.expectString)(output.status),
|
|
3117
|
+
};
|
|
3118
|
+
};
|
|
3119
|
+
const deserializeAws_json1_1ActionExecutionDetailList = (output, context) => {
|
|
3120
|
+
const retVal = (output || [])
|
|
3121
|
+
.filter((e) => e != null)
|
|
3122
|
+
.map((entry) => {
|
|
3123
|
+
if (entry === null) {
|
|
3124
|
+
return null;
|
|
3125
|
+
}
|
|
3126
|
+
return deserializeAws_json1_1ActionExecutionDetail(entry, context);
|
|
3127
|
+
});
|
|
3128
|
+
return retVal;
|
|
3129
|
+
};
|
|
3130
|
+
const deserializeAws_json1_1ActionExecutionInput = (output, context) => {
|
|
3131
|
+
return {
|
|
3132
|
+
actionTypeId: output.actionTypeId != null ? deserializeAws_json1_1ActionTypeId(output.actionTypeId, context) : undefined,
|
|
3133
|
+
configuration: output.configuration != null
|
|
3134
|
+
? deserializeAws_json1_1ActionConfigurationMap(output.configuration, context)
|
|
3135
|
+
: undefined,
|
|
3136
|
+
inputArtifacts: output.inputArtifacts != null
|
|
3137
|
+
? deserializeAws_json1_1ArtifactDetailList(output.inputArtifacts, context)
|
|
3138
|
+
: undefined,
|
|
3139
|
+
namespace: (0, smithy_client_1.expectString)(output.namespace),
|
|
3140
|
+
region: (0, smithy_client_1.expectString)(output.region),
|
|
3141
|
+
resolvedConfiguration: output.resolvedConfiguration != null
|
|
3142
|
+
? deserializeAws_json1_1ResolvedActionConfigurationMap(output.resolvedConfiguration, context)
|
|
3143
|
+
: undefined,
|
|
3144
|
+
roleArn: (0, smithy_client_1.expectString)(output.roleArn),
|
|
3145
|
+
};
|
|
3146
|
+
};
|
|
3147
|
+
const deserializeAws_json1_1ActionExecutionOutput = (output, context) => {
|
|
3148
|
+
return {
|
|
3149
|
+
executionResult: output.executionResult != null
|
|
3150
|
+
? deserializeAws_json1_1ActionExecutionResult(output.executionResult, context)
|
|
3151
|
+
: undefined,
|
|
3152
|
+
outputArtifacts: output.outputArtifacts != null
|
|
3153
|
+
? deserializeAws_json1_1ArtifactDetailList(output.outputArtifacts, context)
|
|
3154
|
+
: undefined,
|
|
3155
|
+
outputVariables: output.outputVariables != null
|
|
3156
|
+
? deserializeAws_json1_1OutputVariablesMap(output.outputVariables, context)
|
|
3157
|
+
: undefined,
|
|
3158
|
+
};
|
|
3159
|
+
};
|
|
3160
|
+
const deserializeAws_json1_1ActionExecutionResult = (output, context) => {
|
|
3161
|
+
return {
|
|
3162
|
+
externalExecutionId: (0, smithy_client_1.expectString)(output.externalExecutionId),
|
|
3163
|
+
externalExecutionSummary: (0, smithy_client_1.expectString)(output.externalExecutionSummary),
|
|
3164
|
+
externalExecutionUrl: (0, smithy_client_1.expectString)(output.externalExecutionUrl),
|
|
3165
|
+
};
|
|
3166
|
+
};
|
|
3167
|
+
const deserializeAws_json1_1ActionNotFoundException = (output, context) => {
|
|
3168
|
+
return {
|
|
3169
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
3170
|
+
};
|
|
3171
|
+
};
|
|
3172
|
+
const deserializeAws_json1_1ActionRevision = (output, context) => {
|
|
3173
|
+
return {
|
|
3174
|
+
created: output.created != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.created))) : undefined,
|
|
3175
|
+
revisionChangeId: (0, smithy_client_1.expectString)(output.revisionChangeId),
|
|
3176
|
+
revisionId: (0, smithy_client_1.expectString)(output.revisionId),
|
|
3177
|
+
};
|
|
3178
|
+
};
|
|
3179
|
+
const deserializeAws_json1_1ActionState = (output, context) => {
|
|
3180
|
+
return {
|
|
3181
|
+
actionName: (0, smithy_client_1.expectString)(output.actionName),
|
|
3182
|
+
currentRevision: output.currentRevision != null
|
|
3183
|
+
? deserializeAws_json1_1ActionRevision(output.currentRevision, context)
|
|
3184
|
+
: undefined,
|
|
3185
|
+
entityUrl: (0, smithy_client_1.expectString)(output.entityUrl),
|
|
3186
|
+
latestExecution: output.latestExecution != null
|
|
3187
|
+
? deserializeAws_json1_1ActionExecution(output.latestExecution, context)
|
|
3188
|
+
: undefined,
|
|
3189
|
+
revisionUrl: (0, smithy_client_1.expectString)(output.revisionUrl),
|
|
3190
|
+
};
|
|
3191
|
+
};
|
|
3192
|
+
const deserializeAws_json1_1ActionStateList = (output, context) => {
|
|
3193
|
+
const retVal = (output || [])
|
|
3194
|
+
.filter((e) => e != null)
|
|
3195
|
+
.map((entry) => {
|
|
3196
|
+
if (entry === null) {
|
|
3197
|
+
return null;
|
|
3198
|
+
}
|
|
3199
|
+
return deserializeAws_json1_1ActionState(entry, context);
|
|
3200
|
+
});
|
|
3201
|
+
return retVal;
|
|
3202
|
+
};
|
|
3203
|
+
const deserializeAws_json1_1ActionType = (output, context) => {
|
|
3204
|
+
return {
|
|
3205
|
+
actionConfigurationProperties: output.actionConfigurationProperties != null
|
|
3206
|
+
? deserializeAws_json1_1ActionConfigurationPropertyList(output.actionConfigurationProperties, context)
|
|
3207
|
+
: undefined,
|
|
3208
|
+
id: output.id != null ? deserializeAws_json1_1ActionTypeId(output.id, context) : undefined,
|
|
3209
|
+
inputArtifactDetails: output.inputArtifactDetails != null
|
|
3210
|
+
? deserializeAws_json1_1ArtifactDetails(output.inputArtifactDetails, context)
|
|
3211
|
+
: undefined,
|
|
3212
|
+
outputArtifactDetails: output.outputArtifactDetails != null
|
|
3213
|
+
? deserializeAws_json1_1ArtifactDetails(output.outputArtifactDetails, context)
|
|
3214
|
+
: undefined,
|
|
3215
|
+
settings: output.settings != null ? deserializeAws_json1_1ActionTypeSettings(output.settings, context) : undefined,
|
|
3216
|
+
};
|
|
3217
|
+
};
|
|
3218
|
+
const deserializeAws_json1_1ActionTypeArtifactDetails = (output, context) => {
|
|
3219
|
+
return {
|
|
3220
|
+
maximumCount: (0, smithy_client_1.expectInt32)(output.maximumCount),
|
|
3221
|
+
minimumCount: (0, smithy_client_1.expectInt32)(output.minimumCount),
|
|
3222
|
+
};
|
|
3223
|
+
};
|
|
3224
|
+
const deserializeAws_json1_1ActionTypeDeclaration = (output, context) => {
|
|
3225
|
+
return {
|
|
3226
|
+
description: (0, smithy_client_1.expectString)(output.description),
|
|
3227
|
+
executor: output.executor != null ? deserializeAws_json1_1ActionTypeExecutor(output.executor, context) : undefined,
|
|
3228
|
+
id: output.id != null ? deserializeAws_json1_1ActionTypeIdentifier(output.id, context) : undefined,
|
|
3229
|
+
inputArtifactDetails: output.inputArtifactDetails != null
|
|
3230
|
+
? deserializeAws_json1_1ActionTypeArtifactDetails(output.inputArtifactDetails, context)
|
|
3231
|
+
: undefined,
|
|
3232
|
+
outputArtifactDetails: output.outputArtifactDetails != null
|
|
3233
|
+
? deserializeAws_json1_1ActionTypeArtifactDetails(output.outputArtifactDetails, context)
|
|
3234
|
+
: undefined,
|
|
3235
|
+
permissions: output.permissions != null ? deserializeAws_json1_1ActionTypePermissions(output.permissions, context) : undefined,
|
|
3236
|
+
properties: output.properties != null ? deserializeAws_json1_1ActionTypeProperties(output.properties, context) : undefined,
|
|
3237
|
+
urls: output.urls != null ? deserializeAws_json1_1ActionTypeUrls(output.urls, context) : undefined,
|
|
3238
|
+
};
|
|
3239
|
+
};
|
|
3240
|
+
const deserializeAws_json1_1ActionTypeExecutor = (output, context) => {
|
|
3241
|
+
return {
|
|
3242
|
+
configuration: output.configuration != null
|
|
3243
|
+
? deserializeAws_json1_1ExecutorConfiguration(output.configuration, context)
|
|
3244
|
+
: undefined,
|
|
3245
|
+
jobTimeout: (0, smithy_client_1.expectInt32)(output.jobTimeout),
|
|
3246
|
+
policyStatementsTemplate: (0, smithy_client_1.expectString)(output.policyStatementsTemplate),
|
|
3247
|
+
type: (0, smithy_client_1.expectString)(output.type),
|
|
3248
|
+
};
|
|
3249
|
+
};
|
|
3250
|
+
const deserializeAws_json1_1ActionTypeId = (output, context) => {
|
|
3251
|
+
return {
|
|
3252
|
+
category: (0, smithy_client_1.expectString)(output.category),
|
|
3253
|
+
owner: (0, smithy_client_1.expectString)(output.owner),
|
|
3254
|
+
provider: (0, smithy_client_1.expectString)(output.provider),
|
|
3255
|
+
version: (0, smithy_client_1.expectString)(output.version),
|
|
3256
|
+
};
|
|
3257
|
+
};
|
|
3258
|
+
const deserializeAws_json1_1ActionTypeIdentifier = (output, context) => {
|
|
3259
|
+
return {
|
|
3260
|
+
category: (0, smithy_client_1.expectString)(output.category),
|
|
3261
|
+
owner: (0, smithy_client_1.expectString)(output.owner),
|
|
3262
|
+
provider: (0, smithy_client_1.expectString)(output.provider),
|
|
3263
|
+
version: (0, smithy_client_1.expectString)(output.version),
|
|
3264
|
+
};
|
|
3265
|
+
};
|
|
3266
|
+
const deserializeAws_json1_1ActionTypeList = (output, context) => {
|
|
3267
|
+
const retVal = (output || [])
|
|
3268
|
+
.filter((e) => e != null)
|
|
3269
|
+
.map((entry) => {
|
|
3270
|
+
if (entry === null) {
|
|
3271
|
+
return null;
|
|
3272
|
+
}
|
|
3273
|
+
return deserializeAws_json1_1ActionType(entry, context);
|
|
3274
|
+
});
|
|
3275
|
+
return retVal;
|
|
3276
|
+
};
|
|
3277
|
+
const deserializeAws_json1_1ActionTypeNotFoundException = (output, context) => {
|
|
3278
|
+
return {
|
|
3279
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
3280
|
+
};
|
|
3281
|
+
};
|
|
3282
|
+
const deserializeAws_json1_1ActionTypePermissions = (output, context) => {
|
|
3283
|
+
return {
|
|
3284
|
+
allowedAccounts: output.allowedAccounts != null
|
|
3285
|
+
? deserializeAws_json1_1AllowedAccounts(output.allowedAccounts, context)
|
|
3286
|
+
: undefined,
|
|
3287
|
+
};
|
|
3288
|
+
};
|
|
3289
|
+
const deserializeAws_json1_1ActionTypeProperties = (output, context) => {
|
|
3290
|
+
const retVal = (output || [])
|
|
3291
|
+
.filter((e) => e != null)
|
|
3292
|
+
.map((entry) => {
|
|
3293
|
+
if (entry === null) {
|
|
3294
|
+
return null;
|
|
3295
|
+
}
|
|
3296
|
+
return deserializeAws_json1_1ActionTypeProperty(entry, context);
|
|
3297
|
+
});
|
|
3298
|
+
return retVal;
|
|
3299
|
+
};
|
|
3300
|
+
const deserializeAws_json1_1ActionTypeProperty = (output, context) => {
|
|
3301
|
+
return {
|
|
3302
|
+
description: (0, smithy_client_1.expectString)(output.description),
|
|
3303
|
+
key: (0, smithy_client_1.expectBoolean)(output.key),
|
|
3304
|
+
name: (0, smithy_client_1.expectString)(output.name),
|
|
3305
|
+
noEcho: (0, smithy_client_1.expectBoolean)(output.noEcho),
|
|
3306
|
+
optional: (0, smithy_client_1.expectBoolean)(output.optional),
|
|
3307
|
+
queryable: (0, smithy_client_1.expectBoolean)(output.queryable),
|
|
3308
|
+
};
|
|
3309
|
+
};
|
|
3310
|
+
const deserializeAws_json1_1ActionTypeSettings = (output, context) => {
|
|
3311
|
+
return {
|
|
3312
|
+
entityUrlTemplate: (0, smithy_client_1.expectString)(output.entityUrlTemplate),
|
|
3313
|
+
executionUrlTemplate: (0, smithy_client_1.expectString)(output.executionUrlTemplate),
|
|
3314
|
+
revisionUrlTemplate: (0, smithy_client_1.expectString)(output.revisionUrlTemplate),
|
|
3315
|
+
thirdPartyConfigurationUrl: (0, smithy_client_1.expectString)(output.thirdPartyConfigurationUrl),
|
|
3316
|
+
};
|
|
3317
|
+
};
|
|
3318
|
+
const deserializeAws_json1_1ActionTypeUrls = (output, context) => {
|
|
3319
|
+
return {
|
|
3320
|
+
configurationUrl: (0, smithy_client_1.expectString)(output.configurationUrl),
|
|
3321
|
+
entityUrlTemplate: (0, smithy_client_1.expectString)(output.entityUrlTemplate),
|
|
3322
|
+
executionUrlTemplate: (0, smithy_client_1.expectString)(output.executionUrlTemplate),
|
|
3323
|
+
revisionUrlTemplate: (0, smithy_client_1.expectString)(output.revisionUrlTemplate),
|
|
3324
|
+
};
|
|
3325
|
+
};
|
|
3326
|
+
const deserializeAws_json1_1AllowedAccounts = (output, context) => {
|
|
3327
|
+
const retVal = (output || [])
|
|
3328
|
+
.filter((e) => e != null)
|
|
3329
|
+
.map((entry) => {
|
|
3330
|
+
if (entry === null) {
|
|
3331
|
+
return null;
|
|
3332
|
+
}
|
|
3333
|
+
return (0, smithy_client_1.expectString)(entry);
|
|
3334
|
+
});
|
|
3335
|
+
return retVal;
|
|
3336
|
+
};
|
|
3337
|
+
const deserializeAws_json1_1ApprovalAlreadyCompletedException = (output, context) => {
|
|
3338
|
+
return {
|
|
3339
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
3340
|
+
};
|
|
3341
|
+
};
|
|
3342
|
+
const deserializeAws_json1_1Artifact = (output, context) => {
|
|
3343
|
+
return {
|
|
3344
|
+
location: output.location != null ? deserializeAws_json1_1ArtifactLocation(output.location, context) : undefined,
|
|
3345
|
+
name: (0, smithy_client_1.expectString)(output.name),
|
|
3346
|
+
revision: (0, smithy_client_1.expectString)(output.revision),
|
|
3347
|
+
};
|
|
3348
|
+
};
|
|
3349
|
+
const deserializeAws_json1_1ArtifactDetail = (output, context) => {
|
|
3350
|
+
return {
|
|
3351
|
+
name: (0, smithy_client_1.expectString)(output.name),
|
|
3352
|
+
s3location: output.s3location != null ? deserializeAws_json1_1S3Location(output.s3location, context) : undefined,
|
|
3353
|
+
};
|
|
3354
|
+
};
|
|
3355
|
+
const deserializeAws_json1_1ArtifactDetailList = (output, context) => {
|
|
3356
|
+
const retVal = (output || [])
|
|
3357
|
+
.filter((e) => e != null)
|
|
3358
|
+
.map((entry) => {
|
|
3359
|
+
if (entry === null) {
|
|
3360
|
+
return null;
|
|
3361
|
+
}
|
|
3362
|
+
return deserializeAws_json1_1ArtifactDetail(entry, context);
|
|
3363
|
+
});
|
|
3364
|
+
return retVal;
|
|
3365
|
+
};
|
|
3366
|
+
const deserializeAws_json1_1ArtifactDetails = (output, context) => {
|
|
3367
|
+
return {
|
|
3368
|
+
maximumCount: (0, smithy_client_1.expectInt32)(output.maximumCount),
|
|
3369
|
+
minimumCount: (0, smithy_client_1.expectInt32)(output.minimumCount),
|
|
3370
|
+
};
|
|
3371
|
+
};
|
|
3372
|
+
const deserializeAws_json1_1ArtifactList = (output, context) => {
|
|
3373
|
+
const retVal = (output || [])
|
|
3374
|
+
.filter((e) => e != null)
|
|
3375
|
+
.map((entry) => {
|
|
3376
|
+
if (entry === null) {
|
|
3377
|
+
return null;
|
|
3378
|
+
}
|
|
3379
|
+
return deserializeAws_json1_1Artifact(entry, context);
|
|
3380
|
+
});
|
|
3381
|
+
return retVal;
|
|
3382
|
+
};
|
|
3383
|
+
const deserializeAws_json1_1ArtifactLocation = (output, context) => {
|
|
3384
|
+
return {
|
|
3385
|
+
s3Location: output.s3Location != null ? deserializeAws_json1_1S3ArtifactLocation(output.s3Location, context) : undefined,
|
|
3386
|
+
type: (0, smithy_client_1.expectString)(output.type),
|
|
3387
|
+
};
|
|
3388
|
+
};
|
|
3389
|
+
const deserializeAws_json1_1ArtifactRevision = (output, context) => {
|
|
3390
|
+
return {
|
|
3391
|
+
created: output.created != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.created))) : undefined,
|
|
3392
|
+
name: (0, smithy_client_1.expectString)(output.name),
|
|
3393
|
+
revisionChangeIdentifier: (0, smithy_client_1.expectString)(output.revisionChangeIdentifier),
|
|
3394
|
+
revisionId: (0, smithy_client_1.expectString)(output.revisionId),
|
|
3395
|
+
revisionSummary: (0, smithy_client_1.expectString)(output.revisionSummary),
|
|
3396
|
+
revisionUrl: (0, smithy_client_1.expectString)(output.revisionUrl),
|
|
3397
|
+
};
|
|
3398
|
+
};
|
|
3399
|
+
const deserializeAws_json1_1ArtifactRevisionList = (output, context) => {
|
|
3400
|
+
const retVal = (output || [])
|
|
3401
|
+
.filter((e) => e != null)
|
|
3402
|
+
.map((entry) => {
|
|
3403
|
+
if (entry === null) {
|
|
3404
|
+
return null;
|
|
3405
|
+
}
|
|
3406
|
+
return deserializeAws_json1_1ArtifactRevision(entry, context);
|
|
3407
|
+
});
|
|
3408
|
+
return retVal;
|
|
3409
|
+
};
|
|
3410
|
+
const deserializeAws_json1_1ArtifactStore = (output, context) => {
|
|
3411
|
+
return {
|
|
3412
|
+
encryptionKey: output.encryptionKey != null ? deserializeAws_json1_1EncryptionKey(output.encryptionKey, context) : undefined,
|
|
3413
|
+
location: (0, smithy_client_1.expectString)(output.location),
|
|
3414
|
+
type: (0, smithy_client_1.expectString)(output.type),
|
|
3415
|
+
};
|
|
3416
|
+
};
|
|
3417
|
+
const deserializeAws_json1_1ArtifactStoreMap = (output, context) => {
|
|
3418
|
+
return Object.entries(output).reduce((acc, [key, value]) => {
|
|
3419
|
+
if (value === null) {
|
|
3420
|
+
return acc;
|
|
3421
|
+
}
|
|
3422
|
+
acc[key] = deserializeAws_json1_1ArtifactStore(value, context);
|
|
3423
|
+
return acc;
|
|
3424
|
+
}, {});
|
|
3425
|
+
};
|
|
3426
|
+
const deserializeAws_json1_1AWSSessionCredentials = (output, context) => {
|
|
3427
|
+
return {
|
|
3428
|
+
accessKeyId: (0, smithy_client_1.expectString)(output.accessKeyId),
|
|
3429
|
+
secretAccessKey: (0, smithy_client_1.expectString)(output.secretAccessKey),
|
|
3430
|
+
sessionToken: (0, smithy_client_1.expectString)(output.sessionToken),
|
|
3431
|
+
};
|
|
3432
|
+
};
|
|
3433
|
+
const deserializeAws_json1_1BlockerDeclaration = (output, context) => {
|
|
3434
|
+
return {
|
|
3435
|
+
name: (0, smithy_client_1.expectString)(output.name),
|
|
3436
|
+
type: (0, smithy_client_1.expectString)(output.type),
|
|
3437
|
+
};
|
|
3438
|
+
};
|
|
3439
|
+
const deserializeAws_json1_1ConcurrentModificationException = (output, context) => {
|
|
3440
|
+
return {
|
|
3441
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
3442
|
+
};
|
|
3443
|
+
};
|
|
3444
|
+
const deserializeAws_json1_1ConflictException = (output, context) => {
|
|
3445
|
+
return {
|
|
3446
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
3447
|
+
};
|
|
3448
|
+
};
|
|
3449
|
+
const deserializeAws_json1_1CreateCustomActionTypeOutput = (output, context) => {
|
|
3450
|
+
return {
|
|
3451
|
+
actionType: output.actionType != null ? deserializeAws_json1_1ActionType(output.actionType, context) : undefined,
|
|
3452
|
+
tags: output.tags != null ? deserializeAws_json1_1TagList(output.tags, context) : undefined,
|
|
3453
|
+
};
|
|
3454
|
+
};
|
|
3455
|
+
const deserializeAws_json1_1CreatePipelineOutput = (output, context) => {
|
|
3456
|
+
return {
|
|
3457
|
+
pipeline: output.pipeline != null ? deserializeAws_json1_1PipelineDeclaration(output.pipeline, context) : undefined,
|
|
3458
|
+
tags: output.tags != null ? deserializeAws_json1_1TagList(output.tags, context) : undefined,
|
|
3459
|
+
};
|
|
3460
|
+
};
|
|
3461
|
+
const deserializeAws_json1_1DeleteWebhookOutput = (output, context) => {
|
|
3462
|
+
return {};
|
|
3463
|
+
};
|
|
3464
|
+
const deserializeAws_json1_1DeregisterWebhookWithThirdPartyOutput = (output, context) => {
|
|
3465
|
+
return {};
|
|
3466
|
+
};
|
|
3467
|
+
const deserializeAws_json1_1DuplicatedStopRequestException = (output, context) => {
|
|
3468
|
+
return {
|
|
3469
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
3470
|
+
};
|
|
3471
|
+
};
|
|
3472
|
+
const deserializeAws_json1_1EncryptionKey = (output, context) => {
|
|
3473
|
+
return {
|
|
3474
|
+
id: (0, smithy_client_1.expectString)(output.id),
|
|
3475
|
+
type: (0, smithy_client_1.expectString)(output.type),
|
|
3476
|
+
};
|
|
3477
|
+
};
|
|
3478
|
+
const deserializeAws_json1_1ErrorDetails = (output, context) => {
|
|
3479
|
+
return {
|
|
3480
|
+
code: (0, smithy_client_1.expectString)(output.code),
|
|
3481
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
3482
|
+
};
|
|
3483
|
+
};
|
|
3484
|
+
const deserializeAws_json1_1ExecutionTrigger = (output, context) => {
|
|
3485
|
+
return {
|
|
3486
|
+
triggerDetail: (0, smithy_client_1.expectString)(output.triggerDetail),
|
|
3487
|
+
triggerType: (0, smithy_client_1.expectString)(output.triggerType),
|
|
3488
|
+
};
|
|
3489
|
+
};
|
|
3490
|
+
const deserializeAws_json1_1ExecutorConfiguration = (output, context) => {
|
|
3491
|
+
return {
|
|
3492
|
+
jobWorkerExecutorConfiguration: output.jobWorkerExecutorConfiguration != null
|
|
3493
|
+
? deserializeAws_json1_1JobWorkerExecutorConfiguration(output.jobWorkerExecutorConfiguration, context)
|
|
3494
|
+
: undefined,
|
|
3495
|
+
lambdaExecutorConfiguration: output.lambdaExecutorConfiguration != null
|
|
3496
|
+
? deserializeAws_json1_1LambdaExecutorConfiguration(output.lambdaExecutorConfiguration, context)
|
|
3497
|
+
: undefined,
|
|
3498
|
+
};
|
|
3499
|
+
};
|
|
3500
|
+
const deserializeAws_json1_1GetActionTypeOutput = (output, context) => {
|
|
3501
|
+
return {
|
|
3502
|
+
actionType: output.actionType != null ? deserializeAws_json1_1ActionTypeDeclaration(output.actionType, context) : undefined,
|
|
3503
|
+
};
|
|
3504
|
+
};
|
|
3505
|
+
const deserializeAws_json1_1GetJobDetailsOutput = (output, context) => {
|
|
3506
|
+
return {
|
|
3507
|
+
jobDetails: output.jobDetails != null ? deserializeAws_json1_1JobDetails(output.jobDetails, context) : undefined,
|
|
3508
|
+
};
|
|
3509
|
+
};
|
|
3510
|
+
const deserializeAws_json1_1GetPipelineExecutionOutput = (output, context) => {
|
|
3511
|
+
return {
|
|
3512
|
+
pipelineExecution: output.pipelineExecution != null
|
|
3513
|
+
? deserializeAws_json1_1PipelineExecution(output.pipelineExecution, context)
|
|
3514
|
+
: undefined,
|
|
3515
|
+
};
|
|
3516
|
+
};
|
|
3517
|
+
const deserializeAws_json1_1GetPipelineOutput = (output, context) => {
|
|
3518
|
+
return {
|
|
3519
|
+
metadata: output.metadata != null ? deserializeAws_json1_1PipelineMetadata(output.metadata, context) : undefined,
|
|
3520
|
+
pipeline: output.pipeline != null ? deserializeAws_json1_1PipelineDeclaration(output.pipeline, context) : undefined,
|
|
3521
|
+
};
|
|
3522
|
+
};
|
|
3523
|
+
const deserializeAws_json1_1GetPipelineStateOutput = (output, context) => {
|
|
3524
|
+
return {
|
|
3525
|
+
created: output.created != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.created))) : undefined,
|
|
3526
|
+
pipelineName: (0, smithy_client_1.expectString)(output.pipelineName),
|
|
3527
|
+
pipelineVersion: (0, smithy_client_1.expectInt32)(output.pipelineVersion),
|
|
3528
|
+
stageStates: output.stageStates != null ? deserializeAws_json1_1StageStateList(output.stageStates, context) : undefined,
|
|
3529
|
+
updated: output.updated != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.updated))) : undefined,
|
|
3530
|
+
};
|
|
3531
|
+
};
|
|
3532
|
+
const deserializeAws_json1_1GetThirdPartyJobDetailsOutput = (output, context) => {
|
|
3533
|
+
return {
|
|
3534
|
+
jobDetails: output.jobDetails != null ? deserializeAws_json1_1ThirdPartyJobDetails(output.jobDetails, context) : undefined,
|
|
3535
|
+
};
|
|
3536
|
+
};
|
|
3537
|
+
const deserializeAws_json1_1InputArtifact = (output, context) => {
|
|
3538
|
+
return {
|
|
3539
|
+
name: (0, smithy_client_1.expectString)(output.name),
|
|
3540
|
+
};
|
|
3541
|
+
};
|
|
3542
|
+
const deserializeAws_json1_1InputArtifactList = (output, context) => {
|
|
3543
|
+
const retVal = (output || [])
|
|
3544
|
+
.filter((e) => e != null)
|
|
3545
|
+
.map((entry) => {
|
|
3546
|
+
if (entry === null) {
|
|
3547
|
+
return null;
|
|
3548
|
+
}
|
|
3549
|
+
return deserializeAws_json1_1InputArtifact(entry, context);
|
|
3550
|
+
});
|
|
3551
|
+
return retVal;
|
|
3552
|
+
};
|
|
3553
|
+
const deserializeAws_json1_1InvalidActionDeclarationException = (output, context) => {
|
|
3554
|
+
return {
|
|
3555
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
3556
|
+
};
|
|
3557
|
+
};
|
|
3558
|
+
const deserializeAws_json1_1InvalidApprovalTokenException = (output, context) => {
|
|
3559
|
+
return {
|
|
3560
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
3561
|
+
};
|
|
3562
|
+
};
|
|
3563
|
+
const deserializeAws_json1_1InvalidArnException = (output, context) => {
|
|
3564
|
+
return {
|
|
3565
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
3566
|
+
};
|
|
3567
|
+
};
|
|
3568
|
+
const deserializeAws_json1_1InvalidBlockerDeclarationException = (output, context) => {
|
|
3569
|
+
return {
|
|
3570
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
3571
|
+
};
|
|
3572
|
+
};
|
|
3573
|
+
const deserializeAws_json1_1InvalidClientTokenException = (output, context) => {
|
|
3574
|
+
return {
|
|
3575
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
3576
|
+
};
|
|
3577
|
+
};
|
|
3578
|
+
const deserializeAws_json1_1InvalidJobException = (output, context) => {
|
|
3579
|
+
return {
|
|
3580
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
3581
|
+
};
|
|
3582
|
+
};
|
|
3583
|
+
const deserializeAws_json1_1InvalidJobStateException = (output, context) => {
|
|
3584
|
+
return {
|
|
3585
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
3586
|
+
};
|
|
3587
|
+
};
|
|
3588
|
+
const deserializeAws_json1_1InvalidNextTokenException = (output, context) => {
|
|
3589
|
+
return {
|
|
3590
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
3591
|
+
};
|
|
3592
|
+
};
|
|
3593
|
+
const deserializeAws_json1_1InvalidNonceException = (output, context) => {
|
|
3594
|
+
return {
|
|
3595
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
3596
|
+
};
|
|
3597
|
+
};
|
|
3598
|
+
const deserializeAws_json1_1InvalidStageDeclarationException = (output, context) => {
|
|
3599
|
+
return {
|
|
3600
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
3601
|
+
};
|
|
3602
|
+
};
|
|
3603
|
+
const deserializeAws_json1_1InvalidStructureException = (output, context) => {
|
|
3604
|
+
return {
|
|
3605
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
3606
|
+
};
|
|
3607
|
+
};
|
|
3608
|
+
const deserializeAws_json1_1InvalidTagsException = (output, context) => {
|
|
3609
|
+
return {
|
|
3610
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
3611
|
+
};
|
|
3612
|
+
};
|
|
3613
|
+
const deserializeAws_json1_1InvalidWebhookAuthenticationParametersException = (output, context) => {
|
|
3614
|
+
return {
|
|
3615
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
3616
|
+
};
|
|
3617
|
+
};
|
|
3618
|
+
const deserializeAws_json1_1InvalidWebhookFilterPatternException = (output, context) => {
|
|
3619
|
+
return {
|
|
3620
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
3621
|
+
};
|
|
3622
|
+
};
|
|
3623
|
+
const deserializeAws_json1_1Job = (output, context) => {
|
|
3624
|
+
return {
|
|
3625
|
+
accountId: (0, smithy_client_1.expectString)(output.accountId),
|
|
3626
|
+
data: output.data != null ? deserializeAws_json1_1JobData(output.data, context) : undefined,
|
|
3627
|
+
id: (0, smithy_client_1.expectString)(output.id),
|
|
3628
|
+
nonce: (0, smithy_client_1.expectString)(output.nonce),
|
|
3629
|
+
};
|
|
3630
|
+
};
|
|
3631
|
+
const deserializeAws_json1_1JobData = (output, context) => {
|
|
3632
|
+
return {
|
|
3633
|
+
actionConfiguration: output.actionConfiguration != null
|
|
3634
|
+
? deserializeAws_json1_1ActionConfiguration(output.actionConfiguration, context)
|
|
3635
|
+
: undefined,
|
|
3636
|
+
actionTypeId: output.actionTypeId != null ? deserializeAws_json1_1ActionTypeId(output.actionTypeId, context) : undefined,
|
|
3637
|
+
artifactCredentials: output.artifactCredentials != null
|
|
3638
|
+
? deserializeAws_json1_1AWSSessionCredentials(output.artifactCredentials, context)
|
|
3639
|
+
: undefined,
|
|
3640
|
+
continuationToken: (0, smithy_client_1.expectString)(output.continuationToken),
|
|
3641
|
+
encryptionKey: output.encryptionKey != null ? deserializeAws_json1_1EncryptionKey(output.encryptionKey, context) : undefined,
|
|
3642
|
+
inputArtifacts: output.inputArtifacts != null ? deserializeAws_json1_1ArtifactList(output.inputArtifacts, context) : undefined,
|
|
3643
|
+
outputArtifacts: output.outputArtifacts != null ? deserializeAws_json1_1ArtifactList(output.outputArtifacts, context) : undefined,
|
|
3644
|
+
pipelineContext: output.pipelineContext != null
|
|
3645
|
+
? deserializeAws_json1_1PipelineContext(output.pipelineContext, context)
|
|
3646
|
+
: undefined,
|
|
3647
|
+
};
|
|
3648
|
+
};
|
|
3649
|
+
const deserializeAws_json1_1JobDetails = (output, context) => {
|
|
3650
|
+
return {
|
|
3651
|
+
accountId: (0, smithy_client_1.expectString)(output.accountId),
|
|
3652
|
+
data: output.data != null ? deserializeAws_json1_1JobData(output.data, context) : undefined,
|
|
3653
|
+
id: (0, smithy_client_1.expectString)(output.id),
|
|
3654
|
+
};
|
|
3655
|
+
};
|
|
3656
|
+
const deserializeAws_json1_1JobList = (output, context) => {
|
|
3657
|
+
const retVal = (output || [])
|
|
3658
|
+
.filter((e) => e != null)
|
|
3659
|
+
.map((entry) => {
|
|
3660
|
+
if (entry === null) {
|
|
3661
|
+
return null;
|
|
3662
|
+
}
|
|
3663
|
+
return deserializeAws_json1_1Job(entry, context);
|
|
3664
|
+
});
|
|
3665
|
+
return retVal;
|
|
3666
|
+
};
|
|
3667
|
+
const deserializeAws_json1_1JobNotFoundException = (output, context) => {
|
|
3668
|
+
return {
|
|
3669
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
3670
|
+
};
|
|
3671
|
+
};
|
|
3672
|
+
const deserializeAws_json1_1JobWorkerExecutorConfiguration = (output, context) => {
|
|
3673
|
+
return {
|
|
3674
|
+
pollingAccounts: output.pollingAccounts != null
|
|
3675
|
+
? deserializeAws_json1_1PollingAccountList(output.pollingAccounts, context)
|
|
3676
|
+
: undefined,
|
|
3677
|
+
pollingServicePrincipals: output.pollingServicePrincipals != null
|
|
3678
|
+
? deserializeAws_json1_1PollingServicePrincipalList(output.pollingServicePrincipals, context)
|
|
3679
|
+
: undefined,
|
|
3680
|
+
};
|
|
3681
|
+
};
|
|
3682
|
+
const deserializeAws_json1_1LambdaExecutorConfiguration = (output, context) => {
|
|
3683
|
+
return {
|
|
3684
|
+
lambdaFunctionArn: (0, smithy_client_1.expectString)(output.lambdaFunctionArn),
|
|
3685
|
+
};
|
|
3686
|
+
};
|
|
3687
|
+
const deserializeAws_json1_1LimitExceededException = (output, context) => {
|
|
3688
|
+
return {
|
|
3689
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
3690
|
+
};
|
|
3691
|
+
};
|
|
3692
|
+
const deserializeAws_json1_1ListActionExecutionsOutput = (output, context) => {
|
|
3693
|
+
return {
|
|
3694
|
+
actionExecutionDetails: output.actionExecutionDetails != null
|
|
3695
|
+
? deserializeAws_json1_1ActionExecutionDetailList(output.actionExecutionDetails, context)
|
|
3696
|
+
: undefined,
|
|
3697
|
+
nextToken: (0, smithy_client_1.expectString)(output.nextToken),
|
|
3698
|
+
};
|
|
3699
|
+
};
|
|
3700
|
+
const deserializeAws_json1_1ListActionTypesOutput = (output, context) => {
|
|
3701
|
+
return {
|
|
3702
|
+
actionTypes: output.actionTypes != null ? deserializeAws_json1_1ActionTypeList(output.actionTypes, context) : undefined,
|
|
3703
|
+
nextToken: (0, smithy_client_1.expectString)(output.nextToken),
|
|
3704
|
+
};
|
|
3705
|
+
};
|
|
3706
|
+
const deserializeAws_json1_1ListPipelineExecutionsOutput = (output, context) => {
|
|
3707
|
+
return {
|
|
3708
|
+
nextToken: (0, smithy_client_1.expectString)(output.nextToken),
|
|
3709
|
+
pipelineExecutionSummaries: output.pipelineExecutionSummaries != null
|
|
3710
|
+
? deserializeAws_json1_1PipelineExecutionSummaryList(output.pipelineExecutionSummaries, context)
|
|
3711
|
+
: undefined,
|
|
3712
|
+
};
|
|
3713
|
+
};
|
|
3714
|
+
const deserializeAws_json1_1ListPipelinesOutput = (output, context) => {
|
|
3715
|
+
return {
|
|
3716
|
+
nextToken: (0, smithy_client_1.expectString)(output.nextToken),
|
|
3717
|
+
pipelines: output.pipelines != null ? deserializeAws_json1_1PipelineList(output.pipelines, context) : undefined,
|
|
3718
|
+
};
|
|
3719
|
+
};
|
|
3720
|
+
const deserializeAws_json1_1ListTagsForResourceOutput = (output, context) => {
|
|
3721
|
+
return {
|
|
3722
|
+
nextToken: (0, smithy_client_1.expectString)(output.nextToken),
|
|
3723
|
+
tags: output.tags != null ? deserializeAws_json1_1TagList(output.tags, context) : undefined,
|
|
3724
|
+
};
|
|
3725
|
+
};
|
|
3726
|
+
const deserializeAws_json1_1ListWebhookItem = (output, context) => {
|
|
3727
|
+
return {
|
|
3728
|
+
arn: (0, smithy_client_1.expectString)(output.arn),
|
|
3729
|
+
definition: output.definition != null ? deserializeAws_json1_1WebhookDefinition(output.definition, context) : undefined,
|
|
3730
|
+
errorCode: (0, smithy_client_1.expectString)(output.errorCode),
|
|
3731
|
+
errorMessage: (0, smithy_client_1.expectString)(output.errorMessage),
|
|
3732
|
+
lastTriggered: output.lastTriggered != null
|
|
3733
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.lastTriggered)))
|
|
3734
|
+
: undefined,
|
|
3735
|
+
tags: output.tags != null ? deserializeAws_json1_1TagList(output.tags, context) : undefined,
|
|
3736
|
+
url: (0, smithy_client_1.expectString)(output.url),
|
|
3737
|
+
};
|
|
3738
|
+
};
|
|
3739
|
+
const deserializeAws_json1_1ListWebhooksOutput = (output, context) => {
|
|
3740
|
+
return {
|
|
3741
|
+
NextToken: (0, smithy_client_1.expectString)(output.NextToken),
|
|
3742
|
+
webhooks: output.webhooks != null ? deserializeAws_json1_1WebhookList(output.webhooks, context) : undefined,
|
|
3743
|
+
};
|
|
3744
|
+
};
|
|
3745
|
+
const deserializeAws_json1_1NotLatestPipelineExecutionException = (output, context) => {
|
|
3746
|
+
return {
|
|
3747
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
3748
|
+
};
|
|
3749
|
+
};
|
|
3750
|
+
const deserializeAws_json1_1OutputArtifact = (output, context) => {
|
|
3751
|
+
return {
|
|
3752
|
+
name: (0, smithy_client_1.expectString)(output.name),
|
|
3753
|
+
};
|
|
3754
|
+
};
|
|
3755
|
+
const deserializeAws_json1_1OutputArtifactList = (output, context) => {
|
|
3756
|
+
const retVal = (output || [])
|
|
3757
|
+
.filter((e) => e != null)
|
|
3758
|
+
.map((entry) => {
|
|
3759
|
+
if (entry === null) {
|
|
3760
|
+
return null;
|
|
3761
|
+
}
|
|
3762
|
+
return deserializeAws_json1_1OutputArtifact(entry, context);
|
|
3763
|
+
});
|
|
3764
|
+
return retVal;
|
|
3765
|
+
};
|
|
3766
|
+
const deserializeAws_json1_1OutputVariablesMap = (output, context) => {
|
|
3767
|
+
return Object.entries(output).reduce((acc, [key, value]) => {
|
|
3768
|
+
if (value === null) {
|
|
3769
|
+
return acc;
|
|
3770
|
+
}
|
|
3771
|
+
acc[key] = (0, smithy_client_1.expectString)(value);
|
|
3772
|
+
return acc;
|
|
3773
|
+
}, {});
|
|
3774
|
+
};
|
|
3775
|
+
const deserializeAws_json1_1OutputVariablesSizeExceededException = (output, context) => {
|
|
3776
|
+
return {
|
|
3777
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
3778
|
+
};
|
|
3779
|
+
};
|
|
3780
|
+
const deserializeAws_json1_1PipelineContext = (output, context) => {
|
|
3781
|
+
return {
|
|
3782
|
+
action: output.action != null ? deserializeAws_json1_1ActionContext(output.action, context) : undefined,
|
|
3783
|
+
pipelineArn: (0, smithy_client_1.expectString)(output.pipelineArn),
|
|
3784
|
+
pipelineExecutionId: (0, smithy_client_1.expectString)(output.pipelineExecutionId),
|
|
3785
|
+
pipelineName: (0, smithy_client_1.expectString)(output.pipelineName),
|
|
3786
|
+
stage: output.stage != null ? deserializeAws_json1_1StageContext(output.stage, context) : undefined,
|
|
3787
|
+
};
|
|
3788
|
+
};
|
|
3789
|
+
const deserializeAws_json1_1PipelineDeclaration = (output, context) => {
|
|
3790
|
+
return {
|
|
3791
|
+
artifactStore: output.artifactStore != null ? deserializeAws_json1_1ArtifactStore(output.artifactStore, context) : undefined,
|
|
3792
|
+
artifactStores: output.artifactStores != null
|
|
3793
|
+
? deserializeAws_json1_1ArtifactStoreMap(output.artifactStores, context)
|
|
3794
|
+
: undefined,
|
|
3795
|
+
name: (0, smithy_client_1.expectString)(output.name),
|
|
3796
|
+
roleArn: (0, smithy_client_1.expectString)(output.roleArn),
|
|
3797
|
+
stages: output.stages != null ? deserializeAws_json1_1PipelineStageDeclarationList(output.stages, context) : undefined,
|
|
3798
|
+
version: (0, smithy_client_1.expectInt32)(output.version),
|
|
3799
|
+
};
|
|
3800
|
+
};
|
|
3801
|
+
const deserializeAws_json1_1PipelineExecution = (output, context) => {
|
|
3802
|
+
return {
|
|
3803
|
+
artifactRevisions: output.artifactRevisions != null
|
|
3804
|
+
? deserializeAws_json1_1ArtifactRevisionList(output.artifactRevisions, context)
|
|
3805
|
+
: undefined,
|
|
3806
|
+
pipelineExecutionId: (0, smithy_client_1.expectString)(output.pipelineExecutionId),
|
|
3807
|
+
pipelineName: (0, smithy_client_1.expectString)(output.pipelineName),
|
|
3808
|
+
pipelineVersion: (0, smithy_client_1.expectInt32)(output.pipelineVersion),
|
|
3809
|
+
status: (0, smithy_client_1.expectString)(output.status),
|
|
3810
|
+
statusSummary: (0, smithy_client_1.expectString)(output.statusSummary),
|
|
3811
|
+
};
|
|
3812
|
+
};
|
|
3813
|
+
const deserializeAws_json1_1PipelineExecutionNotFoundException = (output, context) => {
|
|
3814
|
+
return {
|
|
3815
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
3816
|
+
};
|
|
3817
|
+
};
|
|
3818
|
+
const deserializeAws_json1_1PipelineExecutionNotStoppableException = (output, context) => {
|
|
3819
|
+
return {
|
|
3820
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
3821
|
+
};
|
|
3822
|
+
};
|
|
3823
|
+
const deserializeAws_json1_1PipelineExecutionSummary = (output, context) => {
|
|
3824
|
+
return {
|
|
3825
|
+
lastUpdateTime: output.lastUpdateTime != null
|
|
3826
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.lastUpdateTime)))
|
|
3827
|
+
: undefined,
|
|
3828
|
+
pipelineExecutionId: (0, smithy_client_1.expectString)(output.pipelineExecutionId),
|
|
3829
|
+
sourceRevisions: output.sourceRevisions != null
|
|
3830
|
+
? deserializeAws_json1_1SourceRevisionList(output.sourceRevisions, context)
|
|
3831
|
+
: undefined,
|
|
3832
|
+
startTime: output.startTime != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.startTime))) : undefined,
|
|
3833
|
+
status: (0, smithy_client_1.expectString)(output.status),
|
|
3834
|
+
stopTrigger: output.stopTrigger != null ? deserializeAws_json1_1StopExecutionTrigger(output.stopTrigger, context) : undefined,
|
|
3835
|
+
trigger: output.trigger != null ? deserializeAws_json1_1ExecutionTrigger(output.trigger, context) : undefined,
|
|
3836
|
+
};
|
|
3837
|
+
};
|
|
3838
|
+
const deserializeAws_json1_1PipelineExecutionSummaryList = (output, context) => {
|
|
3839
|
+
const retVal = (output || [])
|
|
3840
|
+
.filter((e) => e != null)
|
|
3841
|
+
.map((entry) => {
|
|
3842
|
+
if (entry === null) {
|
|
3843
|
+
return null;
|
|
3844
|
+
}
|
|
3845
|
+
return deserializeAws_json1_1PipelineExecutionSummary(entry, context);
|
|
3846
|
+
});
|
|
3847
|
+
return retVal;
|
|
3848
|
+
};
|
|
3849
|
+
const deserializeAws_json1_1PipelineList = (output, context) => {
|
|
3850
|
+
const retVal = (output || [])
|
|
3851
|
+
.filter((e) => e != null)
|
|
3852
|
+
.map((entry) => {
|
|
3853
|
+
if (entry === null) {
|
|
3854
|
+
return null;
|
|
3855
|
+
}
|
|
3856
|
+
return deserializeAws_json1_1PipelineSummary(entry, context);
|
|
3857
|
+
});
|
|
3858
|
+
return retVal;
|
|
3859
|
+
};
|
|
3860
|
+
const deserializeAws_json1_1PipelineMetadata = (output, context) => {
|
|
3861
|
+
return {
|
|
3862
|
+
created: output.created != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.created))) : undefined,
|
|
3863
|
+
pipelineArn: (0, smithy_client_1.expectString)(output.pipelineArn),
|
|
3864
|
+
updated: output.updated != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.updated))) : undefined,
|
|
3865
|
+
};
|
|
3866
|
+
};
|
|
3867
|
+
const deserializeAws_json1_1PipelineNameInUseException = (output, context) => {
|
|
3868
|
+
return {
|
|
3869
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
3870
|
+
};
|
|
3871
|
+
};
|
|
3872
|
+
const deserializeAws_json1_1PipelineNotFoundException = (output, context) => {
|
|
3873
|
+
return {
|
|
3874
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
3875
|
+
};
|
|
3876
|
+
};
|
|
3877
|
+
const deserializeAws_json1_1PipelineStageDeclarationList = (output, context) => {
|
|
3878
|
+
const retVal = (output || [])
|
|
3879
|
+
.filter((e) => e != null)
|
|
3880
|
+
.map((entry) => {
|
|
3881
|
+
if (entry === null) {
|
|
3882
|
+
return null;
|
|
3883
|
+
}
|
|
3884
|
+
return deserializeAws_json1_1StageDeclaration(entry, context);
|
|
3885
|
+
});
|
|
3886
|
+
return retVal;
|
|
3887
|
+
};
|
|
3888
|
+
const deserializeAws_json1_1PipelineSummary = (output, context) => {
|
|
3889
|
+
return {
|
|
3890
|
+
created: output.created != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.created))) : undefined,
|
|
3891
|
+
name: (0, smithy_client_1.expectString)(output.name),
|
|
3892
|
+
updated: output.updated != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.updated))) : undefined,
|
|
3893
|
+
version: (0, smithy_client_1.expectInt32)(output.version),
|
|
3894
|
+
};
|
|
3895
|
+
};
|
|
3896
|
+
const deserializeAws_json1_1PipelineVersionNotFoundException = (output, context) => {
|
|
3897
|
+
return {
|
|
3898
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
3899
|
+
};
|
|
3900
|
+
};
|
|
3901
|
+
const deserializeAws_json1_1PollForJobsOutput = (output, context) => {
|
|
3902
|
+
return {
|
|
3903
|
+
jobs: output.jobs != null ? deserializeAws_json1_1JobList(output.jobs, context) : undefined,
|
|
3904
|
+
};
|
|
3905
|
+
};
|
|
3906
|
+
const deserializeAws_json1_1PollForThirdPartyJobsOutput = (output, context) => {
|
|
3907
|
+
return {
|
|
3908
|
+
jobs: output.jobs != null ? deserializeAws_json1_1ThirdPartyJobList(output.jobs, context) : undefined,
|
|
3909
|
+
};
|
|
3910
|
+
};
|
|
3911
|
+
const deserializeAws_json1_1PollingAccountList = (output, context) => {
|
|
3912
|
+
const retVal = (output || [])
|
|
3913
|
+
.filter((e) => e != null)
|
|
3914
|
+
.map((entry) => {
|
|
3915
|
+
if (entry === null) {
|
|
3916
|
+
return null;
|
|
3917
|
+
}
|
|
3918
|
+
return (0, smithy_client_1.expectString)(entry);
|
|
3919
|
+
});
|
|
3920
|
+
return retVal;
|
|
3921
|
+
};
|
|
3922
|
+
const deserializeAws_json1_1PollingServicePrincipalList = (output, context) => {
|
|
3923
|
+
const retVal = (output || [])
|
|
3924
|
+
.filter((e) => e != null)
|
|
3925
|
+
.map((entry) => {
|
|
3926
|
+
if (entry === null) {
|
|
3927
|
+
return null;
|
|
3928
|
+
}
|
|
3929
|
+
return (0, smithy_client_1.expectString)(entry);
|
|
3930
|
+
});
|
|
3931
|
+
return retVal;
|
|
3932
|
+
};
|
|
3933
|
+
const deserializeAws_json1_1PutActionRevisionOutput = (output, context) => {
|
|
3934
|
+
return {
|
|
3935
|
+
newRevision: (0, smithy_client_1.expectBoolean)(output.newRevision),
|
|
3936
|
+
pipelineExecutionId: (0, smithy_client_1.expectString)(output.pipelineExecutionId),
|
|
3937
|
+
};
|
|
3938
|
+
};
|
|
3939
|
+
const deserializeAws_json1_1PutApprovalResultOutput = (output, context) => {
|
|
3940
|
+
return {
|
|
3941
|
+
approvedAt: output.approvedAt != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.approvedAt))) : undefined,
|
|
3942
|
+
};
|
|
3943
|
+
};
|
|
3944
|
+
const deserializeAws_json1_1PutWebhookOutput = (output, context) => {
|
|
3945
|
+
return {
|
|
3946
|
+
webhook: output.webhook != null ? deserializeAws_json1_1ListWebhookItem(output.webhook, context) : undefined,
|
|
3947
|
+
};
|
|
3948
|
+
};
|
|
3949
|
+
const deserializeAws_json1_1RegisterWebhookWithThirdPartyOutput = (output, context) => {
|
|
3950
|
+
return {};
|
|
3951
|
+
};
|
|
3952
|
+
const deserializeAws_json1_1RequestFailedException = (output, context) => {
|
|
3953
|
+
return {
|
|
3954
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
3955
|
+
};
|
|
3956
|
+
};
|
|
3957
|
+
const deserializeAws_json1_1ResolvedActionConfigurationMap = (output, context) => {
|
|
3958
|
+
return Object.entries(output).reduce((acc, [key, value]) => {
|
|
3959
|
+
if (value === null) {
|
|
3960
|
+
return acc;
|
|
3961
|
+
}
|
|
3962
|
+
acc[key] = (0, smithy_client_1.expectString)(value);
|
|
3963
|
+
return acc;
|
|
3964
|
+
}, {});
|
|
3965
|
+
};
|
|
3966
|
+
const deserializeAws_json1_1ResourceNotFoundException = (output, context) => {
|
|
3967
|
+
return {
|
|
3968
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
3969
|
+
};
|
|
3970
|
+
};
|
|
3971
|
+
const deserializeAws_json1_1RetryStageExecutionOutput = (output, context) => {
|
|
3972
|
+
return {
|
|
3973
|
+
pipelineExecutionId: (0, smithy_client_1.expectString)(output.pipelineExecutionId),
|
|
3974
|
+
};
|
|
3975
|
+
};
|
|
3976
|
+
const deserializeAws_json1_1S3ArtifactLocation = (output, context) => {
|
|
3977
|
+
return {
|
|
3978
|
+
bucketName: (0, smithy_client_1.expectString)(output.bucketName),
|
|
3979
|
+
objectKey: (0, smithy_client_1.expectString)(output.objectKey),
|
|
3980
|
+
};
|
|
3981
|
+
};
|
|
3982
|
+
const deserializeAws_json1_1S3Location = (output, context) => {
|
|
3983
|
+
return {
|
|
3984
|
+
bucket: (0, smithy_client_1.expectString)(output.bucket),
|
|
3985
|
+
key: (0, smithy_client_1.expectString)(output.key),
|
|
3986
|
+
};
|
|
3987
|
+
};
|
|
3988
|
+
const deserializeAws_json1_1SourceRevision = (output, context) => {
|
|
3989
|
+
return {
|
|
3990
|
+
actionName: (0, smithy_client_1.expectString)(output.actionName),
|
|
3991
|
+
revisionId: (0, smithy_client_1.expectString)(output.revisionId),
|
|
3992
|
+
revisionSummary: (0, smithy_client_1.expectString)(output.revisionSummary),
|
|
3993
|
+
revisionUrl: (0, smithy_client_1.expectString)(output.revisionUrl),
|
|
3994
|
+
};
|
|
3995
|
+
};
|
|
3996
|
+
const deserializeAws_json1_1SourceRevisionList = (output, context) => {
|
|
3997
|
+
const retVal = (output || [])
|
|
3998
|
+
.filter((e) => e != null)
|
|
3999
|
+
.map((entry) => {
|
|
4000
|
+
if (entry === null) {
|
|
4001
|
+
return null;
|
|
4002
|
+
}
|
|
4003
|
+
return deserializeAws_json1_1SourceRevision(entry, context);
|
|
4004
|
+
});
|
|
4005
|
+
return retVal;
|
|
4006
|
+
};
|
|
4007
|
+
const deserializeAws_json1_1StageActionDeclarationList = (output, context) => {
|
|
4008
|
+
const retVal = (output || [])
|
|
4009
|
+
.filter((e) => e != null)
|
|
4010
|
+
.map((entry) => {
|
|
4011
|
+
if (entry === null) {
|
|
4012
|
+
return null;
|
|
4013
|
+
}
|
|
4014
|
+
return deserializeAws_json1_1ActionDeclaration(entry, context);
|
|
4015
|
+
});
|
|
4016
|
+
return retVal;
|
|
4017
|
+
};
|
|
4018
|
+
const deserializeAws_json1_1StageBlockerDeclarationList = (output, context) => {
|
|
4019
|
+
const retVal = (output || [])
|
|
4020
|
+
.filter((e) => e != null)
|
|
4021
|
+
.map((entry) => {
|
|
4022
|
+
if (entry === null) {
|
|
4023
|
+
return null;
|
|
4024
|
+
}
|
|
4025
|
+
return deserializeAws_json1_1BlockerDeclaration(entry, context);
|
|
4026
|
+
});
|
|
4027
|
+
return retVal;
|
|
4028
|
+
};
|
|
4029
|
+
const deserializeAws_json1_1StageContext = (output, context) => {
|
|
4030
|
+
return {
|
|
4031
|
+
name: (0, smithy_client_1.expectString)(output.name),
|
|
4032
|
+
};
|
|
4033
|
+
};
|
|
4034
|
+
const deserializeAws_json1_1StageDeclaration = (output, context) => {
|
|
4035
|
+
return {
|
|
4036
|
+
actions: output.actions != null ? deserializeAws_json1_1StageActionDeclarationList(output.actions, context) : undefined,
|
|
4037
|
+
blockers: output.blockers != null ? deserializeAws_json1_1StageBlockerDeclarationList(output.blockers, context) : undefined,
|
|
4038
|
+
name: (0, smithy_client_1.expectString)(output.name),
|
|
4039
|
+
};
|
|
4040
|
+
};
|
|
4041
|
+
const deserializeAws_json1_1StageExecution = (output, context) => {
|
|
4042
|
+
return {
|
|
4043
|
+
pipelineExecutionId: (0, smithy_client_1.expectString)(output.pipelineExecutionId),
|
|
4044
|
+
status: (0, smithy_client_1.expectString)(output.status),
|
|
4045
|
+
};
|
|
4046
|
+
};
|
|
4047
|
+
const deserializeAws_json1_1StageNotFoundException = (output, context) => {
|
|
4048
|
+
return {
|
|
4049
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
4050
|
+
};
|
|
4051
|
+
};
|
|
4052
|
+
const deserializeAws_json1_1StageNotRetryableException = (output, context) => {
|
|
4053
|
+
return {
|
|
4054
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
4055
|
+
};
|
|
4056
|
+
};
|
|
4057
|
+
const deserializeAws_json1_1StageState = (output, context) => {
|
|
4058
|
+
return {
|
|
4059
|
+
actionStates: output.actionStates != null ? deserializeAws_json1_1ActionStateList(output.actionStates, context) : undefined,
|
|
4060
|
+
inboundExecution: output.inboundExecution != null
|
|
4061
|
+
? deserializeAws_json1_1StageExecution(output.inboundExecution, context)
|
|
4062
|
+
: undefined,
|
|
4063
|
+
inboundTransitionState: output.inboundTransitionState != null
|
|
4064
|
+
? deserializeAws_json1_1TransitionState(output.inboundTransitionState, context)
|
|
4065
|
+
: undefined,
|
|
4066
|
+
latestExecution: output.latestExecution != null
|
|
4067
|
+
? deserializeAws_json1_1StageExecution(output.latestExecution, context)
|
|
4068
|
+
: undefined,
|
|
4069
|
+
stageName: (0, smithy_client_1.expectString)(output.stageName),
|
|
4070
|
+
};
|
|
4071
|
+
};
|
|
4072
|
+
const deserializeAws_json1_1StageStateList = (output, context) => {
|
|
4073
|
+
const retVal = (output || [])
|
|
4074
|
+
.filter((e) => e != null)
|
|
4075
|
+
.map((entry) => {
|
|
4076
|
+
if (entry === null) {
|
|
4077
|
+
return null;
|
|
4078
|
+
}
|
|
4079
|
+
return deserializeAws_json1_1StageState(entry, context);
|
|
4080
|
+
});
|
|
4081
|
+
return retVal;
|
|
4082
|
+
};
|
|
4083
|
+
const deserializeAws_json1_1StartPipelineExecutionOutput = (output, context) => {
|
|
4084
|
+
return {
|
|
4085
|
+
pipelineExecutionId: (0, smithy_client_1.expectString)(output.pipelineExecutionId),
|
|
4086
|
+
};
|
|
4087
|
+
};
|
|
4088
|
+
const deserializeAws_json1_1StopExecutionTrigger = (output, context) => {
|
|
4089
|
+
return {
|
|
4090
|
+
reason: (0, smithy_client_1.expectString)(output.reason),
|
|
4091
|
+
};
|
|
4092
|
+
};
|
|
4093
|
+
const deserializeAws_json1_1StopPipelineExecutionOutput = (output, context) => {
|
|
4094
|
+
return {
|
|
4095
|
+
pipelineExecutionId: (0, smithy_client_1.expectString)(output.pipelineExecutionId),
|
|
4096
|
+
};
|
|
4097
|
+
};
|
|
4098
|
+
const deserializeAws_json1_1Tag = (output, context) => {
|
|
4099
|
+
return {
|
|
4100
|
+
key: (0, smithy_client_1.expectString)(output.key),
|
|
4101
|
+
value: (0, smithy_client_1.expectString)(output.value),
|
|
4102
|
+
};
|
|
4103
|
+
};
|
|
4104
|
+
const deserializeAws_json1_1TagList = (output, context) => {
|
|
4105
|
+
const retVal = (output || [])
|
|
4106
|
+
.filter((e) => e != null)
|
|
4107
|
+
.map((entry) => {
|
|
4108
|
+
if (entry === null) {
|
|
4109
|
+
return null;
|
|
4110
|
+
}
|
|
4111
|
+
return deserializeAws_json1_1Tag(entry, context);
|
|
4112
|
+
});
|
|
4113
|
+
return retVal;
|
|
4114
|
+
};
|
|
4115
|
+
const deserializeAws_json1_1TagResourceOutput = (output, context) => {
|
|
4116
|
+
return {};
|
|
4117
|
+
};
|
|
4118
|
+
const deserializeAws_json1_1ThirdPartyJob = (output, context) => {
|
|
4119
|
+
return {
|
|
4120
|
+
clientId: (0, smithy_client_1.expectString)(output.clientId),
|
|
4121
|
+
jobId: (0, smithy_client_1.expectString)(output.jobId),
|
|
4122
|
+
};
|
|
4123
|
+
};
|
|
4124
|
+
const deserializeAws_json1_1ThirdPartyJobData = (output, context) => {
|
|
4125
|
+
return {
|
|
4126
|
+
actionConfiguration: output.actionConfiguration != null
|
|
4127
|
+
? deserializeAws_json1_1ActionConfiguration(output.actionConfiguration, context)
|
|
4128
|
+
: undefined,
|
|
4129
|
+
actionTypeId: output.actionTypeId != null ? deserializeAws_json1_1ActionTypeId(output.actionTypeId, context) : undefined,
|
|
4130
|
+
artifactCredentials: output.artifactCredentials != null
|
|
4131
|
+
? deserializeAws_json1_1AWSSessionCredentials(output.artifactCredentials, context)
|
|
4132
|
+
: undefined,
|
|
4133
|
+
continuationToken: (0, smithy_client_1.expectString)(output.continuationToken),
|
|
4134
|
+
encryptionKey: output.encryptionKey != null ? deserializeAws_json1_1EncryptionKey(output.encryptionKey, context) : undefined,
|
|
4135
|
+
inputArtifacts: output.inputArtifacts != null ? deserializeAws_json1_1ArtifactList(output.inputArtifacts, context) : undefined,
|
|
4136
|
+
outputArtifacts: output.outputArtifacts != null ? deserializeAws_json1_1ArtifactList(output.outputArtifacts, context) : undefined,
|
|
4137
|
+
pipelineContext: output.pipelineContext != null
|
|
4138
|
+
? deserializeAws_json1_1PipelineContext(output.pipelineContext, context)
|
|
4139
|
+
: undefined,
|
|
4140
|
+
};
|
|
4141
|
+
};
|
|
4142
|
+
const deserializeAws_json1_1ThirdPartyJobDetails = (output, context) => {
|
|
4143
|
+
return {
|
|
4144
|
+
data: output.data != null ? deserializeAws_json1_1ThirdPartyJobData(output.data, context) : undefined,
|
|
4145
|
+
id: (0, smithy_client_1.expectString)(output.id),
|
|
4146
|
+
nonce: (0, smithy_client_1.expectString)(output.nonce),
|
|
4147
|
+
};
|
|
4148
|
+
};
|
|
4149
|
+
const deserializeAws_json1_1ThirdPartyJobList = (output, context) => {
|
|
4150
|
+
const retVal = (output || [])
|
|
4151
|
+
.filter((e) => e != null)
|
|
4152
|
+
.map((entry) => {
|
|
4153
|
+
if (entry === null) {
|
|
4154
|
+
return null;
|
|
4155
|
+
}
|
|
4156
|
+
return deserializeAws_json1_1ThirdPartyJob(entry, context);
|
|
4157
|
+
});
|
|
4158
|
+
return retVal;
|
|
4159
|
+
};
|
|
4160
|
+
const deserializeAws_json1_1TooManyTagsException = (output, context) => {
|
|
4161
|
+
return {
|
|
4162
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
4163
|
+
};
|
|
4164
|
+
};
|
|
4165
|
+
const deserializeAws_json1_1TransitionState = (output, context) => {
|
|
4166
|
+
return {
|
|
4167
|
+
disabledReason: (0, smithy_client_1.expectString)(output.disabledReason),
|
|
4168
|
+
enabled: (0, smithy_client_1.expectBoolean)(output.enabled),
|
|
4169
|
+
lastChangedAt: output.lastChangedAt != null
|
|
4170
|
+
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.lastChangedAt)))
|
|
4171
|
+
: undefined,
|
|
4172
|
+
lastChangedBy: (0, smithy_client_1.expectString)(output.lastChangedBy),
|
|
4173
|
+
};
|
|
4174
|
+
};
|
|
4175
|
+
const deserializeAws_json1_1UntagResourceOutput = (output, context) => {
|
|
4176
|
+
return {};
|
|
4177
|
+
};
|
|
4178
|
+
const deserializeAws_json1_1UpdatePipelineOutput = (output, context) => {
|
|
4179
|
+
return {
|
|
4180
|
+
pipeline: output.pipeline != null ? deserializeAws_json1_1PipelineDeclaration(output.pipeline, context) : undefined,
|
|
4181
|
+
};
|
|
4182
|
+
};
|
|
4183
|
+
const deserializeAws_json1_1ValidationException = (output, context) => {
|
|
4184
|
+
return {
|
|
4185
|
+
message: (0, smithy_client_1.expectString)(output.message),
|
|
4186
|
+
};
|
|
4187
|
+
};
|
|
4188
|
+
const deserializeAws_json1_1WebhookAuthConfiguration = (output, context) => {
|
|
4189
|
+
return {
|
|
4190
|
+
AllowedIPRange: (0, smithy_client_1.expectString)(output.AllowedIPRange),
|
|
4191
|
+
SecretToken: (0, smithy_client_1.expectString)(output.SecretToken),
|
|
4192
|
+
};
|
|
4193
|
+
};
|
|
4194
|
+
const deserializeAws_json1_1WebhookDefinition = (output, context) => {
|
|
4195
|
+
return {
|
|
4196
|
+
authentication: (0, smithy_client_1.expectString)(output.authentication),
|
|
4197
|
+
authenticationConfiguration: output.authenticationConfiguration != null
|
|
4198
|
+
? deserializeAws_json1_1WebhookAuthConfiguration(output.authenticationConfiguration, context)
|
|
4199
|
+
: undefined,
|
|
4200
|
+
filters: output.filters != null ? deserializeAws_json1_1WebhookFilters(output.filters, context) : undefined,
|
|
4201
|
+
name: (0, smithy_client_1.expectString)(output.name),
|
|
4202
|
+
targetAction: (0, smithy_client_1.expectString)(output.targetAction),
|
|
4203
|
+
targetPipeline: (0, smithy_client_1.expectString)(output.targetPipeline),
|
|
4204
|
+
};
|
|
4205
|
+
};
|
|
4206
|
+
const deserializeAws_json1_1WebhookFilterRule = (output, context) => {
|
|
4207
|
+
return {
|
|
4208
|
+
jsonPath: (0, smithy_client_1.expectString)(output.jsonPath),
|
|
4209
|
+
matchEquals: (0, smithy_client_1.expectString)(output.matchEquals),
|
|
4210
|
+
};
|
|
4211
|
+
};
|
|
4212
|
+
const deserializeAws_json1_1WebhookFilters = (output, context) => {
|
|
4213
|
+
const retVal = (output || [])
|
|
4214
|
+
.filter((e) => e != null)
|
|
4215
|
+
.map((entry) => {
|
|
4216
|
+
if (entry === null) {
|
|
4217
|
+
return null;
|
|
4218
|
+
}
|
|
4219
|
+
return deserializeAws_json1_1WebhookFilterRule(entry, context);
|
|
4220
|
+
});
|
|
4221
|
+
return retVal;
|
|
4222
|
+
};
|
|
4223
|
+
const deserializeAws_json1_1WebhookList = (output, context) => {
|
|
4224
|
+
const retVal = (output || [])
|
|
4225
|
+
.filter((e) => e != null)
|
|
4226
|
+
.map((entry) => {
|
|
4227
|
+
if (entry === null) {
|
|
4228
|
+
return null;
|
|
4229
|
+
}
|
|
4230
|
+
return deserializeAws_json1_1ListWebhookItem(entry, context);
|
|
4231
|
+
});
|
|
4232
|
+
return retVal;
|
|
4233
|
+
};
|
|
4234
|
+
const deserializeAws_json1_1WebhookNotFoundException = (output, context) => {
|
|
4235
|
+
return {};
|
|
4236
|
+
};
|
|
4237
|
+
const deserializeMetadata = (output) => ({
|
|
4238
|
+
httpStatusCode: output.statusCode,
|
|
4239
|
+
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
4240
|
+
extendedRequestId: output.headers["x-amz-id-2"],
|
|
4241
|
+
cfId: output.headers["x-amz-cf-id"],
|
|
4242
|
+
});
|
|
4243
|
+
const collectBody = (streamBody = new Uint8Array(), context) => {
|
|
4244
|
+
if (streamBody instanceof Uint8Array) {
|
|
4245
|
+
return Promise.resolve(streamBody);
|
|
4246
|
+
}
|
|
4247
|
+
return context.streamCollector(streamBody) || Promise.resolve(new Uint8Array());
|
|
4248
|
+
};
|
|
4249
|
+
const collectBodyString = (streamBody, context) => collectBody(streamBody, context).then((body) => context.utf8Encoder(body));
|
|
4250
|
+
const buildHttpRpcRequest = async (context, headers, path, resolvedHostname, body) => {
|
|
4251
|
+
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
4252
|
+
const contents = {
|
|
4253
|
+
protocol,
|
|
4254
|
+
hostname,
|
|
4255
|
+
port,
|
|
4256
|
+
method: "POST",
|
|
4257
|
+
path: basePath.endsWith("/") ? basePath.slice(0, -1) + path : basePath + path,
|
|
4258
|
+
headers,
|
|
4259
|
+
};
|
|
4260
|
+
if (resolvedHostname !== undefined) {
|
|
4261
|
+
contents.hostname = resolvedHostname;
|
|
4262
|
+
}
|
|
4263
|
+
if (body !== undefined) {
|
|
4264
|
+
contents.body = body;
|
|
4265
|
+
}
|
|
4266
|
+
return new protocol_http_1.HttpRequest(contents);
|
|
4267
|
+
};
|
|
4268
|
+
const parseBody = (streamBody, context) => collectBodyString(streamBody, context).then((encoded) => {
|
|
4269
|
+
if (encoded.length) {
|
|
4270
|
+
return JSON.parse(encoded);
|
|
4271
|
+
}
|
|
4272
|
+
return {};
|
|
4273
|
+
});
|
|
4274
|
+
const parseErrorBody = async (errorBody, context) => {
|
|
4275
|
+
const value = await parseBody(errorBody, context);
|
|
4276
|
+
value.message = value.message ?? value.Message;
|
|
4277
|
+
return value;
|
|
4278
|
+
};
|
|
4279
|
+
const loadRestJsonErrorCode = (output, data) => {
|
|
4280
|
+
const findKey = (object, key) => Object.keys(object).find((k) => k.toLowerCase() === key.toLowerCase());
|
|
4281
|
+
const sanitizeErrorCode = (rawValue) => {
|
|
4282
|
+
let cleanValue = rawValue;
|
|
4283
|
+
if (typeof cleanValue === "number") {
|
|
4284
|
+
cleanValue = cleanValue.toString();
|
|
4285
|
+
}
|
|
4286
|
+
if (cleanValue.indexOf(",") >= 0) {
|
|
4287
|
+
cleanValue = cleanValue.split(",")[0];
|
|
4288
|
+
}
|
|
4289
|
+
if (cleanValue.indexOf(":") >= 0) {
|
|
4290
|
+
cleanValue = cleanValue.split(":")[0];
|
|
4291
|
+
}
|
|
4292
|
+
if (cleanValue.indexOf("#") >= 0) {
|
|
4293
|
+
cleanValue = cleanValue.split("#")[1];
|
|
4294
|
+
}
|
|
4295
|
+
return cleanValue;
|
|
4296
|
+
};
|
|
4297
|
+
const headerKey = findKey(output.headers, "x-amzn-errortype");
|
|
4298
|
+
if (headerKey !== undefined) {
|
|
4299
|
+
return sanitizeErrorCode(output.headers[headerKey]);
|
|
4300
|
+
}
|
|
4301
|
+
if (data.code !== undefined) {
|
|
4302
|
+
return sanitizeErrorCode(data.code);
|
|
4303
|
+
}
|
|
4304
|
+
if (data["__type"] !== undefined) {
|
|
4305
|
+
return sanitizeErrorCode(data["__type"]);
|
|
4306
|
+
}
|
|
4307
|
+
};
|