@cdklabs/cdk-ssm-documents 0.0.65 → 0.0.66
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +11 -11
- package/lib/construct/synth-utils.js +1 -1
- package/lib/document/automation-document.js +1 -1
- package/lib/document/command-document.js +1 -1
- package/lib/document/document-builder.js +2 -2
- package/lib/document/ssm-document.js +1 -1
- package/lib/domain/aws-service.js +1 -1
- package/lib/domain/choice.js +1 -1
- package/lib/domain/data-type.js +1 -1
- package/lib/domain/enum/install-action.js +2 -2
- package/lib/domain/enum/install-uninstall-repair.js +2 -2
- package/lib/domain/enum/installation-type.js +2 -2
- package/lib/domain/enum/package-name.js +2 -2
- package/lib/domain/input.js +1 -1
- package/lib/domain/operation.js +1 -1
- package/lib/domain/platform.js +1 -1
- package/lib/domain/precondition.js +1 -1
- package/lib/incident-response/incident-response.js +3 -3
- package/lib/interface/approve-hook.js +2 -2
- package/lib/interface/auth-method.js +3 -3
- package/lib/interface/aws-invoker.js +2 -2
- package/lib/interface/downloadable-content.js +8 -8
- package/lib/interface/environment.js +3 -3
- package/lib/interface/execute-automation-hook/api-execute-automation-hook.js +1 -1
- package/lib/interface/observer.js +1 -1
- package/lib/interface/on-failure.js +6 -6
- package/lib/interface/pause-hook.js +2 -2
- package/lib/interface/run-command-hook/api-run-command-hook.js +1 -1
- package/lib/interface/run-document-location.js +2 -2
- package/lib/interface/sleep-hook.js +2 -2
- package/lib/interface/step-ref.js +1 -1
- package/lib/interface/variables/boolean-variable.js +2 -2
- package/lib/interface/variables/map-list-variable.js +2 -2
- package/lib/interface/variables/number-variable.js +2 -2
- package/lib/interface/variables/secure-string-variable.js +4 -4
- package/lib/interface/variables/string-list-variable.js +2 -2
- package/lib/interface/variables/string-map-variable.js +2 -2
- package/lib/interface/variables/string-variable.js +4 -4
- package/lib/interface/variables/variable.js +2 -2
- package/lib/interface/webhook.js +1 -1
- package/lib/parent-steps/automation/approve-step.js +1 -1
- package/lib/parent-steps/automation/assert-aws-resource-step.js +1 -1
- package/lib/parent-steps/automation/aws-api-step.js +1 -1
- package/lib/parent-steps/automation/branch-step.js +1 -1
- package/lib/parent-steps/automation/change-instance-state-step.js +3 -3
- package/lib/parent-steps/automation/copy-image-step.js +1 -1
- package/lib/parent-steps/automation/create-image-step.js +1 -1
- package/lib/parent-steps/automation/create-stack-step.js +3 -3
- package/lib/parent-steps/automation/create-tags-step.js +3 -3
- package/lib/parent-steps/automation/delete-image-step.js +1 -1
- package/lib/parent-steps/automation/delete-stack-step.js +1 -1
- package/lib/parent-steps/automation/execute-automation-step.js +1 -1
- package/lib/parent-steps/automation/execute-script-step.js +5 -5
- package/lib/parent-steps/automation/execute-state-machine-step.js +1 -1
- package/lib/parent-steps/automation/invoke-lambda-function-step.js +1 -1
- package/lib/parent-steps/automation/invoke-webhook-step.js +1 -1
- package/lib/parent-steps/automation/pause-step.js +1 -1
- package/lib/parent-steps/automation/run-command-step.js +3 -3
- package/lib/parent-steps/automation/run-instance-step.js +1 -1
- package/lib/parent-steps/automation/sleep-step.js +1 -1
- package/lib/parent-steps/automation/update-variable.js +1 -1
- package/lib/parent-steps/automation/wait-for-resource-step.js +1 -1
- package/lib/parent-steps/automation-step.js +1 -1
- package/lib/parent-steps/command/applications-step.js +1 -1
- package/lib/parent-steps/command/configure-docker-step.js +1 -1
- package/lib/parent-steps/command/configure-package-step.js +1 -1
- package/lib/parent-steps/command/domain-join-step.js +1 -1
- package/lib/parent-steps/command/download-content-step.js +1 -1
- package/lib/parent-steps/command/ps-module-step.js +1 -1
- package/lib/parent-steps/command/run-docker-action-step.js +1 -1
- package/lib/parent-steps/command/run-document-step.js +1 -1
- package/lib/parent-steps/command/run-powershell-script-step.js +1 -1
- package/lib/parent-steps/command/run-shell-script-step.js +1 -1
- package/lib/parent-steps/command/software-inventory-step.js +1 -1
- package/lib/parent-steps/command/update-agent-step.js +1 -1
- package/lib/parent-steps/command/update-ssm-agent-step.js +1 -1
- package/lib/parent-steps/command-step.js +1 -1
- package/lib/parent-steps/step.js +1 -1
- package/lib/patterns/automation/composite-step.js +2 -2
- package/lib/patterns/automation/reboot-instance-and-wait.js +1 -1
- package/lib/patterns/automation/string-step.js +1 -1
- package/lib/patterns/document/string-document.js +1 -1
- package/lib/patterns/document/timed-document.js +1 -1
- package/lib/samples/hello-world.js +1 -1
- package/lib/simulation/automation/approve-simulation.js +1 -1
- package/lib/simulation/automation/assert-aws-resource-simulation.js +1 -1
- package/lib/simulation/automation/automation-simulation-base.js +1 -1
- package/lib/simulation/automation/aws-api-simulation.js +1 -1
- package/lib/simulation/automation/branch-simulation.js +1 -1
- package/lib/simulation/automation/change-instance-state-simulation.js +1 -1
- package/lib/simulation/automation/copy-image-simulation.js +1 -1
- package/lib/simulation/automation/create-image-simulation.js +1 -1
- package/lib/simulation/automation/create-stack-simulation.js +1 -1
- package/lib/simulation/automation/create-tags-simulation.js +1 -1
- package/lib/simulation/automation/delete-image-simulation.js +1 -1
- package/lib/simulation/automation/delete-stack-simulation.js +1 -1
- package/lib/simulation/automation/execute-script-simulation.js +1 -1
- package/lib/simulation/automation/execute-state-machine-simulation.js +1 -1
- package/lib/simulation/automation/invoke-lambda-function-simulation.js +1 -1
- package/lib/simulation/automation/invoke-webhook-simulation.js +1 -1
- package/lib/simulation/automation/pause-simulation.js +1 -1
- package/lib/simulation/automation/run-command-simulation.js +1 -1
- package/lib/simulation/automation/run-instance-simulation.js +1 -1
- package/lib/simulation/automation/sleep-simulation.js +1 -1
- package/lib/simulation/automation/update-variable-simulation.js +1 -1
- package/lib/simulation/automation/wait-for-resource-simulation.js +1 -1
- package/lib/simulation/automation-step-simulation.js +1 -1
- package/lib/simulation/command/command-simulation-base.js +1 -1
- package/lib/simulation/command/ps-module-simulation.js +1 -1
- package/lib/simulation/command/run-powershell-script-simulation.js +1 -1
- package/lib/simulation/command/run-shell-script-simulation.js +1 -1
- package/lib/simulation/command-step-simulation.js +1 -1
- package/lib/simulation/document/automation-simulation.js +1 -1
- package/lib/simulation/document/command-simulation.js +1 -1
- package/lib/simulation/simulation.js +1 -1
- package/node_modules/@aws-sdk/checksums/dist-cjs/flexible-checksums/getCrc32ChecksumAlgorithmFunction.browser.js +2 -6
- package/node_modules/@aws-sdk/checksums/dist-cjs/flexible-checksums/getCrc32ChecksumAlgorithmFunction.js +6 -11
- package/node_modules/@aws-sdk/checksums/dist-cjs/index.js +56 -56
- package/node_modules/@aws-sdk/checksums/package.json +6 -6
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/index.js +449 -469
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/models/CloudFormationServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/models/errors.js +59 -91
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.browser.js +22 -26
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.js +30 -34
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.shared.js +20 -24
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/schemas/schemas_0.js +814 -533
- package/node_modules/@aws-sdk/client-cloudformation/package.json +8 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/index.js +222 -242
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/models/CloudWatchServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/models/errors.js +35 -55
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.browser.js +25 -29
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.js +33 -37
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.shared.js +20 -24
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/schemas/schemas_0.js +419 -275
- package/node_modules/@aws-sdk/client-cloudwatch/package.json +9 -9
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/index.js +2875 -2885
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/models/EC2ServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.browser.js +22 -26
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.js +30 -34
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.shared.js +20 -24
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/schemas/schemas_0.js +6885 -4554
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelCapacityReservationCommand.d.ts +16 -10
- package/node_modules/@aws-sdk/client-ec2/package.json +11 -11
- package/node_modules/@aws-sdk/client-iam/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/node_modules/@aws-sdk/client-iam/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-iam/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-iam/dist-cjs/index.js +634 -654
- package/node_modules/@aws-sdk/client-iam/dist-cjs/models/IAMServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-iam/dist-cjs/models/errors.js +71 -109
- package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.browser.js +22 -26
- package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.js +30 -34
- package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.shared.js +20 -24
- package/node_modules/@aws-sdk/client-iam/dist-cjs/schemas/schemas_0.js +1006 -665
- package/node_modules/@aws-sdk/client-iam/package.json +10 -10
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/index.js +368 -386
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/models/LambdaServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/models/errors.js +229 -145
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.browser.js +24 -28
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.js +32 -36
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.shared.js +20 -24
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/schemas/schemas_0.js +959 -581
- package/node_modules/@aws-sdk/client-lambda/dist-es/models/enums.js +2 -0
- package/node_modules/@aws-sdk/client-lambda/dist-es/models/errors.js +134 -0
- package/node_modules/@aws-sdk/client-lambda/dist-es/schemas/schemas_0.js +100 -31
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/AddPermissionCommand.d.ts +5 -2
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateAliasCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateEventSourceMappingCommand.d.ts +28 -28
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateFunctionCommand.d.ts +14 -14
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteAliasCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteEventSourceMappingCommand.d.ts +16 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteFunctionUrlConfigCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteLayerVersionCommand.d.ts +6 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetEventSourceMappingCommand.d.ts +16 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionCodeSigningConfigCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionCommand.d.ts +8 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionConfigurationCommand.d.ts +8 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetLayerVersionByArnCommand.d.ts +4 -4
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetLayerVersionCommand.d.ts +4 -4
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetRuntimeManagementConfigCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeAsyncCommand.d.ts +72 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeCommand.d.ts +21 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeWithResponseStreamCommand.d.ts +6 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListEventSourceMappingsCommand.d.ts +16 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListFunctionsCommand.d.ts +8 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListLayerVersionsCommand.d.ts +6 -6
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListLayersCommand.d.ts +6 -6
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListVersionsByFunctionCommand.d.ts +8 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PublishLayerVersionCommand.d.ts +8 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PublishVersionCommand.d.ts +8 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutProvisionedConcurrencyConfigCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/RemovePermissionCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/SendDurableExecutionCallbackFailureCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/SendDurableExecutionCallbackHeartbeatCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/SendDurableExecutionCallbackSuccessCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateEventSourceMappingCommand.d.ts +32 -32
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionCodeCommand.d.ts +12 -12
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionConfigurationCommand.d.ts +9 -9
- package/node_modules/@aws-sdk/client-lambda/dist-types/models/enums.d.ts +2 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/models/errors.d.ts +173 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/models/models_0.d.ts +158 -158
- package/node_modules/@aws-sdk/client-lambda/dist-types/schemas/schemas_0.d.ts +9 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/enums.d.ts +2 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/errors.d.ts +88 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/models_0.d.ts +33 -33
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -0
- package/node_modules/@aws-sdk/client-lambda/package.json +12 -12
- package/node_modules/@aws-sdk/client-s3/README.md +35 -0
- package/node_modules/@aws-sdk/client-s3/dist-cjs/auth/httpAuthSchemeProvider.js +15 -19
- package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-s3/dist-cjs/index.js +646 -535
- package/node_modules/@aws-sdk/client-s3/dist-cjs/models/S3ServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-s3/dist-cjs/models/errors.js +106 -52
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.browser.js +29 -33
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.js +43 -47
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.shared.js +25 -29
- package/node_modules/@aws-sdk/client-s3/dist-cjs/schemas/schemas_0.js +1256 -740
- package/node_modules/@aws-sdk/client-s3/dist-es/S3.js +12 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectAnnotationCommand.js +23 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAnnotationCommand.js +28 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectAnnotationsCommand.js +23 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectAnnotationCommand.js +29 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateBucketMetadataAnnotationTableConfigurationCommand.js +27 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/index.js +5 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/models/enums.js +12 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/models/errors.js +76 -4
- package/node_modules/@aws-sdk/client-s3/dist-es/pagination/ListObjectAnnotationsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/pagination/index.js +1 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/schemas/schemas_0.js +260 -100
- package/node_modules/@aws-sdk/client-s3/dist-types/S3.d.ts +42 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/S3Client.d.ts +7 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CopyObjectCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketMetadataConfigurationCommand.d.ts +27 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectAnnotationCommand.d.ts +119 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetadataConfigurationCommand.d.ts +11 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketNotificationConfigurationCommand.d.ts +3 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAnnotationCommand.d.ts +141 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectAnnotationsCommand.d.ts +138 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketNotificationConfigurationCommand.d.ts +3 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectAnnotationCommand.d.ts +166 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/RenameObjectCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/RestoreObjectCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateBucketMetadataAnnotationTableConfigurationCommand.d.ts +110 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/models/enums.d.ts +29 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/models/errors.d.ts +76 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/models/models_0.d.ts +925 -549
- package/node_modules/@aws-sdk/client-s3/dist-types/models/models_1.d.ts +380 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/pagination/ListObjectAnnotationsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/pagination/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/schemas/schemas_0.d.ts +24 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3.d.ts +98 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3Client.d.ts +30 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectAnnotationCommand.d.ts +53 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectAnnotationCommand.d.ts +61 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectAnnotationsCommand.d.ts +53 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectAnnotationCommand.d.ts +61 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/RenameObjectCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/RestoreObjectCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateBucketMetadataAnnotationTableConfigurationCommand.d.ts +49 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/enums.d.ts +18 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/errors.d.ts +41 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_0.d.ts +138 -64
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_1.d.ts +75 -5
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/ListObjectAnnotationsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/schemas/schemas_0.d.ts +24 -0
- package/node_modules/@aws-sdk/client-s3/package.json +20 -20
- package/node_modules/@aws-sdk/client-sns/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/node_modules/@aws-sdk/client-sns/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-sns/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-sns/dist-cjs/index.js +174 -194
- package/node_modules/@aws-sdk/client-sns/dist-cjs/models/SNSServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-sns/dist-cjs/models/errors.js +69 -106
- package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.browser.js +22 -26
- package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.js +30 -34
- package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.shared.js +20 -24
- package/node_modules/@aws-sdk/client-sns/dist-cjs/schemas/schemas_0.js +331 -218
- package/node_modules/@aws-sdk/client-sns/package.json +9 -9
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/index.js +118 -138
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/models/SQSServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/models/errors.js +57 -88
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.browser.js +24 -28
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.js +31 -35
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.shared.js +20 -24
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/schemas/schemas_0.js +222 -150
- package/node_modules/@aws-sdk/client-sqs/package.json +15 -15
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/index.js +543 -563
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/models/SSMServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/models/errors.js +279 -423
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.browser.js +22 -26
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.js +30 -34
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.shared.js +20 -24
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/schemas/schemas_0.js +1693 -1109
- package/node_modules/@aws-sdk/client-ssm/package.json +9 -9
- package/node_modules/@aws-sdk/core/dist-cjs/index.js +45 -50
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/account-id-endpoint/index.js +2 -4
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.browser.js +297 -23
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +327 -52
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.native.js +297 -23
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/httpAuthSchemes/index.js +19 -21
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +107 -109
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/util/index.js +2 -4
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-endpoints/lib/aws/partitions.js +276 -1
- package/node_modules/@aws-sdk/core/package.json +8 -8
- package/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js +4 -6
- package/node_modules/@aws-sdk/credential-provider-env/package.json +6 -6
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/checkUrl.js +3 -7
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.browser.js +12 -16
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js +16 -21
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/requestHelpers.js +14 -18
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/retry-wrapper.js +1 -5
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.browser.js +2 -5
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.js +2 -7
- package/node_modules/@aws-sdk/credential-provider-http/package.json +6 -6
- package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +47 -41
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProcessCredentials.js +8 -4
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveWebIdentityCredentials.js +14 -10
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +13 -13
- package/node_modules/@aws-sdk/credential-provider-login/dist-cjs/index.js +31 -33
- package/node_modules/@aws-sdk/credential-provider-login/package.json +7 -7
- package/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +16 -18
- package/node_modules/@aws-sdk/credential-provider-node/package.json +11 -11
- package/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js +11 -13
- package/node_modules/@aws-sdk/credential-provider-process/package.json +6 -6
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +22 -24
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/loadSso-BGYXHf8s.js +3 -0
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +8 -8
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js +10 -14
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js +2 -6
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/index.js +3 -27
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +7 -7
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-cjs/index.js +18 -23
- package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +5 -5
- package/node_modules/@aws-sdk/middleware-sdk-ec2/dist-cjs/index.js +11 -13
- package/node_modules/@aws-sdk/middleware-sdk-ec2/package.json +6 -6
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.js +1 -518
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/submodules/s3/index.browser.js +31 -33
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/submodules/s3/index.js +37 -39
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/submodules/s3-control/index.js +14 -16
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/index.js +1 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/index.d.ts +2 -2
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +9 -11
- package/node_modules/@aws-sdk/middleware-sdk-sqs/dist-cjs/index.js +9 -11
- package/node_modules/@aws-sdk/middleware-sdk-sqs/package.json +5 -5
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/index.js +0 -1
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/index.js +82 -84
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js +158 -119
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/index.js +80 -82
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js +80 -82
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js +99 -101
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commands/CreateOAuth2TokenCommand.js +4 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/bdd.js +70 -35
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/endpointResolver.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/enums.js +3 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/EndpointParameters.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/enums.d.ts +12 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/EndpointParameters.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/enums.d.ts +3 -0
- package/node_modules/@aws-sdk/nested-clients/package.json +9 -8
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-cjs/index.js +4 -6
- package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +5 -5
- package/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +26 -28
- package/node_modules/@aws-sdk/token-providers/package.json +7 -7
- package/node_modules/@aws-sdk/types/dist-cjs/index.js +7 -8
- package/node_modules/@aws-sdk/types/package.json +4 -4
- package/node_modules/@aws-sdk/util-locate-window/dist-cjs/index.js +0 -2
- package/node_modules/@aws-sdk/util-locate-window/package.json +4 -4
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/index.js +2 -4
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-external/nodable_entities.js +4 -7
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.browser.js +2 -5
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.js +7 -10
- package/node_modules/@aws-sdk/xml-builder/node_modules/strnum/package.json +5 -4
- package/node_modules/@aws-sdk/xml-builder/package.json +4 -4
- package/node_modules/@smithy/core/dist-cjs/submodules/cbor/index.js +518 -371
- package/node_modules/@smithy/core/dist-cjs/submodules/client/index.js +1 -1
- package/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +10 -2
- package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-decode.js +326 -269
- package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-encode.js +192 -103
- package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor.js +4 -2
- package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/get-value-from-text-node.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpProtocol.js +10 -2
- package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-decode.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-encode.d.ts +8 -4
- package/node_modules/@smithy/core/dist-types/submodules/protocols/HttpProtocol.d.ts +6 -0
- package/node_modules/@smithy/core/package.json +1 -1
- package/node_modules/@smithy/credential-provider-imds/package.json +2 -2
- package/node_modules/@smithy/fetch-http-handler/package.json +2 -2
- package/node_modules/@smithy/middleware-compression/package.json +2 -2
- package/node_modules/@smithy/node-http-handler/package.json +2 -2
- package/node_modules/@smithy/signature-v4/package.json +2 -2
- package/node_modules/anynum/package.json +2 -2
- package/node_modules/path-expression-matcher/README.md +82 -7
- package/node_modules/path-expression-matcher/lib/pem.cjs +1 -1
- package/node_modules/path-expression-matcher/lib/pem.d.cts +83 -2
- package/node_modules/path-expression-matcher/lib/pem.min.js +1 -1
- package/node_modules/path-expression-matcher/lib/pem.min.js.map +1 -1
- package/node_modules/path-expression-matcher/package.json +3 -2
- package/node_modules/path-expression-matcher/src/ExpressionSet.js +18 -2
- package/node_modules/path-expression-matcher/src/Matcher.js +93 -3
- package/node_modules/path-expression-matcher/src/index.d.ts +67 -1
- package/package.json +10 -10
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/loadSso-BKDNrsal.js +0 -8
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.browser.js +0 -34
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/index.browser.js +0 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/index.browser.d.ts +0 -2
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/index.browser.d.ts +0 -39
|
@@ -1,19 +1,22 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
1
|
+
var __exportStar = (m, e) => { Object.assign(e, m); };
|
|
2
|
+
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
|
+
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
+
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createWaiter, checkExceptions, WaiterState, createAggregatedClient } = require("@smithy/core/client");
|
|
5
|
+
exports.$Command = Command;
|
|
6
|
+
exports.__Client = Client;
|
|
7
|
+
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
+
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
+
const { resolveEventStreamSerdeConfig } = require("@smithy/core/event-streams");
|
|
10
|
+
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
11
|
+
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
12
|
+
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
13
|
+
const { resolveHttpAuthSchemeConfig, defaultLambdaHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
|
|
14
|
+
const { getRuntimeConfig } = require("./runtimeConfig");
|
|
15
|
+
const { AddLayerVersionPermission$, AddPermission$, CheckpointDurableExecution$, CreateAlias$, CreateCapacityProvider$, CreateCodeSigningConfig$, CreateEventSourceMapping$, CreateFunction$, CreateFunctionUrlConfig$, DeleteAlias$, DeleteCapacityProvider$, DeleteCodeSigningConfig$, DeleteEventSourceMapping$, DeleteFunctionCodeSigningConfig$, DeleteFunction$, DeleteFunctionConcurrency$, DeleteFunctionEventInvokeConfig$, DeleteFunctionUrlConfig$, DeleteLayerVersion$, DeleteProvisionedConcurrencyConfig$, GetAccountSettings$, GetAlias$, GetCapacityProvider$, GetCodeSigningConfig$, GetDurableExecution$, GetDurableExecutionHistory$, GetDurableExecutionState$, GetEventSourceMapping$, GetFunctionCodeSigningConfig$, GetFunction$, GetFunctionConcurrency$, GetFunctionConfiguration$, GetFunctionEventInvokeConfig$, GetFunctionRecursionConfig$, GetFunctionScalingConfig$, GetFunctionUrlConfig$, GetLayerVersionByArn$, GetLayerVersion$, GetLayerVersionPolicy$, GetPolicy$, GetProvisionedConcurrencyConfig$, GetRuntimeManagementConfig$, InvokeAsync$, Invoke$, InvokeWithResponseStream$, ListAliases$, ListCapacityProviders$, ListCodeSigningConfigs$, ListDurableExecutionsByFunction$, ListEventSourceMappings$, ListFunctionEventInvokeConfigs$, ListFunctionsByCodeSigningConfig$, ListFunctions$, ListFunctionUrlConfigs$, ListFunctionVersionsByCapacityProvider$, ListLayers$, ListLayerVersions$, ListProvisionedConcurrencyConfigs$, ListTags$, ListVersionsByFunction$, PublishLayerVersion$, PublishVersion$, PutFunctionCodeSigningConfig$, PutFunctionConcurrency$, PutFunctionEventInvokeConfig$, PutFunctionRecursionConfig$, PutFunctionScalingConfig$, PutProvisionedConcurrencyConfig$, PutRuntimeManagementConfig$, RemoveLayerVersionPermission$, RemovePermission$, SendDurableExecutionCallbackFailure$, SendDurableExecutionCallbackHeartbeat$, SendDurableExecutionCallbackSuccess$, StopDurableExecution$, TagResource$, UntagResource$, UpdateAlias$, UpdateCapacityProvider$, UpdateCodeSigningConfig$, UpdateEventSourceMapping$, UpdateFunctionCode$, UpdateFunctionConfiguration$, UpdateFunctionEventInvokeConfig$, UpdateFunctionUrlConfig$ } = require("./schemas/schemas_0");
|
|
16
|
+
__exportStar(require("./schemas/schemas_0"), exports);
|
|
17
|
+
__exportStar(require("./models/errors"), exports);
|
|
18
|
+
const { LambdaServiceException } = require("./models/LambdaServiceException");
|
|
19
|
+
exports.LambdaServiceException = LambdaServiceException;
|
|
17
20
|
|
|
18
21
|
const resolveClientEndpointParameters = (options) => {
|
|
19
22
|
return Object.assign(options, {
|
|
@@ -69,580 +72,580 @@ const resolveHttpAuthRuntimeConfig = (config) => {
|
|
|
69
72
|
};
|
|
70
73
|
|
|
71
74
|
const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
72
|
-
const extensionConfiguration = Object.assign(
|
|
75
|
+
const extensionConfiguration = Object.assign(getAwsRegionExtensionConfiguration(runtimeConfig), getDefaultExtensionConfiguration(runtimeConfig), getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
|
|
73
76
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
74
|
-
return Object.assign(runtimeConfig,
|
|
77
|
+
return Object.assign(runtimeConfig, resolveAwsRegionExtensionConfiguration(extensionConfiguration), resolveDefaultRuntimeConfig(extensionConfiguration), resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));
|
|
75
78
|
};
|
|
76
79
|
|
|
77
|
-
class LambdaClient extends
|
|
80
|
+
class LambdaClient extends Client {
|
|
78
81
|
config;
|
|
79
82
|
constructor(...[configuration]) {
|
|
80
|
-
const _config_0 =
|
|
83
|
+
const _config_0 = getRuntimeConfig(configuration || {});
|
|
81
84
|
super(_config_0);
|
|
82
85
|
this.initConfig = _config_0;
|
|
83
86
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
84
|
-
const _config_2 =
|
|
85
|
-
const _config_3 =
|
|
86
|
-
const _config_4 =
|
|
87
|
-
const _config_5 =
|
|
88
|
-
const _config_6 =
|
|
89
|
-
const _config_7 =
|
|
90
|
-
const _config_8 =
|
|
87
|
+
const _config_2 = resolveUserAgentConfig(_config_1);
|
|
88
|
+
const _config_3 = resolveRetryConfig(_config_2);
|
|
89
|
+
const _config_4 = resolveRegionConfig(_config_3);
|
|
90
|
+
const _config_5 = resolveHostHeaderConfig(_config_4);
|
|
91
|
+
const _config_6 = resolveEndpointConfig(_config_5);
|
|
92
|
+
const _config_7 = resolveEventStreamSerdeConfig(_config_6);
|
|
93
|
+
const _config_8 = resolveHttpAuthSchemeConfig(_config_7);
|
|
91
94
|
const _config_9 = resolveRuntimeExtensions(_config_8, configuration?.extensions || []);
|
|
92
95
|
this.config = _config_9;
|
|
93
|
-
this.middlewareStack.use(
|
|
94
|
-
this.middlewareStack.use(
|
|
95
|
-
this.middlewareStack.use(
|
|
96
|
-
this.middlewareStack.use(
|
|
97
|
-
this.middlewareStack.use(
|
|
98
|
-
this.middlewareStack.use(
|
|
99
|
-
this.middlewareStack.use(
|
|
100
|
-
this.middlewareStack.use(
|
|
101
|
-
httpAuthSchemeParametersProvider:
|
|
102
|
-
identityProviderConfigProvider: async (config) => new
|
|
96
|
+
this.middlewareStack.use(getSchemaSerdePlugin(this.config));
|
|
97
|
+
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
98
|
+
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
99
|
+
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
100
|
+
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
101
|
+
this.middlewareStack.use(getLoggerPlugin(this.config));
|
|
102
|
+
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
|
|
103
|
+
this.middlewareStack.use(getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
|
|
104
|
+
httpAuthSchemeParametersProvider: defaultLambdaHttpAuthSchemeParametersProvider,
|
|
105
|
+
identityProviderConfigProvider: async (config) => new DefaultIdentityProviderConfig({
|
|
103
106
|
"aws.auth#sigv4": config.credentials,
|
|
104
107
|
}),
|
|
105
108
|
}));
|
|
106
|
-
this.middlewareStack.use(
|
|
109
|
+
this.middlewareStack.use(getHttpSigningPlugin(this.config));
|
|
107
110
|
}
|
|
108
111
|
destroy() {
|
|
109
112
|
super.destroy();
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class AddLayerVersionPermissionCommand extends
|
|
116
|
+
class AddLayerVersionPermissionCommand extends Command
|
|
114
117
|
.classBuilder()
|
|
115
118
|
.ep(commonParams)
|
|
116
119
|
.m(function (Command, cs, config, o) {
|
|
117
|
-
return [
|
|
120
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
118
121
|
})
|
|
119
122
|
.s("AWSGirApiService", "AddLayerVersionPermission", {})
|
|
120
123
|
.n("LambdaClient", "AddLayerVersionPermissionCommand")
|
|
121
|
-
.sc(
|
|
124
|
+
.sc(AddLayerVersionPermission$)
|
|
122
125
|
.build() {
|
|
123
126
|
}
|
|
124
127
|
|
|
125
|
-
class AddPermissionCommand extends
|
|
128
|
+
class AddPermissionCommand extends Command
|
|
126
129
|
.classBuilder()
|
|
127
130
|
.ep(commonParams)
|
|
128
131
|
.m(function (Command, cs, config, o) {
|
|
129
|
-
return [
|
|
132
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
130
133
|
})
|
|
131
134
|
.s("AWSGirApiService", "AddPermission", {})
|
|
132
135
|
.n("LambdaClient", "AddPermissionCommand")
|
|
133
|
-
.sc(
|
|
136
|
+
.sc(AddPermission$)
|
|
134
137
|
.build() {
|
|
135
138
|
}
|
|
136
139
|
|
|
137
|
-
class CheckpointDurableExecutionCommand extends
|
|
140
|
+
class CheckpointDurableExecutionCommand extends Command
|
|
138
141
|
.classBuilder()
|
|
139
142
|
.ep(commonParams)
|
|
140
143
|
.m(function (Command, cs, config, o) {
|
|
141
|
-
return [
|
|
144
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
142
145
|
})
|
|
143
146
|
.s("AWSGirApiService", "CheckpointDurableExecution", {})
|
|
144
147
|
.n("LambdaClient", "CheckpointDurableExecutionCommand")
|
|
145
|
-
.sc(
|
|
148
|
+
.sc(CheckpointDurableExecution$)
|
|
146
149
|
.build() {
|
|
147
150
|
}
|
|
148
151
|
|
|
149
|
-
class CreateAliasCommand extends
|
|
152
|
+
class CreateAliasCommand extends Command
|
|
150
153
|
.classBuilder()
|
|
151
154
|
.ep(commonParams)
|
|
152
155
|
.m(function (Command, cs, config, o) {
|
|
153
|
-
return [
|
|
156
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
154
157
|
})
|
|
155
158
|
.s("AWSGirApiService", "CreateAlias", {})
|
|
156
159
|
.n("LambdaClient", "CreateAliasCommand")
|
|
157
|
-
.sc(
|
|
160
|
+
.sc(CreateAlias$)
|
|
158
161
|
.build() {
|
|
159
162
|
}
|
|
160
163
|
|
|
161
|
-
class CreateCapacityProviderCommand extends
|
|
164
|
+
class CreateCapacityProviderCommand extends Command
|
|
162
165
|
.classBuilder()
|
|
163
166
|
.ep(commonParams)
|
|
164
167
|
.m(function (Command, cs, config, o) {
|
|
165
|
-
return [
|
|
168
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
166
169
|
})
|
|
167
170
|
.s("AWSGirApiService", "CreateCapacityProvider", {})
|
|
168
171
|
.n("LambdaClient", "CreateCapacityProviderCommand")
|
|
169
|
-
.sc(
|
|
172
|
+
.sc(CreateCapacityProvider$)
|
|
170
173
|
.build() {
|
|
171
174
|
}
|
|
172
175
|
|
|
173
|
-
class CreateCodeSigningConfigCommand extends
|
|
176
|
+
class CreateCodeSigningConfigCommand extends Command
|
|
174
177
|
.classBuilder()
|
|
175
178
|
.ep(commonParams)
|
|
176
179
|
.m(function (Command, cs, config, o) {
|
|
177
|
-
return [
|
|
180
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
178
181
|
})
|
|
179
182
|
.s("AWSGirApiService", "CreateCodeSigningConfig", {})
|
|
180
183
|
.n("LambdaClient", "CreateCodeSigningConfigCommand")
|
|
181
|
-
.sc(
|
|
184
|
+
.sc(CreateCodeSigningConfig$)
|
|
182
185
|
.build() {
|
|
183
186
|
}
|
|
184
187
|
|
|
185
|
-
class CreateEventSourceMappingCommand extends
|
|
188
|
+
class CreateEventSourceMappingCommand extends Command
|
|
186
189
|
.classBuilder()
|
|
187
190
|
.ep(commonParams)
|
|
188
191
|
.m(function (Command, cs, config, o) {
|
|
189
|
-
return [
|
|
192
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
190
193
|
})
|
|
191
194
|
.s("AWSGirApiService", "CreateEventSourceMapping", {})
|
|
192
195
|
.n("LambdaClient", "CreateEventSourceMappingCommand")
|
|
193
|
-
.sc(
|
|
196
|
+
.sc(CreateEventSourceMapping$)
|
|
194
197
|
.build() {
|
|
195
198
|
}
|
|
196
199
|
|
|
197
|
-
class CreateFunctionCommand extends
|
|
200
|
+
class CreateFunctionCommand extends Command
|
|
198
201
|
.classBuilder()
|
|
199
202
|
.ep(commonParams)
|
|
200
203
|
.m(function (Command, cs, config, o) {
|
|
201
|
-
return [
|
|
204
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
202
205
|
})
|
|
203
206
|
.s("AWSGirApiService", "CreateFunction", {})
|
|
204
207
|
.n("LambdaClient", "CreateFunctionCommand")
|
|
205
|
-
.sc(
|
|
208
|
+
.sc(CreateFunction$)
|
|
206
209
|
.build() {
|
|
207
210
|
}
|
|
208
211
|
|
|
209
|
-
class CreateFunctionUrlConfigCommand extends
|
|
212
|
+
class CreateFunctionUrlConfigCommand extends Command
|
|
210
213
|
.classBuilder()
|
|
211
214
|
.ep(commonParams)
|
|
212
215
|
.m(function (Command, cs, config, o) {
|
|
213
|
-
return [
|
|
216
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
214
217
|
})
|
|
215
218
|
.s("AWSGirApiService", "CreateFunctionUrlConfig", {})
|
|
216
219
|
.n("LambdaClient", "CreateFunctionUrlConfigCommand")
|
|
217
|
-
.sc(
|
|
220
|
+
.sc(CreateFunctionUrlConfig$)
|
|
218
221
|
.build() {
|
|
219
222
|
}
|
|
220
223
|
|
|
221
|
-
class DeleteAliasCommand extends
|
|
224
|
+
class DeleteAliasCommand extends Command
|
|
222
225
|
.classBuilder()
|
|
223
226
|
.ep(commonParams)
|
|
224
227
|
.m(function (Command, cs, config, o) {
|
|
225
|
-
return [
|
|
228
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
226
229
|
})
|
|
227
230
|
.s("AWSGirApiService", "DeleteAlias", {})
|
|
228
231
|
.n("LambdaClient", "DeleteAliasCommand")
|
|
229
|
-
.sc(
|
|
232
|
+
.sc(DeleteAlias$)
|
|
230
233
|
.build() {
|
|
231
234
|
}
|
|
232
235
|
|
|
233
|
-
class DeleteCapacityProviderCommand extends
|
|
236
|
+
class DeleteCapacityProviderCommand extends Command
|
|
234
237
|
.classBuilder()
|
|
235
238
|
.ep(commonParams)
|
|
236
239
|
.m(function (Command, cs, config, o) {
|
|
237
|
-
return [
|
|
240
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
238
241
|
})
|
|
239
242
|
.s("AWSGirApiService", "DeleteCapacityProvider", {})
|
|
240
243
|
.n("LambdaClient", "DeleteCapacityProviderCommand")
|
|
241
|
-
.sc(
|
|
244
|
+
.sc(DeleteCapacityProvider$)
|
|
242
245
|
.build() {
|
|
243
246
|
}
|
|
244
247
|
|
|
245
|
-
class DeleteCodeSigningConfigCommand extends
|
|
248
|
+
class DeleteCodeSigningConfigCommand extends Command
|
|
246
249
|
.classBuilder()
|
|
247
250
|
.ep(commonParams)
|
|
248
251
|
.m(function (Command, cs, config, o) {
|
|
249
|
-
return [
|
|
252
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
250
253
|
})
|
|
251
254
|
.s("AWSGirApiService", "DeleteCodeSigningConfig", {})
|
|
252
255
|
.n("LambdaClient", "DeleteCodeSigningConfigCommand")
|
|
253
|
-
.sc(
|
|
256
|
+
.sc(DeleteCodeSigningConfig$)
|
|
254
257
|
.build() {
|
|
255
258
|
}
|
|
256
259
|
|
|
257
|
-
class DeleteEventSourceMappingCommand extends
|
|
260
|
+
class DeleteEventSourceMappingCommand extends Command
|
|
258
261
|
.classBuilder()
|
|
259
262
|
.ep(commonParams)
|
|
260
263
|
.m(function (Command, cs, config, o) {
|
|
261
|
-
return [
|
|
264
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
262
265
|
})
|
|
263
266
|
.s("AWSGirApiService", "DeleteEventSourceMapping", {})
|
|
264
267
|
.n("LambdaClient", "DeleteEventSourceMappingCommand")
|
|
265
|
-
.sc(
|
|
268
|
+
.sc(DeleteEventSourceMapping$)
|
|
266
269
|
.build() {
|
|
267
270
|
}
|
|
268
271
|
|
|
269
|
-
class DeleteFunctionCodeSigningConfigCommand extends
|
|
272
|
+
class DeleteFunctionCodeSigningConfigCommand extends Command
|
|
270
273
|
.classBuilder()
|
|
271
274
|
.ep(commonParams)
|
|
272
275
|
.m(function (Command, cs, config, o) {
|
|
273
|
-
return [
|
|
276
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
274
277
|
})
|
|
275
278
|
.s("AWSGirApiService", "DeleteFunctionCodeSigningConfig", {})
|
|
276
279
|
.n("LambdaClient", "DeleteFunctionCodeSigningConfigCommand")
|
|
277
|
-
.sc(
|
|
280
|
+
.sc(DeleteFunctionCodeSigningConfig$)
|
|
278
281
|
.build() {
|
|
279
282
|
}
|
|
280
283
|
|
|
281
|
-
class DeleteFunctionCommand extends
|
|
284
|
+
class DeleteFunctionCommand extends Command
|
|
282
285
|
.classBuilder()
|
|
283
286
|
.ep(commonParams)
|
|
284
287
|
.m(function (Command, cs, config, o) {
|
|
285
|
-
return [
|
|
288
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
286
289
|
})
|
|
287
290
|
.s("AWSGirApiService", "DeleteFunction", {})
|
|
288
291
|
.n("LambdaClient", "DeleteFunctionCommand")
|
|
289
|
-
.sc(
|
|
292
|
+
.sc(DeleteFunction$)
|
|
290
293
|
.build() {
|
|
291
294
|
}
|
|
292
295
|
|
|
293
|
-
class DeleteFunctionConcurrencyCommand extends
|
|
296
|
+
class DeleteFunctionConcurrencyCommand extends Command
|
|
294
297
|
.classBuilder()
|
|
295
298
|
.ep(commonParams)
|
|
296
299
|
.m(function (Command, cs, config, o) {
|
|
297
|
-
return [
|
|
300
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
298
301
|
})
|
|
299
302
|
.s("AWSGirApiService", "DeleteFunctionConcurrency", {})
|
|
300
303
|
.n("LambdaClient", "DeleteFunctionConcurrencyCommand")
|
|
301
|
-
.sc(
|
|
304
|
+
.sc(DeleteFunctionConcurrency$)
|
|
302
305
|
.build() {
|
|
303
306
|
}
|
|
304
307
|
|
|
305
|
-
class DeleteFunctionEventInvokeConfigCommand extends
|
|
308
|
+
class DeleteFunctionEventInvokeConfigCommand extends Command
|
|
306
309
|
.classBuilder()
|
|
307
310
|
.ep(commonParams)
|
|
308
311
|
.m(function (Command, cs, config, o) {
|
|
309
|
-
return [
|
|
312
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
310
313
|
})
|
|
311
314
|
.s("AWSGirApiService", "DeleteFunctionEventInvokeConfig", {})
|
|
312
315
|
.n("LambdaClient", "DeleteFunctionEventInvokeConfigCommand")
|
|
313
|
-
.sc(
|
|
316
|
+
.sc(DeleteFunctionEventInvokeConfig$)
|
|
314
317
|
.build() {
|
|
315
318
|
}
|
|
316
319
|
|
|
317
|
-
class DeleteFunctionUrlConfigCommand extends
|
|
320
|
+
class DeleteFunctionUrlConfigCommand extends Command
|
|
318
321
|
.classBuilder()
|
|
319
322
|
.ep(commonParams)
|
|
320
323
|
.m(function (Command, cs, config, o) {
|
|
321
|
-
return [
|
|
324
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
322
325
|
})
|
|
323
326
|
.s("AWSGirApiService", "DeleteFunctionUrlConfig", {})
|
|
324
327
|
.n("LambdaClient", "DeleteFunctionUrlConfigCommand")
|
|
325
|
-
.sc(
|
|
328
|
+
.sc(DeleteFunctionUrlConfig$)
|
|
326
329
|
.build() {
|
|
327
330
|
}
|
|
328
331
|
|
|
329
|
-
class DeleteLayerVersionCommand extends
|
|
332
|
+
class DeleteLayerVersionCommand extends Command
|
|
330
333
|
.classBuilder()
|
|
331
334
|
.ep(commonParams)
|
|
332
335
|
.m(function (Command, cs, config, o) {
|
|
333
|
-
return [
|
|
336
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
334
337
|
})
|
|
335
338
|
.s("AWSGirApiService", "DeleteLayerVersion", {})
|
|
336
339
|
.n("LambdaClient", "DeleteLayerVersionCommand")
|
|
337
|
-
.sc(
|
|
340
|
+
.sc(DeleteLayerVersion$)
|
|
338
341
|
.build() {
|
|
339
342
|
}
|
|
340
343
|
|
|
341
|
-
class DeleteProvisionedConcurrencyConfigCommand extends
|
|
344
|
+
class DeleteProvisionedConcurrencyConfigCommand extends Command
|
|
342
345
|
.classBuilder()
|
|
343
346
|
.ep(commonParams)
|
|
344
347
|
.m(function (Command, cs, config, o) {
|
|
345
|
-
return [
|
|
348
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
346
349
|
})
|
|
347
350
|
.s("AWSGirApiService", "DeleteProvisionedConcurrencyConfig", {})
|
|
348
351
|
.n("LambdaClient", "DeleteProvisionedConcurrencyConfigCommand")
|
|
349
|
-
.sc(
|
|
352
|
+
.sc(DeleteProvisionedConcurrencyConfig$)
|
|
350
353
|
.build() {
|
|
351
354
|
}
|
|
352
355
|
|
|
353
|
-
class GetAccountSettingsCommand extends
|
|
356
|
+
class GetAccountSettingsCommand extends Command
|
|
354
357
|
.classBuilder()
|
|
355
358
|
.ep(commonParams)
|
|
356
359
|
.m(function (Command, cs, config, o) {
|
|
357
|
-
return [
|
|
360
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
358
361
|
})
|
|
359
362
|
.s("AWSGirApiService", "GetAccountSettings", {})
|
|
360
363
|
.n("LambdaClient", "GetAccountSettingsCommand")
|
|
361
|
-
.sc(
|
|
364
|
+
.sc(GetAccountSettings$)
|
|
362
365
|
.build() {
|
|
363
366
|
}
|
|
364
367
|
|
|
365
|
-
class GetAliasCommand extends
|
|
368
|
+
class GetAliasCommand extends Command
|
|
366
369
|
.classBuilder()
|
|
367
370
|
.ep(commonParams)
|
|
368
371
|
.m(function (Command, cs, config, o) {
|
|
369
|
-
return [
|
|
372
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
370
373
|
})
|
|
371
374
|
.s("AWSGirApiService", "GetAlias", {})
|
|
372
375
|
.n("LambdaClient", "GetAliasCommand")
|
|
373
|
-
.sc(
|
|
376
|
+
.sc(GetAlias$)
|
|
374
377
|
.build() {
|
|
375
378
|
}
|
|
376
379
|
|
|
377
|
-
class GetCapacityProviderCommand extends
|
|
380
|
+
class GetCapacityProviderCommand extends Command
|
|
378
381
|
.classBuilder()
|
|
379
382
|
.ep(commonParams)
|
|
380
383
|
.m(function (Command, cs, config, o) {
|
|
381
|
-
return [
|
|
384
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
382
385
|
})
|
|
383
386
|
.s("AWSGirApiService", "GetCapacityProvider", {})
|
|
384
387
|
.n("LambdaClient", "GetCapacityProviderCommand")
|
|
385
|
-
.sc(
|
|
388
|
+
.sc(GetCapacityProvider$)
|
|
386
389
|
.build() {
|
|
387
390
|
}
|
|
388
391
|
|
|
389
|
-
class GetCodeSigningConfigCommand extends
|
|
392
|
+
class GetCodeSigningConfigCommand extends Command
|
|
390
393
|
.classBuilder()
|
|
391
394
|
.ep(commonParams)
|
|
392
395
|
.m(function (Command, cs, config, o) {
|
|
393
|
-
return [
|
|
396
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
394
397
|
})
|
|
395
398
|
.s("AWSGirApiService", "GetCodeSigningConfig", {})
|
|
396
399
|
.n("LambdaClient", "GetCodeSigningConfigCommand")
|
|
397
|
-
.sc(
|
|
400
|
+
.sc(GetCodeSigningConfig$)
|
|
398
401
|
.build() {
|
|
399
402
|
}
|
|
400
403
|
|
|
401
|
-
class GetDurableExecutionCommand extends
|
|
404
|
+
class GetDurableExecutionCommand extends Command
|
|
402
405
|
.classBuilder()
|
|
403
406
|
.ep(commonParams)
|
|
404
407
|
.m(function (Command, cs, config, o) {
|
|
405
|
-
return [
|
|
408
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
406
409
|
})
|
|
407
410
|
.s("AWSGirApiService", "GetDurableExecution", {})
|
|
408
411
|
.n("LambdaClient", "GetDurableExecutionCommand")
|
|
409
|
-
.sc(
|
|
412
|
+
.sc(GetDurableExecution$)
|
|
410
413
|
.build() {
|
|
411
414
|
}
|
|
412
415
|
|
|
413
|
-
class GetDurableExecutionHistoryCommand extends
|
|
416
|
+
class GetDurableExecutionHistoryCommand extends Command
|
|
414
417
|
.classBuilder()
|
|
415
418
|
.ep(commonParams)
|
|
416
419
|
.m(function (Command, cs, config, o) {
|
|
417
|
-
return [
|
|
420
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
418
421
|
})
|
|
419
422
|
.s("AWSGirApiService", "GetDurableExecutionHistory", {})
|
|
420
423
|
.n("LambdaClient", "GetDurableExecutionHistoryCommand")
|
|
421
|
-
.sc(
|
|
424
|
+
.sc(GetDurableExecutionHistory$)
|
|
422
425
|
.build() {
|
|
423
426
|
}
|
|
424
427
|
|
|
425
|
-
class GetDurableExecutionStateCommand extends
|
|
428
|
+
class GetDurableExecutionStateCommand extends Command
|
|
426
429
|
.classBuilder()
|
|
427
430
|
.ep(commonParams)
|
|
428
431
|
.m(function (Command, cs, config, o) {
|
|
429
|
-
return [
|
|
432
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
430
433
|
})
|
|
431
434
|
.s("AWSGirApiService", "GetDurableExecutionState", {})
|
|
432
435
|
.n("LambdaClient", "GetDurableExecutionStateCommand")
|
|
433
|
-
.sc(
|
|
436
|
+
.sc(GetDurableExecutionState$)
|
|
434
437
|
.build() {
|
|
435
438
|
}
|
|
436
439
|
|
|
437
|
-
class GetEventSourceMappingCommand extends
|
|
440
|
+
class GetEventSourceMappingCommand extends Command
|
|
438
441
|
.classBuilder()
|
|
439
442
|
.ep(commonParams)
|
|
440
443
|
.m(function (Command, cs, config, o) {
|
|
441
|
-
return [
|
|
444
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
442
445
|
})
|
|
443
446
|
.s("AWSGirApiService", "GetEventSourceMapping", {})
|
|
444
447
|
.n("LambdaClient", "GetEventSourceMappingCommand")
|
|
445
|
-
.sc(
|
|
448
|
+
.sc(GetEventSourceMapping$)
|
|
446
449
|
.build() {
|
|
447
450
|
}
|
|
448
451
|
|
|
449
|
-
class GetFunctionCodeSigningConfigCommand extends
|
|
452
|
+
class GetFunctionCodeSigningConfigCommand extends Command
|
|
450
453
|
.classBuilder()
|
|
451
454
|
.ep(commonParams)
|
|
452
455
|
.m(function (Command, cs, config, o) {
|
|
453
|
-
return [
|
|
456
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
454
457
|
})
|
|
455
458
|
.s("AWSGirApiService", "GetFunctionCodeSigningConfig", {})
|
|
456
459
|
.n("LambdaClient", "GetFunctionCodeSigningConfigCommand")
|
|
457
|
-
.sc(
|
|
460
|
+
.sc(GetFunctionCodeSigningConfig$)
|
|
458
461
|
.build() {
|
|
459
462
|
}
|
|
460
463
|
|
|
461
|
-
class GetFunctionCommand extends
|
|
464
|
+
class GetFunctionCommand extends Command
|
|
462
465
|
.classBuilder()
|
|
463
466
|
.ep(commonParams)
|
|
464
467
|
.m(function (Command, cs, config, o) {
|
|
465
|
-
return [
|
|
468
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
466
469
|
})
|
|
467
470
|
.s("AWSGirApiService", "GetFunction", {})
|
|
468
471
|
.n("LambdaClient", "GetFunctionCommand")
|
|
469
|
-
.sc(
|
|
472
|
+
.sc(GetFunction$)
|
|
470
473
|
.build() {
|
|
471
474
|
}
|
|
472
475
|
|
|
473
|
-
class GetFunctionConcurrencyCommand extends
|
|
476
|
+
class GetFunctionConcurrencyCommand extends Command
|
|
474
477
|
.classBuilder()
|
|
475
478
|
.ep(commonParams)
|
|
476
479
|
.m(function (Command, cs, config, o) {
|
|
477
|
-
return [
|
|
480
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
478
481
|
})
|
|
479
482
|
.s("AWSGirApiService", "GetFunctionConcurrency", {})
|
|
480
483
|
.n("LambdaClient", "GetFunctionConcurrencyCommand")
|
|
481
|
-
.sc(
|
|
484
|
+
.sc(GetFunctionConcurrency$)
|
|
482
485
|
.build() {
|
|
483
486
|
}
|
|
484
487
|
|
|
485
|
-
class GetFunctionConfigurationCommand extends
|
|
488
|
+
class GetFunctionConfigurationCommand extends Command
|
|
486
489
|
.classBuilder()
|
|
487
490
|
.ep(commonParams)
|
|
488
491
|
.m(function (Command, cs, config, o) {
|
|
489
|
-
return [
|
|
492
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
490
493
|
})
|
|
491
494
|
.s("AWSGirApiService", "GetFunctionConfiguration", {})
|
|
492
495
|
.n("LambdaClient", "GetFunctionConfigurationCommand")
|
|
493
|
-
.sc(
|
|
496
|
+
.sc(GetFunctionConfiguration$)
|
|
494
497
|
.build() {
|
|
495
498
|
}
|
|
496
499
|
|
|
497
|
-
class GetFunctionEventInvokeConfigCommand extends
|
|
500
|
+
class GetFunctionEventInvokeConfigCommand extends Command
|
|
498
501
|
.classBuilder()
|
|
499
502
|
.ep(commonParams)
|
|
500
503
|
.m(function (Command, cs, config, o) {
|
|
501
|
-
return [
|
|
504
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
502
505
|
})
|
|
503
506
|
.s("AWSGirApiService", "GetFunctionEventInvokeConfig", {})
|
|
504
507
|
.n("LambdaClient", "GetFunctionEventInvokeConfigCommand")
|
|
505
|
-
.sc(
|
|
508
|
+
.sc(GetFunctionEventInvokeConfig$)
|
|
506
509
|
.build() {
|
|
507
510
|
}
|
|
508
511
|
|
|
509
|
-
class GetFunctionRecursionConfigCommand extends
|
|
512
|
+
class GetFunctionRecursionConfigCommand extends Command
|
|
510
513
|
.classBuilder()
|
|
511
514
|
.ep(commonParams)
|
|
512
515
|
.m(function (Command, cs, config, o) {
|
|
513
|
-
return [
|
|
516
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
514
517
|
})
|
|
515
518
|
.s("AWSGirApiService", "GetFunctionRecursionConfig", {})
|
|
516
519
|
.n("LambdaClient", "GetFunctionRecursionConfigCommand")
|
|
517
|
-
.sc(
|
|
520
|
+
.sc(GetFunctionRecursionConfig$)
|
|
518
521
|
.build() {
|
|
519
522
|
}
|
|
520
523
|
|
|
521
|
-
class GetFunctionScalingConfigCommand extends
|
|
524
|
+
class GetFunctionScalingConfigCommand extends Command
|
|
522
525
|
.classBuilder()
|
|
523
526
|
.ep(commonParams)
|
|
524
527
|
.m(function (Command, cs, config, o) {
|
|
525
|
-
return [
|
|
528
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
526
529
|
})
|
|
527
530
|
.s("AWSGirApiService", "GetFunctionScalingConfig", {})
|
|
528
531
|
.n("LambdaClient", "GetFunctionScalingConfigCommand")
|
|
529
|
-
.sc(
|
|
532
|
+
.sc(GetFunctionScalingConfig$)
|
|
530
533
|
.build() {
|
|
531
534
|
}
|
|
532
535
|
|
|
533
|
-
class GetFunctionUrlConfigCommand extends
|
|
536
|
+
class GetFunctionUrlConfigCommand extends Command
|
|
534
537
|
.classBuilder()
|
|
535
538
|
.ep(commonParams)
|
|
536
539
|
.m(function (Command, cs, config, o) {
|
|
537
|
-
return [
|
|
540
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
538
541
|
})
|
|
539
542
|
.s("AWSGirApiService", "GetFunctionUrlConfig", {})
|
|
540
543
|
.n("LambdaClient", "GetFunctionUrlConfigCommand")
|
|
541
|
-
.sc(
|
|
544
|
+
.sc(GetFunctionUrlConfig$)
|
|
542
545
|
.build() {
|
|
543
546
|
}
|
|
544
547
|
|
|
545
|
-
class GetLayerVersionByArnCommand extends
|
|
548
|
+
class GetLayerVersionByArnCommand extends Command
|
|
546
549
|
.classBuilder()
|
|
547
550
|
.ep(commonParams)
|
|
548
551
|
.m(function (Command, cs, config, o) {
|
|
549
|
-
return [
|
|
552
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
550
553
|
})
|
|
551
554
|
.s("AWSGirApiService", "GetLayerVersionByArn", {})
|
|
552
555
|
.n("LambdaClient", "GetLayerVersionByArnCommand")
|
|
553
|
-
.sc(
|
|
556
|
+
.sc(GetLayerVersionByArn$)
|
|
554
557
|
.build() {
|
|
555
558
|
}
|
|
556
559
|
|
|
557
|
-
class GetLayerVersionCommand extends
|
|
560
|
+
class GetLayerVersionCommand extends Command
|
|
558
561
|
.classBuilder()
|
|
559
562
|
.ep(commonParams)
|
|
560
563
|
.m(function (Command, cs, config, o) {
|
|
561
|
-
return [
|
|
564
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
562
565
|
})
|
|
563
566
|
.s("AWSGirApiService", "GetLayerVersion", {})
|
|
564
567
|
.n("LambdaClient", "GetLayerVersionCommand")
|
|
565
|
-
.sc(
|
|
568
|
+
.sc(GetLayerVersion$)
|
|
566
569
|
.build() {
|
|
567
570
|
}
|
|
568
571
|
|
|
569
|
-
class GetLayerVersionPolicyCommand extends
|
|
572
|
+
class GetLayerVersionPolicyCommand extends Command
|
|
570
573
|
.classBuilder()
|
|
571
574
|
.ep(commonParams)
|
|
572
575
|
.m(function (Command, cs, config, o) {
|
|
573
|
-
return [
|
|
576
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
574
577
|
})
|
|
575
578
|
.s("AWSGirApiService", "GetLayerVersionPolicy", {})
|
|
576
579
|
.n("LambdaClient", "GetLayerVersionPolicyCommand")
|
|
577
|
-
.sc(
|
|
580
|
+
.sc(GetLayerVersionPolicy$)
|
|
578
581
|
.build() {
|
|
579
582
|
}
|
|
580
583
|
|
|
581
|
-
class GetPolicyCommand extends
|
|
584
|
+
class GetPolicyCommand extends Command
|
|
582
585
|
.classBuilder()
|
|
583
586
|
.ep(commonParams)
|
|
584
587
|
.m(function (Command, cs, config, o) {
|
|
585
|
-
return [
|
|
588
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
586
589
|
})
|
|
587
590
|
.s("AWSGirApiService", "GetPolicy", {})
|
|
588
591
|
.n("LambdaClient", "GetPolicyCommand")
|
|
589
|
-
.sc(
|
|
592
|
+
.sc(GetPolicy$)
|
|
590
593
|
.build() {
|
|
591
594
|
}
|
|
592
595
|
|
|
593
|
-
class GetProvisionedConcurrencyConfigCommand extends
|
|
596
|
+
class GetProvisionedConcurrencyConfigCommand extends Command
|
|
594
597
|
.classBuilder()
|
|
595
598
|
.ep(commonParams)
|
|
596
599
|
.m(function (Command, cs, config, o) {
|
|
597
|
-
return [
|
|
600
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
598
601
|
})
|
|
599
602
|
.s("AWSGirApiService", "GetProvisionedConcurrencyConfig", {})
|
|
600
603
|
.n("LambdaClient", "GetProvisionedConcurrencyConfigCommand")
|
|
601
|
-
.sc(
|
|
604
|
+
.sc(GetProvisionedConcurrencyConfig$)
|
|
602
605
|
.build() {
|
|
603
606
|
}
|
|
604
607
|
|
|
605
|
-
class GetRuntimeManagementConfigCommand extends
|
|
608
|
+
class GetRuntimeManagementConfigCommand extends Command
|
|
606
609
|
.classBuilder()
|
|
607
610
|
.ep(commonParams)
|
|
608
611
|
.m(function (Command, cs, config, o) {
|
|
609
|
-
return [
|
|
612
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
610
613
|
})
|
|
611
614
|
.s("AWSGirApiService", "GetRuntimeManagementConfig", {})
|
|
612
615
|
.n("LambdaClient", "GetRuntimeManagementConfigCommand")
|
|
613
|
-
.sc(
|
|
616
|
+
.sc(GetRuntimeManagementConfig$)
|
|
614
617
|
.build() {
|
|
615
618
|
}
|
|
616
619
|
|
|
617
|
-
class InvokeAsyncCommand extends
|
|
620
|
+
class InvokeAsyncCommand extends Command
|
|
618
621
|
.classBuilder()
|
|
619
622
|
.ep(commonParams)
|
|
620
623
|
.m(function (Command, cs, config, o) {
|
|
621
|
-
return [
|
|
624
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
622
625
|
})
|
|
623
626
|
.s("AWSGirApiService", "InvokeAsync", {})
|
|
624
627
|
.n("LambdaClient", "InvokeAsyncCommand")
|
|
625
|
-
.sc(
|
|
628
|
+
.sc(InvokeAsync$)
|
|
626
629
|
.build() {
|
|
627
630
|
}
|
|
628
631
|
|
|
629
|
-
class InvokeCommand extends
|
|
632
|
+
class InvokeCommand extends Command
|
|
630
633
|
.classBuilder()
|
|
631
634
|
.ep(commonParams)
|
|
632
635
|
.m(function (Command, cs, config, o) {
|
|
633
|
-
return [
|
|
636
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
634
637
|
})
|
|
635
638
|
.s("AWSGirApiService", "Invoke", {})
|
|
636
639
|
.n("LambdaClient", "InvokeCommand")
|
|
637
|
-
.sc(
|
|
640
|
+
.sc(Invoke$)
|
|
638
641
|
.build() {
|
|
639
642
|
}
|
|
640
643
|
|
|
641
|
-
class InvokeWithResponseStreamCommand extends
|
|
644
|
+
class InvokeWithResponseStreamCommand extends Command
|
|
642
645
|
.classBuilder()
|
|
643
646
|
.ep(commonParams)
|
|
644
647
|
.m(function (Command, cs, config, o) {
|
|
645
|
-
return [
|
|
648
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
646
649
|
})
|
|
647
650
|
.s("AWSGirApiService", "InvokeWithResponseStream", {
|
|
648
651
|
eventStream: {
|
|
@@ -650,533 +653,533 @@ class InvokeWithResponseStreamCommand extends client.Command
|
|
|
650
653
|
},
|
|
651
654
|
})
|
|
652
655
|
.n("LambdaClient", "InvokeWithResponseStreamCommand")
|
|
653
|
-
.sc(
|
|
656
|
+
.sc(InvokeWithResponseStream$)
|
|
654
657
|
.build() {
|
|
655
658
|
}
|
|
656
659
|
|
|
657
|
-
class ListAliasesCommand extends
|
|
660
|
+
class ListAliasesCommand extends Command
|
|
658
661
|
.classBuilder()
|
|
659
662
|
.ep(commonParams)
|
|
660
663
|
.m(function (Command, cs, config, o) {
|
|
661
|
-
return [
|
|
664
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
662
665
|
})
|
|
663
666
|
.s("AWSGirApiService", "ListAliases", {})
|
|
664
667
|
.n("LambdaClient", "ListAliasesCommand")
|
|
665
|
-
.sc(
|
|
668
|
+
.sc(ListAliases$)
|
|
666
669
|
.build() {
|
|
667
670
|
}
|
|
668
671
|
|
|
669
|
-
class ListCapacityProvidersCommand extends
|
|
672
|
+
class ListCapacityProvidersCommand extends Command
|
|
670
673
|
.classBuilder()
|
|
671
674
|
.ep(commonParams)
|
|
672
675
|
.m(function (Command, cs, config, o) {
|
|
673
|
-
return [
|
|
676
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
674
677
|
})
|
|
675
678
|
.s("AWSGirApiService", "ListCapacityProviders", {})
|
|
676
679
|
.n("LambdaClient", "ListCapacityProvidersCommand")
|
|
677
|
-
.sc(
|
|
680
|
+
.sc(ListCapacityProviders$)
|
|
678
681
|
.build() {
|
|
679
682
|
}
|
|
680
683
|
|
|
681
|
-
class ListCodeSigningConfigsCommand extends
|
|
684
|
+
class ListCodeSigningConfigsCommand extends Command
|
|
682
685
|
.classBuilder()
|
|
683
686
|
.ep(commonParams)
|
|
684
687
|
.m(function (Command, cs, config, o) {
|
|
685
|
-
return [
|
|
688
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
686
689
|
})
|
|
687
690
|
.s("AWSGirApiService", "ListCodeSigningConfigs", {})
|
|
688
691
|
.n("LambdaClient", "ListCodeSigningConfigsCommand")
|
|
689
|
-
.sc(
|
|
692
|
+
.sc(ListCodeSigningConfigs$)
|
|
690
693
|
.build() {
|
|
691
694
|
}
|
|
692
695
|
|
|
693
|
-
class ListDurableExecutionsByFunctionCommand extends
|
|
696
|
+
class ListDurableExecutionsByFunctionCommand extends Command
|
|
694
697
|
.classBuilder()
|
|
695
698
|
.ep(commonParams)
|
|
696
699
|
.m(function (Command, cs, config, o) {
|
|
697
|
-
return [
|
|
700
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
698
701
|
})
|
|
699
702
|
.s("AWSGirApiService", "ListDurableExecutionsByFunction", {})
|
|
700
703
|
.n("LambdaClient", "ListDurableExecutionsByFunctionCommand")
|
|
701
|
-
.sc(
|
|
704
|
+
.sc(ListDurableExecutionsByFunction$)
|
|
702
705
|
.build() {
|
|
703
706
|
}
|
|
704
707
|
|
|
705
|
-
class ListEventSourceMappingsCommand extends
|
|
708
|
+
class ListEventSourceMappingsCommand extends Command
|
|
706
709
|
.classBuilder()
|
|
707
710
|
.ep(commonParams)
|
|
708
711
|
.m(function (Command, cs, config, o) {
|
|
709
|
-
return [
|
|
712
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
710
713
|
})
|
|
711
714
|
.s("AWSGirApiService", "ListEventSourceMappings", {})
|
|
712
715
|
.n("LambdaClient", "ListEventSourceMappingsCommand")
|
|
713
|
-
.sc(
|
|
716
|
+
.sc(ListEventSourceMappings$)
|
|
714
717
|
.build() {
|
|
715
718
|
}
|
|
716
719
|
|
|
717
|
-
class ListFunctionEventInvokeConfigsCommand extends
|
|
720
|
+
class ListFunctionEventInvokeConfigsCommand extends Command
|
|
718
721
|
.classBuilder()
|
|
719
722
|
.ep(commonParams)
|
|
720
723
|
.m(function (Command, cs, config, o) {
|
|
721
|
-
return [
|
|
724
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
722
725
|
})
|
|
723
726
|
.s("AWSGirApiService", "ListFunctionEventInvokeConfigs", {})
|
|
724
727
|
.n("LambdaClient", "ListFunctionEventInvokeConfigsCommand")
|
|
725
|
-
.sc(
|
|
728
|
+
.sc(ListFunctionEventInvokeConfigs$)
|
|
726
729
|
.build() {
|
|
727
730
|
}
|
|
728
731
|
|
|
729
|
-
class ListFunctionsByCodeSigningConfigCommand extends
|
|
732
|
+
class ListFunctionsByCodeSigningConfigCommand extends Command
|
|
730
733
|
.classBuilder()
|
|
731
734
|
.ep(commonParams)
|
|
732
735
|
.m(function (Command, cs, config, o) {
|
|
733
|
-
return [
|
|
736
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
734
737
|
})
|
|
735
738
|
.s("AWSGirApiService", "ListFunctionsByCodeSigningConfig", {})
|
|
736
739
|
.n("LambdaClient", "ListFunctionsByCodeSigningConfigCommand")
|
|
737
|
-
.sc(
|
|
740
|
+
.sc(ListFunctionsByCodeSigningConfig$)
|
|
738
741
|
.build() {
|
|
739
742
|
}
|
|
740
743
|
|
|
741
|
-
class ListFunctionsCommand extends
|
|
744
|
+
class ListFunctionsCommand extends Command
|
|
742
745
|
.classBuilder()
|
|
743
746
|
.ep(commonParams)
|
|
744
747
|
.m(function (Command, cs, config, o) {
|
|
745
|
-
return [
|
|
748
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
746
749
|
})
|
|
747
750
|
.s("AWSGirApiService", "ListFunctions", {})
|
|
748
751
|
.n("LambdaClient", "ListFunctionsCommand")
|
|
749
|
-
.sc(
|
|
752
|
+
.sc(ListFunctions$)
|
|
750
753
|
.build() {
|
|
751
754
|
}
|
|
752
755
|
|
|
753
|
-
class ListFunctionUrlConfigsCommand extends
|
|
756
|
+
class ListFunctionUrlConfigsCommand extends Command
|
|
754
757
|
.classBuilder()
|
|
755
758
|
.ep(commonParams)
|
|
756
759
|
.m(function (Command, cs, config, o) {
|
|
757
|
-
return [
|
|
760
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
758
761
|
})
|
|
759
762
|
.s("AWSGirApiService", "ListFunctionUrlConfigs", {})
|
|
760
763
|
.n("LambdaClient", "ListFunctionUrlConfigsCommand")
|
|
761
|
-
.sc(
|
|
764
|
+
.sc(ListFunctionUrlConfigs$)
|
|
762
765
|
.build() {
|
|
763
766
|
}
|
|
764
767
|
|
|
765
|
-
class ListFunctionVersionsByCapacityProviderCommand extends
|
|
768
|
+
class ListFunctionVersionsByCapacityProviderCommand extends Command
|
|
766
769
|
.classBuilder()
|
|
767
770
|
.ep(commonParams)
|
|
768
771
|
.m(function (Command, cs, config, o) {
|
|
769
|
-
return [
|
|
772
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
770
773
|
})
|
|
771
774
|
.s("AWSGirApiService", "ListFunctionVersionsByCapacityProvider", {})
|
|
772
775
|
.n("LambdaClient", "ListFunctionVersionsByCapacityProviderCommand")
|
|
773
|
-
.sc(
|
|
776
|
+
.sc(ListFunctionVersionsByCapacityProvider$)
|
|
774
777
|
.build() {
|
|
775
778
|
}
|
|
776
779
|
|
|
777
|
-
class ListLayersCommand extends
|
|
780
|
+
class ListLayersCommand extends Command
|
|
778
781
|
.classBuilder()
|
|
779
782
|
.ep(commonParams)
|
|
780
783
|
.m(function (Command, cs, config, o) {
|
|
781
|
-
return [
|
|
784
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
782
785
|
})
|
|
783
786
|
.s("AWSGirApiService", "ListLayers", {})
|
|
784
787
|
.n("LambdaClient", "ListLayersCommand")
|
|
785
|
-
.sc(
|
|
788
|
+
.sc(ListLayers$)
|
|
786
789
|
.build() {
|
|
787
790
|
}
|
|
788
791
|
|
|
789
|
-
class ListLayerVersionsCommand extends
|
|
792
|
+
class ListLayerVersionsCommand extends Command
|
|
790
793
|
.classBuilder()
|
|
791
794
|
.ep(commonParams)
|
|
792
795
|
.m(function (Command, cs, config, o) {
|
|
793
|
-
return [
|
|
796
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
794
797
|
})
|
|
795
798
|
.s("AWSGirApiService", "ListLayerVersions", {})
|
|
796
799
|
.n("LambdaClient", "ListLayerVersionsCommand")
|
|
797
|
-
.sc(
|
|
800
|
+
.sc(ListLayerVersions$)
|
|
798
801
|
.build() {
|
|
799
802
|
}
|
|
800
803
|
|
|
801
|
-
class ListProvisionedConcurrencyConfigsCommand extends
|
|
804
|
+
class ListProvisionedConcurrencyConfigsCommand extends Command
|
|
802
805
|
.classBuilder()
|
|
803
806
|
.ep(commonParams)
|
|
804
807
|
.m(function (Command, cs, config, o) {
|
|
805
|
-
return [
|
|
808
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
806
809
|
})
|
|
807
810
|
.s("AWSGirApiService", "ListProvisionedConcurrencyConfigs", {})
|
|
808
811
|
.n("LambdaClient", "ListProvisionedConcurrencyConfigsCommand")
|
|
809
|
-
.sc(
|
|
812
|
+
.sc(ListProvisionedConcurrencyConfigs$)
|
|
810
813
|
.build() {
|
|
811
814
|
}
|
|
812
815
|
|
|
813
|
-
class ListTagsCommand extends
|
|
816
|
+
class ListTagsCommand extends Command
|
|
814
817
|
.classBuilder()
|
|
815
818
|
.ep(commonParams)
|
|
816
819
|
.m(function (Command, cs, config, o) {
|
|
817
|
-
return [
|
|
820
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
818
821
|
})
|
|
819
822
|
.s("AWSGirApiService", "ListTags", {})
|
|
820
823
|
.n("LambdaClient", "ListTagsCommand")
|
|
821
|
-
.sc(
|
|
824
|
+
.sc(ListTags$)
|
|
822
825
|
.build() {
|
|
823
826
|
}
|
|
824
827
|
|
|
825
|
-
class ListVersionsByFunctionCommand extends
|
|
828
|
+
class ListVersionsByFunctionCommand extends Command
|
|
826
829
|
.classBuilder()
|
|
827
830
|
.ep(commonParams)
|
|
828
831
|
.m(function (Command, cs, config, o) {
|
|
829
|
-
return [
|
|
832
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
830
833
|
})
|
|
831
834
|
.s("AWSGirApiService", "ListVersionsByFunction", {})
|
|
832
835
|
.n("LambdaClient", "ListVersionsByFunctionCommand")
|
|
833
|
-
.sc(
|
|
836
|
+
.sc(ListVersionsByFunction$)
|
|
834
837
|
.build() {
|
|
835
838
|
}
|
|
836
839
|
|
|
837
|
-
class PublishLayerVersionCommand extends
|
|
840
|
+
class PublishLayerVersionCommand extends Command
|
|
838
841
|
.classBuilder()
|
|
839
842
|
.ep(commonParams)
|
|
840
843
|
.m(function (Command, cs, config, o) {
|
|
841
|
-
return [
|
|
844
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
842
845
|
})
|
|
843
846
|
.s("AWSGirApiService", "PublishLayerVersion", {})
|
|
844
847
|
.n("LambdaClient", "PublishLayerVersionCommand")
|
|
845
|
-
.sc(
|
|
848
|
+
.sc(PublishLayerVersion$)
|
|
846
849
|
.build() {
|
|
847
850
|
}
|
|
848
851
|
|
|
849
|
-
class PublishVersionCommand extends
|
|
852
|
+
class PublishVersionCommand extends Command
|
|
850
853
|
.classBuilder()
|
|
851
854
|
.ep(commonParams)
|
|
852
855
|
.m(function (Command, cs, config, o) {
|
|
853
|
-
return [
|
|
856
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
854
857
|
})
|
|
855
858
|
.s("AWSGirApiService", "PublishVersion", {})
|
|
856
859
|
.n("LambdaClient", "PublishVersionCommand")
|
|
857
|
-
.sc(
|
|
860
|
+
.sc(PublishVersion$)
|
|
858
861
|
.build() {
|
|
859
862
|
}
|
|
860
863
|
|
|
861
|
-
class PutFunctionCodeSigningConfigCommand extends
|
|
864
|
+
class PutFunctionCodeSigningConfigCommand extends Command
|
|
862
865
|
.classBuilder()
|
|
863
866
|
.ep(commonParams)
|
|
864
867
|
.m(function (Command, cs, config, o) {
|
|
865
|
-
return [
|
|
868
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
866
869
|
})
|
|
867
870
|
.s("AWSGirApiService", "PutFunctionCodeSigningConfig", {})
|
|
868
871
|
.n("LambdaClient", "PutFunctionCodeSigningConfigCommand")
|
|
869
|
-
.sc(
|
|
872
|
+
.sc(PutFunctionCodeSigningConfig$)
|
|
870
873
|
.build() {
|
|
871
874
|
}
|
|
872
875
|
|
|
873
|
-
class PutFunctionConcurrencyCommand extends
|
|
876
|
+
class PutFunctionConcurrencyCommand extends Command
|
|
874
877
|
.classBuilder()
|
|
875
878
|
.ep(commonParams)
|
|
876
879
|
.m(function (Command, cs, config, o) {
|
|
877
|
-
return [
|
|
880
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
878
881
|
})
|
|
879
882
|
.s("AWSGirApiService", "PutFunctionConcurrency", {})
|
|
880
883
|
.n("LambdaClient", "PutFunctionConcurrencyCommand")
|
|
881
|
-
.sc(
|
|
884
|
+
.sc(PutFunctionConcurrency$)
|
|
882
885
|
.build() {
|
|
883
886
|
}
|
|
884
887
|
|
|
885
|
-
class PutFunctionEventInvokeConfigCommand extends
|
|
888
|
+
class PutFunctionEventInvokeConfigCommand extends Command
|
|
886
889
|
.classBuilder()
|
|
887
890
|
.ep(commonParams)
|
|
888
891
|
.m(function (Command, cs, config, o) {
|
|
889
|
-
return [
|
|
892
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
890
893
|
})
|
|
891
894
|
.s("AWSGirApiService", "PutFunctionEventInvokeConfig", {})
|
|
892
895
|
.n("LambdaClient", "PutFunctionEventInvokeConfigCommand")
|
|
893
|
-
.sc(
|
|
896
|
+
.sc(PutFunctionEventInvokeConfig$)
|
|
894
897
|
.build() {
|
|
895
898
|
}
|
|
896
899
|
|
|
897
|
-
class PutFunctionRecursionConfigCommand extends
|
|
900
|
+
class PutFunctionRecursionConfigCommand extends Command
|
|
898
901
|
.classBuilder()
|
|
899
902
|
.ep(commonParams)
|
|
900
903
|
.m(function (Command, cs, config, o) {
|
|
901
|
-
return [
|
|
904
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
902
905
|
})
|
|
903
906
|
.s("AWSGirApiService", "PutFunctionRecursionConfig", {})
|
|
904
907
|
.n("LambdaClient", "PutFunctionRecursionConfigCommand")
|
|
905
|
-
.sc(
|
|
908
|
+
.sc(PutFunctionRecursionConfig$)
|
|
906
909
|
.build() {
|
|
907
910
|
}
|
|
908
911
|
|
|
909
|
-
class PutFunctionScalingConfigCommand extends
|
|
912
|
+
class PutFunctionScalingConfigCommand extends Command
|
|
910
913
|
.classBuilder()
|
|
911
914
|
.ep(commonParams)
|
|
912
915
|
.m(function (Command, cs, config, o) {
|
|
913
|
-
return [
|
|
916
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
914
917
|
})
|
|
915
918
|
.s("AWSGirApiService", "PutFunctionScalingConfig", {})
|
|
916
919
|
.n("LambdaClient", "PutFunctionScalingConfigCommand")
|
|
917
|
-
.sc(
|
|
920
|
+
.sc(PutFunctionScalingConfig$)
|
|
918
921
|
.build() {
|
|
919
922
|
}
|
|
920
923
|
|
|
921
|
-
class PutProvisionedConcurrencyConfigCommand extends
|
|
924
|
+
class PutProvisionedConcurrencyConfigCommand extends Command
|
|
922
925
|
.classBuilder()
|
|
923
926
|
.ep(commonParams)
|
|
924
927
|
.m(function (Command, cs, config, o) {
|
|
925
|
-
return [
|
|
928
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
926
929
|
})
|
|
927
930
|
.s("AWSGirApiService", "PutProvisionedConcurrencyConfig", {})
|
|
928
931
|
.n("LambdaClient", "PutProvisionedConcurrencyConfigCommand")
|
|
929
|
-
.sc(
|
|
932
|
+
.sc(PutProvisionedConcurrencyConfig$)
|
|
930
933
|
.build() {
|
|
931
934
|
}
|
|
932
935
|
|
|
933
|
-
class PutRuntimeManagementConfigCommand extends
|
|
936
|
+
class PutRuntimeManagementConfigCommand extends Command
|
|
934
937
|
.classBuilder()
|
|
935
938
|
.ep(commonParams)
|
|
936
939
|
.m(function (Command, cs, config, o) {
|
|
937
|
-
return [
|
|
940
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
938
941
|
})
|
|
939
942
|
.s("AWSGirApiService", "PutRuntimeManagementConfig", {})
|
|
940
943
|
.n("LambdaClient", "PutRuntimeManagementConfigCommand")
|
|
941
|
-
.sc(
|
|
944
|
+
.sc(PutRuntimeManagementConfig$)
|
|
942
945
|
.build() {
|
|
943
946
|
}
|
|
944
947
|
|
|
945
|
-
class RemoveLayerVersionPermissionCommand extends
|
|
948
|
+
class RemoveLayerVersionPermissionCommand extends Command
|
|
946
949
|
.classBuilder()
|
|
947
950
|
.ep(commonParams)
|
|
948
951
|
.m(function (Command, cs, config, o) {
|
|
949
|
-
return [
|
|
952
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
950
953
|
})
|
|
951
954
|
.s("AWSGirApiService", "RemoveLayerVersionPermission", {})
|
|
952
955
|
.n("LambdaClient", "RemoveLayerVersionPermissionCommand")
|
|
953
|
-
.sc(
|
|
956
|
+
.sc(RemoveLayerVersionPermission$)
|
|
954
957
|
.build() {
|
|
955
958
|
}
|
|
956
959
|
|
|
957
|
-
class RemovePermissionCommand extends
|
|
960
|
+
class RemovePermissionCommand extends Command
|
|
958
961
|
.classBuilder()
|
|
959
962
|
.ep(commonParams)
|
|
960
963
|
.m(function (Command, cs, config, o) {
|
|
961
|
-
return [
|
|
964
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
962
965
|
})
|
|
963
966
|
.s("AWSGirApiService", "RemovePermission", {})
|
|
964
967
|
.n("LambdaClient", "RemovePermissionCommand")
|
|
965
|
-
.sc(
|
|
968
|
+
.sc(RemovePermission$)
|
|
966
969
|
.build() {
|
|
967
970
|
}
|
|
968
971
|
|
|
969
|
-
class SendDurableExecutionCallbackFailureCommand extends
|
|
972
|
+
class SendDurableExecutionCallbackFailureCommand extends Command
|
|
970
973
|
.classBuilder()
|
|
971
974
|
.ep(commonParams)
|
|
972
975
|
.m(function (Command, cs, config, o) {
|
|
973
|
-
return [
|
|
976
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
974
977
|
})
|
|
975
978
|
.s("AWSGirApiService", "SendDurableExecutionCallbackFailure", {})
|
|
976
979
|
.n("LambdaClient", "SendDurableExecutionCallbackFailureCommand")
|
|
977
|
-
.sc(
|
|
980
|
+
.sc(SendDurableExecutionCallbackFailure$)
|
|
978
981
|
.build() {
|
|
979
982
|
}
|
|
980
983
|
|
|
981
|
-
class SendDurableExecutionCallbackHeartbeatCommand extends
|
|
984
|
+
class SendDurableExecutionCallbackHeartbeatCommand extends Command
|
|
982
985
|
.classBuilder()
|
|
983
986
|
.ep(commonParams)
|
|
984
987
|
.m(function (Command, cs, config, o) {
|
|
985
|
-
return [
|
|
988
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
986
989
|
})
|
|
987
990
|
.s("AWSGirApiService", "SendDurableExecutionCallbackHeartbeat", {})
|
|
988
991
|
.n("LambdaClient", "SendDurableExecutionCallbackHeartbeatCommand")
|
|
989
|
-
.sc(
|
|
992
|
+
.sc(SendDurableExecutionCallbackHeartbeat$)
|
|
990
993
|
.build() {
|
|
991
994
|
}
|
|
992
995
|
|
|
993
|
-
class SendDurableExecutionCallbackSuccessCommand extends
|
|
996
|
+
class SendDurableExecutionCallbackSuccessCommand extends Command
|
|
994
997
|
.classBuilder()
|
|
995
998
|
.ep(commonParams)
|
|
996
999
|
.m(function (Command, cs, config, o) {
|
|
997
|
-
return [
|
|
1000
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
998
1001
|
})
|
|
999
1002
|
.s("AWSGirApiService", "SendDurableExecutionCallbackSuccess", {})
|
|
1000
1003
|
.n("LambdaClient", "SendDurableExecutionCallbackSuccessCommand")
|
|
1001
|
-
.sc(
|
|
1004
|
+
.sc(SendDurableExecutionCallbackSuccess$)
|
|
1002
1005
|
.build() {
|
|
1003
1006
|
}
|
|
1004
1007
|
|
|
1005
|
-
class StopDurableExecutionCommand extends
|
|
1008
|
+
class StopDurableExecutionCommand extends Command
|
|
1006
1009
|
.classBuilder()
|
|
1007
1010
|
.ep(commonParams)
|
|
1008
1011
|
.m(function (Command, cs, config, o) {
|
|
1009
|
-
return [
|
|
1012
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1010
1013
|
})
|
|
1011
1014
|
.s("AWSGirApiService", "StopDurableExecution", {})
|
|
1012
1015
|
.n("LambdaClient", "StopDurableExecutionCommand")
|
|
1013
|
-
.sc(
|
|
1016
|
+
.sc(StopDurableExecution$)
|
|
1014
1017
|
.build() {
|
|
1015
1018
|
}
|
|
1016
1019
|
|
|
1017
|
-
class TagResourceCommand extends
|
|
1020
|
+
class TagResourceCommand extends Command
|
|
1018
1021
|
.classBuilder()
|
|
1019
1022
|
.ep(commonParams)
|
|
1020
1023
|
.m(function (Command, cs, config, o) {
|
|
1021
|
-
return [
|
|
1024
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1022
1025
|
})
|
|
1023
1026
|
.s("AWSGirApiService", "TagResource", {})
|
|
1024
1027
|
.n("LambdaClient", "TagResourceCommand")
|
|
1025
|
-
.sc(
|
|
1028
|
+
.sc(TagResource$)
|
|
1026
1029
|
.build() {
|
|
1027
1030
|
}
|
|
1028
1031
|
|
|
1029
|
-
class UntagResourceCommand extends
|
|
1032
|
+
class UntagResourceCommand extends Command
|
|
1030
1033
|
.classBuilder()
|
|
1031
1034
|
.ep(commonParams)
|
|
1032
1035
|
.m(function (Command, cs, config, o) {
|
|
1033
|
-
return [
|
|
1036
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1034
1037
|
})
|
|
1035
1038
|
.s("AWSGirApiService", "UntagResource", {})
|
|
1036
1039
|
.n("LambdaClient", "UntagResourceCommand")
|
|
1037
|
-
.sc(
|
|
1040
|
+
.sc(UntagResource$)
|
|
1038
1041
|
.build() {
|
|
1039
1042
|
}
|
|
1040
1043
|
|
|
1041
|
-
class UpdateAliasCommand extends
|
|
1044
|
+
class UpdateAliasCommand extends Command
|
|
1042
1045
|
.classBuilder()
|
|
1043
1046
|
.ep(commonParams)
|
|
1044
1047
|
.m(function (Command, cs, config, o) {
|
|
1045
|
-
return [
|
|
1048
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1046
1049
|
})
|
|
1047
1050
|
.s("AWSGirApiService", "UpdateAlias", {})
|
|
1048
1051
|
.n("LambdaClient", "UpdateAliasCommand")
|
|
1049
|
-
.sc(
|
|
1052
|
+
.sc(UpdateAlias$)
|
|
1050
1053
|
.build() {
|
|
1051
1054
|
}
|
|
1052
1055
|
|
|
1053
|
-
class UpdateCapacityProviderCommand extends
|
|
1056
|
+
class UpdateCapacityProviderCommand extends Command
|
|
1054
1057
|
.classBuilder()
|
|
1055
1058
|
.ep(commonParams)
|
|
1056
1059
|
.m(function (Command, cs, config, o) {
|
|
1057
|
-
return [
|
|
1060
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1058
1061
|
})
|
|
1059
1062
|
.s("AWSGirApiService", "UpdateCapacityProvider", {})
|
|
1060
1063
|
.n("LambdaClient", "UpdateCapacityProviderCommand")
|
|
1061
|
-
.sc(
|
|
1064
|
+
.sc(UpdateCapacityProvider$)
|
|
1062
1065
|
.build() {
|
|
1063
1066
|
}
|
|
1064
1067
|
|
|
1065
|
-
class UpdateCodeSigningConfigCommand extends
|
|
1068
|
+
class UpdateCodeSigningConfigCommand extends Command
|
|
1066
1069
|
.classBuilder()
|
|
1067
1070
|
.ep(commonParams)
|
|
1068
1071
|
.m(function (Command, cs, config, o) {
|
|
1069
|
-
return [
|
|
1072
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1070
1073
|
})
|
|
1071
1074
|
.s("AWSGirApiService", "UpdateCodeSigningConfig", {})
|
|
1072
1075
|
.n("LambdaClient", "UpdateCodeSigningConfigCommand")
|
|
1073
|
-
.sc(
|
|
1076
|
+
.sc(UpdateCodeSigningConfig$)
|
|
1074
1077
|
.build() {
|
|
1075
1078
|
}
|
|
1076
1079
|
|
|
1077
|
-
class UpdateEventSourceMappingCommand extends
|
|
1080
|
+
class UpdateEventSourceMappingCommand extends Command
|
|
1078
1081
|
.classBuilder()
|
|
1079
1082
|
.ep(commonParams)
|
|
1080
1083
|
.m(function (Command, cs, config, o) {
|
|
1081
|
-
return [
|
|
1084
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1082
1085
|
})
|
|
1083
1086
|
.s("AWSGirApiService", "UpdateEventSourceMapping", {})
|
|
1084
1087
|
.n("LambdaClient", "UpdateEventSourceMappingCommand")
|
|
1085
|
-
.sc(
|
|
1088
|
+
.sc(UpdateEventSourceMapping$)
|
|
1086
1089
|
.build() {
|
|
1087
1090
|
}
|
|
1088
1091
|
|
|
1089
|
-
class UpdateFunctionCodeCommand extends
|
|
1092
|
+
class UpdateFunctionCodeCommand extends Command
|
|
1090
1093
|
.classBuilder()
|
|
1091
1094
|
.ep(commonParams)
|
|
1092
1095
|
.m(function (Command, cs, config, o) {
|
|
1093
|
-
return [
|
|
1096
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1094
1097
|
})
|
|
1095
1098
|
.s("AWSGirApiService", "UpdateFunctionCode", {})
|
|
1096
1099
|
.n("LambdaClient", "UpdateFunctionCodeCommand")
|
|
1097
|
-
.sc(
|
|
1100
|
+
.sc(UpdateFunctionCode$)
|
|
1098
1101
|
.build() {
|
|
1099
1102
|
}
|
|
1100
1103
|
|
|
1101
|
-
class UpdateFunctionConfigurationCommand extends
|
|
1104
|
+
class UpdateFunctionConfigurationCommand extends Command
|
|
1102
1105
|
.classBuilder()
|
|
1103
1106
|
.ep(commonParams)
|
|
1104
1107
|
.m(function (Command, cs, config, o) {
|
|
1105
|
-
return [
|
|
1108
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1106
1109
|
})
|
|
1107
1110
|
.s("AWSGirApiService", "UpdateFunctionConfiguration", {})
|
|
1108
1111
|
.n("LambdaClient", "UpdateFunctionConfigurationCommand")
|
|
1109
|
-
.sc(
|
|
1112
|
+
.sc(UpdateFunctionConfiguration$)
|
|
1110
1113
|
.build() {
|
|
1111
1114
|
}
|
|
1112
1115
|
|
|
1113
|
-
class UpdateFunctionEventInvokeConfigCommand extends
|
|
1116
|
+
class UpdateFunctionEventInvokeConfigCommand extends Command
|
|
1114
1117
|
.classBuilder()
|
|
1115
1118
|
.ep(commonParams)
|
|
1116
1119
|
.m(function (Command, cs, config, o) {
|
|
1117
|
-
return [
|
|
1120
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1118
1121
|
})
|
|
1119
1122
|
.s("AWSGirApiService", "UpdateFunctionEventInvokeConfig", {})
|
|
1120
1123
|
.n("LambdaClient", "UpdateFunctionEventInvokeConfigCommand")
|
|
1121
|
-
.sc(
|
|
1124
|
+
.sc(UpdateFunctionEventInvokeConfig$)
|
|
1122
1125
|
.build() {
|
|
1123
1126
|
}
|
|
1124
1127
|
|
|
1125
|
-
class UpdateFunctionUrlConfigCommand extends
|
|
1128
|
+
class UpdateFunctionUrlConfigCommand extends Command
|
|
1126
1129
|
.classBuilder()
|
|
1127
1130
|
.ep(commonParams)
|
|
1128
1131
|
.m(function (Command, cs, config, o) {
|
|
1129
|
-
return [
|
|
1132
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1130
1133
|
})
|
|
1131
1134
|
.s("AWSGirApiService", "UpdateFunctionUrlConfig", {})
|
|
1132
1135
|
.n("LambdaClient", "UpdateFunctionUrlConfigCommand")
|
|
1133
|
-
.sc(
|
|
1136
|
+
.sc(UpdateFunctionUrlConfig$)
|
|
1134
1137
|
.build() {
|
|
1135
1138
|
}
|
|
1136
1139
|
|
|
1137
|
-
const paginateGetDurableExecutionHistory =
|
|
1140
|
+
const paginateGetDurableExecutionHistory = createPaginator(LambdaClient, GetDurableExecutionHistoryCommand, "Marker", "NextMarker", "MaxItems");
|
|
1138
1141
|
|
|
1139
|
-
const paginateGetDurableExecutionState =
|
|
1142
|
+
const paginateGetDurableExecutionState = createPaginator(LambdaClient, GetDurableExecutionStateCommand, "Marker", "NextMarker", "MaxItems");
|
|
1140
1143
|
|
|
1141
|
-
const paginateListAliases =
|
|
1144
|
+
const paginateListAliases = createPaginator(LambdaClient, ListAliasesCommand, "Marker", "NextMarker", "MaxItems");
|
|
1142
1145
|
|
|
1143
|
-
const paginateListCapacityProviders =
|
|
1146
|
+
const paginateListCapacityProviders = createPaginator(LambdaClient, ListCapacityProvidersCommand, "Marker", "NextMarker", "MaxItems");
|
|
1144
1147
|
|
|
1145
|
-
const paginateListCodeSigningConfigs =
|
|
1148
|
+
const paginateListCodeSigningConfigs = createPaginator(LambdaClient, ListCodeSigningConfigsCommand, "Marker", "NextMarker", "MaxItems");
|
|
1146
1149
|
|
|
1147
|
-
const paginateListDurableExecutionsByFunction =
|
|
1150
|
+
const paginateListDurableExecutionsByFunction = createPaginator(LambdaClient, ListDurableExecutionsByFunctionCommand, "Marker", "NextMarker", "MaxItems");
|
|
1148
1151
|
|
|
1149
|
-
const paginateListEventSourceMappings =
|
|
1152
|
+
const paginateListEventSourceMappings = createPaginator(LambdaClient, ListEventSourceMappingsCommand, "Marker", "NextMarker", "MaxItems");
|
|
1150
1153
|
|
|
1151
|
-
const paginateListFunctionEventInvokeConfigs =
|
|
1154
|
+
const paginateListFunctionEventInvokeConfigs = createPaginator(LambdaClient, ListFunctionEventInvokeConfigsCommand, "Marker", "NextMarker", "MaxItems");
|
|
1152
1155
|
|
|
1153
|
-
const paginateListFunctionsByCodeSigningConfig =
|
|
1156
|
+
const paginateListFunctionsByCodeSigningConfig = createPaginator(LambdaClient, ListFunctionsByCodeSigningConfigCommand, "Marker", "NextMarker", "MaxItems");
|
|
1154
1157
|
|
|
1155
|
-
const paginateListFunctions =
|
|
1158
|
+
const paginateListFunctions = createPaginator(LambdaClient, ListFunctionsCommand, "Marker", "NextMarker", "MaxItems");
|
|
1156
1159
|
|
|
1157
|
-
const paginateListFunctionUrlConfigs =
|
|
1160
|
+
const paginateListFunctionUrlConfigs = createPaginator(LambdaClient, ListFunctionUrlConfigsCommand, "Marker", "NextMarker", "MaxItems");
|
|
1158
1161
|
|
|
1159
|
-
const paginateListFunctionVersionsByCapacityProvider =
|
|
1162
|
+
const paginateListFunctionVersionsByCapacityProvider = createPaginator(LambdaClient, ListFunctionVersionsByCapacityProviderCommand, "Marker", "NextMarker", "MaxItems");
|
|
1160
1163
|
|
|
1161
|
-
const paginateListLayers =
|
|
1164
|
+
const paginateListLayers = createPaginator(LambdaClient, ListLayersCommand, "Marker", "NextMarker", "MaxItems");
|
|
1162
1165
|
|
|
1163
|
-
const paginateListLayerVersions =
|
|
1166
|
+
const paginateListLayerVersions = createPaginator(LambdaClient, ListLayerVersionsCommand, "Marker", "NextMarker", "MaxItems");
|
|
1164
1167
|
|
|
1165
|
-
const paginateListProvisionedConcurrencyConfigs =
|
|
1168
|
+
const paginateListProvisionedConcurrencyConfigs = createPaginator(LambdaClient, ListProvisionedConcurrencyConfigsCommand, "Marker", "NextMarker", "MaxItems");
|
|
1166
1169
|
|
|
1167
|
-
const paginateListVersionsByFunction =
|
|
1170
|
+
const paginateListVersionsByFunction = createPaginator(LambdaClient, ListVersionsByFunctionCommand, "Marker", "NextMarker", "MaxItems");
|
|
1168
1171
|
|
|
1169
|
-
const checkState$5 = async (client
|
|
1172
|
+
const checkState$5 = async (client, input) => {
|
|
1170
1173
|
let reason;
|
|
1171
1174
|
try {
|
|
1172
|
-
let result = await client
|
|
1175
|
+
let result = await client.send(new GetFunctionConfigurationCommand(input));
|
|
1173
1176
|
reason = result;
|
|
1174
1177
|
try {
|
|
1175
1178
|
const returnComparator = () => {
|
|
1176
1179
|
return result.State;
|
|
1177
1180
|
};
|
|
1178
1181
|
if (returnComparator() === "Active") {
|
|
1179
|
-
return { state:
|
|
1182
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
1180
1183
|
}
|
|
1181
1184
|
}
|
|
1182
1185
|
catch (e) { }
|
|
@@ -1185,7 +1188,7 @@ const checkState$5 = async (client$1, input) => {
|
|
|
1185
1188
|
return result.State;
|
|
1186
1189
|
};
|
|
1187
1190
|
if (returnComparator() === "Failed") {
|
|
1188
|
-
return { state:
|
|
1191
|
+
return { state: WaiterState.FAILURE, reason };
|
|
1189
1192
|
}
|
|
1190
1193
|
}
|
|
1191
1194
|
catch (e) { }
|
|
@@ -1194,7 +1197,7 @@ const checkState$5 = async (client$1, input) => {
|
|
|
1194
1197
|
return result.State;
|
|
1195
1198
|
};
|
|
1196
1199
|
if (returnComparator() === "Pending") {
|
|
1197
|
-
return { state:
|
|
1200
|
+
return { state: WaiterState.RETRY, reason };
|
|
1198
1201
|
}
|
|
1199
1202
|
}
|
|
1200
1203
|
catch (e) { }
|
|
@@ -1202,29 +1205,29 @@ const checkState$5 = async (client$1, input) => {
|
|
|
1202
1205
|
catch (exception) {
|
|
1203
1206
|
reason = exception;
|
|
1204
1207
|
}
|
|
1205
|
-
return { state:
|
|
1208
|
+
return { state: WaiterState.RETRY, reason };
|
|
1206
1209
|
};
|
|
1207
1210
|
const waitForFunctionActive = async (params, input) => {
|
|
1208
1211
|
const serviceDefaults = { minDelay: 5, maxDelay: 300 };
|
|
1209
|
-
return
|
|
1212
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState$5);
|
|
1210
1213
|
};
|
|
1211
1214
|
const waitUntilFunctionActive = async (params, input) => {
|
|
1212
1215
|
const serviceDefaults = { minDelay: 5, maxDelay: 300 };
|
|
1213
|
-
const result = await
|
|
1214
|
-
return
|
|
1216
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState$5);
|
|
1217
|
+
return checkExceptions(result);
|
|
1215
1218
|
};
|
|
1216
1219
|
|
|
1217
|
-
const checkState$4 = async (client
|
|
1220
|
+
const checkState$4 = async (client, input) => {
|
|
1218
1221
|
let reason;
|
|
1219
1222
|
try {
|
|
1220
|
-
let result = await client
|
|
1223
|
+
let result = await client.send(new GetFunctionCommand(input));
|
|
1221
1224
|
reason = result;
|
|
1222
1225
|
try {
|
|
1223
1226
|
const returnComparator = () => {
|
|
1224
1227
|
return result.Configuration.State;
|
|
1225
1228
|
};
|
|
1226
1229
|
if (returnComparator() === "Active") {
|
|
1227
|
-
return { state:
|
|
1230
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
1228
1231
|
}
|
|
1229
1232
|
}
|
|
1230
1233
|
catch (e) { }
|
|
@@ -1233,7 +1236,7 @@ const checkState$4 = async (client$1, input) => {
|
|
|
1233
1236
|
return result.Configuration.State;
|
|
1234
1237
|
};
|
|
1235
1238
|
if (returnComparator() === "Failed") {
|
|
1236
|
-
return { state:
|
|
1239
|
+
return { state: WaiterState.FAILURE, reason };
|
|
1237
1240
|
}
|
|
1238
1241
|
}
|
|
1239
1242
|
catch (e) { }
|
|
@@ -1242,7 +1245,7 @@ const checkState$4 = async (client$1, input) => {
|
|
|
1242
1245
|
return result.Configuration.State;
|
|
1243
1246
|
};
|
|
1244
1247
|
if (returnComparator() === "Pending") {
|
|
1245
|
-
return { state:
|
|
1248
|
+
return { state: WaiterState.RETRY, reason };
|
|
1246
1249
|
}
|
|
1247
1250
|
}
|
|
1248
1251
|
catch (e) { }
|
|
@@ -1250,54 +1253,54 @@ const checkState$4 = async (client$1, input) => {
|
|
|
1250
1253
|
catch (exception) {
|
|
1251
1254
|
reason = exception;
|
|
1252
1255
|
}
|
|
1253
|
-
return { state:
|
|
1256
|
+
return { state: WaiterState.RETRY, reason };
|
|
1254
1257
|
};
|
|
1255
1258
|
const waitForFunctionActiveV2 = async (params, input) => {
|
|
1256
1259
|
const serviceDefaults = { minDelay: 1, maxDelay: 300 };
|
|
1257
|
-
return
|
|
1260
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState$4);
|
|
1258
1261
|
};
|
|
1259
1262
|
const waitUntilFunctionActiveV2 = async (params, input) => {
|
|
1260
1263
|
const serviceDefaults = { minDelay: 1, maxDelay: 300 };
|
|
1261
|
-
const result = await
|
|
1262
|
-
return
|
|
1264
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState$4);
|
|
1265
|
+
return checkExceptions(result);
|
|
1263
1266
|
};
|
|
1264
1267
|
|
|
1265
|
-
const checkState$3 = async (client
|
|
1268
|
+
const checkState$3 = async (client, input) => {
|
|
1266
1269
|
let reason;
|
|
1267
1270
|
try {
|
|
1268
|
-
let result = await client
|
|
1271
|
+
let result = await client.send(new GetFunctionCommand(input));
|
|
1269
1272
|
reason = result;
|
|
1270
|
-
return { state:
|
|
1273
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
1271
1274
|
}
|
|
1272
1275
|
catch (exception) {
|
|
1273
1276
|
reason = exception;
|
|
1274
1277
|
if (exception.name === "ResourceNotFoundException") {
|
|
1275
|
-
return { state:
|
|
1278
|
+
return { state: WaiterState.RETRY, reason };
|
|
1276
1279
|
}
|
|
1277
1280
|
}
|
|
1278
|
-
return { state:
|
|
1281
|
+
return { state: WaiterState.RETRY, reason };
|
|
1279
1282
|
};
|
|
1280
1283
|
const waitForFunctionExists = async (params, input) => {
|
|
1281
1284
|
const serviceDefaults = { minDelay: 1, maxDelay: 20 };
|
|
1282
|
-
return
|
|
1285
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState$3);
|
|
1283
1286
|
};
|
|
1284
1287
|
const waitUntilFunctionExists = async (params, input) => {
|
|
1285
1288
|
const serviceDefaults = { minDelay: 1, maxDelay: 20 };
|
|
1286
|
-
const result = await
|
|
1287
|
-
return
|
|
1289
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState$3);
|
|
1290
|
+
return checkExceptions(result);
|
|
1288
1291
|
};
|
|
1289
1292
|
|
|
1290
|
-
const checkState$2 = async (client
|
|
1293
|
+
const checkState$2 = async (client, input) => {
|
|
1291
1294
|
let reason;
|
|
1292
1295
|
try {
|
|
1293
|
-
let result = await client
|
|
1296
|
+
let result = await client.send(new GetFunctionConfigurationCommand(input));
|
|
1294
1297
|
reason = result;
|
|
1295
1298
|
try {
|
|
1296
1299
|
const returnComparator = () => {
|
|
1297
1300
|
return result.LastUpdateStatus;
|
|
1298
1301
|
};
|
|
1299
1302
|
if (returnComparator() === "Successful") {
|
|
1300
|
-
return { state:
|
|
1303
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
1301
1304
|
}
|
|
1302
1305
|
}
|
|
1303
1306
|
catch (e) { }
|
|
@@ -1306,7 +1309,7 @@ const checkState$2 = async (client$1, input) => {
|
|
|
1306
1309
|
return result.LastUpdateStatus;
|
|
1307
1310
|
};
|
|
1308
1311
|
if (returnComparator() === "Failed") {
|
|
1309
|
-
return { state:
|
|
1312
|
+
return { state: WaiterState.FAILURE, reason };
|
|
1310
1313
|
}
|
|
1311
1314
|
}
|
|
1312
1315
|
catch (e) { }
|
|
@@ -1315,7 +1318,7 @@ const checkState$2 = async (client$1, input) => {
|
|
|
1315
1318
|
return result.LastUpdateStatus;
|
|
1316
1319
|
};
|
|
1317
1320
|
if (returnComparator() === "InProgress") {
|
|
1318
|
-
return { state:
|
|
1321
|
+
return { state: WaiterState.RETRY, reason };
|
|
1319
1322
|
}
|
|
1320
1323
|
}
|
|
1321
1324
|
catch (e) { }
|
|
@@ -1323,29 +1326,29 @@ const checkState$2 = async (client$1, input) => {
|
|
|
1323
1326
|
catch (exception) {
|
|
1324
1327
|
reason = exception;
|
|
1325
1328
|
}
|
|
1326
|
-
return { state:
|
|
1329
|
+
return { state: WaiterState.RETRY, reason };
|
|
1327
1330
|
};
|
|
1328
1331
|
const waitForFunctionUpdated = async (params, input) => {
|
|
1329
1332
|
const serviceDefaults = { minDelay: 5, maxDelay: 300 };
|
|
1330
|
-
return
|
|
1333
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState$2);
|
|
1331
1334
|
};
|
|
1332
1335
|
const waitUntilFunctionUpdated = async (params, input) => {
|
|
1333
1336
|
const serviceDefaults = { minDelay: 5, maxDelay: 300 };
|
|
1334
|
-
const result = await
|
|
1335
|
-
return
|
|
1337
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState$2);
|
|
1338
|
+
return checkExceptions(result);
|
|
1336
1339
|
};
|
|
1337
1340
|
|
|
1338
|
-
const checkState$1 = async (client
|
|
1341
|
+
const checkState$1 = async (client, input) => {
|
|
1339
1342
|
let reason;
|
|
1340
1343
|
try {
|
|
1341
|
-
let result = await client
|
|
1344
|
+
let result = await client.send(new GetFunctionCommand(input));
|
|
1342
1345
|
reason = result;
|
|
1343
1346
|
try {
|
|
1344
1347
|
const returnComparator = () => {
|
|
1345
1348
|
return result.Configuration.LastUpdateStatus;
|
|
1346
1349
|
};
|
|
1347
1350
|
if (returnComparator() === "Successful") {
|
|
1348
|
-
return { state:
|
|
1351
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
1349
1352
|
}
|
|
1350
1353
|
}
|
|
1351
1354
|
catch (e) { }
|
|
@@ -1354,7 +1357,7 @@ const checkState$1 = async (client$1, input) => {
|
|
|
1354
1357
|
return result.Configuration.LastUpdateStatus;
|
|
1355
1358
|
};
|
|
1356
1359
|
if (returnComparator() === "Failed") {
|
|
1357
|
-
return { state:
|
|
1360
|
+
return { state: WaiterState.FAILURE, reason };
|
|
1358
1361
|
}
|
|
1359
1362
|
}
|
|
1360
1363
|
catch (e) { }
|
|
@@ -1363,7 +1366,7 @@ const checkState$1 = async (client$1, input) => {
|
|
|
1363
1366
|
return result.Configuration.LastUpdateStatus;
|
|
1364
1367
|
};
|
|
1365
1368
|
if (returnComparator() === "InProgress") {
|
|
1366
|
-
return { state:
|
|
1369
|
+
return { state: WaiterState.RETRY, reason };
|
|
1367
1370
|
}
|
|
1368
1371
|
}
|
|
1369
1372
|
catch (e) { }
|
|
@@ -1371,29 +1374,29 @@ const checkState$1 = async (client$1, input) => {
|
|
|
1371
1374
|
catch (exception) {
|
|
1372
1375
|
reason = exception;
|
|
1373
1376
|
}
|
|
1374
|
-
return { state:
|
|
1377
|
+
return { state: WaiterState.RETRY, reason };
|
|
1375
1378
|
};
|
|
1376
1379
|
const waitForFunctionUpdatedV2 = async (params, input) => {
|
|
1377
1380
|
const serviceDefaults = { minDelay: 1, maxDelay: 300 };
|
|
1378
|
-
return
|
|
1381
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState$1);
|
|
1379
1382
|
};
|
|
1380
1383
|
const waitUntilFunctionUpdatedV2 = async (params, input) => {
|
|
1381
1384
|
const serviceDefaults = { minDelay: 1, maxDelay: 300 };
|
|
1382
|
-
const result = await
|
|
1383
|
-
return
|
|
1385
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState$1);
|
|
1386
|
+
return checkExceptions(result);
|
|
1384
1387
|
};
|
|
1385
1388
|
|
|
1386
|
-
const checkState = async (client
|
|
1389
|
+
const checkState = async (client, input) => {
|
|
1387
1390
|
let reason;
|
|
1388
1391
|
try {
|
|
1389
|
-
let result = await client
|
|
1392
|
+
let result = await client.send(new GetFunctionConfigurationCommand(input));
|
|
1390
1393
|
reason = result;
|
|
1391
1394
|
try {
|
|
1392
1395
|
const returnComparator = () => {
|
|
1393
1396
|
return result.State;
|
|
1394
1397
|
};
|
|
1395
1398
|
if (returnComparator() === "Active") {
|
|
1396
|
-
return { state:
|
|
1399
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
1397
1400
|
}
|
|
1398
1401
|
}
|
|
1399
1402
|
catch (e) { }
|
|
@@ -1402,7 +1405,7 @@ const checkState = async (client$1, input) => {
|
|
|
1402
1405
|
return result.State;
|
|
1403
1406
|
};
|
|
1404
1407
|
if (returnComparator() === "Failed") {
|
|
1405
|
-
return { state:
|
|
1408
|
+
return { state: WaiterState.FAILURE, reason };
|
|
1406
1409
|
}
|
|
1407
1410
|
}
|
|
1408
1411
|
catch (e) { }
|
|
@@ -1411,7 +1414,7 @@ const checkState = async (client$1, input) => {
|
|
|
1411
1414
|
return result.State;
|
|
1412
1415
|
};
|
|
1413
1416
|
if (returnComparator() === "Pending") {
|
|
1414
|
-
return { state:
|
|
1417
|
+
return { state: WaiterState.RETRY, reason };
|
|
1415
1418
|
}
|
|
1416
1419
|
}
|
|
1417
1420
|
catch (e) { }
|
|
@@ -1419,16 +1422,16 @@ const checkState = async (client$1, input) => {
|
|
|
1419
1422
|
catch (exception) {
|
|
1420
1423
|
reason = exception;
|
|
1421
1424
|
}
|
|
1422
|
-
return { state:
|
|
1425
|
+
return { state: WaiterState.RETRY, reason };
|
|
1423
1426
|
};
|
|
1424
1427
|
const waitForPublishedVersionActive = async (params, input) => {
|
|
1425
1428
|
const serviceDefaults = { minDelay: 5, maxDelay: 1560 };
|
|
1426
|
-
return
|
|
1429
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
1427
1430
|
};
|
|
1428
1431
|
const waitUntilPublishedVersionActive = async (params, input) => {
|
|
1429
1432
|
const serviceDefaults = { minDelay: 5, maxDelay: 1560 };
|
|
1430
|
-
const result = await
|
|
1431
|
-
return
|
|
1433
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
1434
|
+
return checkExceptions(result);
|
|
1432
1435
|
};
|
|
1433
1436
|
|
|
1434
1437
|
const commands = {
|
|
@@ -1546,7 +1549,7 @@ const waiters = {
|
|
|
1546
1549
|
};
|
|
1547
1550
|
class Lambda extends LambdaClient {
|
|
1548
1551
|
}
|
|
1549
|
-
|
|
1552
|
+
createAggregatedClient(commands, Lambda, { paginators, waiters });
|
|
1550
1553
|
|
|
1551
1554
|
const ThrottleReason = {
|
|
1552
1555
|
CallerRateLimitExceeded: "CallerRateLimitExceeded",
|
|
@@ -1789,6 +1792,7 @@ const LastUpdateStatusReasonCode = {
|
|
|
1789
1792
|
InvalidZipFileException: "InvalidZipFileException",
|
|
1790
1793
|
KMSKeyAccessDenied: "KMSKeyAccessDenied",
|
|
1791
1794
|
KMSKeyNotFound: "KMSKeyNotFound",
|
|
1795
|
+
ServiceQuotaExceededException: "ServiceQuotaExceededException",
|
|
1792
1796
|
SubnetOutOfIPAddresses: "SubnetOutOfIPAddresses",
|
|
1793
1797
|
VcpuLimitExceeded: "VcpuLimitExceeded",
|
|
1794
1798
|
};
|
|
@@ -1833,6 +1837,7 @@ const StateReasonCode = {
|
|
|
1833
1837
|
KMSKeyAccessDenied: "KMSKeyAccessDenied",
|
|
1834
1838
|
KMSKeyNotFound: "KMSKeyNotFound",
|
|
1835
1839
|
Restoring: "Restoring",
|
|
1840
|
+
ServiceQuotaExceededException: "ServiceQuotaExceededException",
|
|
1836
1841
|
SubnetOutOfIPAddresses: "SubnetOutOfIPAddresses",
|
|
1837
1842
|
VcpuLimitExceeded: "VcpuLimitExceeded",
|
|
1838
1843
|
};
|
|
@@ -1904,9 +1909,6 @@ const EventType = {
|
|
|
1904
1909
|
WaitSucceeded: "WaitSucceeded",
|
|
1905
1910
|
};
|
|
1906
1911
|
|
|
1907
|
-
exports.$Command = client.Command;
|
|
1908
|
-
exports.__Client = client.Client;
|
|
1909
|
-
exports.LambdaServiceException = LambdaServiceException.LambdaServiceException;
|
|
1910
1912
|
exports.AddLayerVersionPermissionCommand = AddLayerVersionPermissionCommand;
|
|
1911
1913
|
exports.AddPermissionCommand = AddPermissionCommand;
|
|
1912
1914
|
exports.ApplicationLogLevel = ApplicationLogLevel;
|
|
@@ -2067,23 +2069,3 @@ exports.waitUntilFunctionExists = waitUntilFunctionExists;
|
|
|
2067
2069
|
exports.waitUntilFunctionUpdated = waitUntilFunctionUpdated;
|
|
2068
2070
|
exports.waitUntilFunctionUpdatedV2 = waitUntilFunctionUpdatedV2;
|
|
2069
2071
|
exports.waitUntilPublishedVersionActive = waitUntilPublishedVersionActive;
|
|
2070
|
-
Object.prototype.hasOwnProperty.call(schemas_0, '__proto__') &&
|
|
2071
|
-
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
2072
|
-
Object.defineProperty(exports, '__proto__', {
|
|
2073
|
-
enumerable: true,
|
|
2074
|
-
value: schemas_0['__proto__']
|
|
2075
|
-
});
|
|
2076
|
-
|
|
2077
|
-
Object.keys(schemas_0).forEach(function (k) {
|
|
2078
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = schemas_0[k];
|
|
2079
|
-
});
|
|
2080
|
-
Object.prototype.hasOwnProperty.call(errors, '__proto__') &&
|
|
2081
|
-
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
2082
|
-
Object.defineProperty(exports, '__proto__', {
|
|
2083
|
-
enumerable: true,
|
|
2084
|
-
value: errors['__proto__']
|
|
2085
|
-
});
|
|
2086
|
-
|
|
2087
|
-
Object.keys(errors).forEach(function (k) {
|
|
2088
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = errors[k];
|
|
2089
|
-
});
|