@cdklabs/cdk-ssm-documents 0.0.67 → 0.0.69
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/lambda-invoke-store/README.md +25 -1
- package/node_modules/@aws/lambda-invoke-store/dist-cjs/invoke-store.js +12 -0
- package/node_modules/@aws/lambda-invoke-store/dist-es/invoke-store.js +12 -0
- package/node_modules/@aws/lambda-invoke-store/dist-types/invoke-store.d.ts +6 -0
- package/node_modules/@aws/lambda-invoke-store/package.json +1 -1
- package/node_modules/@aws-sdk/checksums/crc.d.ts +5 -0
- package/node_modules/@aws-sdk/checksums/crc.js +5 -0
- package/node_modules/@aws-sdk/checksums/dist-cjs/index.js +5 -530
- package/node_modules/@aws-sdk/checksums/dist-cjs/submodules/crc/index.js +159 -0
- package/node_modules/@aws-sdk/checksums/dist-cjs/submodules/flexible-checksums/index.js +444 -0
- package/node_modules/@aws-sdk/checksums/dist-cjs/submodules/md5/index.js +4 -0
- package/node_modules/@aws-sdk/checksums/dist-cjs/submodules/sha/index.js +312 -0
- package/node_modules/@aws-sdk/checksums/dist-es/index.js +2 -8
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/crc/crc32c/Crc32cJs.js +31 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/crc/crc32c/Crc32cNode.js +2 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/crc/crc64-nvme/Crc64Nvme.js +18 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/crc/crc64-nvme/Crc64NvmeJs.js +92 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/crc/index.browser.js +6 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/crc/index.js +6 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/flexible-checksums/index.js +6 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/flexible-checksums/selectChecksumAlgorithmFunction.js +27 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/md5/index.js +1 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/sha/index.browser.js +4 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/sha/index.js +4 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/sha/sha1/Sha1Js.js +173 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/sha/sha1/Sha1Node.js +59 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/sha/sha1/Sha1WebCrypto.js +71 -0
- package/node_modules/@aws-sdk/checksums/dist-types/index.d.ts +3 -11
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/crc/crc32c/Crc32cJs.d.ts +13 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/crc/crc32c/Crc32cNode.d.ts +13 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/crc/crc64-nvme/Crc64Nvme.d.ts +21 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/crc/crc64-nvme/Crc64NvmeJs.d.ts +14 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/crc/crc64-nvme/crc64-nvme-crt-container.d.ts +11 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/crc/index.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/crc/index.d.ts +6 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/flexible-checksums/index.d.ts +9 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/md5/index.d.ts +1 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/sha/index.browser.d.ts +3 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/sha/index.d.ts +4 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/sha/sha1/Sha1Js.d.ts +26 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/sha/sha1/Sha1Node.d.ts +13 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/sha/sha1/Sha1WebCrypto.d.ts +22 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/index.d.ts +11 -14
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/crc/crc32c/Crc32cJs.d.ts +8 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/crc/crc32c/Crc32cNode.d.ts +5 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/crc/crc64-nvme/Crc64Nvme.d.ts +8 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/crc/crc64-nvme/Crc64NvmeJs.d.ts +9 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/crc/index.browser.d.ts +8 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/crc/index.d.ts +6 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/flexible-checksums/index.d.ts +31 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/md5/index.d.ts +1 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/sha/index.browser.d.ts +8 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/sha/index.d.ts +4 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/sha/sha1/Sha1Js.d.ts +20 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/sha/sha1/Sha1Node.d.ts +5 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/sha/sha1/Sha1WebCrypto.d.ts +14 -0
- package/node_modules/@aws-sdk/checksums/flexible-checksums.d.ts +5 -0
- package/node_modules/@aws-sdk/checksums/flexible-checksums.js +5 -0
- package/node_modules/@aws-sdk/checksums/md5.d.ts +5 -0
- package/node_modules/@aws-sdk/checksums/md5.js +5 -0
- package/node_modules/@aws-sdk/checksums/package.json +67 -11
- package/node_modules/@aws-sdk/checksums/sha.d.ts +5 -0
- package/node_modules/@aws-sdk/checksums/sha.js +5 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/index.js +3999 -1094
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commandBuilder.js +6 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ActivateOrganizationsAccessCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ActivateTypeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/BatchDescribeTypeConfigurationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/CancelUpdateStackCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ContinueUpdateRollbackCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/CreateChangeSetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/CreateGeneratedTemplateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/CreateStackCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/CreateStackInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/CreateStackRefactorCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/CreateStackSetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DeactivateOrganizationsAccessCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DeactivateTypeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DeleteChangeSetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DeleteGeneratedTemplateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DeleteStackCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DeleteStackInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DeleteStackSetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DeregisterTypeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeAccountLimitsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeChangeSetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeChangeSetHooksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeEventsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeGeneratedTemplateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeOrganizationsAccessCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribePublisherCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeResourceScanCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeStackDriftDetectionStatusCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeStackEventsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeStackInstanceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeStackRefactorCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeStackResourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeStackResourceDriftsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeStackResourcesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeStackSetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeStackSetOperationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeStacksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeTypeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeTypeRegistrationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DetectStackDriftCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DetectStackResourceDriftCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DetectStackSetDriftCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/EstimateTemplateCostCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ExecuteChangeSetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ExecuteStackRefactorCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/GetGeneratedTemplateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/GetHookResultCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/GetStackPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/GetTemplateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/GetTemplateSummaryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ImportStacksToStackSetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListChangeSetsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListExportsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListGeneratedTemplatesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListHookResultsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListImportsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListResourceScanRelatedResourcesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListResourceScanResourcesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListResourceScansCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListStackInstanceResourceDriftsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListStackInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListStackRefactorActionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListStackRefactorsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListStackResourcesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListStackSetAutoDeploymentTargetsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListStackSetOperationResultsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListStackSetOperationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListStackSetsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListStacksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListTypeRegistrationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListTypeVersionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListTypesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/PublishTypeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/RecordHandlerProgressCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/RegisterPublisherCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/RegisterTypeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/RollbackStackCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/SetStackPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/SetTypeConfigurationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/SetTypeDefaultVersionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/SignalResourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/StartResourceScanCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/StopStackSetOperationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/TestTypeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/UpdateGeneratedTemplateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/UpdateStackCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/UpdateStackInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/UpdateStackSetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/UpdateTerminationProtectionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ValidateTemplateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/models/enums.js +4 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/runtimeConfig.browser.js +0 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/runtimeConfig.js +1 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/runtimeConfig.shared.js +2 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/schemas/schemas_0.js +25 -17
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commandBuilder.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ActivateOrganizationsAccessCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ActivateTypeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/BatchDescribeTypeConfigurationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/CancelUpdateStackCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ContinueUpdateRollbackCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/CreateChangeSetCommand.d.ts +8 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/CreateGeneratedTemplateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/CreateStackCommand.d.ts +8 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/CreateStackInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/CreateStackRefactorCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/CreateStackSetCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DeactivateOrganizationsAccessCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DeactivateTypeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DeleteChangeSetCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DeleteGeneratedTemplateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DeleteStackCommand.d.ts +7 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DeleteStackInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DeleteStackSetCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DeregisterTypeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeAccountLimitsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeChangeSetCommand.d.ts +7 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeChangeSetHooksCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeEventsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeGeneratedTemplateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeOrganizationsAccessCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribePublisherCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeResourceScanCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeStackDriftDetectionStatusCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeStackEventsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeStackInstanceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeStackRefactorCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeStackResourceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeStackResourceDriftsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeStackResourcesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeStackSetCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeStackSetOperationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeStacksCommand.d.ts +7 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeTypeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeTypeRegistrationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DetectStackDriftCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DetectStackResourceDriftCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DetectStackSetDriftCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/EstimateTemplateCostCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ExecuteChangeSetCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ExecuteStackRefactorCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/GetGeneratedTemplateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/GetHookResultCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/GetStackPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/GetTemplateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/GetTemplateSummaryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ImportStacksToStackSetCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListChangeSetsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListExportsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListGeneratedTemplatesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListHookResultsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListImportsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListResourceScanRelatedResourcesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListResourceScanResourcesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListResourceScansCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListStackInstanceResourceDriftsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListStackInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListStackRefactorActionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListStackRefactorsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListStackResourcesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListStackSetAutoDeploymentTargetsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListStackSetOperationResultsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListStackSetOperationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListStackSetsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListStacksCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListTypeRegistrationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListTypeVersionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListTypesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/PublishTypeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/RecordHandlerProgressCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/RegisterPublisherCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/RegisterTypeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/RollbackStackCommand.d.ts +7 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/SetStackPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/SetTypeConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/SetTypeDefaultVersionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/SignalResourceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/StartResourceScanCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/StopStackSetOperationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/TestTypeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/UpdateGeneratedTemplateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/UpdateStackCommand.d.ts +8 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/UpdateStackInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/UpdateStackSetCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/UpdateTerminationProtectionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ValidateTemplateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/models/enums.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/models/models_0.d.ts +107 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/runtimeConfig.d.ts +2 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/runtimeConfig.native.d.ts +2 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/schemas/schemas_0.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ActivateOrganizationsAccessCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ActivateTypeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/BatchDescribeTypeConfigurationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/CancelUpdateStackCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ContinueUpdateRollbackCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/CreateChangeSetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/CreateGeneratedTemplateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/CreateStackCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/CreateStackInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/CreateStackRefactorCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/CreateStackSetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DeactivateOrganizationsAccessCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DeactivateTypeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DeleteChangeSetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DeleteGeneratedTemplateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DeleteStackCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DeleteStackInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DeleteStackSetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DeregisterTypeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeAccountLimitsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeChangeSetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeChangeSetHooksCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeEventsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeGeneratedTemplateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeOrganizationsAccessCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribePublisherCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeResourceScanCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeStackDriftDetectionStatusCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeStackEventsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeStackInstanceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeStackRefactorCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeStackResourceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeStackResourceDriftsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeStackResourcesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeStackSetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeStackSetOperationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeStacksCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeTypeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeTypeRegistrationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DetectStackDriftCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DetectStackResourceDriftCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DetectStackSetDriftCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/EstimateTemplateCostCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ExecuteChangeSetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ExecuteStackRefactorCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/GetGeneratedTemplateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/GetHookResultCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/GetStackPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/GetTemplateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/GetTemplateSummaryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ImportStacksToStackSetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListChangeSetsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListExportsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListGeneratedTemplatesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListHookResultsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListImportsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListResourceScanRelatedResourcesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListResourceScanResourcesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListResourceScansCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListStackInstanceResourceDriftsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListStackInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListStackRefactorActionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListStackRefactorsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListStackResourcesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListStackSetAutoDeploymentTargetsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListStackSetOperationResultsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListStackSetOperationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListStackSetsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListStacksCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListTypeRegistrationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListTypeVersionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListTypesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/PublishTypeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/RecordHandlerProgressCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/RegisterPublisherCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/RegisterTypeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/RollbackStackCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/SetStackPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/SetTypeConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/SetTypeDefaultVersionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/SignalResourceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/StartResourceScanCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/StopStackSetOperationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/TestTypeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/UpdateGeneratedTemplateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/UpdateStackCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/UpdateStackInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/UpdateStackSetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/UpdateTerminationProtectionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ValidateTemplateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/models/enums.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/models/models_0.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/package.json +8 -10
- package/node_modules/@aws-sdk/client-cloudwatch/README.md +58 -13
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/index.js +2359 -616
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/CloudWatch.js +4 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commandBuilder.js +12 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/AssociateDatasetKmsKeyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DeleteAlarmMuteRuleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DeleteAlarmsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DeleteAnomalyDetectorCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DeleteDashboardsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DeleteInsightRulesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DeleteMetricStreamCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DescribeAlarmContributorsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DescribeAlarmHistoryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DescribeAlarmsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DescribeAlarmsForMetricCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DescribeAnomalyDetectorsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DescribeInsightRulesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DisableAlarmActionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DisableInsightRulesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DisassociateDatasetKmsKeyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/EnableAlarmActionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/EnableInsightRulesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetAlarmMuteRuleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetDashboardCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetDatasetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetInsightRuleReportCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetMetricDataCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetMetricStatisticsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetMetricStreamCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetMetricWidgetImageCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetOTelEnrichmentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/ListAlarmMuteRulesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/ListDashboardsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/ListManagedInsightRulesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/ListMetricStreamsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/ListMetricsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/ListTagsForResourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/PutAlarmMuteRuleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/PutAnomalyDetectorCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/PutCompositeAlarmCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/PutDashboardCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/PutInsightRuleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/PutLogAlarmCommand.js +4 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/PutManagedInsightRulesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/PutMetricAlarmCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/PutMetricDataCommand.js +2 -20
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/PutMetricStreamCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/SetAlarmStateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/StartMetricStreamsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/StartOTelEnrichmentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/StopMetricStreamsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/StopOTelEnrichmentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/TagResourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/UntagResourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/index.js +1 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/models/enums.js +1 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/models/errors.js +12 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/runtimeConfig.browser.js +0 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/runtimeConfig.js +1 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/runtimeConfig.shared.js +2 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/schemas/schemas_0.js +88 -15
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/waiters/index.js +1 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/waiters/waitForLogAlarmExists.js +32 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/CloudWatch.d.ts +64 -13
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/CloudWatchClient.d.ts +54 -15
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commandBuilder.d.ts +22 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/AssociateDatasetKmsKeyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DeleteAlarmMuteRuleCommand.d.ts +10 -11
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DeleteAlarmsCommand.d.ts +11 -13
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DeleteAnomalyDetectorCommand.d.ts +5 -9
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DeleteDashboardsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DeleteInsightRulesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DeleteMetricStreamCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DescribeAlarmContributorsCommand.d.ts +6 -9
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DescribeAlarmHistoryCommand.d.ts +6 -11
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DescribeAlarmsCommand.d.ts +57 -11
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DescribeAlarmsForMetricCommand.d.ts +9 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DescribeAnomalyDetectorsCommand.d.ts +8 -9
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DescribeInsightRulesCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DisableAlarmActionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DisableInsightRulesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DisassociateDatasetKmsKeyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/EnableAlarmActionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/EnableInsightRulesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetAlarmMuteRuleCommand.d.ts +14 -13
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetDashboardCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetDatasetCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetInsightRuleReportCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetMetricDataCommand.d.ts +6 -11
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetMetricStatisticsCommand.d.ts +5 -10
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetMetricStreamCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetMetricWidgetImageCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetOTelEnrichmentCommand.d.ts +5 -11
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/ListAlarmMuteRulesCommand.d.ts +10 -11
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/ListDashboardsCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/ListManagedInsightRulesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/ListMetricStreamsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/ListMetricsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutAlarmMuteRuleCommand.d.ts +27 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutAnomalyDetectorCommand.d.ts +8 -11
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutCompositeAlarmCommand.d.ts +9 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutDashboardCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutInsightRuleCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutLogAlarmCommand.d.ts +126 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutManagedInsightRulesCommand.d.ts +7 -12
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutMetricAlarmCommand.d.ts +19 -18
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutMetricDataCommand.d.ts +5 -10
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutMetricStreamCommand.d.ts +9 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/SetAlarmStateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/StartMetricStreamsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/StartOTelEnrichmentCommand.d.ts +10 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/StopMetricStreamsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/StopOTelEnrichmentCommand.d.ts +6 -12
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/TagResourceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/UntagResourceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/index.d.ts +52 -13
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/models/enums.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/models/errors.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/models/models_0.d.ts +878 -294
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/runtimeConfig.d.ts +2 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/runtimeConfig.native.d.ts +2 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/schemas/schemas_0.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/CloudWatch.d.ts +26 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/CloudWatchClient.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commandBuilder.d.ts +52 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/AssociateDatasetKmsKeyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DeleteAlarmMuteRuleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DeleteAlarmsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DeleteAnomalyDetectorCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DeleteDashboardsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DeleteInsightRulesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DeleteMetricStreamCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DescribeAlarmContributorsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DescribeAlarmHistoryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DescribeAlarmsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DescribeAlarmsForMetricCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DescribeAnomalyDetectorsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DescribeInsightRulesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DisableAlarmActionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DisableInsightRulesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DisassociateDatasetKmsKeyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/EnableAlarmActionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/EnableInsightRulesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetAlarmMuteRuleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetDashboardCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetDatasetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetInsightRuleReportCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetMetricDataCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetMetricStatisticsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetMetricStreamCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetMetricWidgetImageCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetOTelEnrichmentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/ListAlarmMuteRulesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/ListDashboardsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/ListManagedInsightRulesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/ListMetricStreamsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/ListMetricsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/PutAlarmMuteRuleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/PutAnomalyDetectorCommand.d.ts +8 -17
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/PutCompositeAlarmCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/PutDashboardCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/PutInsightRuleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/PutLogAlarmCommand.d.ts +38 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/PutManagedInsightRulesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/PutMetricAlarmCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/PutMetricDataCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/PutMetricStreamCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/SetAlarmStateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/StartMetricStreamsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/StartOTelEnrichmentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/StopMetricStreamsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/StopOTelEnrichmentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/TagResourceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/models/enums.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/models/errors.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/models/models_0.d.ts +98 -5
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/waiters/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/waiters/waitForLogAlarmExists.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/waiters/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/waiters/waitForLogAlarmExists.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cloudwatch/package.json +10 -12
- package/node_modules/@aws-sdk/client-ec2/README.md +21 -0
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/index.js +37234 -9343
- package/node_modules/@aws-sdk/client-ec2/dist-es/EC2.js +6 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commandBuilder.js +10 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AcceptAddressTransferCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AcceptCapacityReservationBillingOwnershipCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AcceptReservedInstancesExchangeQuoteCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AcceptTransitGatewayClientVpnAttachmentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AcceptTransitGatewayMulticastDomainAssociationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AcceptTransitGatewayPeeringAttachmentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AcceptTransitGatewayVpcAttachmentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AcceptVpcEndpointConnectionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AcceptVpcPeeringConnectionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AdvertiseByoipCidrCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AllocateAddressCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AllocateHostsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AllocateIpamPoolCidrCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ApplySecurityGroupsToClientVpnTargetNetworkCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssignIpv6AddressesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssignPrivateIpAddressesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssignPrivateNatGatewayAddressCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateAddressCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateCapacityReservationBillingOwnerCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateClientVpnTargetNetworkCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateDhcpOptionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateEnclaveCertificateIamRoleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateIamInstanceProfileCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateInstanceEventWindowCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateIpamByoasnCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateIpamResourceDiscoveryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateNatGatewayAddressCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateRouteServerCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateRouteTableCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateSecurityGroupVpcCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateSubnetCidrBlockCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateTransitGatewayMulticastDomainCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateTransitGatewayPolicyTableCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateTransitGatewayRouteTableCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateTrunkInterfaceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateVpcCidrBlockCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AttachClassicLinkVpcCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AttachImageWatermarkCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AttachInternetGatewayCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AttachNetworkInterfaceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AttachVerifiedAccessTrustProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AttachVolumeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AttachVpnGatewayCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AuthorizeClientVpnIngressCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AuthorizeSecurityGroupEgressCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AuthorizeSecurityGroupIngressCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/BundleInstanceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelBundleTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelCapacityReservationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelCapacityReservationFleetsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelConversionTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelDeclarativePoliciesReportCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelExportTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelImageLaunchPermissionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelImportTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelReservedInstancesListingCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelSpotFleetRequestsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelSpotInstanceRequestsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ConfirmProductInstanceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CopyFpgaImageCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CopyImageCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CopySnapshotCommand.js +2 -18
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CopyVolumesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateCapacityManagerDataExportCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateCapacityReservationBySplittingCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateCapacityReservationCancellationQuoteCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateCapacityReservationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateCapacityReservationFleetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateCarrierGatewayCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateClientVpnEndpointCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateClientVpnRouteCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateCoipCidrCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateCoipPoolCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateCustomerGatewayCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateDefaultSubnetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateDefaultVpcCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateDelegateMacVolumeOwnershipTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateDhcpOptionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateEgressOnlyInternetGatewayCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateFleetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateFlowLogsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateFpgaImageCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateImageCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateImageUsageReportCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateInstanceConnectEndpointCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateInstanceEventWindowCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateInstanceExportTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateInternetGatewayCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateInterruptibleCapacityReservationAllocationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateIpamCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateIpamExternalResourceVerificationTokenCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateIpamPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateIpamPoolCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateIpamPrefixListResolverCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateIpamPrefixListResolverTargetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateIpamResourceDiscoveryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateIpamScopeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateKeyPairCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateLaunchTemplateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateLaunchTemplateVersionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateLocalGatewayRouteCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateLocalGatewayRouteTableCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateLocalGatewayRouteTableVpcAssociationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateLocalGatewayVirtualInterfaceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateLocalGatewayVirtualInterfaceGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateMacSystemIntegrityProtectionModificationTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateManagedPrefixListCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateNatGatewayCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateNetworkAclCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateNetworkAclEntryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateNetworkInsightsAccessScopeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateNetworkInsightsPathCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateNetworkInterfaceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateNetworkInterfacePermissionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreatePlacementGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreatePublicIpv4PoolCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateReplaceRootVolumeTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateReservedInstancesListingCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateRestoreImageTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateRouteCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateRouteServerCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateRouteServerEndpointCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateRouteServerPeerCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateRouteTableCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateSecondaryNetworkCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateSecondarySubnetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateSecurityGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateSnapshotCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateSnapshotsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateSpotDatafeedSubscriptionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateStoreImageTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateSubnetCidrReservationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateSubnetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTagsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTrafficMirrorFilterCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTrafficMirrorFilterRuleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTrafficMirrorSessionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTrafficMirrorTargetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayConnectCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayConnectPeerCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayMeteringPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayMeteringPolicyEntryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayMulticastDomainCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayPeeringAttachmentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayPolicyTableCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayPrefixListReferenceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayRouteCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayRouteTableAnnouncementCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayRouteTableCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayVpcAttachmentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVerifiedAccessEndpointCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVerifiedAccessGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVerifiedAccessInstanceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVerifiedAccessTrustProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVolumeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpcBlockPublicAccessExclusionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpcCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpcEncryptionControlCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpcEndpointCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpcEndpointConnectionNotificationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpcEndpointServiceConfigurationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpcPeeringConnectionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpnConcentratorCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpnConnectionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpnConnectionRouteCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpnGatewayCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteCapacityManagerDataExportCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteCarrierGatewayCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteClientVpnEndpointCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteClientVpnRouteCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteCoipCidrCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteCoipPoolCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteCustomerGatewayCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteDhcpOptionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteEgressOnlyInternetGatewayCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteFleetsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteFlowLogsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteFpgaImageCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteImageUsageReportCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteInstanceConnectEndpointCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteInstanceEventWindowCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteInternetGatewayCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteIpamCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteIpamExternalResourceVerificationTokenCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteIpamPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteIpamPoolCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteIpamPrefixListResolverCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteIpamPrefixListResolverTargetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteIpamResourceDiscoveryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteIpamScopeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteKeyPairCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteLaunchTemplateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteLaunchTemplateVersionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteLocalGatewayRouteCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteLocalGatewayRouteTableCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteLocalGatewayRouteTableVpcAssociationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteLocalGatewayVirtualInterfaceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteLocalGatewayVirtualInterfaceGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteManagedPrefixListCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteNatGatewayCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteNetworkAclCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteNetworkAclEntryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteNetworkInsightsAccessScopeAnalysisCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteNetworkInsightsAccessScopeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteNetworkInsightsAnalysisCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteNetworkInsightsPathCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteNetworkInterfaceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteNetworkInterfacePermissionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeletePlacementGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeletePublicIpv4PoolCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteQueuedReservedInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteRouteCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteRouteServerCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteRouteServerEndpointCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteRouteServerPeerCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteRouteTableCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteSecondaryNetworkCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteSecondarySubnetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteSecurityGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteSnapshotCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteSpotDatafeedSubscriptionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteSubnetCidrReservationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteSubnetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTagsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTrafficMirrorFilterCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTrafficMirrorFilterRuleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTrafficMirrorSessionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTrafficMirrorTargetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayClientVpnAttachmentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayConnectCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayConnectPeerCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayMeteringPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayMeteringPolicyEntryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayMulticastDomainCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayPeeringAttachmentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayPolicyTableCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayPrefixListReferenceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayRouteCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayRouteTableAnnouncementCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayRouteTableCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayVpcAttachmentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVerifiedAccessEndpointCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVerifiedAccessGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVerifiedAccessInstanceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVerifiedAccessTrustProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVolumeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpcBlockPublicAccessExclusionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpcCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpcEncryptionControlCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpcEndpointConnectionNotificationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpcEndpointServiceConfigurationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpcEndpointsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpcPeeringConnectionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpnConcentratorCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpnConnectionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpnConnectionRouteCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpnGatewayCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeprovisionByoipCidrCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeprovisionIpamByoasnCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeprovisionIpamPoolCidrCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeprovisionPublicIpv4PoolCidrCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeregisterImageCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeregisterInstanceEventNotificationAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeregisterTransitGatewayMulticastGroupMembersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeregisterTransitGatewayMulticastGroupSourcesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeAccountAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeAccountVpcEncryptionControlCommand.js +4 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeAddressTransfersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeAddressesAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeAddressesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeAggregateIdFormatCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeAvailabilityZonesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeAwsNetworkPerformanceMetricSubscriptionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeBundleTasksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeByoipCidrsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityBlockExtensionHistoryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityBlockExtensionOfferingsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityBlockOfferingsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityBlockStatusCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityBlocksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityManagerDataExportsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityReservationBillingRequestsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityReservationCancellationQuotesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityReservationFleetsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityReservationTopologyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityReservationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCarrierGatewaysCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeClassicLinkInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeClientVpnAuthorizationRulesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeClientVpnConnectionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeClientVpnEndpointsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeClientVpnRoutesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeClientVpnTargetNetworksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCoipPoolsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeConversionTasksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCustomerGatewaysCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeDeclarativePoliciesReportsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeDhcpOptionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeEgressOnlyInternetGatewaysCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeElasticGpusCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeExportImageTasksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeExportTasksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeFastLaunchImagesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeFastSnapshotRestoresCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeFleetHistoryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeFleetInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeFleetsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeFlowLogsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeFpgaImageAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeFpgaImagesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeHostReservationOfferingsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeHostReservationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeHostsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIamInstanceProfileAssociationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIdFormatCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIdentityIdFormatCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeImageAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeImageReferencesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeImageUsageReportEntriesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeImageUsageReportsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeImagesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeImportImageTasksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeImportSnapshotTasksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceConnectEndpointsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceCreditSpecificationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceEventNotificationAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceEventWindowsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceImageMetadataCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceSqlHaHistoryStatesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceSqlHaStatesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceStatusCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceTopologyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceTypeOfferingsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceTypesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInternetGatewaysCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamByoasnCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamExternalResourceVerificationTokensCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamPoliciesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamPoolAllocationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamPoolsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamPrefixListResolverTargetsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamPrefixListResolversCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamResourceDiscoveriesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamResourceDiscoveryAssociationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamScopesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpv6PoolsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeKeyPairsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeLaunchTemplateVersionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeLaunchTemplatesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeLocalGatewayRouteTableVpcAssociationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeLocalGatewayRouteTablesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeLocalGatewayVirtualInterfaceGroupsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeLocalGatewayVirtualInterfacesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeLocalGatewaysCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeLockedSnapshotsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeMacHostsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeMacModificationTasksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeManagedPrefixListsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeMovingAddressesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeNatGatewaysCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeNetworkAclsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeNetworkInsightsAccessScopeAnalysesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeNetworkInsightsAccessScopesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeNetworkInsightsAnalysesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeNetworkInsightsPathsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeNetworkInterfaceAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeNetworkInterfacePermissionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeNetworkInterfacesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeOutpostLagsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribePlacementGroupsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribePrefixListsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribePrincipalIdFormatCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribePublicIpv4PoolsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeRegionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeReplaceRootVolumeTasksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeReservedInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeReservedInstancesListingsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeReservedInstancesModificationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeReservedInstancesOfferingsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeRouteServerEndpointsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeRouteServerPeersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeRouteServersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeRouteTablesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeScheduledInstanceAvailabilityCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeScheduledInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSecondaryInterfacesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSecondaryNetworksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSecondarySubnetsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSecurityGroupReferencesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSecurityGroupRulesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSecurityGroupVpcAssociationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSecurityGroupsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeServiceLinkVirtualInterfacesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSnapshotAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSnapshotTierStatusCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSnapshotsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSpotDatafeedSubscriptionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSpotFleetInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSpotFleetRequestHistoryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSpotFleetRequestsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSpotInstanceRequestsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSpotPriceHistoryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeStaleSecurityGroupsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeStoreImageTasksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSubnetsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTagsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTrafficMirrorFilterRulesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTrafficMirrorFiltersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTrafficMirrorSessionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTrafficMirrorTargetsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewayAttachmentsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewayConnectPeersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewayConnectsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewayMeteringPoliciesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewayMulticastDomainsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewayPeeringAttachmentsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewayPolicyTablesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewayRouteTableAnnouncementsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewayRouteTablesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewayVpcAttachmentsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewaysCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTrunkInterfaceAssociationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVerifiedAccessEndpointsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVerifiedAccessGroupsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVerifiedAccessInstanceLoggingConfigurationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVerifiedAccessInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVerifiedAccessTrustProvidersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVolumeAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVolumeStatusCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVolumesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVolumesModificationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcBlockPublicAccessExclusionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcBlockPublicAccessOptionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcClassicLinkCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcClassicLinkDnsSupportCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcEncryptionControlsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcEndpointAssociationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcEndpointConnectionNotificationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcEndpointConnectionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcEndpointServiceConfigurationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcEndpointServicePermissionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcEndpointServicesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcEndpointsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcPeeringConnectionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpnConcentratorsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpnConnectionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpnGatewaysCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DetachClassicLinkVpcCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DetachImageWatermarkCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DetachInternetGatewayCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DetachNetworkInterfaceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DetachVerifiedAccessTrustProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DetachVolumeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DetachVpnGatewayCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableAddressTransferCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableAllowedImagesSettingsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableAwsNetworkPerformanceMetricSubscriptionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableCapacityManagerCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableEbsEncryptionByDefaultCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableFastLaunchCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableFastSnapshotRestoresCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableImageBlockPublicAccessCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableImageCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableImageDeprecationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableImageDeregistrationProtectionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableInstanceSqlHaStandbyDetectionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableIpamOrganizationAdminAccountCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableIpamPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableRouteServerPropagationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableSerialConsoleAccessCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableSnapshotBlockPublicAccessCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableTransitGatewayRouteTablePropagationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableVgwRoutePropagationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableVpcClassicLinkCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableVpcClassicLinkDnsSupportCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateAddressCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateCapacityReservationBillingOwnerCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateClientVpnTargetNetworkCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateEnclaveCertificateIamRoleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateIamInstanceProfileCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateInstanceEventWindowCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateIpamByoasnCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateIpamResourceDiscoveryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateNatGatewayAddressCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateRouteServerCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateRouteTableCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateSecurityGroupVpcCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateSubnetCidrBlockCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateTransitGatewayMulticastDomainCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateTransitGatewayPolicyTableCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateTransitGatewayRouteTableCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateTrunkInterfaceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateVpcCidrBlockCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableAddressTransferCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableAllowedImagesSettingsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableAwsNetworkPerformanceMetricSubscriptionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableCapacityManagerCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableEbsEncryptionByDefaultCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableFastLaunchCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableFastSnapshotRestoresCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableImageBlockPublicAccessCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableImageCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableImageDeprecationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableImageDeregistrationProtectionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableInstanceSqlHaStandbyDetectionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableIpamOrganizationAdminAccountCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableIpamPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableReachabilityAnalyzerOrganizationSharingCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableRouteServerPropagationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableSerialConsoleAccessCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableSnapshotBlockPublicAccessCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableTransitGatewayRouteTablePropagationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableVgwRoutePropagationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableVolumeIOCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableVpcClassicLinkCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableVpcClassicLinkDnsSupportCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ExportClientVpnClientCertificateRevocationListCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ExportClientVpnClientConfigurationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ExportImageCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ExportTransitGatewayRoutesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ExportVerifiedAccessInstanceClientConfigurationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetActiveVpnTunnelStatusCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetAllowedImagesSettingsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetAssociatedEnclaveCertificateIamRolesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetAssociatedIpv6PoolCidrsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetAwsNetworkPerformanceDataCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetCapacityManagerAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetCapacityManagerMetricDataCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetCapacityManagerMetricDimensionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetCapacityManagerMonitoredTagKeysCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetCapacityReservationUsageCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetCoipPoolUsageCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetConsoleOutputCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetConsoleScreenshotCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetDeclarativePoliciesReportSummaryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetDefaultCreditSpecificationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetEbsDefaultKmsKeyIdCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetEbsEncryptionByDefaultCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetEnabledIpamPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetFlowLogsIntegrationTemplateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetGroupsForCapacityReservationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetHostReservationPurchasePreviewCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetImageAncestryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetImageBlockPublicAccessStateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetInstanceMetadataDefaultsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetInstanceTpmEkPubCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetInstanceTypesFromInstanceRequirementsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetInstanceUefiDataCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamAddressHistoryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamDiscoveredAccountsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamDiscoveredPublicAddressesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamDiscoveredResourceCidrsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamPolicyAllocationRulesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamPolicyOrganizationTargetsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamPoolAllocationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamPoolCidrsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamPrefixListResolverRulesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamPrefixListResolverVersionEntriesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamPrefixListResolverVersionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamResourceCidrsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetLaunchTemplateDataCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetManagedPrefixListAssociationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetManagedPrefixListEntriesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetManagedResourceVisibilityCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetNetworkInsightsAccessScopeAnalysisFindingsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetNetworkInsightsAccessScopeContentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetPasswordDataCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetReservedInstancesExchangeQuoteCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetRouteServerAssociationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetRouteServerPropagationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetRouteServerRoutingDatabaseCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetSecurityGroupsForVpcCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetSerialConsoleAccessStatusCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetSnapshotBlockPublicAccessStateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetSpotPlacementScoresCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetSubnetCidrReservationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetTransitGatewayAttachmentPropagationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetTransitGatewayMeteringPolicyEntriesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetTransitGatewayMulticastDomainAssociationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetTransitGatewayPolicyTableAssociationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetTransitGatewayPolicyTableEntriesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetTransitGatewayPrefixListReferencesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetTransitGatewayRouteTableAssociationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetTransitGatewayRouteTablePropagationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetVerifiedAccessEndpointPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetVerifiedAccessEndpointTargetsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetVerifiedAccessGroupPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetVpcResourcesBlockingEncryptionEnforcementCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetVpnConnectionDeviceSampleConfigurationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetVpnConnectionDeviceTypesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetVpnTunnelReplacementStatusCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ImportClientVpnClientCertificateRevocationListCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ImportImageCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ImportInstanceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ImportKeyPairCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ImportSnapshotCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ImportVolumeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ListImagesInRecycleBinCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ListSnapshotsInRecycleBinCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ListVolumesInRecycleBinCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/LockSnapshotCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyAccountVpcEncryptionControlCommand.js +4 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyAddressAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyAvailabilityZoneGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyCapacityReservationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyCapacityReservationFleetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyClientVpnEndpointCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyDefaultCreditSpecificationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyEbsDefaultKmsKeyIdCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyFleetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyFpgaImageAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyHostsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIdFormatCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIdentityIdFormatCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyImageAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceCapacityReservationAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceConnectEndpointCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceCpuOptionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceCreditSpecificationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceEventStartTimeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceEventWindowCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceMaintenanceOptionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceMetadataDefaultsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceMetadataOptionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceNetworkPerformanceOptionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstancePlacementCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIpamCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIpamPolicyAllocationRulesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIpamPoolAllocationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIpamPoolCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIpamPrefixListResolverCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIpamPrefixListResolverTargetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIpamResourceCidrCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIpamResourceDiscoveryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIpamScopeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyLaunchTemplateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyLocalGatewayRouteCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyManagedPrefixListCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyManagedResourceVisibilityCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyNetworkInterfaceAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyPrivateDnsNameOptionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyPublicIpDnsNameOptionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyReservedInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyRouteServerCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifySecurityGroupRulesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifySnapshotAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifySnapshotTierCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifySpotFleetRequestCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifySubnetAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyTrafficMirrorFilterNetworkServicesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyTrafficMirrorFilterRuleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyTrafficMirrorSessionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyTransitGatewayCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyTransitGatewayMeteringPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyTransitGatewayPrefixListReferenceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyTransitGatewayVpcAttachmentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVerifiedAccessEndpointCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVerifiedAccessEndpointPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVerifiedAccessGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVerifiedAccessGroupPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVerifiedAccessInstanceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVerifiedAccessInstanceLoggingConfigurationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVerifiedAccessTrustProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVolumeAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVolumeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcBlockPublicAccessExclusionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcBlockPublicAccessOptionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcEncryptionControlCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcEndpointCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcEndpointConnectionNotificationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcEndpointPayerResponsibilityCommand.js +4 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcEndpointServiceConfigurationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcEndpointServicePayerResponsibilityCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcEndpointServicePermissionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcPeeringConnectionOptionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcTenancyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpnConnectionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpnConnectionOptionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpnTunnelCertificateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpnTunnelOptionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/MonitorInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/MoveAddressToVpcCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/MoveByoipCidrToIpamCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/MoveCapacityReservationInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ProvisionByoipCidrCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ProvisionIpamByoasnCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ProvisionIpamPoolCidrCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ProvisionPublicIpv4PoolCidrCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/PurchaseCapacityBlockCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/PurchaseCapacityBlockExtensionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/PurchaseHostReservationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/PurchaseReservedInstancesOfferingCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/PurchaseScheduledInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RebootInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RegisterImageCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RegisterInstanceEventNotificationAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RegisterTransitGatewayMulticastGroupMembersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RegisterTransitGatewayMulticastGroupSourcesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RejectCapacityReservationBillingOwnershipCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RejectTransitGatewayClientVpnAttachmentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RejectTransitGatewayMulticastDomainAssociationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RejectTransitGatewayPeeringAttachmentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RejectTransitGatewayVpcAttachmentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RejectVpcEndpointConnectionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RejectVpcPeeringConnectionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReleaseAddressCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReleaseHostsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReleaseIpamPoolAllocationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReplaceIamInstanceProfileAssociationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReplaceImageCriteriaInAllowedImagesSettingsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReplaceNetworkAclAssociationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReplaceNetworkAclEntryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReplaceRouteCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReplaceRouteTableAssociationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReplaceTransitGatewayRouteCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReplaceVpnTunnelCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReportInstanceStatusCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RequestSpotFleetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RequestSpotInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ResetAddressAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ResetEbsDefaultKmsKeyIdCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ResetFpgaImageAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ResetImageAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ResetInstanceAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ResetNetworkInterfaceAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ResetSnapshotAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RestoreAddressToClassicCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RestoreImageFromRecycleBinCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RestoreManagedPrefixListVersionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RestoreSnapshotFromRecycleBinCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RestoreSnapshotTierCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RestoreVolumeFromRecycleBinCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RevokeClientVpnIngressCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RevokeSecurityGroupEgressCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RevokeSecurityGroupIngressCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RunInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RunScheduledInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/SearchLocalGatewayRoutesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/SearchTransitGatewayMulticastGroupsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/SearchTransitGatewayRoutesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/SendDiagnosticInterruptCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/StartDeclarativePoliciesReportCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/StartInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/StartNetworkInsightsAccessScopeAnalysisCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/StartNetworkInsightsAnalysisCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/StartVpcEndpointServicePrivateDnsVerificationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/StopInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/TerminateClientVpnConnectionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/TerminateInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UnassignIpv6AddressesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UnassignPrivateIpAddressesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UnassignPrivateNatGatewayAddressCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UnlockSnapshotCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UnmonitorInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UpdateCapacityManagerMonitoredTagKeysCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UpdateCapacityManagerOrganizationsAccessCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UpdateInterruptibleCapacityReservationAllocationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UpdateSecurityGroupRuleDescriptionsEgressCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UpdateSecurityGroupRuleDescriptionsIngressCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/WithdrawByoipCidrCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/index.js +3 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/models/enums.js +236 -10
- package/node_modules/@aws-sdk/client-ec2/dist-es/runtimeConfig.browser.js +0 -2
- package/node_modules/@aws-sdk/client-ec2/dist-es/runtimeConfig.js +1 -2
- package/node_modules/@aws-sdk/client-ec2/dist-es/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/client-ec2/dist-es/runtimeConfig.shared.js +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/schemas/schemas_0.js +240 -104
- package/node_modules/@aws-sdk/client-ec2/dist-types/EC2.d.ts +23 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/EC2Client.d.ts +5 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commandBuilder.d.ts +22 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptAddressTransferCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptCapacityReservationBillingOwnershipCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptReservedInstancesExchangeQuoteCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptTransitGatewayClientVpnAttachmentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptTransitGatewayMulticastDomainAssociationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptTransitGatewayPeeringAttachmentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptTransitGatewayVpcAttachmentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptVpcEndpointConnectionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptVpcPeeringConnectionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AdvertiseByoipCidrCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AllocateAddressCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AllocateHostsCommand.d.ts +6 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AllocateIpamPoolCidrCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ApplySecurityGroupsToClientVpnTargetNetworkCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssignIpv6AddressesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssignPrivateIpAddressesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssignPrivateNatGatewayAddressCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateAddressCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateCapacityReservationBillingOwnerCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateClientVpnTargetNetworkCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateDhcpOptionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateEnclaveCertificateIamRoleCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateIamInstanceProfileCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateInstanceEventWindowCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateIpamByoasnCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateIpamResourceDiscoveryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateNatGatewayAddressCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateRouteServerCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateRouteTableCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateSecurityGroupVpcCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateSubnetCidrBlockCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateTransitGatewayMulticastDomainCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateTransitGatewayPolicyTableCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateTransitGatewayRouteTableCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateTrunkInterfaceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateVpcCidrBlockCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AttachClassicLinkVpcCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AttachImageWatermarkCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AttachInternetGatewayCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AttachNetworkInterfaceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AttachVerifiedAccessTrustProviderCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AttachVolumeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AttachVpnGatewayCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AuthorizeClientVpnIngressCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AuthorizeSecurityGroupEgressCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AuthorizeSecurityGroupIngressCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/BundleInstanceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelBundleTaskCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelCapacityReservationCommand.d.ts +19 -18
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelCapacityReservationFleetsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelConversionTaskCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelDeclarativePoliciesReportCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelExportTaskCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelImageLaunchPermissionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelImportTaskCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelReservedInstancesListingCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelSpotFleetRequestsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelSpotInstanceRequestsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ConfirmProductInstanceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CopyFpgaImageCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CopyImageCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CopySnapshotCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CopyVolumesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityManagerDataExportCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityReservationBySplittingCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityReservationCancellationQuoteCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityReservationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityReservationFleetCommand.d.ts +5 -10
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCarrierGatewayCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateClientVpnEndpointCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateClientVpnRouteCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCoipCidrCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCoipPoolCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCustomerGatewayCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateDefaultSubnetCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateDefaultVpcCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateDelegateMacVolumeOwnershipTaskCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateDhcpOptionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateEgressOnlyInternetGatewayCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateFleetCommand.d.ts +21 -12
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateFlowLogsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateFpgaImageCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateImageCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateImageUsageReportCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInstanceConnectEndpointCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInstanceEventWindowCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInstanceExportTaskCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInternetGatewayCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInterruptibleCapacityReservationAllocationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamExternalResourceVerificationTokenCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamPoolCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamPrefixListResolverCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamPrefixListResolverTargetCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamResourceDiscoveryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamScopeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateKeyPairCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLaunchTemplateCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLaunchTemplateVersionCommand.d.ts +5 -10
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayRouteCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayRouteTableCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayRouteTableVpcAssociationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayVirtualInterfaceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayVirtualInterfaceGroupCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateMacSystemIntegrityProtectionModificationTaskCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateManagedPrefixListCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNatGatewayCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkAclCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkAclEntryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkInsightsAccessScopeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkInsightsPathCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkInterfaceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkInterfacePermissionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreatePlacementGroupCommand.d.ts +10 -11
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreatePublicIpv4PoolCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateReplaceRootVolumeTaskCommand.d.ts +7 -10
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateReservedInstancesListingCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRestoreImageTaskCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteServerCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteServerEndpointCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteServerPeerCommand.d.ts +4 -10
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteTableCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSecondaryNetworkCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSecondarySubnetCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSecurityGroupCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSnapshotCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSnapshotsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSpotDatafeedSubscriptionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateStoreImageTaskCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSubnetCidrReservationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSubnetCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTagsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTrafficMirrorFilterCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTrafficMirrorFilterRuleCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTrafficMirrorSessionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTrafficMirrorTargetCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayConnectCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayConnectPeerCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayMeteringPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayMeteringPolicyEntryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayMulticastDomainCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayPeeringAttachmentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayPolicyTableCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayPrefixListReferenceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayRouteCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayRouteTableAnnouncementCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayRouteTableCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayVpcAttachmentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVerifiedAccessEndpointCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVerifiedAccessGroupCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVerifiedAccessInstanceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVerifiedAccessTrustProviderCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVolumeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcBlockPublicAccessExclusionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcEncryptionControlCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcEndpointCommand.d.ts +9 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcEndpointConnectionNotificationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcEndpointServiceConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcPeeringConnectionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpnConcentratorCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpnConnectionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpnConnectionRouteCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpnGatewayCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteCapacityManagerDataExportCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteCarrierGatewayCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteClientVpnEndpointCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteClientVpnRouteCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteCoipCidrCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteCoipPoolCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteCustomerGatewayCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteDhcpOptionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteEgressOnlyInternetGatewayCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteFleetsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteFlowLogsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteFpgaImageCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteImageUsageReportCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteInstanceConnectEndpointCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteInstanceEventWindowCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteInternetGatewayCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteIpamCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteIpamExternalResourceVerificationTokenCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteIpamPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteIpamPoolCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteIpamPrefixListResolverCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteIpamPrefixListResolverTargetCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteIpamResourceDiscoveryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteIpamScopeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteKeyPairCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteLaunchTemplateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteLaunchTemplateVersionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteLocalGatewayRouteCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteLocalGatewayRouteTableCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteLocalGatewayRouteTableVpcAssociationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteLocalGatewayVirtualInterfaceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteLocalGatewayVirtualInterfaceGroupCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteManagedPrefixListCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteNatGatewayCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteNetworkAclCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteNetworkAclEntryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteNetworkInsightsAccessScopeAnalysisCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteNetworkInsightsAccessScopeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteNetworkInsightsAnalysisCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteNetworkInsightsPathCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteNetworkInterfaceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteNetworkInterfacePermissionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeletePlacementGroupCommand.d.ts +6 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeletePublicIpv4PoolCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteQueuedReservedInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteRouteCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteRouteServerCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteRouteServerEndpointCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteRouteServerPeerCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteRouteTableCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSecondaryNetworkCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSecondarySubnetCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSecurityGroupCommand.d.ts +4 -10
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSnapshotCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSpotDatafeedSubscriptionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSubnetCidrReservationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSubnetCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTagsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTrafficMirrorFilterCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTrafficMirrorFilterRuleCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTrafficMirrorSessionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTrafficMirrorTargetCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayClientVpnAttachmentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayConnectCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayConnectPeerCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayMeteringPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayMeteringPolicyEntryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayMulticastDomainCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayPeeringAttachmentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayPolicyTableCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayPrefixListReferenceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayRouteCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayRouteTableAnnouncementCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayRouteTableCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayVpcAttachmentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVerifiedAccessEndpointCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVerifiedAccessGroupCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVerifiedAccessInstanceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVerifiedAccessTrustProviderCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVolumeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpcBlockPublicAccessExclusionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpcCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpcEncryptionControlCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpcEndpointConnectionNotificationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpcEndpointServiceConfigurationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpcEndpointsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpcPeeringConnectionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpnConcentratorCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpnConnectionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpnConnectionRouteCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpnGatewayCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeprovisionByoipCidrCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeprovisionIpamByoasnCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeprovisionIpamPoolCidrCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeprovisionPublicIpv4PoolCidrCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeregisterImageCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeregisterInstanceEventNotificationAttributesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeregisterTransitGatewayMulticastGroupMembersCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeregisterTransitGatewayMulticastGroupSourcesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeAccountAttributesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeAccountVpcEncryptionControlCommand.d.ts +87 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeAddressTransfersCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeAddressesAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeAddressesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeAggregateIdFormatCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeAvailabilityZonesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeAwsNetworkPerformanceMetricSubscriptionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeBundleTasksCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeByoipCidrsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityBlockExtensionHistoryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityBlockExtensionOfferingsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityBlockOfferingsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityBlockStatusCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityBlocksCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityManagerDataExportsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityReservationBillingRequestsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityReservationCancellationQuotesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityReservationFleetsCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityReservationTopologyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityReservationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCarrierGatewaysCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeClassicLinkInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeClientVpnAuthorizationRulesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeClientVpnConnectionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeClientVpnEndpointsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeClientVpnRoutesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeClientVpnTargetNetworksCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCoipPoolsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeConversionTasksCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCustomerGatewaysCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeDeclarativePoliciesReportsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeDhcpOptionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeEgressOnlyInternetGatewaysCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeElasticGpusCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeExportImageTasksCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeExportTasksCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFastLaunchImagesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFastSnapshotRestoresCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFleetHistoryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFleetInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFleetsCommand.d.ts +7 -12
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFlowLogsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFpgaImageAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFpgaImagesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeHostReservationOfferingsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeHostReservationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeHostsCommand.d.ts +7 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIamInstanceProfileAssociationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIdFormatCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIdentityIdFormatCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImageAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImageReferencesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImageUsageReportEntriesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImageUsageReportsCommand.d.ts +5 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImagesCommand.d.ts +4 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImportImageTasksCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImportSnapshotTasksCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceConnectEndpointsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceCreditSpecificationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceEventNotificationAttributesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceEventWindowsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceImageMetadataCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceSqlHaHistoryStatesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceSqlHaStatesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceStatusCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceTopologyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceTypeOfferingsCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceTypesCommand.d.ts +5 -10
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstancesCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInternetGatewaysCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamByoasnCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamExternalResourceVerificationTokensCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamPoliciesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamPoolAllocationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamPoolsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamPrefixListResolverTargetsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamPrefixListResolversCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamResourceDiscoveriesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamResourceDiscoveryAssociationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamScopesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpv6PoolsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeKeyPairsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLaunchTemplateVersionsCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLaunchTemplatesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLocalGatewayRouteTableVpcAssociationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLocalGatewayRouteTablesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLocalGatewayVirtualInterfaceGroupsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLocalGatewayVirtualInterfacesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLocalGatewaysCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLockedSnapshotsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeMacHostsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeMacModificationTasksCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeManagedPrefixListsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeMovingAddressesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeNatGatewaysCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeNetworkAclsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeNetworkInsightsAccessScopeAnalysesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeNetworkInsightsAccessScopesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeNetworkInsightsAnalysesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeNetworkInsightsPathsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeNetworkInterfaceAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeNetworkInterfacePermissionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeNetworkInterfacesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeOutpostLagsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribePlacementGroupsCommand.d.ts +5 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribePrefixListsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribePrincipalIdFormatCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribePublicIpv4PoolsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeRegionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeReplaceRootVolumeTasksCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeReservedInstancesCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeReservedInstancesListingsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeReservedInstancesModificationsCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeReservedInstancesOfferingsCommand.d.ts +5 -10
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeRouteServerEndpointsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeRouteServerPeersCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeRouteServersCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeRouteTablesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeScheduledInstanceAvailabilityCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeScheduledInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSecondaryInterfacesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSecondaryNetworksCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSecondarySubnetsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSecurityGroupReferencesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSecurityGroupRulesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSecurityGroupVpcAssociationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSecurityGroupsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeServiceLinkVirtualInterfacesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSnapshotAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSnapshotTierStatusCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSnapshotsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotDatafeedSubscriptionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotFleetInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotFleetRequestHistoryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotFleetRequestsCommand.d.ts +7 -11
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotInstanceRequestsCommand.d.ts +5 -11
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotPriceHistoryCommand.d.ts +5 -10
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeStaleSecurityGroupsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeStoreImageTasksCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSubnetsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTagsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTrafficMirrorFilterRulesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTrafficMirrorFiltersCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTrafficMirrorSessionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTrafficMirrorTargetsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewayAttachmentsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewayConnectPeersCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewayConnectsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewayMeteringPoliciesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewayMulticastDomainsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewayPeeringAttachmentsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewayPolicyTablesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewayRouteTableAnnouncementsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewayRouteTablesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewayVpcAttachmentsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewaysCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTrunkInterfaceAssociationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVerifiedAccessEndpointsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVerifiedAccessGroupsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVerifiedAccessInstanceLoggingConfigurationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVerifiedAccessInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVerifiedAccessTrustProvidersCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVolumeAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVolumeStatusCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVolumesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVolumesModificationsCommand.d.ts +9 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcBlockPublicAccessExclusionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcBlockPublicAccessOptionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcClassicLinkCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcClassicLinkDnsSupportCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcEncryptionControlsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcEndpointAssociationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcEndpointConnectionNotificationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcEndpointConnectionsCommand.d.ts +9 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcEndpointServiceConfigurationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcEndpointServicePermissionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcEndpointServicesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcEndpointsCommand.d.ts +9 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcPeeringConnectionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpnConcentratorsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpnConnectionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpnGatewaysCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DetachClassicLinkVpcCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DetachImageWatermarkCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DetachInternetGatewayCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DetachNetworkInterfaceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DetachVerifiedAccessTrustProviderCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DetachVolumeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DetachVpnGatewayCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableAddressTransferCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableAllowedImagesSettingsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableAwsNetworkPerformanceMetricSubscriptionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableCapacityManagerCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableEbsEncryptionByDefaultCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableFastLaunchCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableFastSnapshotRestoresCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableImageBlockPublicAccessCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableImageCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableImageDeprecationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableImageDeregistrationProtectionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableInstanceSqlHaStandbyDetectionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableIpamOrganizationAdminAccountCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableIpamPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableRouteServerPropagationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableSerialConsoleAccessCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableSnapshotBlockPublicAccessCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableTransitGatewayRouteTablePropagationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableVgwRoutePropagationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableVpcClassicLinkCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableVpcClassicLinkDnsSupportCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateAddressCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateCapacityReservationBillingOwnerCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateClientVpnTargetNetworkCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateEnclaveCertificateIamRoleCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateIamInstanceProfileCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateInstanceEventWindowCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateIpamByoasnCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateIpamResourceDiscoveryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateNatGatewayAddressCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateRouteServerCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateRouteTableCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateSecurityGroupVpcCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateSubnetCidrBlockCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateTransitGatewayMulticastDomainCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateTransitGatewayPolicyTableCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateTransitGatewayRouteTableCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateTrunkInterfaceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateVpcCidrBlockCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableAddressTransferCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableAllowedImagesSettingsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableAwsNetworkPerformanceMetricSubscriptionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableCapacityManagerCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableEbsEncryptionByDefaultCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableFastLaunchCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableFastSnapshotRestoresCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableImageBlockPublicAccessCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableImageCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableImageDeprecationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableImageDeregistrationProtectionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableInstanceSqlHaStandbyDetectionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableIpamOrganizationAdminAccountCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableIpamPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableReachabilityAnalyzerOrganizationSharingCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableRouteServerPropagationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableSerialConsoleAccessCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableSnapshotBlockPublicAccessCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableTransitGatewayRouteTablePropagationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableVgwRoutePropagationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableVolumeIOCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableVpcClassicLinkCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableVpcClassicLinkDnsSupportCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ExportClientVpnClientCertificateRevocationListCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ExportClientVpnClientConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ExportImageCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ExportTransitGatewayRoutesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ExportVerifiedAccessInstanceClientConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetActiveVpnTunnelStatusCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetAllowedImagesSettingsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetAssociatedEnclaveCertificateIamRolesCommand.d.ts +5 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetAssociatedIpv6PoolCidrsCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetAwsNetworkPerformanceDataCommand.d.ts +4 -10
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerAttributesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerMetricDataCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerMetricDimensionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerMonitoredTagKeysCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityReservationUsageCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCoipPoolUsageCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetConsoleOutputCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetConsoleScreenshotCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetDeclarativePoliciesReportSummaryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetDefaultCreditSpecificationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetEbsDefaultKmsKeyIdCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetEbsEncryptionByDefaultCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetEnabledIpamPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetFlowLogsIntegrationTemplateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetGroupsForCapacityReservationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetHostReservationPurchasePreviewCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetImageAncestryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetImageBlockPublicAccessStateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetInstanceMetadataDefaultsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetInstanceTpmEkPubCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetInstanceTypesFromInstanceRequirementsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetInstanceUefiDataCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamAddressHistoryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamDiscoveredAccountsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamDiscoveredPublicAddressesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamDiscoveredResourceCidrsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamPolicyAllocationRulesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamPolicyOrganizationTargetsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamPoolAllocationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamPoolCidrsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamPrefixListResolverRulesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamPrefixListResolverVersionEntriesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamPrefixListResolverVersionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamResourceCidrsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetLaunchTemplateDataCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetManagedPrefixListAssociationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetManagedPrefixListEntriesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetManagedResourceVisibilityCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetNetworkInsightsAccessScopeAnalysisFindingsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetNetworkInsightsAccessScopeContentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetPasswordDataCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetReservedInstancesExchangeQuoteCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetRouteServerAssociationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetRouteServerPropagationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetRouteServerRoutingDatabaseCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetSecurityGroupsForVpcCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetSerialConsoleAccessStatusCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetSnapshotBlockPublicAccessStateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetSpotPlacementScoresCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetSubnetCidrReservationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayAttachmentPropagationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayMeteringPolicyEntriesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayMulticastDomainAssociationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayPolicyTableAssociationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayPolicyTableEntriesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayPrefixListReferencesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayRouteTableAssociationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayRouteTablePropagationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetVerifiedAccessEndpointPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetVerifiedAccessEndpointTargetsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetVerifiedAccessGroupPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetVpcResourcesBlockingEncryptionEnforcementCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetVpnConnectionDeviceSampleConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetVpnConnectionDeviceTypesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetVpnTunnelReplacementStatusCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ImportClientVpnClientCertificateRevocationListCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ImportImageCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ImportInstanceCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ImportKeyPairCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ImportSnapshotCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ImportVolumeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ListImagesInRecycleBinCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ListSnapshotsInRecycleBinCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ListVolumesInRecycleBinCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/LockSnapshotCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyAccountVpcEncryptionControlCommand.d.ts +96 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyAddressAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyAvailabilityZoneGroupCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyCapacityReservationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyCapacityReservationFleetCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyClientVpnEndpointCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyDefaultCreditSpecificationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyEbsDefaultKmsKeyIdCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyFleetCommand.d.ts +15 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyFpgaImageAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyHostsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIdFormatCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIdentityIdFormatCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyImageAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceCapacityReservationAttributesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceConnectEndpointCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceCpuOptionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceCreditSpecificationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceEventStartTimeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceEventWindowCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceMaintenanceOptionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceMetadataDefaultsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceMetadataOptionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceNetworkPerformanceOptionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstancePlacementCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamPolicyAllocationRulesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamPoolAllocationCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamPoolCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamPrefixListResolverCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamPrefixListResolverTargetCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamResourceCidrCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamResourceDiscoveryCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamScopeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyLaunchTemplateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyLocalGatewayRouteCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyManagedPrefixListCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyManagedResourceVisibilityCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyNetworkInterfaceAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyPrivateDnsNameOptionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyPublicIpDnsNameOptionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyReservedInstancesCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyRouteServerCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifySecurityGroupRulesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifySnapshotAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifySnapshotTierCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifySpotFleetRequestCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifySubnetAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyTrafficMirrorFilterNetworkServicesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyTrafficMirrorFilterRuleCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyTrafficMirrorSessionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyTransitGatewayCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyTransitGatewayMeteringPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyTransitGatewayPrefixListReferenceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyTransitGatewayVpcAttachmentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVerifiedAccessEndpointCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVerifiedAccessEndpointPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVerifiedAccessGroupCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVerifiedAccessGroupPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVerifiedAccessInstanceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVerifiedAccessInstanceLoggingConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVerifiedAccessTrustProviderCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVolumeAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVolumeCommand.d.ts +8 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcBlockPublicAccessExclusionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcBlockPublicAccessOptionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcEncryptionControlCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcEndpointCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcEndpointConnectionNotificationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcEndpointPayerResponsibilityCommand.d.ts +81 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcEndpointServiceConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcEndpointServicePayerResponsibilityCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcEndpointServicePermissionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcPeeringConnectionOptionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcTenancyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpnConnectionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpnConnectionOptionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpnTunnelCertificateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpnTunnelOptionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/MonitorInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/MoveAddressToVpcCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/MoveByoipCidrToIpamCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/MoveCapacityReservationInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ProvisionByoipCidrCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ProvisionIpamByoasnCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ProvisionIpamPoolCidrCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ProvisionPublicIpv4PoolCidrCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/PurchaseCapacityBlockCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/PurchaseCapacityBlockExtensionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/PurchaseHostReservationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/PurchaseReservedInstancesOfferingCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/PurchaseScheduledInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RebootInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RegisterImageCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RegisterInstanceEventNotificationAttributesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RegisterTransitGatewayMulticastGroupMembersCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RegisterTransitGatewayMulticastGroupSourcesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RejectCapacityReservationBillingOwnershipCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RejectTransitGatewayClientVpnAttachmentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RejectTransitGatewayMulticastDomainAssociationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RejectTransitGatewayPeeringAttachmentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RejectTransitGatewayVpcAttachmentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RejectVpcEndpointConnectionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RejectVpcPeeringConnectionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReleaseAddressCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReleaseHostsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReleaseIpamPoolAllocationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReplaceIamInstanceProfileAssociationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReplaceImageCriteriaInAllowedImagesSettingsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReplaceNetworkAclAssociationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReplaceNetworkAclEntryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReplaceRouteCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReplaceRouteTableAssociationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReplaceTransitGatewayRouteCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReplaceVpnTunnelCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReportInstanceStatusCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RequestSpotFleetCommand.d.ts +5 -10
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RequestSpotInstancesCommand.d.ts +5 -10
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ResetAddressAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ResetEbsDefaultKmsKeyIdCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ResetFpgaImageAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ResetImageAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ResetInstanceAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ResetNetworkInterfaceAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ResetSnapshotAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RestoreAddressToClassicCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RestoreImageFromRecycleBinCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RestoreManagedPrefixListVersionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RestoreSnapshotFromRecycleBinCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RestoreSnapshotTierCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RestoreVolumeFromRecycleBinCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RevokeClientVpnIngressCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RevokeSecurityGroupEgressCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RevokeSecurityGroupIngressCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RunInstancesCommand.d.ts +5 -10
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RunScheduledInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/SearchLocalGatewayRoutesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/SearchTransitGatewayMulticastGroupsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/SearchTransitGatewayRoutesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/SendDiagnosticInterruptCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/StartDeclarativePoliciesReportCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/StartInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/StartNetworkInsightsAccessScopeAnalysisCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/StartNetworkInsightsAnalysisCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/StartVpcEndpointServicePrivateDnsVerificationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/StopInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/TerminateClientVpnConnectionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/TerminateInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UnassignIpv6AddressesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UnassignPrivateIpAddressesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UnassignPrivateNatGatewayAddressCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UnlockSnapshotCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UnmonitorInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UpdateCapacityManagerMonitoredTagKeysCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UpdateCapacityManagerOrganizationsAccessCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UpdateInterruptibleCapacityReservationAllocationCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UpdateSecurityGroupRuleDescriptionsEgressCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UpdateSecurityGroupRuleDescriptionsIngressCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/WithdrawByoipCidrCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/enums.d.ts +308 -26
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_0.d.ts +96 -201
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_1.d.ts +348 -117
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_2.d.ts +133 -114
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_3.d.ts +201 -333
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_4.d.ts +335 -851
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_5.d.ts +866 -243
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_6.d.ts +311 -273
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_7.d.ts +321 -265
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_8.d.ts +260 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/runtimeConfig.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/runtimeConfig.native.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/schemas/schemas_0.d.ts +16 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/EC2.d.ts +71 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/EC2Client.d.ts +18 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commandBuilder.d.ts +52 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AcceptAddressTransferCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AcceptCapacityReservationBillingOwnershipCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AcceptReservedInstancesExchangeQuoteCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AcceptTransitGatewayClientVpnAttachmentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AcceptTransitGatewayMulticastDomainAssociationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AcceptTransitGatewayPeeringAttachmentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AcceptTransitGatewayVpcAttachmentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AcceptVpcEndpointConnectionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AcceptVpcPeeringConnectionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AdvertiseByoipCidrCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AllocateAddressCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AllocateHostsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AllocateIpamPoolCidrCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ApplySecurityGroupsToClientVpnTargetNetworkCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssignIpv6AddressesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssignPrivateIpAddressesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssignPrivateNatGatewayAddressCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateAddressCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateCapacityReservationBillingOwnerCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateClientVpnTargetNetworkCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateDhcpOptionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateEnclaveCertificateIamRoleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateIamInstanceProfileCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateInstanceEventWindowCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateIpamByoasnCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateIpamResourceDiscoveryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateNatGatewayAddressCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateRouteServerCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateRouteTableCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateSecurityGroupVpcCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateSubnetCidrBlockCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateTransitGatewayMulticastDomainCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateTransitGatewayPolicyTableCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateTransitGatewayRouteTableCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateTrunkInterfaceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateVpcCidrBlockCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AttachClassicLinkVpcCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AttachImageWatermarkCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AttachInternetGatewayCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AttachNetworkInterfaceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AttachVerifiedAccessTrustProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AttachVolumeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AttachVpnGatewayCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AuthorizeClientVpnIngressCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AuthorizeSecurityGroupEgressCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AuthorizeSecurityGroupIngressCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/BundleInstanceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelBundleTaskCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelCapacityReservationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelCapacityReservationFleetsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelConversionTaskCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelDeclarativePoliciesReportCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelExportTaskCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelImageLaunchPermissionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelImportTaskCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelReservedInstancesListingCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelSpotFleetRequestsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelSpotInstanceRequestsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ConfirmProductInstanceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CopyFpgaImageCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CopyImageCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CopySnapshotCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CopyVolumesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateCapacityManagerDataExportCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateCapacityReservationBySplittingCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateCapacityReservationCancellationQuoteCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateCapacityReservationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateCapacityReservationFleetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateCarrierGatewayCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateClientVpnEndpointCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateClientVpnRouteCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateCoipCidrCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateCoipPoolCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateCustomerGatewayCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateDefaultSubnetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateDefaultVpcCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateDelegateMacVolumeOwnershipTaskCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateDhcpOptionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateEgressOnlyInternetGatewayCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateFleetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateFlowLogsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateFpgaImageCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateImageCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateImageUsageReportCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateInstanceConnectEndpointCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateInstanceEventWindowCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateInstanceExportTaskCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateInternetGatewayCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateInterruptibleCapacityReservationAllocationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateIpamCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateIpamExternalResourceVerificationTokenCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateIpamPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateIpamPoolCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateIpamPrefixListResolverCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateIpamPrefixListResolverTargetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateIpamResourceDiscoveryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateIpamScopeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateKeyPairCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateLaunchTemplateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateLaunchTemplateVersionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateLocalGatewayRouteCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateLocalGatewayRouteTableCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateLocalGatewayRouteTableVpcAssociationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateLocalGatewayVirtualInterfaceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateLocalGatewayVirtualInterfaceGroupCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateMacSystemIntegrityProtectionModificationTaskCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateManagedPrefixListCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateNatGatewayCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateNetworkAclCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateNetworkAclEntryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateNetworkInsightsAccessScopeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateNetworkInsightsPathCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateNetworkInterfaceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateNetworkInterfacePermissionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreatePlacementGroupCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreatePublicIpv4PoolCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateReplaceRootVolumeTaskCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateReservedInstancesListingCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateRestoreImageTaskCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateRouteCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateRouteServerCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateRouteServerEndpointCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateRouteServerPeerCommand.d.ts +10 -17
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateRouteTableCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateSecondaryNetworkCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateSecondarySubnetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateSecurityGroupCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateSnapshotCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateSnapshotsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateSpotDatafeedSubscriptionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateStoreImageTaskCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateSubnetCidrReservationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateSubnetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTagsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTrafficMirrorFilterCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTrafficMirrorFilterRuleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTrafficMirrorSessionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTrafficMirrorTargetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayConnectCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayConnectPeerCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayMeteringPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayMeteringPolicyEntryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayMulticastDomainCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayPeeringAttachmentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayPolicyTableCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayPrefixListReferenceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayRouteCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayRouteTableAnnouncementCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayRouteTableCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayVpcAttachmentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVerifiedAccessEndpointCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVerifiedAccessGroupCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVerifiedAccessInstanceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVerifiedAccessTrustProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVolumeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpcBlockPublicAccessExclusionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpcCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpcEncryptionControlCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpcEndpointCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpcEndpointConnectionNotificationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpcEndpointServiceConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpcPeeringConnectionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpnConcentratorCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpnConnectionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpnConnectionRouteCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpnGatewayCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteCapacityManagerDataExportCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteCarrierGatewayCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteClientVpnEndpointCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteClientVpnRouteCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteCoipCidrCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteCoipPoolCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteCustomerGatewayCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteDhcpOptionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteEgressOnlyInternetGatewayCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteFleetsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteFlowLogsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteFpgaImageCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteImageUsageReportCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteInstanceConnectEndpointCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteInstanceEventWindowCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteInternetGatewayCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteIpamCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteIpamExternalResourceVerificationTokenCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteIpamPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteIpamPoolCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteIpamPrefixListResolverCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteIpamPrefixListResolverTargetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteIpamResourceDiscoveryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteIpamScopeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteKeyPairCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteLaunchTemplateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteLaunchTemplateVersionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteLocalGatewayRouteCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteLocalGatewayRouteTableCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteLocalGatewayRouteTableVpcAssociationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteLocalGatewayVirtualInterfaceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteLocalGatewayVirtualInterfaceGroupCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteManagedPrefixListCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteNatGatewayCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteNetworkAclCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteNetworkAclEntryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteNetworkInsightsAccessScopeAnalysisCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteNetworkInsightsAccessScopeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteNetworkInsightsAnalysisCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteNetworkInsightsPathCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteNetworkInterfaceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteNetworkInterfacePermissionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeletePlacementGroupCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeletePublicIpv4PoolCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteQueuedReservedInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteRouteCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteRouteServerCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteRouteServerEndpointCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteRouteServerPeerCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteRouteTableCommand.d.ts +8 -17
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSecondaryNetworkCommand.d.ts +8 -17
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSecondarySubnetCommand.d.ts +8 -17
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSecurityGroupCommand.d.ts +10 -17
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSnapshotCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSpotDatafeedSubscriptionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSubnetCidrReservationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSubnetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTrafficMirrorFilterCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTrafficMirrorFilterRuleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTrafficMirrorSessionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTrafficMirrorTargetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayClientVpnAttachmentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayConnectCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayConnectPeerCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayMeteringPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayMeteringPolicyEntryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayMulticastDomainCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayPeeringAttachmentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayPolicyTableCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayPrefixListReferenceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayRouteCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayRouteTableAnnouncementCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayRouteTableCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayVpcAttachmentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVerifiedAccessEndpointCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVerifiedAccessGroupCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVerifiedAccessInstanceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVerifiedAccessTrustProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVolumeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpcBlockPublicAccessExclusionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpcCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpcEncryptionControlCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpcEndpointConnectionNotificationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpcEndpointServiceConfigurationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpcEndpointsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpcPeeringConnectionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpnConcentratorCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpnConnectionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpnConnectionRouteCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpnGatewayCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeprovisionByoipCidrCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeprovisionIpamByoasnCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeprovisionIpamPoolCidrCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeprovisionPublicIpv4PoolCidrCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeregisterImageCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeregisterInstanceEventNotificationAttributesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeregisterTransitGatewayMulticastGroupMembersCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeregisterTransitGatewayMulticastGroupSourcesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeAccountAttributesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeAccountVpcEncryptionControlCommand.d.ts +44 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeAddressTransfersCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeAddressesAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeAddressesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeAggregateIdFormatCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeAvailabilityZonesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeAwsNetworkPerformanceMetricSubscriptionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeBundleTasksCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeByoipCidrsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityBlockExtensionHistoryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityBlockExtensionOfferingsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityBlockOfferingsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityBlockStatusCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityBlocksCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityManagerDataExportsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityReservationBillingRequestsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityReservationCancellationQuotesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityReservationFleetsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityReservationTopologyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityReservationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCarrierGatewaysCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeClassicLinkInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeClientVpnAuthorizationRulesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeClientVpnConnectionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeClientVpnEndpointsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeClientVpnRoutesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeClientVpnTargetNetworksCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCoipPoolsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeConversionTasksCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCustomerGatewaysCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeDeclarativePoliciesReportsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeDhcpOptionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeEgressOnlyInternetGatewaysCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeElasticGpusCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeExportImageTasksCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeExportTasksCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeFastLaunchImagesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeFastSnapshotRestoresCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeFleetHistoryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeFleetInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeFleetsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeFlowLogsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeFpgaImageAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeFpgaImagesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeHostReservationOfferingsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeHostReservationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeHostsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIamInstanceProfileAssociationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIdFormatCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIdentityIdFormatCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeImageAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeImageReferencesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeImageUsageReportEntriesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeImageUsageReportsCommand.d.ts +9 -20
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeImagesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeImportImageTasksCommand.d.ts +8 -17
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeImportSnapshotTasksCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceConnectEndpointsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceCreditSpecificationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceEventNotificationAttributesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceEventWindowsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceImageMetadataCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceSqlHaHistoryStatesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceSqlHaStatesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceStatusCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceTopologyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceTypeOfferingsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceTypesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInternetGatewaysCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamByoasnCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamExternalResourceVerificationTokensCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamPoliciesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamPoolAllocationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamPoolsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamPrefixListResolverTargetsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamPrefixListResolversCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamResourceDiscoveriesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamResourceDiscoveryAssociationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamScopesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpv6PoolsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeKeyPairsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeLaunchTemplateVersionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeLaunchTemplatesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeLocalGatewayRouteTableVpcAssociationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeLocalGatewayRouteTablesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeLocalGatewayVirtualInterfaceGroupsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeLocalGatewayVirtualInterfacesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeLocalGatewaysCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeLockedSnapshotsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeMacHostsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeMacModificationTasksCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeManagedPrefixListsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeMovingAddressesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeNatGatewaysCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeNetworkAclsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeNetworkInsightsAccessScopeAnalysesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeNetworkInsightsAccessScopesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeNetworkInsightsAnalysesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeNetworkInsightsPathsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeNetworkInterfaceAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeNetworkInterfacePermissionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeNetworkInterfacesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeOutpostLagsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribePlacementGroupsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribePrefixListsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribePrincipalIdFormatCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribePublicIpv4PoolsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeRegionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeReplaceRootVolumeTasksCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeReservedInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeReservedInstancesListingsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeReservedInstancesModificationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeReservedInstancesOfferingsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeRouteServerEndpointsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeRouteServerPeersCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeRouteServersCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeRouteTablesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeScheduledInstanceAvailabilityCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeScheduledInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSecondaryInterfacesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSecondaryNetworksCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSecondarySubnetsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSecurityGroupReferencesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSecurityGroupRulesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSecurityGroupVpcAssociationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSecurityGroupsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeServiceLinkVirtualInterfacesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSnapshotAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSnapshotTierStatusCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSnapshotsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSpotDatafeedSubscriptionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSpotFleetInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSpotFleetRequestHistoryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSpotFleetRequestsCommand.d.ts +9 -20
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSpotInstanceRequestsCommand.d.ts +10 -17
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSpotPriceHistoryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeStaleSecurityGroupsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeStoreImageTasksCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSubnetsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTagsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTrafficMirrorFilterRulesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTrafficMirrorFiltersCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTrafficMirrorSessionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTrafficMirrorTargetsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewayAttachmentsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewayConnectPeersCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewayConnectsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewayMeteringPoliciesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewayMulticastDomainsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewayPeeringAttachmentsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewayPolicyTablesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewayRouteTableAnnouncementsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewayRouteTablesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewayVpcAttachmentsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewaysCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTrunkInterfaceAssociationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVerifiedAccessEndpointsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVerifiedAccessGroupsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVerifiedAccessInstanceLoggingConfigurationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVerifiedAccessInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVerifiedAccessTrustProvidersCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVolumeAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVolumeStatusCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVolumesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVolumesModificationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcBlockPublicAccessExclusionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcBlockPublicAccessOptionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcClassicLinkCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcClassicLinkDnsSupportCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcEncryptionControlsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcEndpointAssociationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcEndpointConnectionNotificationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcEndpointConnectionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcEndpointServiceConfigurationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcEndpointServicePermissionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcEndpointServicesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcEndpointsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcPeeringConnectionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpnConcentratorsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpnConnectionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpnGatewaysCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DetachClassicLinkVpcCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DetachImageWatermarkCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DetachInternetGatewayCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DetachNetworkInterfaceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DetachVerifiedAccessTrustProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DetachVolumeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DetachVpnGatewayCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableAddressTransferCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableAllowedImagesSettingsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableAwsNetworkPerformanceMetricSubscriptionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableCapacityManagerCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableEbsEncryptionByDefaultCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableFastLaunchCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableFastSnapshotRestoresCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableImageBlockPublicAccessCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableImageCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableImageDeprecationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableImageDeregistrationProtectionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableInstanceSqlHaStandbyDetectionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableIpamOrganizationAdminAccountCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableIpamPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableRouteServerPropagationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableSerialConsoleAccessCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableSnapshotBlockPublicAccessCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableTransitGatewayRouteTablePropagationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableVgwRoutePropagationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableVpcClassicLinkCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableVpcClassicLinkDnsSupportCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateAddressCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateCapacityReservationBillingOwnerCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateClientVpnTargetNetworkCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateEnclaveCertificateIamRoleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateIamInstanceProfileCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateInstanceEventWindowCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateIpamByoasnCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateIpamResourceDiscoveryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateNatGatewayAddressCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateRouteServerCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateRouteTableCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateSecurityGroupVpcCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateSubnetCidrBlockCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateTransitGatewayMulticastDomainCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateTransitGatewayPolicyTableCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateTransitGatewayRouteTableCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateTrunkInterfaceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateVpcCidrBlockCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableAddressTransferCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableAllowedImagesSettingsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableAwsNetworkPerformanceMetricSubscriptionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableCapacityManagerCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableEbsEncryptionByDefaultCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableFastLaunchCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableFastSnapshotRestoresCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableImageBlockPublicAccessCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableImageCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableImageDeprecationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableImageDeregistrationProtectionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableInstanceSqlHaStandbyDetectionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableIpamOrganizationAdminAccountCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableIpamPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableReachabilityAnalyzerOrganizationSharingCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableRouteServerPropagationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableSerialConsoleAccessCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableSnapshotBlockPublicAccessCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableTransitGatewayRouteTablePropagationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableVgwRoutePropagationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableVolumeIOCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableVpcClassicLinkCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableVpcClassicLinkDnsSupportCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ExportClientVpnClientCertificateRevocationListCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ExportClientVpnClientConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ExportImageCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ExportTransitGatewayRoutesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ExportVerifiedAccessInstanceClientConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetActiveVpnTunnelStatusCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetAllowedImagesSettingsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetAssociatedEnclaveCertificateIamRolesCommand.d.ts +9 -20
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetAssociatedIpv6PoolCidrsCommand.d.ts +8 -17
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetAwsNetworkPerformanceDataCommand.d.ts +10 -17
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityManagerAttributesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityManagerMetricDataCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityManagerMetricDimensionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityManagerMonitoredTagKeysCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityReservationUsageCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCoipPoolUsageCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetConsoleOutputCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetConsoleScreenshotCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetDeclarativePoliciesReportSummaryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetDefaultCreditSpecificationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetEbsDefaultKmsKeyIdCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetEbsEncryptionByDefaultCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetEnabledIpamPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetFlowLogsIntegrationTemplateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetGroupsForCapacityReservationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetHostReservationPurchasePreviewCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetImageAncestryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetImageBlockPublicAccessStateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetInstanceMetadataDefaultsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetInstanceTpmEkPubCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetInstanceTypesFromInstanceRequirementsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetInstanceUefiDataCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamAddressHistoryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamDiscoveredAccountsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamDiscoveredPublicAddressesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamDiscoveredResourceCidrsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamPolicyAllocationRulesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamPolicyOrganizationTargetsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamPoolAllocationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamPoolCidrsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamPrefixListResolverRulesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamPrefixListResolverVersionEntriesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamPrefixListResolverVersionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamResourceCidrsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetLaunchTemplateDataCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetManagedPrefixListAssociationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetManagedPrefixListEntriesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetManagedResourceVisibilityCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetNetworkInsightsAccessScopeAnalysisFindingsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetNetworkInsightsAccessScopeContentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetPasswordDataCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetReservedInstancesExchangeQuoteCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetRouteServerAssociationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetRouteServerPropagationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetRouteServerRoutingDatabaseCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetSecurityGroupsForVpcCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetSerialConsoleAccessStatusCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetSnapshotBlockPublicAccessStateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetSpotPlacementScoresCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetSubnetCidrReservationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetTransitGatewayAttachmentPropagationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetTransitGatewayMeteringPolicyEntriesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetTransitGatewayMulticastDomainAssociationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetTransitGatewayPolicyTableAssociationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetTransitGatewayPolicyTableEntriesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetTransitGatewayPrefixListReferencesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetTransitGatewayRouteTableAssociationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetTransitGatewayRouteTablePropagationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetVerifiedAccessEndpointPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetVerifiedAccessEndpointTargetsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetVerifiedAccessGroupPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetVpcResourcesBlockingEncryptionEnforcementCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetVpnConnectionDeviceSampleConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetVpnConnectionDeviceTypesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetVpnTunnelReplacementStatusCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ImportClientVpnClientCertificateRevocationListCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ImportImageCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ImportInstanceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ImportKeyPairCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ImportSnapshotCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ImportVolumeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ListImagesInRecycleBinCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ListSnapshotsInRecycleBinCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ListVolumesInRecycleBinCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/LockSnapshotCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyAccountVpcEncryptionControlCommand.d.ts +44 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyAddressAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyAvailabilityZoneGroupCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyCapacityReservationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyCapacityReservationFleetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyClientVpnEndpointCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyDefaultCreditSpecificationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyEbsDefaultKmsKeyIdCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyFleetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyFpgaImageAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyHostsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIdFormatCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIdentityIdFormatCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyImageAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceCapacityReservationAttributesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceConnectEndpointCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceCpuOptionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceCreditSpecificationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceEventStartTimeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceEventWindowCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceMaintenanceOptionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceMetadataDefaultsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceMetadataOptionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceNetworkPerformanceOptionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstancePlacementCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamPolicyAllocationRulesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamPoolAllocationCommand.d.ts +8 -17
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamPoolCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamPrefixListResolverCommand.d.ts +8 -17
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamPrefixListResolverTargetCommand.d.ts +8 -17
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamResourceCidrCommand.d.ts +8 -17
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamResourceDiscoveryCommand.d.ts +8 -17
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamScopeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyLaunchTemplateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyLocalGatewayRouteCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyManagedPrefixListCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyManagedResourceVisibilityCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyNetworkInterfaceAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyPrivateDnsNameOptionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyPublicIpDnsNameOptionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyReservedInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyRouteServerCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifySecurityGroupRulesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifySnapshotAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifySnapshotTierCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifySpotFleetRequestCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifySubnetAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyTrafficMirrorFilterNetworkServicesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyTrafficMirrorFilterRuleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyTrafficMirrorSessionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyTransitGatewayCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyTransitGatewayMeteringPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyTransitGatewayPrefixListReferenceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyTransitGatewayVpcAttachmentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVerifiedAccessEndpointCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVerifiedAccessEndpointPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVerifiedAccessGroupCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVerifiedAccessGroupPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVerifiedAccessInstanceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVerifiedAccessInstanceLoggingConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVerifiedAccessTrustProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVolumeAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVolumeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcBlockPublicAccessExclusionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcBlockPublicAccessOptionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcEncryptionControlCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcEndpointCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcEndpointConnectionNotificationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcEndpointPayerResponsibilityCommand.d.ts +44 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcEndpointServiceConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcEndpointServicePayerResponsibilityCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcEndpointServicePermissionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcPeeringConnectionOptionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcTenancyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpnConnectionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpnConnectionOptionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpnTunnelCertificateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpnTunnelOptionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/MonitorInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/MoveAddressToVpcCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/MoveByoipCidrToIpamCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/MoveCapacityReservationInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ProvisionByoipCidrCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ProvisionIpamByoasnCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ProvisionIpamPoolCidrCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ProvisionPublicIpv4PoolCidrCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/PurchaseCapacityBlockCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/PurchaseCapacityBlockExtensionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/PurchaseHostReservationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/PurchaseReservedInstancesOfferingCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/PurchaseScheduledInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RebootInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RegisterImageCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RegisterInstanceEventNotificationAttributesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RegisterTransitGatewayMulticastGroupMembersCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RegisterTransitGatewayMulticastGroupSourcesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RejectCapacityReservationBillingOwnershipCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RejectTransitGatewayClientVpnAttachmentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RejectTransitGatewayMulticastDomainAssociationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RejectTransitGatewayPeeringAttachmentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RejectTransitGatewayVpcAttachmentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RejectVpcEndpointConnectionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RejectVpcPeeringConnectionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReleaseAddressCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReleaseHostsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReleaseIpamPoolAllocationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReplaceIamInstanceProfileAssociationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReplaceImageCriteriaInAllowedImagesSettingsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReplaceNetworkAclAssociationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReplaceNetworkAclEntryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReplaceRouteCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReplaceRouteTableAssociationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReplaceTransitGatewayRouteCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReplaceVpnTunnelCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReportInstanceStatusCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RequestSpotFleetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RequestSpotInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ResetAddressAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ResetEbsDefaultKmsKeyIdCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ResetFpgaImageAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ResetImageAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ResetInstanceAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ResetNetworkInterfaceAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ResetSnapshotAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RestoreAddressToClassicCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RestoreImageFromRecycleBinCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RestoreManagedPrefixListVersionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RestoreSnapshotFromRecycleBinCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RestoreSnapshotTierCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RestoreVolumeFromRecycleBinCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RevokeClientVpnIngressCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RevokeSecurityGroupEgressCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RevokeSecurityGroupIngressCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RunInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RunScheduledInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/SearchLocalGatewayRoutesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/SearchTransitGatewayMulticastGroupsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/SearchTransitGatewayRoutesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/SendDiagnosticInterruptCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/StartDeclarativePoliciesReportCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/StartInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/StartNetworkInsightsAccessScopeAnalysisCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/StartNetworkInsightsAnalysisCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/StartVpcEndpointServicePrivateDnsVerificationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/StopInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/TerminateClientVpnConnectionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/TerminateInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UnassignIpv6AddressesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UnassignPrivateIpAddressesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UnassignPrivateNatGatewayAddressCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UnlockSnapshotCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UnmonitorInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UpdateCapacityManagerMonitoredTagKeysCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UpdateCapacityManagerOrganizationsAccessCommand.d.ts +8 -17
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UpdateInterruptibleCapacityReservationAllocationCommand.d.ts +8 -17
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UpdateSecurityGroupRuleDescriptionsEgressCommand.d.ts +8 -17
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UpdateSecurityGroupRuleDescriptionsIngressCommand.d.ts +8 -17
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/WithdrawByoipCidrCommand.d.ts +8 -17
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/enums.d.ts +252 -13
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_0.d.ts +26 -36
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_1.d.ts +57 -26
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_2.d.ts +32 -31
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_3.d.ts +42 -68
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_4.d.ts +69 -110
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_5.d.ts +126 -58
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_6.d.ts +80 -66
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_7.d.ts +84 -59
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_8.d.ts +59 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/schemas/schemas_0.d.ts +16 -0
- package/node_modules/@aws-sdk/client-ec2/package.json +10 -12
- package/node_modules/@aws-sdk/client-iam/dist-cjs/index.js +5054 -2126
- package/node_modules/@aws-sdk/client-iam/dist-es/commandBuilder.js +6 -0
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/AcceptDelegationRequestCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/AddClientIDToOpenIDConnectProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/AddRoleToInstanceProfileCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/AddUserToGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/AssociateDelegationRequestCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/AttachGroupPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/AttachRolePolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/AttachUserPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ChangePasswordCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateAccessKeyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateAccountAliasCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateDelegationRequestCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateInstanceProfileCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateLoginProfileCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateOpenIDConnectProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreatePolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreatePolicyVersionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateRoleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateSAMLProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateServiceLinkedRoleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateServiceSpecificCredentialCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateUserCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateVirtualMFADeviceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeactivateMFADeviceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteAccessKeyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteAccountAliasCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteAccountPasswordPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteGroupPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteInstanceProfileCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteLoginProfileCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteOpenIDConnectProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeletePolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeletePolicyVersionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteRoleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteRolePermissionsBoundaryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteRolePolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteSAMLProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteSSHPublicKeyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteServerCertificateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteServiceLinkedRoleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteServiceSpecificCredentialCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteSigningCertificateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteUserCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteUserPermissionsBoundaryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteUserPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteVirtualMFADeviceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DetachGroupPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DetachRolePolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DetachUserPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DisableOrganizationsRootCredentialsManagementCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DisableOrganizationsRootSessionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DisableOutboundWebIdentityFederationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/EnableMFADeviceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/EnableOrganizationsRootCredentialsManagementCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/EnableOrganizationsRootSessionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/EnableOutboundWebIdentityFederationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GenerateCredentialReportCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GenerateOrganizationsAccessReportCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GenerateServiceLastAccessedDetailsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetAccessKeyLastUsedCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetAccountAuthorizationDetailsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetAccountPasswordPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetAccountSummaryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetContextKeysForCustomPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetContextKeysForPrincipalPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetCredentialReportCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetDelegationRequestCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetGroupPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetHumanReadableSummaryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetInstanceProfileCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetLoginProfileCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetMFADeviceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetOpenIDConnectProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetOrganizationsAccessReportCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetOutboundWebIdentityFederationInfoCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetPolicyVersionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetRoleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetRolePolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetSAMLProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetSSHPublicKeyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetServerCertificateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetServiceLastAccessedDetailsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetServiceLastAccessedDetailsWithEntitiesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetServiceLinkedRoleDeletionStatusCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetUserCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetUserPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListAccessKeysCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListAccountAliasesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListAttachedGroupPoliciesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListAttachedRolePoliciesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListAttachedUserPoliciesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListDelegationRequestsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListEntitiesForPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListGroupPoliciesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListGroupsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListGroupsForUserCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListInstanceProfileTagsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListInstanceProfilesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListInstanceProfilesForRoleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListMFADeviceTagsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListMFADevicesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListOpenIDConnectProviderTagsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListOpenIDConnectProvidersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListOrganizationsFeaturesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListPoliciesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListPoliciesGrantingServiceAccessCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListPolicyTagsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListPolicyVersionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListRolePoliciesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListRoleTagsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListRolesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListSAMLProviderTagsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListSAMLProvidersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListSSHPublicKeysCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListServerCertificateTagsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListServerCertificatesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListServiceSpecificCredentialsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListSigningCertificatesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListUserPoliciesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListUserTagsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListUsersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListVirtualMFADevicesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/PutGroupPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/PutRolePermissionsBoundaryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/PutRolePolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/PutUserPermissionsBoundaryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/PutUserPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/RejectDelegationRequestCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/RemoveClientIDFromOpenIDConnectProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/RemoveRoleFromInstanceProfileCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/RemoveUserFromGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ResetServiceSpecificCredentialCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ResyncMFADeviceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/SendDelegationTokenCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/SetDefaultPolicyVersionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/SetSecurityTokenServicePreferencesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/SimulateCustomPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/SimulatePrincipalPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/TagInstanceProfileCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/TagMFADeviceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/TagOpenIDConnectProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/TagPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/TagRoleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/TagSAMLProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/TagServerCertificateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/TagUserCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UntagInstanceProfileCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UntagMFADeviceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UntagOpenIDConnectProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UntagPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UntagRoleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UntagSAMLProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UntagServerCertificateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UntagUserCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateAccessKeyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateAccountPasswordPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateAssumeRolePolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateDelegationRequestCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateLoginProfileCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateOpenIDConnectProviderThumbprintCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateRoleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateRoleDescriptionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateSAMLProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateSSHPublicKeyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateServerCertificateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateServiceSpecificCredentialCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateSigningCertificateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateUserCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UploadSSHPublicKeyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UploadServerCertificateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UploadSigningCertificateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-iam/dist-es/runtimeConfig.browser.js +0 -2
- package/node_modules/@aws-sdk/client-iam/dist-es/runtimeConfig.js +1 -2
- package/node_modules/@aws-sdk/client-iam/dist-es/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/client-iam/dist-es/runtimeConfig.shared.js +2 -0
- package/node_modules/@aws-sdk/client-iam/dist-types/commandBuilder.d.ts +18 -0
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/AcceptDelegationRequestCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/AddClientIDToOpenIDConnectProviderCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/AddRoleToInstanceProfileCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/AddUserToGroupCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/AssociateDelegationRequestCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/AttachGroupPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/AttachRolePolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/AttachUserPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ChangePasswordCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateAccessKeyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateAccountAliasCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateDelegationRequestCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateGroupCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateInstanceProfileCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateLoginProfileCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateOpenIDConnectProviderCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreatePolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreatePolicyVersionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateRoleCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateSAMLProviderCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateServiceLinkedRoleCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateServiceSpecificCredentialCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateUserCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateVirtualMFADeviceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeactivateMFADeviceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteAccessKeyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteAccountAliasCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteAccountPasswordPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteGroupCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteGroupPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteInstanceProfileCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteLoginProfileCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteOpenIDConnectProviderCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeletePolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeletePolicyVersionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteRoleCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteRolePermissionsBoundaryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteRolePolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteSAMLProviderCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteSSHPublicKeyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteServerCertificateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteServiceLinkedRoleCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteServiceSpecificCredentialCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteSigningCertificateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteUserCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteUserPermissionsBoundaryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteUserPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteVirtualMFADeviceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DetachGroupPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DetachRolePolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DetachUserPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DisableOrganizationsRootCredentialsManagementCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DisableOrganizationsRootSessionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DisableOutboundWebIdentityFederationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/EnableMFADeviceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/EnableOrganizationsRootCredentialsManagementCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/EnableOrganizationsRootSessionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/EnableOutboundWebIdentityFederationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GenerateCredentialReportCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GenerateOrganizationsAccessReportCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GenerateServiceLastAccessedDetailsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetAccessKeyLastUsedCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetAccountAuthorizationDetailsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetAccountPasswordPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetAccountSummaryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetContextKeysForCustomPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetContextKeysForPrincipalPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetCredentialReportCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetDelegationRequestCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetGroupCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetGroupPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetHumanReadableSummaryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetInstanceProfileCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetLoginProfileCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetMFADeviceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetOpenIDConnectProviderCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetOrganizationsAccessReportCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetOutboundWebIdentityFederationInfoCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetPolicyVersionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetRoleCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetRolePolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetSAMLProviderCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetSSHPublicKeyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetServerCertificateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetServiceLastAccessedDetailsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetServiceLastAccessedDetailsWithEntitiesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetServiceLinkedRoleDeletionStatusCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetUserCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetUserPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListAccessKeysCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListAccountAliasesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListAttachedGroupPoliciesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListAttachedRolePoliciesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListAttachedUserPoliciesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListDelegationRequestsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListEntitiesForPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListGroupPoliciesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListGroupsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListGroupsForUserCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListInstanceProfileTagsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListInstanceProfilesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListInstanceProfilesForRoleCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListMFADeviceTagsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListMFADevicesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListOpenIDConnectProviderTagsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListOpenIDConnectProvidersCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListOrganizationsFeaturesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListPoliciesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListPoliciesGrantingServiceAccessCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListPolicyTagsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListPolicyVersionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListRolePoliciesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListRoleTagsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListRolesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListSAMLProviderTagsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListSAMLProvidersCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListSSHPublicKeysCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListServerCertificateTagsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListServerCertificatesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListServiceSpecificCredentialsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListSigningCertificatesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListUserPoliciesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListUserTagsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListUsersCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListVirtualMFADevicesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/PutGroupPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/PutRolePermissionsBoundaryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/PutRolePolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/PutUserPermissionsBoundaryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/PutUserPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/RejectDelegationRequestCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/RemoveClientIDFromOpenIDConnectProviderCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/RemoveRoleFromInstanceProfileCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/RemoveUserFromGroupCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ResetServiceSpecificCredentialCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ResyncMFADeviceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/SendDelegationTokenCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/SetDefaultPolicyVersionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/SetSecurityTokenServicePreferencesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/SimulateCustomPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/SimulatePrincipalPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/TagInstanceProfileCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/TagMFADeviceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/TagOpenIDConnectProviderCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/TagPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/TagRoleCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/TagSAMLProviderCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/TagServerCertificateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/TagUserCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UntagInstanceProfileCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UntagMFADeviceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UntagOpenIDConnectProviderCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UntagPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UntagRoleCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UntagSAMLProviderCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UntagServerCertificateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UntagUserCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateAccessKeyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateAccountPasswordPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateAssumeRolePolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateDelegationRequestCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateGroupCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateLoginProfileCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateOpenIDConnectProviderThumbprintCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateRoleCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateRoleDescriptionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateSAMLProviderCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateSSHPublicKeyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateServerCertificateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateServiceSpecificCredentialCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateSigningCertificateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateUserCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UploadSSHPublicKeyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UploadServerCertificateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UploadSigningCertificateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-iam/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/node_modules/@aws-sdk/client-iam/dist-types/runtimeConfig.d.ts +2 -2
- package/node_modules/@aws-sdk/client-iam/dist-types/runtimeConfig.native.d.ts +2 -2
- package/node_modules/@aws-sdk/client-iam/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/AcceptDelegationRequestCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/AddClientIDToOpenIDConnectProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/AddRoleToInstanceProfileCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/AddUserToGroupCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/AssociateDelegationRequestCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/AttachGroupPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/AttachRolePolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/AttachUserPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ChangePasswordCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateAccessKeyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateAccountAliasCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateDelegationRequestCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateInstanceProfileCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateLoginProfileCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateOpenIDConnectProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreatePolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreatePolicyVersionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateRoleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateSAMLProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateServiceLinkedRoleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateServiceSpecificCredentialCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateUserCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateVirtualMFADeviceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeactivateMFADeviceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteAccessKeyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteAccountAliasCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteAccountPasswordPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteGroupPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteInstanceProfileCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteLoginProfileCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteOpenIDConnectProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeletePolicyVersionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteRoleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteRolePermissionsBoundaryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteRolePolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteSAMLProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteSSHPublicKeyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteServerCertificateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteServiceLinkedRoleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteServiceSpecificCredentialCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteSigningCertificateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteUserCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteUserPermissionsBoundaryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteUserPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteVirtualMFADeviceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DetachGroupPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DetachRolePolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DetachUserPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DisableOrganizationsRootCredentialsManagementCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DisableOrganizationsRootSessionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DisableOutboundWebIdentityFederationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/EnableMFADeviceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/EnableOrganizationsRootCredentialsManagementCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/EnableOrganizationsRootSessionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/EnableOutboundWebIdentityFederationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GenerateCredentialReportCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GenerateOrganizationsAccessReportCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GenerateServiceLastAccessedDetailsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetAccessKeyLastUsedCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetAccountAuthorizationDetailsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetAccountPasswordPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetAccountSummaryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetContextKeysForCustomPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetContextKeysForPrincipalPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetCredentialReportCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetDelegationRequestCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetGroupCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetGroupPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetHumanReadableSummaryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetInstanceProfileCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetLoginProfileCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetMFADeviceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetOpenIDConnectProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetOrganizationsAccessReportCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetOutboundWebIdentityFederationInfoCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetPolicyVersionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetRoleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetRolePolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetSAMLProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetSSHPublicKeyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetServerCertificateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetServiceLastAccessedDetailsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetServiceLastAccessedDetailsWithEntitiesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetServiceLinkedRoleDeletionStatusCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetUserCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetUserPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListAccessKeysCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListAccountAliasesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListAttachedGroupPoliciesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListAttachedRolePoliciesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListAttachedUserPoliciesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListDelegationRequestsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListEntitiesForPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListGroupPoliciesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListGroupsForUserCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListInstanceProfileTagsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListInstanceProfilesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListInstanceProfilesForRoleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListMFADeviceTagsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListMFADevicesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListOpenIDConnectProviderTagsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListOpenIDConnectProvidersCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListOrganizationsFeaturesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListPoliciesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListPoliciesGrantingServiceAccessCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListPolicyTagsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListPolicyVersionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListRolePoliciesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListRoleTagsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListRolesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListSAMLProviderTagsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListSAMLProvidersCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListSSHPublicKeysCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListServerCertificateTagsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListServerCertificatesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListServiceSpecificCredentialsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListSigningCertificatesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListUserPoliciesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListUserTagsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListUsersCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListVirtualMFADevicesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/PutGroupPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/PutRolePermissionsBoundaryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/PutRolePolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/PutUserPermissionsBoundaryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/PutUserPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/RejectDelegationRequestCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/RemoveClientIDFromOpenIDConnectProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/RemoveRoleFromInstanceProfileCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/RemoveUserFromGroupCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ResetServiceSpecificCredentialCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ResyncMFADeviceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/SendDelegationTokenCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/SetDefaultPolicyVersionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/SetSecurityTokenServicePreferencesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/SimulateCustomPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/SimulatePrincipalPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/TagInstanceProfileCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/TagMFADeviceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/TagOpenIDConnectProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/TagPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/TagRoleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/TagSAMLProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/TagServerCertificateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/TagUserCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UntagInstanceProfileCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UntagMFADeviceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UntagOpenIDConnectProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UntagPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UntagRoleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UntagSAMLProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UntagServerCertificateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UntagUserCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateAccessKeyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateAccountPasswordPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateAssumeRolePolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateDelegationRequestCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateLoginProfileCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateOpenIDConnectProviderThumbprintCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateRoleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateRoleDescriptionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateSAMLProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateSSHPublicKeyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateServerCertificateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateServiceSpecificCredentialCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateSigningCertificateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UploadSSHPublicKeyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UploadServerCertificateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UploadSigningCertificateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-iam/package.json +9 -11
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/index.js +4555 -1044
- package/node_modules/@aws-sdk/client-lambda/dist-es/commandBuilder.js +6 -0
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/AddLayerVersionPermissionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/AddPermissionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/CheckpointDurableExecutionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/CreateAliasCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/CreateCapacityProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/CreateCodeSigningConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/CreateEventSourceMappingCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/CreateFunctionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/CreateFunctionUrlConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteAliasCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteCapacityProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteCodeSigningConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteEventSourceMappingCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteFunctionCodeSigningConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteFunctionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteFunctionConcurrencyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteFunctionEventInvokeConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteFunctionUrlConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteLayerVersionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteProvisionedConcurrencyConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetAccountSettingsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetAliasCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetCapacityProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetCodeSigningConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetDurableExecutionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetDurableExecutionHistoryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetDurableExecutionStateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetEventSourceMappingCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionCodeSigningConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionConcurrencyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionConfigurationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionEventInvokeConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionRecursionConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionScalingConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionUrlConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetLayerVersionByArnCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetLayerVersionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetLayerVersionPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetProvisionedConcurrencyConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetRuntimeManagementConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/InvokeAsyncCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/InvokeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/InvokeWithResponseStreamCommand.js +2 -18
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListAliasesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListCapacityProvidersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListCodeSigningConfigsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListDurableExecutionsByFunctionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListEventSourceMappingsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListFunctionEventInvokeConfigsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListFunctionUrlConfigsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListFunctionVersionsByCapacityProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListFunctionsByCodeSigningConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListFunctionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListLayerVersionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListLayersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListProvisionedConcurrencyConfigsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListTagsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListVersionsByFunctionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/PublishLayerVersionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/PublishVersionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/PutFunctionCodeSigningConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/PutFunctionConcurrencyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/PutFunctionEventInvokeConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/PutFunctionRecursionConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/PutFunctionScalingConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/PutProvisionedConcurrencyConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/PutRuntimeManagementConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/RemoveLayerVersionPermissionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/RemovePermissionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/SendDurableExecutionCallbackFailureCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/SendDurableExecutionCallbackHeartbeatCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/SendDurableExecutionCallbackSuccessCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/StopDurableExecutionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/TagResourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/UntagResourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateAliasCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateCapacityProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateCodeSigningConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateEventSourceMappingCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateFunctionCodeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateFunctionConfigurationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateFunctionEventInvokeConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateFunctionUrlConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-lambda/dist-es/models/enums.js +9 -5
- package/node_modules/@aws-sdk/client-lambda/dist-es/models/errors.js +64 -64
- package/node_modules/@aws-sdk/client-lambda/dist-es/runtimeConfig.browser.js +0 -2
- package/node_modules/@aws-sdk/client-lambda/dist-es/runtimeConfig.js +1 -2
- package/node_modules/@aws-sdk/client-lambda/dist-es/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/client-lambda/dist-es/runtimeConfig.shared.js +2 -0
- package/node_modules/@aws-sdk/client-lambda/dist-es/schemas/schemas_0.js +59 -32
- package/node_modules/@aws-sdk/client-lambda/dist-types/commandBuilder.d.ts +18 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/AddLayerVersionPermissionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/AddPermissionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CheckpointDurableExecutionCommand.d.ts +15 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateAliasCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateCapacityProviderCommand.d.ts +15 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateCodeSigningConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateEventSourceMappingCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateFunctionCommand.d.ts +6 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateFunctionUrlConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteAliasCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteCapacityProviderCommand.d.ts +9 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteCodeSigningConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteEventSourceMappingCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteFunctionCodeSigningConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteFunctionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteFunctionConcurrencyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteFunctionEventInvokeConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteFunctionUrlConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteLayerVersionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteProvisionedConcurrencyConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetAccountSettingsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetAliasCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetCapacityProviderCommand.d.ts +9 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetCodeSigningConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetDurableExecutionCommand.d.ts +22 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetDurableExecutionHistoryCommand.d.ts +15 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetDurableExecutionStateCommand.d.ts +15 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetEventSourceMappingCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionCodeSigningConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionCommand.d.ts +13 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionConcurrencyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionConfigurationCommand.d.ts +4 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionEventInvokeConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionRecursionConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionScalingConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionUrlConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetLayerVersionByArnCommand.d.ts +8 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetLayerVersionCommand.d.ts +8 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetLayerVersionPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetProvisionedConcurrencyConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetRuntimeManagementConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeAsyncCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeWithResponseStreamCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListAliasesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListCapacityProvidersCommand.d.ts +9 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListCodeSigningConfigsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListDurableExecutionsByFunctionCommand.d.ts +4 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListEventSourceMappingsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListFunctionEventInvokeConfigsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListFunctionUrlConfigsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListFunctionVersionsByCapacityProviderCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListFunctionsByCodeSigningConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListFunctionsCommand.d.ts +4 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListLayerVersionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListLayersCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListProvisionedConcurrencyConfigsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListTagsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListVersionsByFunctionCommand.d.ts +4 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PublishLayerVersionCommand.d.ts +9 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PublishVersionCommand.d.ts +4 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutFunctionCodeSigningConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutFunctionConcurrencyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutFunctionEventInvokeConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutFunctionRecursionConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutFunctionScalingConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutProvisionedConcurrencyConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutRuntimeManagementConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/RemoveLayerVersionPermissionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/RemovePermissionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/SendDurableExecutionCallbackFailureCommand.d.ts +15 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/SendDurableExecutionCallbackHeartbeatCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/SendDurableExecutionCallbackSuccessCommand.d.ts +15 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/StopDurableExecutionCommand.d.ts +15 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/TagResourceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UntagResourceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateAliasCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateCapacityProviderCommand.d.ts +15 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateCodeSigningConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateEventSourceMappingCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionCodeCommand.d.ts +5 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionConfigurationCommand.d.ts +5 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionEventInvokeConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionUrlConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/models/enums.d.ts +27 -9
- package/node_modules/@aws-sdk/client-lambda/dist-types/models/errors.d.ts +56 -56
- package/node_modules/@aws-sdk/client-lambda/dist-types/models/models_0.d.ts +143 -9
- package/node_modules/@aws-sdk/client-lambda/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/node_modules/@aws-sdk/client-lambda/dist-types/runtimeConfig.d.ts +2 -2
- package/node_modules/@aws-sdk/client-lambda/dist-types/runtimeConfig.native.d.ts +2 -2
- package/node_modules/@aws-sdk/client-lambda/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/schemas/schemas_0.d.ts +4 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/AddLayerVersionPermissionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CheckpointDurableExecutionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateAliasCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateCapacityProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateCodeSigningConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateEventSourceMappingCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateFunctionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateFunctionUrlConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteAliasCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteCapacityProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteCodeSigningConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteEventSourceMappingCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionCodeSigningConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionConcurrencyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionEventInvokeConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionUrlConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteLayerVersionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteProvisionedConcurrencyConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetAccountSettingsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetAliasCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetCapacityProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetCodeSigningConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetDurableExecutionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetDurableExecutionHistoryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetDurableExecutionStateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetEventSourceMappingCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionCodeSigningConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionConcurrencyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionEventInvokeConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionRecursionConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionScalingConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionUrlConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetLayerVersionByArnCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetLayerVersionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetLayerVersionPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetProvisionedConcurrencyConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetRuntimeManagementConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/InvokeAsyncCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/InvokeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/InvokeWithResponseStreamCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListAliasesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListCapacityProvidersCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListCodeSigningConfigsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListDurableExecutionsByFunctionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListEventSourceMappingsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListFunctionEventInvokeConfigsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListFunctionUrlConfigsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListFunctionVersionsByCapacityProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListFunctionsByCodeSigningConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListFunctionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListLayerVersionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListLayersCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListProvisionedConcurrencyConfigsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListTagsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListVersionsByFunctionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PublishLayerVersionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PublishVersionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutFunctionCodeSigningConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutFunctionConcurrencyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutFunctionEventInvokeConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutFunctionRecursionConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutFunctionScalingConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutProvisionedConcurrencyConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutRuntimeManagementConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/RemoveLayerVersionPermissionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/SendDurableExecutionCallbackFailureCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/SendDurableExecutionCallbackHeartbeatCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/SendDurableExecutionCallbackSuccessCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/StopDurableExecutionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/TagResourceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateAliasCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateCapacityProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateCodeSigningConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateEventSourceMappingCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateFunctionCodeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateFunctionConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateFunctionEventInvokeConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateFunctionUrlConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/enums.d.ts +13 -7
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/errors.d.ts +36 -36
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/models_0.d.ts +32 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/schemas/schemas_0.d.ts +4 -0
- package/node_modules/@aws-sdk/client-lambda/package.json +9 -11
- package/node_modules/@aws-sdk/client-s3/dist-cjs/index.js +5637 -2177
- package/node_modules/@aws-sdk/client-s3/dist-es/S3Client.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commandBuilder.js +122 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/AbortMultipartUploadCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CompleteMultipartUploadCommand.js +2 -23
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CopyObjectCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateBucketCommand.js +2 -24
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateBucketMetadataConfigurationCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateBucketMetadataTableConfigurationCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateMultipartUploadCommand.js +2 -23
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateSessionCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketAnalyticsConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketCorsCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketEncryptionCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketIntelligentTieringConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketInventoryConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketLifecycleCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketMetadataConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketMetadataTableConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketMetricsConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketOwnershipControlsCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketPolicyCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketReplicationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketTaggingCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketWebsiteCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectAnnotationCommand.js +2 -21
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectTaggingCommand.js +2 -21
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectsCommand.js +2 -26
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeletePublicAccessBlockCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAbacCommand.js +2 -21
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAccelerateConfigurationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAclCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAnalyticsConfigurationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketCorsCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketEncryptionCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketIntelligentTieringConfigurationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketInventoryConfigurationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLifecycleConfigurationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLocationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLoggingCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetadataConfigurationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetadataTableConfigurationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetricsConfigurationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketNotificationConfigurationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketOwnershipControlsCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketPolicyCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketPolicyStatusCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketReplicationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketRequestPaymentCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketTaggingCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketVersioningCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketWebsiteCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAclCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAnnotationCommand.js +2 -26
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAttributesCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectCommand.js +2 -29
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectLegalHoldCommand.js +2 -21
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectLockConfigurationCommand.js +2 -21
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectRetentionCommand.js +2 -21
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectTaggingCommand.js +2 -21
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectTorrentCommand.js +2 -17
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetPublicAccessBlockCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/HeadBucketCommand.js +2 -21
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/HeadObjectCommand.js +2 -24
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketAnalyticsConfigurationsCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketIntelligentTieringConfigurationsCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketInventoryConfigurationsCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketMetricsConfigurationsCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketsCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListDirectoryBucketsCommand.js +2 -21
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListMultipartUploadsCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectAnnotationsCommand.js +2 -21
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectVersionsCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectsCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectsV2Command.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListPartsCommand.js +2 -23
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAbacCommand.js +2 -24
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAccelerateConfigurationCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAclCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAnalyticsConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketCorsCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketEncryptionCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketIntelligentTieringConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketInventoryConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketLifecycleConfigurationCommand.js +2 -27
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketLoggingCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketMetricsConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketNotificationConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketOwnershipControlsCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketPolicyCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketReplicationCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketRequestPaymentCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketTaggingCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketVersioningCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketWebsiteCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectAclCommand.js +2 -27
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectAnnotationCommand.js +2 -27
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectCommand.js +2 -29
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectLegalHoldCommand.js +2 -26
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectLockConfigurationCommand.js +2 -26
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectRetentionCommand.js +2 -26
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectTaggingCommand.js +2 -26
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutPublicAccessBlockCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/RenameObjectCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/RestoreObjectCommand.js +2 -26
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/SelectObjectContentCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateBucketMetadataAnnotationTableConfigurationCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateBucketMetadataInventoryTableConfigurationCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateBucketMetadataJournalTableConfigurationCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateObjectEncryptionCommand.js +2 -26
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/UploadPartCommand.js +2 -28
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/UploadPartCopyCommand.js +2 -23
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/WriteGetObjectResponseCommand.js +2 -17
- package/node_modules/@aws-sdk/client-s3/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.browser.js +1 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.js +2 -5
- package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.shared.js +5 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/S3Client.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commandBuilder.d.ts +106 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/AbortMultipartUploadCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CompleteMultipartUploadCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CopyObjectCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketMetadataConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketMetadataTableConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateMultipartUploadCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateSessionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketAnalyticsConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketCorsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketEncryptionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketIntelligentTieringConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketInventoryConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketLifecycleCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetadataConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetadataTableConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetricsConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketOwnershipControlsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketReplicationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketTaggingCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketWebsiteCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectAnnotationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectTaggingCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeletePublicAccessBlockCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAbacCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAccelerateConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAclCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAnalyticsConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketCorsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketEncryptionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketIntelligentTieringConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketInventoryConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLifecycleConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLocationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLoggingCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetadataConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetadataTableConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetricsConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketNotificationConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketOwnershipControlsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketPolicyStatusCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketReplicationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketRequestPaymentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketTaggingCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketVersioningCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketWebsiteCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAclCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAnnotationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAttributesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectLegalHoldCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectLockConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectRetentionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectTaggingCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectTorrentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetPublicAccessBlockCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/HeadBucketCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/HeadObjectCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketAnalyticsConfigurationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketIntelligentTieringConfigurationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketInventoryConfigurationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketMetricsConfigurationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListDirectoryBucketsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListMultipartUploadsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectAnnotationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectVersionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectsV2Command.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListPartsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAbacCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAccelerateConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAclCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAnalyticsConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketCorsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketEncryptionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketIntelligentTieringConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketInventoryConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketLifecycleConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketLoggingCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketMetricsConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketNotificationConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketOwnershipControlsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketReplicationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketRequestPaymentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketTaggingCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketVersioningCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketWebsiteCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectAclCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectAnnotationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectLegalHoldCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectLockConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectRetentionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectTaggingCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutPublicAccessBlockCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/RenameObjectCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/RestoreObjectCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/SelectObjectContentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateBucketMetadataAnnotationTableConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateBucketMetadataInventoryTableConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateBucketMetadataJournalTableConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateObjectEncryptionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UploadPartCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UploadPartCopyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/WriteGetObjectResponseCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.browser.d.ts +6 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.d.ts +47 -48
- package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.native.d.ts +4 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.shared.d.ts +3 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3Client.d.ts +4 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commandBuilder.d.ts +133 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/AbortMultipartUploadCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CompleteMultipartUploadCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CopyObjectCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateBucketCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateBucketMetadataConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateBucketMetadataTableConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateMultipartUploadCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateSessionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketAnalyticsConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketCorsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketEncryptionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketIntelligentTieringConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketInventoryConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketLifecycleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketMetadataConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketMetadataTableConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketMetricsConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketOwnershipControlsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketReplicationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketTaggingCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketWebsiteCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectAnnotationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectTaggingCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeletePublicAccessBlockCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAbacCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAccelerateConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAclCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAnalyticsConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketCorsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketEncryptionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketIntelligentTieringConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketInventoryConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketLifecycleConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketLocationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketLoggingCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketMetadataConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketMetadataTableConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketMetricsConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketNotificationConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketOwnershipControlsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketPolicyStatusCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketReplicationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketRequestPaymentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketTaggingCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketVersioningCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketWebsiteCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectAclCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectAnnotationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectAttributesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectLegalHoldCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectLockConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectRetentionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectTaggingCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectTorrentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetPublicAccessBlockCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/HeadBucketCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/HeadObjectCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketAnalyticsConfigurationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketIntelligentTieringConfigurationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketInventoryConfigurationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketMetricsConfigurationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListDirectoryBucketsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListMultipartUploadsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectAnnotationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectVersionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectsV2Command.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListPartsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAbacCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAccelerateConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAclCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAnalyticsConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketCorsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketEncryptionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketIntelligentTieringConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketInventoryConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketLifecycleConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketLoggingCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketMetricsConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketNotificationConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketOwnershipControlsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketReplicationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketRequestPaymentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketTaggingCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketVersioningCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketWebsiteCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectAclCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectAnnotationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectLegalHoldCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectLockConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectRetentionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectTaggingCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutPublicAccessBlockCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/RenameObjectCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/RestoreObjectCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/SelectObjectContentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateBucketMetadataAnnotationTableConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateBucketMetadataInventoryTableConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateBucketMetadataJournalTableConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateObjectEncryptionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UploadPartCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UploadPartCopyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/WriteGetObjectResponseCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.browser.d.ts +14 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.d.ts +70 -74
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.native.d.ts +12 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.shared.d.ts +3 -0
- package/node_modules/@aws-sdk/client-s3/package.json +13 -16
- package/node_modules/@aws-sdk/client-sns/dist-cjs/index.js +1986 -518
- package/node_modules/@aws-sdk/client-sns/dist-es/commandBuilder.js +6 -0
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/AddPermissionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/CheckIfPhoneNumberIsOptedOutCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/ConfirmSubscriptionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/CreatePlatformApplicationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/CreatePlatformEndpointCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/CreateSMSSandboxPhoneNumberCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/CreateTopicCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/DeleteEndpointCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/DeletePlatformApplicationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/DeleteSMSSandboxPhoneNumberCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/DeleteTopicCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/GetDataProtectionPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/GetEndpointAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/GetPlatformApplicationAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/GetSMSAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/GetSMSSandboxAccountStatusCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/GetSubscriptionAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/GetTopicAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/ListEndpointsByPlatformApplicationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/ListOriginationNumbersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/ListPhoneNumbersOptedOutCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/ListPlatformApplicationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/ListSMSSandboxPhoneNumbersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/ListSubscriptionsByTopicCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/ListSubscriptionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/ListTagsForResourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/ListTopicsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/OptInPhoneNumberCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/PublishBatchCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/PublishCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/PutDataProtectionPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/RemovePermissionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/SetEndpointAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/SetPlatformApplicationAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/SetSMSAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/SetSubscriptionAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/SetTopicAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/SubscribeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/TagResourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/UnsubscribeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/UntagResourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/VerifySMSSandboxPhoneNumberCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-sns/dist-es/runtimeConfig.browser.js +0 -2
- package/node_modules/@aws-sdk/client-sns/dist-es/runtimeConfig.js +1 -2
- package/node_modules/@aws-sdk/client-sns/dist-es/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/client-sns/dist-es/runtimeConfig.shared.js +2 -0
- package/node_modules/@aws-sdk/client-sns/dist-types/commandBuilder.d.ts +18 -0
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/AddPermissionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/CheckIfPhoneNumberIsOptedOutCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/ConfirmSubscriptionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/CreatePlatformApplicationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/CreatePlatformEndpointCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/CreateSMSSandboxPhoneNumberCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/CreateTopicCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/DeleteEndpointCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/DeletePlatformApplicationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/DeleteSMSSandboxPhoneNumberCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/DeleteTopicCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/GetDataProtectionPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/GetEndpointAttributesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/GetPlatformApplicationAttributesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/GetSMSAttributesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/GetSMSSandboxAccountStatusCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/GetSubscriptionAttributesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/GetTopicAttributesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/ListEndpointsByPlatformApplicationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/ListOriginationNumbersCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/ListPhoneNumbersOptedOutCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/ListPlatformApplicationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/ListSMSSandboxPhoneNumbersCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/ListSubscriptionsByTopicCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/ListSubscriptionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/ListTopicsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/OptInPhoneNumberCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/PublishBatchCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/PublishCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/PutDataProtectionPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/RemovePermissionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/SetEndpointAttributesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/SetPlatformApplicationAttributesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/SetSMSAttributesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/SetSubscriptionAttributesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/SetTopicAttributesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/SubscribeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/TagResourceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/UnsubscribeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/UntagResourceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/VerifySMSSandboxPhoneNumberCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sns/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/node_modules/@aws-sdk/client-sns/dist-types/runtimeConfig.d.ts +2 -2
- package/node_modules/@aws-sdk/client-sns/dist-types/runtimeConfig.native.d.ts +2 -2
- package/node_modules/@aws-sdk/client-sns/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/CheckIfPhoneNumberIsOptedOutCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ConfirmSubscriptionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/CreatePlatformApplicationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/CreatePlatformEndpointCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/CreateSMSSandboxPhoneNumberCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/CreateTopicCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/DeleteEndpointCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/DeletePlatformApplicationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/DeleteSMSSandboxPhoneNumberCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/DeleteTopicCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetDataProtectionPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetEndpointAttributesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetPlatformApplicationAttributesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetSMSAttributesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetSMSSandboxAccountStatusCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetSubscriptionAttributesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetTopicAttributesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListEndpointsByPlatformApplicationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListOriginationNumbersCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListPhoneNumbersOptedOutCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListPlatformApplicationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListSMSSandboxPhoneNumbersCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListSubscriptionsByTopicCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListSubscriptionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListTopicsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/OptInPhoneNumberCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/PublishBatchCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/PublishCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/PutDataProtectionPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/SetEndpointAttributesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/SetPlatformApplicationAttributesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/SetSMSAttributesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/SetSubscriptionAttributesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/SetTopicAttributesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/SubscribeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/TagResourceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/UnsubscribeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/VerifySMSSandboxPhoneNumberCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sns/package.json +8 -10
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/index.js +1492 -300
- package/node_modules/@aws-sdk/client-sqs/dist-es/commandBuilder.js +18 -0
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/AddPermissionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/CancelMessageMoveTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/ChangeMessageVisibilityBatchCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/ChangeMessageVisibilityCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/CreateQueueCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/DeleteMessageBatchCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/DeleteMessageCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/DeleteQueueCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/GetQueueAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/GetQueueUrlCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/ListDeadLetterSourceQueuesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/ListMessageMoveTasksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/ListQueueTagsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/ListQueuesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/PurgeQueueCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/ReceiveMessageCommand.js +2 -20
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/RemovePermissionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/SendMessageBatchCommand.js +2 -18
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/SendMessageCommand.js +2 -18
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/SetQueueAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/StartMessageMoveTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/TagQueueCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/UntagQueueCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sqs/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-sqs/dist-es/runtimeConfig.browser.js +0 -4
- package/node_modules/@aws-sdk/client-sqs/dist-es/runtimeConfig.js +1 -3
- package/node_modules/@aws-sdk/client-sqs/dist-es/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/client-sqs/dist-es/runtimeConfig.shared.js +3 -0
- package/node_modules/@aws-sdk/client-sqs/dist-types/commandBuilder.d.ts +30 -0
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/AddPermissionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/CancelMessageMoveTaskCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/ChangeMessageVisibilityBatchCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/ChangeMessageVisibilityCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/CreateQueueCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/DeleteMessageBatchCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/DeleteMessageCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/DeleteQueueCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/GetQueueAttributesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/GetQueueUrlCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/ListDeadLetterSourceQueuesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/ListMessageMoveTasksCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/ListQueueTagsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/ListQueuesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/PurgeQueueCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/ReceiveMessageCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/RemovePermissionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/SendMessageBatchCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/SendMessageCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/SetQueueAttributesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/StartMessageMoveTaskCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/TagQueueCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/UntagQueueCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sqs/dist-types/runtimeConfig.browser.d.ts +3 -3
- package/node_modules/@aws-sdk/client-sqs/dist-types/runtimeConfig.d.ts +26 -27
- package/node_modules/@aws-sdk/client-sqs/dist-types/runtimeConfig.native.d.ts +2 -2
- package/node_modules/@aws-sdk/client-sqs/dist-types/runtimeConfig.shared.d.ts +2 -0
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commandBuilder.d.ts +64 -0
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/CancelMessageMoveTaskCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ChangeMessageVisibilityBatchCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ChangeMessageVisibilityCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/CreateQueueCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/DeleteMessageBatchCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/DeleteMessageCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/DeleteQueueCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/GetQueueAttributesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/GetQueueUrlCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ListDeadLetterSourceQueuesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ListMessageMoveTasksCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ListQueueTagsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ListQueuesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/PurgeQueueCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ReceiveMessageCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/SendMessageBatchCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/SendMessageCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/SetQueueAttributesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/StartMessageMoveTaskCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/TagQueueCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/UntagQueueCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -3
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/runtimeConfig.d.ts +44 -43
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -0
- package/node_modules/@aws-sdk/client-sqs/package.json +10 -12
- package/node_modules/@aws-sdk/client-ssm/README.md +42 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/index.js +9342 -1855
- package/node_modules/@aws-sdk/client-ssm/dist-es/SSM.js +16 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commandBuilder.js +6 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/AddTagsToResourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/AssociateOpsItemRelatedItemCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CancelCommandCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CancelMaintenanceWindowExecutionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateActivationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateAssociationBatchCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateAssociationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateCloudConnectorCommand.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateDocumentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateMaintenanceWindowCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateOpsItemCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateOpsMetadataCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreatePatchBaselineCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateResourceDataSyncCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteActivationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteAssociationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteCloudConnectorCommand.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteDocumentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteInventoryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteMaintenanceWindowCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteOpsItemCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteOpsMetadataCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteParameterCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteParametersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeletePatchBaselineCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteResourceDataSyncCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteResourcePolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterManagedInstanceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterPatchBaselineForPatchGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterTargetFromMaintenanceWindowCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterTaskFromMaintenanceWindowCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeActivationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAssociationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAssociationExecutionTargetsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAssociationExecutionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAutomationExecutionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAutomationStepExecutionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAvailablePatchesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeDocumentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeDocumentPermissionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeEffectiveInstanceAssociationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeEffectivePatchesForPatchBaselineCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstanceAssociationsStatusCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstanceInformationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePatchStatesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePatchStatesForPatchGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePatchesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePropertiesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInventoryDeletionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowExecutionTasksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowExecutionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowScheduleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowTargetsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowTasksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowsForTargetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeOpsItemsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeParametersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchBaselinesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchGroupStateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchGroupsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchPropertiesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeSessionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DisassociateOpsItemRelatedItemCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetAccessTokenCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetAutomationExecutionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetCalendarStateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetCloudConnectorCommand.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetCommandInvocationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetConnectionStatusCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetDefaultPatchBaselineCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetDeployablePatchSnapshotForInstanceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetDocumentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetExecutionPreviewCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetInventoryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetInventorySchemaCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowExecutionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowExecutionTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetOpsItemCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetOpsMetadataCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetOpsSummaryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParameterCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParameterHistoryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParametersByPathCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParametersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetPatchBaselineCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetPatchBaselineForPatchGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetResourcePoliciesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetServiceSettingCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/LabelParameterVersionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListAssociationVersionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListAssociationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListCloudConnectorsCommand.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListCommandInvocationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListCommandsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListComplianceItemsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListComplianceSummariesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListDocumentMetadataHistoryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListDocumentVersionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListDocumentsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListInventoryEntriesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListNodesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListNodesSummaryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListOpsItemEventsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListOpsItemRelatedItemsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListOpsMetadataCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListResourceComplianceSummariesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListResourceDataSyncCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListTagsForResourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ModifyDocumentPermissionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutComplianceItemsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutInventoryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutParameterCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutResourcePolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterDefaultPatchBaselineCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterPatchBaselineForPatchGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterTargetWithMaintenanceWindowCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterTaskWithMaintenanceWindowCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RemoveTagsFromResourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ResetServiceSettingCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ResumeSessionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/SendAutomationSignalCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/SendCommandCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartAccessRequestCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartAssociationsOnceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartAutomationExecutionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartChangeRequestExecutionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartExecutionPreviewCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartSessionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StopAutomationExecutionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/TerminateSessionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UnlabelParameterVersionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateAssociationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateAssociationStatusCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateCloudConnectorCommand.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateDocumentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateDocumentDefaultVersionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateDocumentMetadataCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateMaintenanceWindowCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateMaintenanceWindowTargetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateMaintenanceWindowTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateManagedInstanceRoleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateOpsItemCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateOpsMetadataCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdatePatchBaselineCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateResourceDataSyncCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateServiceSettingCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ValidateCloudConnectorCommand.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/index.js +6 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/models/enums.js +34 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/models/errors.js +50 -36
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListCloudConnectorsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ValidateCloudConnectorPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/index.js +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.browser.js +0 -2
- package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.js +1 -2
- package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.shared.js +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/schemas/schemas_0.js +232 -45
- package/node_modules/@aws-sdk/client-ssm/dist-types/SSM.d.ts +57 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/SSMClient.d.ts +8 -2
- package/node_modules/@aws-sdk/client-ssm/dist-types/commandBuilder.d.ts +18 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/AddTagsToResourceCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/AssociateOpsItemRelatedItemCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CancelCommandCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CancelMaintenanceWindowExecutionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateActivationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateAssociationBatchCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateAssociationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateCloudConnectorCommand.d.ts +108 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateDocumentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateMaintenanceWindowCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateOpsItemCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateOpsMetadataCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreatePatchBaselineCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateResourceDataSyncCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteActivationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteAssociationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteCloudConnectorCommand.d.ts +81 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteDocumentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteInventoryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteMaintenanceWindowCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteOpsItemCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteOpsMetadataCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteParameterCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteParametersCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeletePatchBaselineCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteResourceDataSyncCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteResourcePolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterManagedInstanceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterPatchBaselineForPatchGroupCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterTargetFromMaintenanceWindowCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterTaskFromMaintenanceWindowCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeActivationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAssociationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAssociationExecutionTargetsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAssociationExecutionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAutomationExecutionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAutomationStepExecutionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAvailablePatchesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeDocumentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeDocumentPermissionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeEffectiveInstanceAssociationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeEffectivePatchesForPatchBaselineCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstanceAssociationsStatusCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstanceInformationCommand.d.ts +5 -9
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePatchStatesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePatchStatesForPatchGroupCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePatchesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePropertiesCommand.d.ts +6 -9
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInventoryDeletionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowExecutionTasksCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowExecutionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowScheduleCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowTargetsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowTasksCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowsForTargetCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeOpsItemsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeParametersCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchBaselinesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchGroupStateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchGroupsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchPropertiesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeSessionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DisassociateOpsItemRelatedItemCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetAccessTokenCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetAutomationExecutionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetCalendarStateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetCloudConnectorCommand.d.ts +99 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetCommandInvocationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetConnectionStatusCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetDefaultPatchBaselineCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetDeployablePatchSnapshotForInstanceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetDocumentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetExecutionPreviewCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetInventoryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetInventorySchemaCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowExecutionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowExecutionTaskCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowTaskCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetOpsItemCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetOpsMetadataCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetOpsSummaryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParameterCommand.d.ts +17 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParameterHistoryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParametersByPathCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParametersCommand.d.ts +17 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetPatchBaselineCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetPatchBaselineForPatchGroupCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetResourcePoliciesCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetServiceSettingCommand.d.ts +4 -10
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/LabelParameterVersionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListAssociationVersionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListAssociationsCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListCloudConnectorsCommand.d.ts +93 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListCommandInvocationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListCommandsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListComplianceItemsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListComplianceSummariesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListDocumentMetadataHistoryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListDocumentVersionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListDocumentsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListInventoryEntriesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListNodesCommand.d.ts +10 -9
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListNodesSummaryCommand.d.ts +6 -11
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListOpsItemEventsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListOpsItemRelatedItemsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListOpsMetadataCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListResourceComplianceSummariesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListResourceDataSyncCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListTagsForResourceCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ModifyDocumentPermissionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutComplianceItemsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutInventoryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutParameterCommand.d.ts +17 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutResourcePolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterDefaultPatchBaselineCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterPatchBaselineForPatchGroupCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterTargetWithMaintenanceWindowCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterTaskWithMaintenanceWindowCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ResetServiceSettingCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ResumeSessionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/SendAutomationSignalCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/SendCommandCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartAccessRequestCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartAssociationsOnceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartAutomationExecutionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartChangeRequestExecutionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartExecutionPreviewCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartSessionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StopAutomationExecutionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/TerminateSessionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UnlabelParameterVersionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateAssociationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateAssociationStatusCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateCloudConnectorCommand.d.ts +99 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateDocumentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateDocumentDefaultVersionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateDocumentMetadataCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateMaintenanceWindowCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateMaintenanceWindowTargetCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateMaintenanceWindowTaskCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateManagedInstanceRoleCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateOpsItemCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateOpsMetadataCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdatePatchBaselineCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateResourceDataSyncCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateServiceSettingCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ValidateCloudConnectorCommand.d.ts +91 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/models/enums.d.ts +66 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/models/errors.d.ts +61 -47
- package/node_modules/@aws-sdk/client-ssm/dist-types/models/models_0.d.ts +268 -360
- package/node_modules/@aws-sdk/client-ssm/dist-types/models/models_1.d.ts +601 -3
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListCloudConnectorsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ValidateCloudConnectorPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.native.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/schemas/schemas_0.d.ts +27 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/SSM.d.ts +117 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/SSMClient.d.ts +38 -2
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/AddTagsToResourceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/AssociateOpsItemRelatedItemCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CancelCommandCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CancelMaintenanceWindowExecutionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateActivationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateAssociationBatchCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateAssociationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateCloudConnectorCommand.d.ts +44 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateDocumentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateMaintenanceWindowCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateOpsItemCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateOpsMetadataCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreatePatchBaselineCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateResourceDataSyncCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteActivationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteAssociationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteCloudConnectorCommand.d.ts +44 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteDocumentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteInventoryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteMaintenanceWindowCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteOpsItemCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteOpsMetadataCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteParameterCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteParametersCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeletePatchBaselineCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteResourceDataSyncCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterManagedInstanceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterPatchBaselineForPatchGroupCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterTargetFromMaintenanceWindowCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterTaskFromMaintenanceWindowCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeActivationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAssociationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAssociationExecutionTargetsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAssociationExecutionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAutomationExecutionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAutomationStepExecutionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAvailablePatchesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeDocumentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeDocumentPermissionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeEffectiveInstanceAssociationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeEffectivePatchesForPatchBaselineCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstanceAssociationsStatusCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstanceInformationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePatchStatesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePatchStatesForPatchGroupCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePatchesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePropertiesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInventoryDeletionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowExecutionTasksCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowExecutionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowScheduleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowTargetsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowTasksCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowsForTargetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeOpsItemsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeParametersCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchBaselinesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchGroupStateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchGroupsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchPropertiesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeSessionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DisassociateOpsItemRelatedItemCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetAccessTokenCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetAutomationExecutionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetCalendarStateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetCloudConnectorCommand.d.ts +44 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetCommandInvocationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetConnectionStatusCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetDefaultPatchBaselineCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetDeployablePatchSnapshotForInstanceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetDocumentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetExecutionPreviewCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetInventoryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetInventorySchemaCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowExecutionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowExecutionTaskCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowTaskCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetOpsItemCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetOpsMetadataCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetOpsSummaryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParameterCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParameterHistoryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParametersByPathCommand.d.ts +8 -17
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParametersCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetPatchBaselineCommand.d.ts +8 -17
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetPatchBaselineForPatchGroupCommand.d.ts +8 -17
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetResourcePoliciesCommand.d.ts +8 -17
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetServiceSettingCommand.d.ts +10 -17
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/LabelParameterVersionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListAssociationVersionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListAssociationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListCloudConnectorsCommand.d.ts +44 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListCommandInvocationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListCommandsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListComplianceItemsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListComplianceSummariesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListDocumentMetadataHistoryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListDocumentVersionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListDocumentsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListInventoryEntriesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListNodesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListNodesSummaryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListOpsItemEventsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListOpsItemRelatedItemsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListOpsMetadataCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListResourceComplianceSummariesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListResourceDataSyncCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ModifyDocumentPermissionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutComplianceItemsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutInventoryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutParameterCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterDefaultPatchBaselineCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterPatchBaselineForPatchGroupCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterTargetWithMaintenanceWindowCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterTaskWithMaintenanceWindowCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RemoveTagsFromResourceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ResetServiceSettingCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ResumeSessionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/SendAutomationSignalCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/SendCommandCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartAccessRequestCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartAssociationsOnceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartAutomationExecutionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartChangeRequestExecutionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartExecutionPreviewCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartSessionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StopAutomationExecutionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/TerminateSessionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UnlabelParameterVersionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateAssociationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateAssociationStatusCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateCloudConnectorCommand.d.ts +44 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateDocumentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateDocumentDefaultVersionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateDocumentMetadataCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateMaintenanceWindowCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateMaintenanceWindowTargetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateMaintenanceWindowTaskCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateManagedInstanceRoleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateOpsItemCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateOpsMetadataCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdatePatchBaselineCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateResourceDataSyncCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateServiceSettingCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ValidateCloudConnectorCommand.d.ts +44 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/enums.d.ts +42 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/errors.d.ts +26 -20
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/models_0.d.ts +78 -59
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/models_1.d.ts +123 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListCloudConnectorsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ValidateCloudConnectorPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/schemas/schemas_0.d.ts +27 -0
- package/node_modules/@aws-sdk/client-ssm/package.json +8 -10
- package/node_modules/@aws-sdk/core/account-id-endpoint.d.ts +1 -3
- package/node_modules/@aws-sdk/core/client.d.ts +1 -3
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +55 -141
- package/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/index.js +3 -3
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/middleware-recursion-detection/configuration.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/middleware-recursion-detection/recursionDetectionMiddleware.js +48 -19
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-user-agent-browser/defaultUserAgent.browser.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-user-agent-node/defaultUserAgent.js +0 -5
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/index.js +3 -3
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/index.js +2 -2
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/index.js +3 -3
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/index.js +19 -20
- package/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/index.d.ts +5 -3
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/index.browser.d.ts +5 -5
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/index.d.ts +5 -5
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/index.native.d.ts +5 -5
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/middleware-recursion-detection/configuration.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/middleware-recursion-detection/recursionDetectionMiddleware.d.ts +5 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/EndpointRuleObject.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/ErrorRuleObject.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/RuleSetObject.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/TreeRuleObject.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/shared.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-user-agent-browser/defaultUserAgent.browser.d.ts +2 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/index.d.ts +5 -3
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/index.d.ts +3 -2
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/index.d.ts +3 -3
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/index.d.ts +22 -20
- package/node_modules/@aws-sdk/core/dist-types/submodules/util/index.d.ts +2 -1
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/index.d.ts +16 -3
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-user-agent-browser/defaultUserAgent.browser.d.ts +7 -1
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/index.d.ts +23 -3
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/index.d.ts +24 -2
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/index.d.ts +3 -3
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/index.d.ts +31 -20
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/util/index.d.ts +2 -1
- package/node_modules/@aws-sdk/core/httpAuthSchemes.d.ts +1 -3
- package/node_modules/@aws-sdk/core/package.json +11 -18
- package/node_modules/@aws-sdk/core/protocols.d.ts +1 -3
- package/node_modules/@aws-sdk/core/util.d.ts +1 -3
- package/node_modules/@aws-sdk/credential-provider-env/dist-es/index.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-env/dist-types/index.d.ts +2 -4
- package/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/index.d.ts +10 -1
- package/node_modules/@aws-sdk/credential-provider-env/package.json +5 -5
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.js +178 -1
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.js +16 -10
- package/node_modules/@aws-sdk/credential-provider-http/package.json +8 -10
- package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/index.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveLoginCredentials.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/index.d.ts +2 -4
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/index.d.ts +2 -1
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +13 -13
- package/node_modules/@aws-sdk/credential-provider-login/dist-es/index.js +1 -2
- package/node_modules/@aws-sdk/credential-provider-login/dist-types/index.d.ts +2 -8
- package/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/index.d.ts +7 -2
- package/node_modules/@aws-sdk/credential-provider-login/package.json +6 -6
- package/node_modules/@aws-sdk/credential-provider-node/dist-es/index.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/index.d.ts +2 -1
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/index.d.ts +6 -1
- package/node_modules/@aws-sdk/credential-provider-node/package.json +11 -11
- package/node_modules/@aws-sdk/credential-provider-process/dist-es/index.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/index.d.ts +2 -4
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/index.d.ts +2 -1
- package/node_modules/@aws-sdk/credential-provider-process/package.json +5 -5
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/index.js +3 -4
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/fromSSO.d.ts +4 -4
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/index.d.ts +5 -16
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/index.d.ts +5 -4
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +7 -7
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/index.js +58 -3
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/index.js +2 -2
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/index.d.ts +4 -8
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/index.d.ts +7 -2
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +7 -8
- package/node_modules/@aws-sdk/middleware-sdk-ec2/package.json +6 -6
- package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +9 -18
- package/node_modules/@aws-sdk/middleware-sdk-s3/s3-control.d.ts +1 -3
- package/node_modules/@aws-sdk/middleware-sdk-s3/s3.d.ts +1 -3
- package/node_modules/@aws-sdk/middleware-sdk-sqs/dist-es/index.js +4 -4
- package/node_modules/@aws-sdk/middleware-sdk-sqs/dist-types/index.d.ts +5 -4
- package/node_modules/@aws-sdk/middleware-sdk-sqs/dist-types/ts3.4/index.d.ts +26 -4
- package/node_modules/@aws-sdk/middleware-sdk-sqs/package.json +4 -4
- package/node_modules/@aws-sdk/nested-clients/cognito-identity.d.ts +1 -3
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/index.js +13 -25
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js +13 -17
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/index.js +12 -15
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js +12 -15
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js +13 -25
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/commandBuilder.js +6 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.js +2 -14
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/commands/GetIdCommand.js +2 -14
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/index.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.browser.js +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.js +1 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.shared.js +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commandBuilder.js +8 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commands/CreateOAuth2TokenCommand.js +2 -17
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/index.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.browser.js +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.js +1 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.shared.js +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/commandBuilder.js +6 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/commands/GetRoleCredentialsCommand.js +2 -14
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/index.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.browser.js +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.js +1 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.shared.js +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/commandBuilder.js +6 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/commands/CreateTokenCommand.js +2 -14
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/index.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.browser.js +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.js +1 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.shared.js +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commandBuilder.js +6 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleCommand.js +2 -14
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.js +2 -14
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/index.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.browser.js +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.js +1 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.shared.js +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/commandBuilder.d.ts +18 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/commands/GetIdCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.browser.d.ts +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.d.ts +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.native.d.ts +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/commandBuilder.d.ts +18 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.browser.d.ts +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.d.ts +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.native.d.ts +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/commandBuilder.d.ts +18 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/commands/GetRoleCredentialsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.browser.d.ts +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.d.ts +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.native.d.ts +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/commandBuilder.d.ts +18 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.browser.d.ts +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.d.ts +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.native.d.ts +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commandBuilder.d.ts +18 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.browser.d.ts +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.d.ts +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.native.d.ts +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/commandBuilder.d.ts +46 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/commands/GetIdCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.browser.d.ts +8 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.d.ts +8 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.native.d.ts +8 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/commandBuilder.d.ts +42 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.browser.d.ts +8 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.d.ts +8 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.native.d.ts +8 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/commandBuilder.d.ts +42 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/commands/GetRoleCredentialsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.browser.d.ts +8 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.d.ts +8 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.native.d.ts +8 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/commandBuilder.d.ts +42 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.browser.d.ts +8 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.d.ts +8 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.native.d.ts +8 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commandBuilder.d.ts +46 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commands/AssumeRoleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.browser.d.ts +8 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.d.ts +8 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.native.d.ts +8 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/package.json +8 -10
- package/node_modules/@aws-sdk/nested-clients/signin.d.ts +1 -3
- package/node_modules/@aws-sdk/nested-clients/sso-oidc.d.ts +1 -3
- package/node_modules/@aws-sdk/nested-clients/sso.d.ts +1 -3
- package/node_modules/@aws-sdk/nested-clients/sts.d.ts +1 -3
- package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +4 -4
- package/node_modules/@aws-sdk/token-providers/dist-es/index.js +4 -4
- package/node_modules/@aws-sdk/token-providers/dist-types/index.d.ts +7 -4
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/index.d.ts +7 -4
- package/node_modules/@aws-sdk/token-providers/package.json +6 -6
- package/node_modules/@aws-sdk/types/dist-es/endpoint.js +1 -1
- package/node_modules/@aws-sdk/types/dist-es/identity/index.js +1 -5
- package/node_modules/@aws-sdk/types/dist-es/index.js +4 -34
- package/node_modules/@aws-sdk/types/dist-es/transfer.js +1 -1
- package/node_modules/@aws-sdk/types/dist-types/abort.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/auth.d.ts +2 -1
- package/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +2 -2
- package/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/client.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/command.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/connection.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/encode.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +2 -1
- package/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/http.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +7 -7
- package/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +5 -5
- package/node_modules/@aws-sdk/types/dist-types/index.d.ts +42 -34
- package/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/profile.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/response.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/retry.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/serde.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/signature.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/stream.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +2 -1
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +2 -5
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +17 -5
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +225 -34
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/uri.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/util.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +1 -1
- package/node_modules/@aws-sdk/types/package.json +2 -2
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/index.js +236 -3
- package/node_modules/@aws-sdk/xml-builder/dist-es/index.js +2 -2
- package/node_modules/@aws-sdk/xml-builder/dist-types/index.d.ts +2 -11
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/xml-builder/package.json +3 -4
- package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.browser.js +4 -1
- package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.js +8 -2
- package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.native.js +4 -1
- package/node_modules/@smithy/core/dist-cjs/submodules/client/index.js +18 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/config/index.js +108 -63
- package/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.browser.js +11 -8
- package/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.js +11 -8
- package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.js +31 -27
- package/node_modules/@smithy/core/dist-es/index.js +5 -5
- package/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-auth-scheme/index.js +3 -3
- package/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-signing/index.js +2 -2
- package/node_modules/@smithy/core/dist-es/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/index.js +3 -3
- package/node_modules/@smithy/core/dist-es/legacy-root-exports/util-identity-and-auth/index.js +3 -3
- package/node_modules/@smithy/core/dist-es/submodules/cbor/index.js +3 -3
- package/node_modules/@smithy/core/dist-es/submodules/checksum/crc32/Crc32Js.js +4 -1
- package/node_modules/@smithy/core/dist-es/submodules/checksum/crc32/Crc32Node.js +4 -1
- package/node_modules/@smithy/core/dist-es/submodules/client/index.js +1 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/client-command-builder.js +17 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/config.js +6 -1
- package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/getInstanceMetadataRegion.js +92 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/defaults-mode/constants.js +3 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/defaults-mode/resolveDefaultsModeConfig.js +3 -56
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/index.browser.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/index.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/service-customizations/index.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/debug/index.js +2 -2
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/index.js +11 -11
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/types/index.js +1 -7
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/index.js +2 -2
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/EventStreamCodec.js +5 -3
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/splitMessage.js +7 -6
- package/node_modules/@smithy/core/dist-es/submodules/protocols/index.js +13 -13
- package/node_modules/@smithy/core/dist-es/submodules/schema/index.js +14 -14
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/checksum/ChecksumStream.js +31 -27
- package/node_modules/@smithy/core/dist-types/index.d.ts +7 -5
- package/node_modules/@smithy/core/dist-types/legacy-root-exports/middleware-http-auth-scheme/index.d.ts +4 -3
- package/node_modules/@smithy/core/dist-types/legacy-root-exports/middleware-http-signing/index.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/index.d.ts +3 -3
- package/node_modules/@smithy/core/dist-types/legacy-root-exports/util-identity-and-auth/index.d.ts +4 -3
- package/node_modules/@smithy/core/dist-types/submodules/cbor/index.d.ts +3 -3
- package/node_modules/@smithy/core/dist-types/submodules/checksum/crc32/Crc32Js.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/crc32/Crc32Node.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/index.d.ts +1 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/client-command-builder.d.ts +22 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/command.d.ts +5 -6
- package/node_modules/@smithy/core/dist-types/submodules/client/util-waiter/waiter.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/config/config-resolver/regionConfig/getInstanceMetadataRegion.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/defaults-mode/constants.d.ts +12 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/index.browser.d.ts +6 -6
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/index.d.ts +6 -6
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromInstructions.d.ts +3 -4
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/endpointMiddleware.d.ts +1 -2
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/getEndpointPlugin.d.ts +1 -2
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/service-customizations/index.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/debug/index.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/lib/index.d.ts +12 -11
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/types/index.d.ts +7 -7
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/index.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/submodules/protocols/index.d.ts +13 -13
- package/node_modules/@smithy/core/dist-types/submodules/schema/index.d.ts +14 -14
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/checksum/ChecksumStream.d.ts +22 -14
- package/node_modules/@smithy/core/dist-types/submodules/transport/httpRequest.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/submodules/transport/index.d.ts +2 -1
- package/node_modules/@smithy/core/dist-types/ts3.4/index.d.ts +14 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/middleware-http-auth-scheme/getHttpAuthSchemePlugin.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/middleware-http-auth-scheme/httpAuthSchemeMiddleware.d.ts +33 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/middleware-http-auth-scheme/index.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/middleware-http-auth-scheme/resolveAuthOptions.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/middleware-http-signing/getHttpSigningMiddleware.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/middleware-http-signing/httpSigningMiddleware.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/middleware-http-signing/index.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/pagination/createPaginator.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/util-identity-and-auth/DefaultIdentityProviderConfig.d.ts +15 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/index.d.ts +3 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/noAuth.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/util-identity-and-auth/index.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/util-identity-and-auth/memoizeIdentityProvider.d.ts +31 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/normalizeProvider.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/setFeature.d.ts +12 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/CborCodec.d.ts +33 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/SmithyRpcV2CborProtocol.d.ts +28 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/byte-printer.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor-decode.d.ts +22 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor-encode.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor-types.d.ts +65 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor.d.ts +25 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/index.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/parseCborBody.d.ts +31 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/chunked-blob-reader/chunked-blob-reader.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/chunked-blob-reader/chunked-blob-reader.native.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/crc32/Crc32Js.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/crc32/Crc32Node.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/hash-blob-browser/blobHasher.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/hash-stream-node/HashCalculator.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/hash-stream-node/fileStreamHasher.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/hash-stream-node/readableStreamHasher.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/index.browser.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/index.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/index.native.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/md5/Md5Js.d.ts +19 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/md5/Md5Node.d.ts +17 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/sha256/Sha256Js.d.ts +28 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/sha256/Sha256Node.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/sha256/Sha256WebCrypto.d.ts +22 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/index.d.ts +27 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/invalid-dependency/invalidFunction.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/invalid-dependency/invalidProvider.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/middleware-stack/MiddlewareStack.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/middleware-stack/types.d.ts +22 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/NoOpLogger.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/client-command-builder.d.ts +22 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/client.d.ts +84 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/command.d.ts +118 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/constants.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/create-aggregated-client.d.ts +16 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/default-error-handler.d.ts +15 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/defaults-mode.d.ts +28 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/emitWarningIfUnsupportedVersion.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/exceptions.d.ts +42 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/extensions/checksum.d.ts +25 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/extensions/defaultExtensionConfiguration.d.ts +38 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/extensions/retry.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/get-array-if-single-item.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/get-value-from-text-node.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/is-serializable-header-value.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/object-mapping.d.ts +179 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/schemaLogFilter.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/ser-utils.d.ts +14 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/serde-json.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/util-waiter/circularReplacer.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/util-waiter/createWaiter.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/util-waiter/poller.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/util-waiter/utils/sleep.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/util-waiter/utils/validate.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/util-waiter/waiter.d.ts +49 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/endpointsConfig/resolveCustomEndpointsConfig.d.ts +37 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/endpointsConfig/resolveEndpointsConfig.d.ts +57 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/endpointsConfig/utils/getEndpointFromRegion.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionConfig/checkRegion.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionConfig/config.d.ts +17 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionConfig/getInstanceMetadataRegion.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionConfig/getRealRegion.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionConfig/isFipsRegion.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionConfig/resolveRegionConfig.d.ts +34 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionInfo/EndpointVariant.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionInfo/EndpointVariantTag.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionInfo/PartitionHash.d.ts +15 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionInfo/RegionHash.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionInfo/getHostnameFromVariants.d.ts +14 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionInfo/getRegionInfo.d.ts +19 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionInfo/getResolvedHostname.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionInfo/getResolvedPartition.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionInfo/getResolvedSigningRegion.d.ts +14 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/defaults-mode/constants.d.ts +36 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/defaults-mode/defaultsModeConfig.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/defaults-mode/resolveDefaultsModeConfig.browser.d.ts +17 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/defaults-mode/resolveDefaultsModeConfig.d.ts +17 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/defaults-mode/resolveDefaultsModeConfig.native.d.ts +16 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/index.browser.d.ts +55 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/index.d.ts +36 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/index.native.d.ts +55 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/node-config-provider/configLoader.d.ts +31 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/node-config-provider/fromEnv.d.ts +20 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/node-config-provider/fromSharedConfigFiles.d.ts +22 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/node-config-provider/fromStatic.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/node-config-provider/getSelectorName.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/property-provider/CredentialsProviderError.d.ts +29 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/property-provider/ProviderError.d.ts +38 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/property-provider/TokenProviderError.d.ts +29 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/property-provider/chain.d.ts +12 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/property-provider/fromValue.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/property-provider/memoize.d.ts +40 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/constants.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/externalDataInterceptor.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/getConfigData.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/getConfigFilepath.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/getCredentialsFilepath.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/getHomeDir.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/getProfileName.d.ts +15 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/getSSOTokenFilepath.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/getSSOTokenFromFile.d.ts +53 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/getSsoSessionData.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/loadSharedConfigFiles.d.ts +33 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/loadSsoSessionData.d.ts +17 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/mergeConfigFiles.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/parseIni.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/parseKnownFiles.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/readFile.d.ts +21 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/types.d.ts +16 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/util-config-provider/booleanSelector.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/util-config-provider/numberSelector.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/util-config-provider/types.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/index.browser.d.ts +24 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/index.d.ts +24 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/adaptors/createConfigValueProvider.d.ts +14 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromConfig.browser.d.ts +1 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromConfig.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromInstructions.d.ts +20 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/adaptors/getEndpointUrlConfig.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/adaptors/toEndpointV1.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/endpointMiddleware.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/getEndpointPlugin.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/resolveEndpointConfig.d.ts +110 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/resolveEndpointRequiredConfig.d.ts +32 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/service-customizations/index.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/service-customizations/s3.d.ts +26 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/bdd/BinaryDecisionDiagram.d.ts +41 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/cache/EndpointCache.d.ts +34 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/debug/debugId.d.ts +1 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/debug/index.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/debug/toDebugString.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/decideEndpoint.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/getEndpointUrlConfig.d.ts +12 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/booleanEquals.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/coalesce.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/getAttr.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/getAttrPathList.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/index.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/isIpAddress.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/isSet.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/ite.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/not.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/parseURL.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/split.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/stringEquals.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/substring.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/uriEncode.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/resolveEndpoint.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/types/EndpointError.d.ts +3 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/types/EndpointFunctions.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/types/EndpointRuleObject.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/types/ErrorRuleObject.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/types/RuleSetObject.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/types/TreeRuleObject.d.ts +3 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/types/index.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/types/shared.d.ts +25 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/callFunction.d.ts +1 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/customEndpointFunctions.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/endpointFunctions.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/evaluateCondition.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/evaluateConditions.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/evaluateEndpointRule.d.ts +3 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/evaluateErrorRule.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/evaluateExpression.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/evaluateRules.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/evaluateTemplate.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/evaluateTreeRule.d.ts +1 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/getEndpointHeaders.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/getEndpointProperties.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/getEndpointProperty.d.ts +1 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/getEndpointUrl.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/getReferenceValue.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/index.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/EventStreamSerde.d.ts +60 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-codec/EventStreamCodec.d.ts +30 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-codec/HeaderMarshaller.d.ts +12 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-codec/Int64.d.ts +20 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-codec/Message.d.ts +26 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-codec/MessageDecoderStream.d.ts +17 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-codec/MessageEncoderStream.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-codec/SmithyMessageDecoderStream.d.ts +17 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-codec/SmithyMessageEncoderStream.d.ts +17 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-codec/splitMessage.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-serde/EventStreamMarshaller.browser.d.ts +46 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-serde/EventStreamMarshaller.d.ts +31 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-serde/utils.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-serde-config-resolver/EventStreamSerdeConfig.d.ts +27 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-serde-universal/EventStreamMarshaller.d.ts +22 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-serde-universal/getChunkedStream.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-serde-universal/getUnmarshalledStream.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/index.browser.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/index.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/HttpBindingProtocol.d.ts +31 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/HttpProtocol.d.ts +95 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/RpcProtocol.d.ts +16 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/SerdeContext.d.ts +16 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/collect-stream-body.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/extended-encode-uri-component.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/index.d.ts +27 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/middleware-content-length/contentLengthMiddleware.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/protocol-http/Field.d.ts +49 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/protocol-http/Fields.d.ts +44 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/protocol-http/extensions/httpExtensionConfiguration.d.ts +33 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/protocol-http/httpHandler.d.ts +31 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/protocol-http/types.d.ts +21 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/querystring-builder/buildQueryString.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/requestBuilder.d.ts +52 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/resolve-path.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/FromStringShapeDeserializer.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/HttpInterceptingShapeDeserializer.d.ts +21 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/HttpInterceptingShapeSerializer.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/ToStringShapeSerializer.d.ts +14 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/determineTimestampFormat.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/util-uri-escape/escape-uri-path.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/util-uri-escape/escape-uri.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/index.browser.d.ts +26 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/index.d.ts +20 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/configurations.d.ts +71 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/isStreamingPayload/isStreamingPayload.browser.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/isStreamingPayload/isStreamingPayload.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/longPollMiddleware.d.ts +15 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/omitRetryHeadersMiddleware.d.ts +15 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/parseRetryAfterHeader.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/retry-pre-sra-deprecated/AdaptiveRetryStrategy.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/retry-pre-sra-deprecated/StandardRetryStrategy.d.ts +33 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/retry-pre-sra-deprecated/defaultRetryQuota.d.ts +26 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/retry-pre-sra-deprecated/delayDecider.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/retry-pre-sra-deprecated/retryDecider.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/retry-pre-sra-deprecated/types.d.ts +65 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/retryMiddleware.d.ts +19 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/util.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/service-error-classification/constants.d.ts +30 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/service-error-classification/service-error-classification.d.ts +30 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/util-retry/AdaptiveRetryStrategy.d.ts +38 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/util-retry/ConfiguredRetryStrategy.d.ts +31 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/util-retry/DefaultRateLimiter.d.ts +119 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/util-retry/DefaultRetryBackoffStrategy.d.ts +12 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/util-retry/DefaultRetryToken.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/util-retry/StandardRetryStrategy.d.ts +56 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/util-retry/config.d.ts +20 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/util-retry/constants.d.ts +60 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/util-retry/retries-2026-config.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/util-retry/types.d.ts +19 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/TypeRegistry.d.ts +71 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/deref.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/index.d.ts +14 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/getSchemaSerdePlugin.d.ts +14 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/schema-middleware-types.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/schemaDeserializationMiddleware.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/schemaSerializationMiddleware.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/ErrorSchema.d.ts +37 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/ListSchema.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/MapSchema.d.ts +24 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/NormalizedSchema.d.ts +146 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/OperationSchema.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/Schema.d.ts +16 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/SimpleSchema.d.ts +28 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/StructureSchema.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/operation.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/sentinels.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/translateTraits.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/concatBytes.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/copyDocumentWithTransform.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/date-utils.d.ts +61 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/hash-node/hash-node.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/index.browser.d.ts +41 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/index.d.ts +39 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/index.native.d.ts +39 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/lazy-json.d.ts +43 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/middleware-serde/deserializerMiddleware.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/middleware-serde/serdePlugin.d.ts +24 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/middleware-serde/serializerMiddleware.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/parse-utils.d.ts +250 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/quote-header.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/schema-serde-lib/schema-date-utils.d.ts +38 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/split-every.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/split-header.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-base64/constants-for-browser.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-base64/fromBase64.browser.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-base64/fromBase64.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-base64/toBase64.browser.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-base64/toBase64.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-body-length/calculateBodyLength.browser.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-body-length/calculateBodyLength.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-buffer-from/buffer-from.d.ts +12 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-hex-encoding/hex-encoding.d.ts +12 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/ByteArrayCollector.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/blob/Uint8ArrayBlobAdapter.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/checksum/ChecksumStream.browser.d.ts +37 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/checksum/ChecksumStream.d.ts +77 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/checksum/createChecksumStream.browser.d.ts +14 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/checksum/createChecksumStream.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/createBufferedReadable.browser.d.ts +55 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/createBufferedReadable.d.ts +16 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/getAwsChunkedEncodingStream.browser.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/getAwsChunkedEncodingStream.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/headStream.browser.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/headStream.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/sdk-stream-mixin.browser.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/sdk-stream-mixin.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/splitStream.browser.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/splitStream.d.ts +17 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/stream-collector.browser.d.ts +12 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/stream-collector.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/stream-type-check.d.ts +17 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-utf8/toUint8Array.browser.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/uuid/v4.d.ts +24 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/value/NumericValue.d.ts +33 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/transport/getSmithyContext.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/transport/httpRequest.d.ts +52 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/transport/httpResponse.d.ts +29 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/transport/index.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/transport/isValidHostLabel.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/transport/isValidHostname.d.ts +1 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/transport/normalizeProvider.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/transport/parseQueryString.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/transport/parseUrl.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/transport/toEndpointV1.d.ts +6 -0
- package/node_modules/@smithy/core/package.json +2 -3
- package/node_modules/@smithy/credential-provider-imds/dist-es/index.js +3 -4
- package/node_modules/@smithy/credential-provider-imds/dist-types/index.d.ts +5 -4
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/Endpoint.d.ts +7 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointConfigOptions.d.ts +13 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointMode.d.ts +7 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointModeConfigOptions.d.ts +13 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/error/InstanceMetadataV1FallbackError.d.ts +12 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/fromContainerMetadata.d.ts +21 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/fromInstanceMetadata.d.ts +10 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/index.d.ts +26 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/ImdsCredentials.d.ts +19 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/RemoteProviderInit.d.ts +40 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/httpRequest.d.ts +5 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/node-http.d.ts +2 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/retry.d.ts +10 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/types.d.ts +7 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/getExtendedInstanceMetadataCredentials.d.ts +6 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/getInstanceMetadataEndpoint.d.ts +21 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/staticStabilityProvider.d.ts +15 -0
- package/node_modules/@smithy/credential-provider-imds/package.json +3 -3
- package/node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts +1 -1
- package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/create-request.d.ts +7 -0
- package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/fetch-http-handler.d.ts +38 -0
- package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/request-timeout.d.ts +1 -0
- package/node_modules/@smithy/fetch-http-handler/package.json +4 -4
- package/node_modules/@smithy/middleware-compression/dist-es/index.js +5 -6
- package/node_modules/@smithy/middleware-compression/dist-types/index.d.ts +7 -6
- package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/NODE_DISABLE_REQUEST_COMPRESSION_CONFIG_OPTIONS.d.ts +17 -0
- package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/NODE_REQUEST_MIN_COMPRESSION_SIZE_BYTES_CONFIG_OPTIONS.d.ts +17 -0
- package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/compressStream.browser.d.ts +1 -0
- package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/compressStream.d.ts +2 -0
- package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/compressString.browser.d.ts +1 -0
- package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/compressString.d.ts +1 -0
- package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/compressionMiddleware.d.ts +21 -0
- package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/configurations.d.ts +37 -0
- package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/constants.d.ts +7 -0
- package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/getCompressionPlugin.d.ts +7 -0
- package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/index.d.ts +7 -0
- package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/isStreaming.d.ts +4 -0
- package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/resolveCompressionConfig.d.ts +5 -0
- package/node_modules/@smithy/middleware-compression/package.json +3 -3
- package/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +1 -1
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/build-abort-error.d.ts +10 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/constants.d.ts +5 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +4 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/http2/ClientHttp2SessionRef.d.ts +46 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +47 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-manager.d.ts +46 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-pool.d.ts +36 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +76 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-https.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-request-timeout.d.ts +6 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-keep-alive.d.ts +6 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/timing.d.ts +9 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +12 -0
- package/node_modules/@smithy/node-http-handler/package.json +4 -4
- package/node_modules/@smithy/signature-v4/dist-es/index.js +4 -4
- package/node_modules/@smithy/signature-v4/dist-types/index.d.ts +5 -4
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/HeaderFormatter.d.ts +25 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/SignatureV4.d.ts +20 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/SignatureV4Base.d.ts +69 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/constants.d.ts +43 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/credentialDerivation.d.ts +30 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/getCanonicalHeaders.d.ts +5 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/getCanonicalQuery.d.ts +5 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/getPayloadHash.d.ts +5 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/headerUtil.d.ts +4 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/index.d.ts +12 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/moveHeadersToQuery.d.ts +10 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/prepareRequest.d.ts +5 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/signature-v4a-container.d.ts +23 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/utilDate.d.ts +2 -0
- package/node_modules/@smithy/signature-v4/package.json +3 -4
- package/node_modules/@smithy/types/dist-es/auth/index.js +2 -6
- package/node_modules/@smithy/types/dist-es/connection/index.js +1 -3
- package/node_modules/@smithy/types/dist-es/endpoints/EndpointParameterInstructions.js +1 -0
- package/node_modules/@smithy/types/dist-es/endpoints/index.js +1 -5
- package/node_modules/@smithy/types/dist-es/extensions/index.js +1 -2
- package/node_modules/@smithy/types/dist-es/identity/index.js +1 -4
- package/node_modules/@smithy/types/dist-es/index.js +7 -43
- package/node_modules/@smithy/types/dist-es/metrics.js +1 -0
- package/node_modules/@smithy/types/dist-types/abort.d.ts +1 -1
- package/node_modules/@smithy/types/dist-types/auth/index.d.ts +7 -6
- package/node_modules/@smithy/types/dist-types/connection/index.d.ts +3 -3
- package/node_modules/@smithy/types/dist-types/endpoints/index.d.ts +5 -5
- package/node_modules/@smithy/types/dist-types/extensions/index.d.ts +6 -4
- package/node_modules/@smithy/types/dist-types/identity/index.d.ts +4 -4
- package/node_modules/@smithy/types/dist-types/index.d.ts +52 -43
- package/node_modules/@smithy/types/dist-types/metrics.d.ts +93 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/abort-handler.d.ts +7 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/abort.d.ts +45 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpApiKeyAuth.d.ts +7 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthScheme.d.ts +49 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthSchemeProvider.d.ts +20 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpSigner.d.ts +41 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/IdentityProviderConfig.d.ts +14 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/auth.d.ts +59 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/index.d.ts +7 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/blob/blob-payload-input-types.d.ts +37 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/checksum.d.ts +61 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/client.d.ts +57 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/command.d.ts +28 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/connection/config.d.ts +15 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/connection/index.d.ts +3 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/connection/manager.d.ts +34 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/connection/pool.d.ts +32 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/crypto.d.ts +58 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/downlevel-ts3.4/transform/type-transform.d.ts +40 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/encode.d.ts +31 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoint.d.ts +77 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/EndpointParameterInstructions.d.ts +41 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/EndpointRuleObject.d.ts +27 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/ErrorRuleObject.d.ts +10 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/RuleSetObject.d.ts +28 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/TreeRuleObject.d.ts +16 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/index.d.ts +5 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/shared.d.ts +55 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/eventStream.d.ts +137 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/extensions/checksum.d.ts +58 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultClientConfiguration.d.ts +32 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +9 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/extensions/index.d.ts +6 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/extensions/retry.d.ts +18 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/externals-check/browser-externals-check.d.ts +35 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/feature-ids.d.ts +16 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/http/httpHandlerInitialization.d.ts +128 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/http.d.ts +110 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/identity/apiKeyIdentity.d.ts +14 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/identity/awsCredentialIdentity.d.ts +31 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/identity/identity.d.ts +15 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/identity/index.d.ts +4 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/identity/tokenIdentity.d.ts +14 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/index.d.ts +52 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/logger.d.ts +13 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/metrics.d.ts +93 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/middleware.d.ts +541 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/pagination.d.ts +33 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/profile.d.ts +30 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/response.d.ts +40 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/retry.d.ts +162 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/schema/schema-deprecated.d.ts +149 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/schema/schema.d.ts +251 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/schema/sentinels.d.ts +65 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/schema/static-schemas.d.ts +118 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/schema/traits.d.ts +46 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/serde.d.ts +114 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/shapes.d.ts +79 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/signature.d.ts +172 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/stream.d.ts +22 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-common-types.d.ts +28 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-input-types.d.ts +54 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-output-types.d.ts +41 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/transfer.d.ts +42 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/transform/client-method-transforms.d.ts +26 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/transform/client-payload-blob-type-narrow.d.ts +77 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/transform/exact.d.ts +14 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/transform/mutable.d.ts +6 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/transform/no-undefined.d.ts +88 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/transform/type-transform.d.ts +40 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/uri.d.ts +17 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/util.d.ts +192 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/waiter.d.ts +35 -0
- package/node_modules/@smithy/types/package.json +2 -2
- package/package.json +10 -10
- package/node_modules/@aws-crypto/crc32/CHANGELOG.md +0 -100
- package/node_modules/@aws-crypto/crc32/LICENSE +0 -201
- package/node_modules/@aws-crypto/crc32/README.md +0 -16
- package/node_modules/@aws-crypto/crc32/build/main/aws_crc32.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32/build/main/aws_crc32.js +0 -31
- package/node_modules/@aws-crypto/crc32/build/main/aws_crc32.js.map +0 -1
- package/node_modules/@aws-crypto/crc32/build/main/index.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32/build/main/index.js +0 -108
- package/node_modules/@aws-crypto/crc32/build/main/index.js.map +0 -1
- package/node_modules/@aws-crypto/crc32/build/module/aws_crc32.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32/build/module/aws_crc32.js +0 -28
- package/node_modules/@aws-crypto/crc32/build/module/aws_crc32.js.map +0 -1
- package/node_modules/@aws-crypto/crc32/build/module/index.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32/build/module/index.js +0 -103
- package/node_modules/@aws-crypto/crc32/build/module/index.js.map +0 -1
- package/node_modules/@aws-crypto/crc32/package.json +0 -32
- package/node_modules/@aws-crypto/crc32/src/aws_crc32.ts +0 -24
- package/node_modules/@aws-crypto/crc32/src/index.ts +0 -92
- package/node_modules/@aws-crypto/crc32/tsconfig.json +0 -9
- package/node_modules/@aws-crypto/crc32/tsconfig.module.json +0 -7
- package/node_modules/@aws-crypto/crc32c/CHANGELOG.md +0 -76
- package/node_modules/@aws-crypto/crc32c/LICENSE +0 -201
- package/node_modules/@aws-crypto/crc32c/README.md +0 -16
- package/node_modules/@aws-crypto/crc32c/build/main/aws_crc32c.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32c/build/main/aws_crc32c.js +0 -31
- package/node_modules/@aws-crypto/crc32c/build/main/aws_crc32c.js.map +0 -1
- package/node_modules/@aws-crypto/crc32c/build/main/index.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32c/build/main/index.js +0 -78
- package/node_modules/@aws-crypto/crc32c/build/main/index.js.map +0 -1
- package/node_modules/@aws-crypto/crc32c/build/module/aws_crc32c.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32c/build/module/aws_crc32c.js +0 -28
- package/node_modules/@aws-crypto/crc32c/build/module/aws_crc32c.js.map +0 -1
- package/node_modules/@aws-crypto/crc32c/build/module/index.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32c/build/module/index.js +0 -73
- package/node_modules/@aws-crypto/crc32c/build/module/index.js.map +0 -1
- package/node_modules/@aws-crypto/crc32c/package.json +0 -32
- package/node_modules/@aws-crypto/crc32c/src/aws_crc32c.ts +0 -24
- package/node_modules/@aws-crypto/crc32c/src/index.ts +0 -64
- package/node_modules/@aws-crypto/crc32c/tsconfig.json +0 -9
- package/node_modules/@aws-crypto/crc32c/tsconfig.module.json +0 -7
- package/node_modules/@aws-crypto/sha1-browser/CHANGELOG.md +0 -62
- package/node_modules/@aws-crypto/sha1-browser/LICENSE +0 -202
- package/node_modules/@aws-crypto/sha1-browser/README.md +0 -21
- package/node_modules/@aws-crypto/sha1-browser/build/main/constants.d.ts +0 -10
- package/node_modules/@aws-crypto/sha1-browser/build/main/constants.js +0 -31
- package/node_modules/@aws-crypto/sha1-browser/build/main/constants.js.map +0 -1
- package/node_modules/@aws-crypto/sha1-browser/build/main/crossPlatformSha1.d.ts +0 -8
- package/node_modules/@aws-crypto/sha1-browser/build/main/crossPlatformSha1.js +0 -29
- package/node_modules/@aws-crypto/sha1-browser/build/main/crossPlatformSha1.js.map +0 -1
- package/node_modules/@aws-crypto/sha1-browser/build/main/index.d.ts +0 -2
- package/node_modules/@aws-crypto/sha1-browser/build/main/index.js +0 -8
- package/node_modules/@aws-crypto/sha1-browser/build/main/index.js.map +0 -1
- package/node_modules/@aws-crypto/sha1-browser/build/main/isEmptyData.d.ts +0 -2
- package/node_modules/@aws-crypto/sha1-browser/build/main/isEmptyData.js +0 -11
- package/node_modules/@aws-crypto/sha1-browser/build/main/isEmptyData.js.map +0 -1
- package/node_modules/@aws-crypto/sha1-browser/build/main/webCryptoSha1.d.ts +0 -9
- package/node_modules/@aws-crypto/sha1-browser/build/main/webCryptoSha1.js +0 -61
- package/node_modules/@aws-crypto/sha1-browser/build/main/webCryptoSha1.js.map +0 -1
- package/node_modules/@aws-crypto/sha1-browser/build/module/constants.d.ts +0 -10
- package/node_modules/@aws-crypto/sha1-browser/build/module/constants.js +0 -28
- package/node_modules/@aws-crypto/sha1-browser/build/module/constants.js.map +0 -1
- package/node_modules/@aws-crypto/sha1-browser/build/module/crossPlatformSha1.d.ts +0 -8
- package/node_modules/@aws-crypto/sha1-browser/build/module/crossPlatformSha1.js +0 -26
- package/node_modules/@aws-crypto/sha1-browser/build/module/crossPlatformSha1.js.map +0 -1
- package/node_modules/@aws-crypto/sha1-browser/build/module/index.d.ts +0 -2
- package/node_modules/@aws-crypto/sha1-browser/build/module/index.js +0 -3
- package/node_modules/@aws-crypto/sha1-browser/build/module/index.js.map +0 -1
- package/node_modules/@aws-crypto/sha1-browser/build/module/isEmptyData.d.ts +0 -2
- package/node_modules/@aws-crypto/sha1-browser/build/module/isEmptyData.js +0 -7
- package/node_modules/@aws-crypto/sha1-browser/build/module/isEmptyData.js.map +0 -1
- package/node_modules/@aws-crypto/sha1-browser/build/module/webCryptoSha1.d.ts +0 -9
- package/node_modules/@aws-crypto/sha1-browser/build/module/webCryptoSha1.js +0 -58
- package/node_modules/@aws-crypto/sha1-browser/build/module/webCryptoSha1.js.map +0 -1
- package/node_modules/@aws-crypto/sha1-browser/package.json +0 -35
- package/node_modules/@aws-crypto/sha1-browser/src/constants.ts +0 -29
- package/node_modules/@aws-crypto/sha1-browser/src/crossPlatformSha1.ts +0 -29
- package/node_modules/@aws-crypto/sha1-browser/src/index.ts +0 -2
- package/node_modules/@aws-crypto/sha1-browser/src/isEmptyData.ts +0 -9
- package/node_modules/@aws-crypto/sha1-browser/src/webCryptoSha1.ts +0 -79
- package/node_modules/@aws-crypto/sha1-browser/tsconfig.json +0 -10
- package/node_modules/@aws-crypto/sha1-browser/tsconfig.module.json +0 -7
- package/node_modules/@aws-crypto/sha256-browser/CHANGELOG.md +0 -118
- package/node_modules/@aws-crypto/sha256-browser/LICENSE +0 -202
- package/node_modules/@aws-crypto/sha256-browser/README.md +0 -31
- package/node_modules/@aws-crypto/sha256-browser/build/main/constants.d.ts +0 -10
- package/node_modules/@aws-crypto/sha256-browser/build/main/constants.js +0 -43
- package/node_modules/@aws-crypto/sha256-browser/build/main/constants.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-browser/build/main/crossPlatformSha256.d.ts +0 -8
- package/node_modules/@aws-crypto/sha256-browser/build/main/crossPlatformSha256.js +0 -30
- package/node_modules/@aws-crypto/sha256-browser/build/main/crossPlatformSha256.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-browser/build/main/index.d.ts +0 -2
- package/node_modules/@aws-crypto/sha256-browser/build/main/index.js +0 -8
- package/node_modules/@aws-crypto/sha256-browser/build/main/index.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-browser/build/main/isEmptyData.d.ts +0 -2
- package/node_modules/@aws-crypto/sha256-browser/build/main/isEmptyData.js +0 -11
- package/node_modules/@aws-crypto/sha256-browser/build/main/isEmptyData.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-browser/build/main/webCryptoSha256.d.ts +0 -10
- package/node_modules/@aws-crypto/sha256-browser/build/main/webCryptoSha256.js +0 -56
- package/node_modules/@aws-crypto/sha256-browser/build/main/webCryptoSha256.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-browser/build/module/constants.d.ts +0 -10
- package/node_modules/@aws-crypto/sha256-browser/build/module/constants.js +0 -40
- package/node_modules/@aws-crypto/sha256-browser/build/module/constants.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-browser/build/module/crossPlatformSha256.d.ts +0 -8
- package/node_modules/@aws-crypto/sha256-browser/build/module/crossPlatformSha256.js +0 -27
- package/node_modules/@aws-crypto/sha256-browser/build/module/crossPlatformSha256.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-browser/build/module/index.d.ts +0 -2
- package/node_modules/@aws-crypto/sha256-browser/build/module/index.js +0 -3
- package/node_modules/@aws-crypto/sha256-browser/build/module/index.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-browser/build/module/isEmptyData.d.ts +0 -2
- package/node_modules/@aws-crypto/sha256-browser/build/module/isEmptyData.js +0 -7
- package/node_modules/@aws-crypto/sha256-browser/build/module/isEmptyData.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-browser/build/module/webCryptoSha256.d.ts +0 -10
- package/node_modules/@aws-crypto/sha256-browser/build/module/webCryptoSha256.js +0 -53
- package/node_modules/@aws-crypto/sha256-browser/build/module/webCryptoSha256.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-browser/package.json +0 -33
- package/node_modules/@aws-crypto/sha256-browser/src/constants.ts +0 -41
- package/node_modules/@aws-crypto/sha256-browser/src/crossPlatformSha256.ts +0 -30
- package/node_modules/@aws-crypto/sha256-browser/src/index.ts +0 -2
- package/node_modules/@aws-crypto/sha256-browser/src/isEmptyData.ts +0 -9
- package/node_modules/@aws-crypto/sha256-browser/src/webCryptoSha256.ts +0 -71
- package/node_modules/@aws-crypto/sha256-browser/tsconfig.json +0 -10
- package/node_modules/@aws-crypto/sha256-browser/tsconfig.module.json +0 -7
- package/node_modules/@aws-crypto/sha256-js/CHANGELOG.md +0 -106
- package/node_modules/@aws-crypto/sha256-js/LICENSE +0 -201
- package/node_modules/@aws-crypto/sha256-js/README.md +0 -29
- package/node_modules/@aws-crypto/sha256-js/build/main/RawSha256.d.ts +0 -17
- package/node_modules/@aws-crypto/sha256-js/build/main/RawSha256.js +0 -124
- package/node_modules/@aws-crypto/sha256-js/build/main/RawSha256.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/main/constants.d.ts +0 -20
- package/node_modules/@aws-crypto/sha256-js/build/main/constants.js +0 -98
- package/node_modules/@aws-crypto/sha256-js/build/main/constants.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/main/index.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/main/index.js +0 -5
- package/node_modules/@aws-crypto/sha256-js/build/main/index.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/main/jsSha256.d.ts +0 -12
- package/node_modules/@aws-crypto/sha256-js/build/main/jsSha256.js +0 -85
- package/node_modules/@aws-crypto/sha256-js/build/main/jsSha256.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/main/knownHashes.fixture.d.ts +0 -5
- package/node_modules/@aws-crypto/sha256-js/build/main/knownHashes.fixture.js +0 -322
- package/node_modules/@aws-crypto/sha256-js/build/main/knownHashes.fixture.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/module/RawSha256.d.ts +0 -17
- package/node_modules/@aws-crypto/sha256-js/build/module/RawSha256.js +0 -121
- package/node_modules/@aws-crypto/sha256-js/build/module/RawSha256.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/module/constants.d.ts +0 -20
- package/node_modules/@aws-crypto/sha256-js/build/module/constants.js +0 -95
- package/node_modules/@aws-crypto/sha256-js/build/module/constants.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/module/index.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/module/index.js +0 -2
- package/node_modules/@aws-crypto/sha256-js/build/module/index.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/module/jsSha256.d.ts +0 -12
- package/node_modules/@aws-crypto/sha256-js/build/module/jsSha256.js +0 -82
- package/node_modules/@aws-crypto/sha256-js/build/module/jsSha256.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/module/knownHashes.fixture.d.ts +0 -5
- package/node_modules/@aws-crypto/sha256-js/build/module/knownHashes.fixture.js +0 -319
- package/node_modules/@aws-crypto/sha256-js/build/module/knownHashes.fixture.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-js/package.json +0 -32
- package/node_modules/@aws-crypto/sha256-js/src/RawSha256.ts +0 -164
- package/node_modules/@aws-crypto/sha256-js/src/constants.ts +0 -98
- package/node_modules/@aws-crypto/sha256-js/src/index.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/src/jsSha256.ts +0 -94
- package/node_modules/@aws-crypto/sha256-js/src/knownHashes.fixture.ts +0 -401
- package/node_modules/@aws-crypto/sha256-js/tsconfig.json +0 -10
- package/node_modules/@aws-crypto/sha256-js/tsconfig.module.json +0 -7
- package/node_modules/@aws-crypto/supports-web-crypto/CHANGELOG.md +0 -66
- package/node_modules/@aws-crypto/supports-web-crypto/LICENSE +0 -202
- package/node_modules/@aws-crypto/supports-web-crypto/README.md +0 -32
- package/node_modules/@aws-crypto/supports-web-crypto/build/main/index.d.ts +0 -1
- package/node_modules/@aws-crypto/supports-web-crypto/build/main/index.js +0 -5
- package/node_modules/@aws-crypto/supports-web-crypto/build/main/index.js.map +0 -1
- package/node_modules/@aws-crypto/supports-web-crypto/build/main/supportsWebCrypto.d.ts +0 -4
- package/node_modules/@aws-crypto/supports-web-crypto/build/main/supportsWebCrypto.js +0 -69
- package/node_modules/@aws-crypto/supports-web-crypto/build/main/supportsWebCrypto.js.map +0 -1
- package/node_modules/@aws-crypto/supports-web-crypto/build/module/index.d.ts +0 -1
- package/node_modules/@aws-crypto/supports-web-crypto/build/module/index.js +0 -2
- package/node_modules/@aws-crypto/supports-web-crypto/build/module/index.js.map +0 -1
- package/node_modules/@aws-crypto/supports-web-crypto/build/module/supportsWebCrypto.d.ts +0 -4
- package/node_modules/@aws-crypto/supports-web-crypto/build/module/supportsWebCrypto.js +0 -62
- package/node_modules/@aws-crypto/supports-web-crypto/build/module/supportsWebCrypto.js.map +0 -1
- package/node_modules/@aws-crypto/supports-web-crypto/package.json +0 -28
- package/node_modules/@aws-crypto/supports-web-crypto/src/index.ts +0 -1
- package/node_modules/@aws-crypto/supports-web-crypto/src/supportsWebCrypto.ts +0 -76
- package/node_modules/@aws-crypto/supports-web-crypto/tsconfig.json +0 -10
- package/node_modules/@aws-crypto/supports-web-crypto/tsconfig.module.json +0 -7
- package/node_modules/@aws-crypto/util/CHANGELOG.md +0 -71
- package/node_modules/@aws-crypto/util/LICENSE +0 -201
- package/node_modules/@aws-crypto/util/README.md +0 -16
- package/node_modules/@aws-crypto/util/build/main/convertToBuffer.d.ts +0 -2
- package/node_modules/@aws-crypto/util/build/main/convertToBuffer.js +0 -24
- package/node_modules/@aws-crypto/util/build/main/convertToBuffer.js.map +0 -1
- package/node_modules/@aws-crypto/util/build/main/index.d.ts +0 -4
- package/node_modules/@aws-crypto/util/build/main/index.js +0 -14
- package/node_modules/@aws-crypto/util/build/main/index.js.map +0 -1
- package/node_modules/@aws-crypto/util/build/main/isEmptyData.d.ts +0 -2
- package/node_modules/@aws-crypto/util/build/main/isEmptyData.js +0 -13
- package/node_modules/@aws-crypto/util/build/main/isEmptyData.js.map +0 -1
- package/node_modules/@aws-crypto/util/build/main/numToUint8.d.ts +0 -1
- package/node_modules/@aws-crypto/util/build/main/numToUint8.js +0 -15
- package/node_modules/@aws-crypto/util/build/main/numToUint8.js.map +0 -1
- package/node_modules/@aws-crypto/util/build/main/uint32ArrayFrom.d.ts +0 -1
- package/node_modules/@aws-crypto/util/build/main/uint32ArrayFrom.js +0 -20
- package/node_modules/@aws-crypto/util/build/main/uint32ArrayFrom.js.map +0 -1
- package/node_modules/@aws-crypto/util/build/module/convertToBuffer.d.ts +0 -2
- package/node_modules/@aws-crypto/util/build/module/convertToBuffer.js +0 -20
- package/node_modules/@aws-crypto/util/build/module/convertToBuffer.js.map +0 -1
- package/node_modules/@aws-crypto/util/build/module/index.d.ts +0 -4
- package/node_modules/@aws-crypto/util/build/module/index.js +0 -7
- package/node_modules/@aws-crypto/util/build/module/index.js.map +0 -1
- package/node_modules/@aws-crypto/util/build/module/isEmptyData.d.ts +0 -2
- package/node_modules/@aws-crypto/util/build/module/isEmptyData.js +0 -9
- package/node_modules/@aws-crypto/util/build/module/isEmptyData.js.map +0 -1
- package/node_modules/@aws-crypto/util/build/module/numToUint8.d.ts +0 -1
- package/node_modules/@aws-crypto/util/build/module/numToUint8.js +0 -11
- package/node_modules/@aws-crypto/util/build/module/numToUint8.js.map +0 -1
- package/node_modules/@aws-crypto/util/build/module/uint32ArrayFrom.d.ts +0 -1
- package/node_modules/@aws-crypto/util/build/module/uint32ArrayFrom.js +0 -16
- package/node_modules/@aws-crypto/util/build/module/uint32ArrayFrom.js.map +0 -1
- package/node_modules/@aws-crypto/util/package.json +0 -32
- package/node_modules/@aws-crypto/util/src/convertToBuffer.ts +0 -30
- package/node_modules/@aws-crypto/util/src/index.ts +0 -7
- package/node_modules/@aws-crypto/util/src/isEmptyData.ts +0 -12
- package/node_modules/@aws-crypto/util/src/numToUint8.ts +0 -11
- package/node_modules/@aws-crypto/util/src/uint32ArrayFrom.ts +0 -16
- package/node_modules/@aws-crypto/util/tsconfig.json +0 -9
- package/node_modules/@aws-crypto/util/tsconfig.module.json +0 -7
- package/node_modules/@aws-sdk/checksums/dist-cjs/flexible-checksums/getCrc32ChecksumAlgorithmFunction.browser.js +0 -2
- package/node_modules/@aws-sdk/checksums/dist-cjs/flexible-checksums/getCrc32ChecksumAlgorithmFunction.js +0 -21
- package/node_modules/@aws-sdk/checksums/dist-es/crc64-nvme/Crc64Nvme.js +0 -92
- package/node_modules/@aws-sdk/checksums/dist-es/flexible-checksums/getCrc32ChecksumAlgorithmFunction.browser.js +0 -2
- package/node_modules/@aws-sdk/checksums/dist-es/flexible-checksums/getCrc32ChecksumAlgorithmFunction.js +0 -21
- package/node_modules/@aws-sdk/checksums/dist-es/flexible-checksums/selectChecksumAlgorithmFunction.js +0 -33
- package/node_modules/@aws-sdk/checksums/dist-types/crc64-nvme/Crc64Nvme.d.ts +0 -24
- package/node_modules/@aws-sdk/checksums/dist-types/crc64-nvme/crc64-nvme-crt-container.d.ts +0 -13
- package/node_modules/@aws-sdk/checksums/dist-types/flexible-checksums/getCrc32ChecksumAlgorithmFunction.browser.d.ts +0 -2
- package/node_modules/@aws-sdk/checksums/dist-types/flexible-checksums/getCrc32ChecksumAlgorithmFunction.d.ts +0 -10
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/crc64-nvme/Crc64Nvme.d.ts +0 -9
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/flexible-checksums/getCrc32ChecksumAlgorithmFunction.browser.d.ts +0 -2
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/flexible-checksums/getCrc32ChecksumAlgorithmFunction.d.ts +0 -12
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/endpoint/bdd.js +0 -49
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/models/CloudFormationServiceException.js +0 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/models/errors.js +0 -407
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.browser.js +0 -32
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.js +0 -45
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.native.js +0 -12
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.shared.js +0 -39
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/schemas/schemas_0.js +0 -3022
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/endpoint/bdd.js +0 -49
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/models/CloudWatchServiceException.js +0 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/models/errors.js +0 -227
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.browser.js +0 -35
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.js +0 -48
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.native.js +0 -12
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.shared.js +0 -40
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/schemas/schemas_0.js +0 -1600
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/endpoint/bdd.js +0 -49
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/models/EC2ServiceException.js +0 -8
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.browser.js +0 -32
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.js +0 -45
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.native.js +0 -12
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.shared.js +0 -39
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/schemas/schemas_0.js +0 -33485
- package/node_modules/@aws-sdk/client-iam/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/node_modules/@aws-sdk/client-iam/dist-cjs/endpoint/bdd.js +0 -82
- package/node_modules/@aws-sdk/client-iam/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/node_modules/@aws-sdk/client-iam/dist-cjs/models/IAMServiceException.js +0 -8
- package/node_modules/@aws-sdk/client-iam/dist-cjs/models/errors.js +0 -431
- package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.browser.js +0 -32
- package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.js +0 -45
- package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.native.js +0 -12
- package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.shared.js +0 -39
- package/node_modules/@aws-sdk/client-iam/dist-cjs/schemas/schemas_0.js +0 -3676
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/endpoint/bdd.js +0 -46
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/models/LambdaServiceException.js +0 -8
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/models/errors.js +0 -865
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.browser.js +0 -34
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.js +0 -47
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.native.js +0 -12
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.shared.js +0 -38
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/schemas/schemas_0.js +0 -3086
- package/node_modules/@aws-sdk/client-s3/dist-cjs/auth/httpAuthSchemeProvider.js +0 -122
- package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/bdd.js +0 -758
- package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/endpointResolver.js +0 -29
- package/node_modules/@aws-sdk/client-s3/dist-cjs/models/S3ServiceException.js +0 -8
- package/node_modules/@aws-sdk/client-s3/dist-cjs/models/errors.js +0 -257
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.browser.js +0 -39
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.js +0 -58
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.native.js +0 -12
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.shared.js +0 -50
- package/node_modules/@aws-sdk/client-s3/dist-cjs/schemas/schemas_0.js +0 -3789
- package/node_modules/@aws-sdk/client-sns/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/node_modules/@aws-sdk/client-sns/dist-cjs/endpoint/bdd.js +0 -52
- package/node_modules/@aws-sdk/client-sns/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/node_modules/@aws-sdk/client-sns/dist-cjs/models/SNSServiceException.js +0 -8
- package/node_modules/@aws-sdk/client-sns/dist-cjs/models/errors.js +0 -415
- package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.browser.js +0 -32
- package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.js +0 -45
- package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.native.js +0 -12
- package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.shared.js +0 -39
- package/node_modules/@aws-sdk/client-sns/dist-cjs/schemas/schemas_0.js +0 -1179
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/endpoint/bdd.js +0 -49
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/models/SQSServiceException.js +0 -8
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/models/errors.js +0 -337
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.browser.js +0 -34
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.js +0 -46
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.native.js +0 -12
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.shared.js +0 -39
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/schemas/schemas_0.js +0 -836
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/bdd.js +0 -49
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/models/SSMServiceException.js +0 -8
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/models/errors.js +0 -1915
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.browser.js +0 -32
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.js +0 -45
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.native.js +0 -12
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.shared.js +0 -39
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/schemas/schemas_0.js +0 -6200
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.browser.js +0 -869
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.native.js +0 -862
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-user-agent-node/getNodeModulesParentDirs.js +0 -15
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-user-agent-node/getSanitizedDevTypeScriptVersion.js +0 -14
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-user-agent-node/getSanitizedTypeScriptVersion.js +0 -9
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-user-agent-node/getTypeScriptUserAgentPair.js +0 -75
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-user-agent-node/getNodeModulesParentDirs.d.ts +0 -10
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-user-agent-node/getSanitizedDevTypeScriptVersion.d.ts +0 -8
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-user-agent-node/getSanitizedTypeScriptVersion.d.ts +0 -8
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-user-agent-node/getTypeScriptUserAgentPair.d.ts +0 -6
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-user-agent-node/getNodeModulesParentDirs.d.ts +0 -1
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-user-agent-node/getSanitizedDevTypeScriptVersion.d.ts +0 -3
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-user-agent-node/getSanitizedTypeScriptVersion.d.ts +0 -3
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-user-agent-node/getTypeScriptUserAgentPair.d.ts +0 -4
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/checkUrl.js +0 -42
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.browser.js +0 -27
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js +0 -71
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/requestHelpers.js +0 -49
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/retry-wrapper.js +0 -13
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.browser.js +0 -2
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js +0 -29
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js +0 -25
- package/node_modules/@aws-sdk/middleware-flexible-checksums/LICENSE +0 -201
- package/node_modules/@aws-sdk/middleware-flexible-checksums/README.md +0 -7
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-cjs/index.js +0 -18
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/index.js +0 -1
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/index.d.ts +0 -2
- package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +0 -42
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/submodules/s3/index.browser.js +0 -1026
- package/node_modules/@aws-sdk/util-locate-window/LICENSE +0 -201
- package/node_modules/@aws-sdk/util-locate-window/README.md +0 -4
- package/node_modules/@aws-sdk/util-locate-window/dist-cjs/index.js +0 -12
- package/node_modules/@aws-sdk/util-locate-window/dist-es/index.js +0 -10
- package/node_modules/@aws-sdk/util-locate-window/dist-types/index.d.ts +0 -6
- package/node_modules/@aws-sdk/util-locate-window/dist-types/ts3.4/index.d.ts +0 -1
- package/node_modules/@aws-sdk/util-locate-window/package.json +0 -54
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.browser.js +0 -57
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.js +0 -234
- package/node_modules/@smithy/is-array-buffer/LICENSE +0 -201
- package/node_modules/@smithy/is-array-buffer/README.md +0 -10
- package/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +0 -32
- package/node_modules/@smithy/is-array-buffer/dist-es/index.js +0 -2
- package/node_modules/@smithy/is-array-buffer/dist-types/index.d.ts +0 -4
- package/node_modules/@smithy/is-array-buffer/package.json +0 -60
- package/node_modules/@smithy/util-buffer-from/LICENSE +0 -201
- package/node_modules/@smithy/util-buffer-from/README.md +0 -10
- package/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +0 -47
- package/node_modules/@smithy/util-buffer-from/dist-es/index.js +0 -14
- package/node_modules/@smithy/util-buffer-from/dist-types/index.d.ts +0 -13
- package/node_modules/@smithy/util-buffer-from/dist-types/ts3.4/index.d.ts +0 -13
- package/node_modules/@smithy/util-buffer-from/package.json +0 -61
- package/node_modules/@smithy/util-utf8/LICENSE +0 -201
- package/node_modules/@smithy/util-utf8/README.md +0 -4
- package/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.browser.js +0 -1
- package/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.js +0 -1
- package/node_modules/@smithy/util-utf8/dist-cjs/index.js +0 -65
- package/node_modules/@smithy/util-utf8/dist-cjs/toUint8Array.js +0 -1
- package/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.browser.js +0 -1
- package/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.js +0 -1
- package/node_modules/@smithy/util-utf8/dist-es/fromUtf8.browser.js +0 -1
- package/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js +0 -5
- package/node_modules/@smithy/util-utf8/dist-es/index.js +0 -3
- package/node_modules/@smithy/util-utf8/dist-es/toUint8Array.js +0 -10
- package/node_modules/@smithy/util-utf8/dist-es/toUtf8.browser.js +0 -9
- package/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +0 -10
- package/node_modules/@smithy/util-utf8/dist-types/fromUtf8.browser.d.ts +0 -1
- package/node_modules/@smithy/util-utf8/dist-types/fromUtf8.d.ts +0 -1
- package/node_modules/@smithy/util-utf8/dist-types/index.d.ts +0 -3
- package/node_modules/@smithy/util-utf8/dist-types/toUint8Array.d.ts +0 -1
- package/node_modules/@smithy/util-utf8/dist-types/toUtf8.browser.d.ts +0 -7
- package/node_modules/@smithy/util-utf8/dist-types/toUtf8.d.ts +0 -7
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +0 -3
- package/node_modules/@smithy/util-utf8/package.json +0 -66
- /package/node_modules/@aws-sdk/checksums/dist-es/{crc64-nvme → submodules/crc/crc64-nvme}/crc64-nvme-crt-container.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/NODE_REQUEST_CHECKSUM_CALCULATION_CONFIG_OPTIONS.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/NODE_RESPONSE_CHECKSUM_VALIDATION_CONFIG_OPTIONS.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/configuration.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/constants.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/flexibleChecksumsInputMiddleware.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/flexibleChecksumsMiddleware.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/flexibleChecksumsResponseMiddleware.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/getChecksum.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/getChecksumAlgorithmForRequest.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/getChecksumAlgorithmListForResponse.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/getChecksumLocationName.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/getFlexibleChecksumsPlugin.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/hasHeader.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/hasHeaderWithPrefix.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/isChecksumWithPartNumber.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/isStreaming.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/resolveFlexibleChecksumsConfig.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/stringHasher.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/stringUnionSelector.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/types.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/validateChecksumFromResponse.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/NODE_REQUEST_CHECKSUM_CALCULATION_CONFIG_OPTIONS.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/NODE_RESPONSE_CHECKSUM_VALIDATION_CONFIG_OPTIONS.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/configuration.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/constants.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/flexibleChecksumsInputMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/flexibleChecksumsMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/flexibleChecksumsResponseMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/getChecksum.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/getChecksumAlgorithmForRequest.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/getChecksumAlgorithmListForResponse.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/getChecksumLocationName.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/getFlexibleChecksumsPlugin.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/hasHeader.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/hasHeaderWithPrefix.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/isChecksumWithPartNumber.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/isStreaming.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/resolveFlexibleChecksumsConfig.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/selectChecksumAlgorithmFunction.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/stringHasher.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/stringUnionSelector.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/types.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/validateChecksumFromResponse.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{crc64-nvme → submodules/crc/crc64-nvme}/crc64-nvme-crt-container.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/NODE_REQUEST_CHECKSUM_CALCULATION_CONFIG_OPTIONS.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/NODE_RESPONSE_CHECKSUM_VALIDATION_CONFIG_OPTIONS.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/configuration.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/constants.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/flexibleChecksumsInputMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/flexibleChecksumsMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/flexibleChecksumsResponseMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/getChecksum.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/getChecksumAlgorithmForRequest.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/getChecksumAlgorithmListForResponse.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/getChecksumLocationName.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/getFlexibleChecksumsPlugin.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/hasHeader.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/hasHeaderWithPrefix.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/isChecksumWithPartNumber.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/isStreaming.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/resolveFlexibleChecksumsConfig.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/selectChecksumAlgorithmFunction.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/stringHasher.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/stringUnionSelector.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/types.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/validateChecksumFromResponse.d.ts +0 -0
- /package/node_modules/{@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/types.js → @aws-sdk/client-ec2/dist-es/models/models_8.js} +0 -0
- /package/node_modules/@smithy/{is-array-buffer/dist-types/ts3.4/index.d.ts → core/dist-types/ts3.4/submodules/serde/is-array-buffer/is-array-buffer.d.ts} +0 -0
- /package/node_modules/@smithy/{util-utf8/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/serde/util-utf8}/fromUtf8.browser.d.ts +0 -0
- /package/node_modules/@smithy/{util-utf8/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/serde/util-utf8}/fromUtf8.d.ts +0 -0
- /package/node_modules/@smithy/{util-utf8/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/serde/util-utf8}/toUint8Array.d.ts +0 -0
- /package/node_modules/@smithy/{util-utf8/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/serde/util-utf8}/toUtf8.browser.d.ts +0 -0
- /package/node_modules/@smithy/{util-utf8/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/serde/util-utf8}/toUtf8.d.ts +0 -0
- /package/node_modules/@smithy/{core/dist-types/submodules/endpoints/middleware-endpoint/types.d.ts → types/dist-types/endpoints/EndpointParameterInstructions.d.ts} +0 -0
|
@@ -1,3789 +0,0 @@
|
|
|
1
|
-
const _A = "Account";
|
|
2
|
-
const _AAO = "AnalyticsAndOperator";
|
|
3
|
-
const _AC = "AccelerateConfiguration";
|
|
4
|
-
const _ACL = "AccessControlList";
|
|
5
|
-
const _ACL_ = "ACL";
|
|
6
|
-
const _ACLn = "AnalyticsConfigurationList";
|
|
7
|
-
const _ACP = "AccessControlPolicy";
|
|
8
|
-
const _ACT = "AccessControlTranslation";
|
|
9
|
-
const _ACn = "AnalyticsConfiguration";
|
|
10
|
-
const _ACnn = "AnnotationCount";
|
|
11
|
-
const _AD = "AccessDenied";
|
|
12
|
-
const _ADb = "AbortDate";
|
|
13
|
-
const _ADn = "AnnotationDirective";
|
|
14
|
-
const _AE = "AnnotationEntry";
|
|
15
|
-
const _AED = "AnalyticsExportDestination";
|
|
16
|
-
const _AF = "AnalyticsFilter";
|
|
17
|
-
const _AH = "AllowedHeaders";
|
|
18
|
-
const _AHl = "AllowedHeader";
|
|
19
|
-
const _AI = "AccountId";
|
|
20
|
-
const _AIMU = "AbortIncompleteMultipartUpload";
|
|
21
|
-
const _AKI = "AccessKeyId";
|
|
22
|
-
const _AL = "AnnotationList";
|
|
23
|
-
const _ALE = "AnnotationLimitExceeded";
|
|
24
|
-
const _AM = "AllowedMethods";
|
|
25
|
-
const _AMU = "AbortMultipartUpload";
|
|
26
|
-
const _AMUO = "AbortMultipartUploadOutput";
|
|
27
|
-
const _AMUR = "AbortMultipartUploadRequest";
|
|
28
|
-
const _AMl = "AllowedMethod";
|
|
29
|
-
const _AN = "AnnotationName";
|
|
30
|
-
const _ANTL = "AnnotationNameTooLong";
|
|
31
|
-
const _AO = "AllowedOrigins";
|
|
32
|
-
const _AOl = "AllowedOrigin";
|
|
33
|
-
const _AP = "AnnotationPayload";
|
|
34
|
-
const _APA = "AccessPointAlias";
|
|
35
|
-
const _APAc = "AccessPointArn";
|
|
36
|
-
const _APn = "AnnotationPrefix";
|
|
37
|
-
const _AQRD = "AllowQuotedRecordDelimiter";
|
|
38
|
-
const _AR = "AcceptRanges";
|
|
39
|
-
const _ARI = "AbortRuleId";
|
|
40
|
-
const _AS = "AbacStatus";
|
|
41
|
-
const _ASBD = "AnalyticsS3BucketDestination";
|
|
42
|
-
const _ASSEBD = "ApplyServerSideEncryptionByDefault";
|
|
43
|
-
const _ASr = "ArchiveStatus";
|
|
44
|
-
const _AT = "AccessTier";
|
|
45
|
-
const _ATC = "AnnotationTableConfiguration";
|
|
46
|
-
const _ATCR = "AnnotationTableConfigurationResult";
|
|
47
|
-
const _ATCU = "AnnotationTableConfigurationUpdates";
|
|
48
|
-
const _An = "And";
|
|
49
|
-
const _Ann = "Annotations";
|
|
50
|
-
const _B = "Bucket";
|
|
51
|
-
const _BA = "BucketArn";
|
|
52
|
-
const _BAE = "BucketAlreadyExists";
|
|
53
|
-
const _BAI = "BucketAccountId";
|
|
54
|
-
const _BAOBY = "BucketAlreadyOwnedByYou";
|
|
55
|
-
const _BET = "BlockedEncryptionTypes";
|
|
56
|
-
const _BGR = "BypassGovernanceRetention";
|
|
57
|
-
const _BI = "BucketInfo";
|
|
58
|
-
const _BKE = "BucketKeyEnabled";
|
|
59
|
-
const _BLC = "BucketLifecycleConfiguration";
|
|
60
|
-
const _BLN = "BucketLocationName";
|
|
61
|
-
const _BLS = "BucketLoggingStatus";
|
|
62
|
-
const _BLT = "BucketLocationType";
|
|
63
|
-
const _BN = "BucketNamespace";
|
|
64
|
-
const _BNu = "BucketName";
|
|
65
|
-
const _BP = "BytesProcessed";
|
|
66
|
-
const _BPA = "BlockPublicAcls";
|
|
67
|
-
const _BPP = "BlockPublicPolicy";
|
|
68
|
-
const _BR = "BucketRegion";
|
|
69
|
-
const _BRy = "BytesReturned";
|
|
70
|
-
const _BS = "BytesScanned";
|
|
71
|
-
const _Bo = "Body";
|
|
72
|
-
const _Bu = "Buckets";
|
|
73
|
-
const _C = "Checksum";
|
|
74
|
-
const _CA = "ChecksumAlgorithm";
|
|
75
|
-
const _CACL = "CannedACL";
|
|
76
|
-
const _CB = "CreateBucket";
|
|
77
|
-
const _CBC = "CreateBucketConfiguration";
|
|
78
|
-
const _CBMC = "CreateBucketMetadataConfiguration";
|
|
79
|
-
const _CBMCR = "CreateBucketMetadataConfigurationRequest";
|
|
80
|
-
const _CBMTC = "CreateBucketMetadataTableConfiguration";
|
|
81
|
-
const _CBMTCR = "CreateBucketMetadataTableConfigurationRequest";
|
|
82
|
-
const _CBO = "CreateBucketOutput";
|
|
83
|
-
const _CBR = "CreateBucketRequest";
|
|
84
|
-
const _CC = "CacheControl";
|
|
85
|
-
const _CCRC = "ChecksumCRC32";
|
|
86
|
-
const _CCRCC = "ChecksumCRC32C";
|
|
87
|
-
const _CCRCNVME = "ChecksumCRC64NVME";
|
|
88
|
-
const _CC_ = "Cache-Control";
|
|
89
|
-
const _CD = "CreationDate";
|
|
90
|
-
const _CD_ = "Content-Disposition";
|
|
91
|
-
const _CDo = "ContentDisposition";
|
|
92
|
-
const _CE = "ContinuationEvent";
|
|
93
|
-
const _CE_ = "Content-Encoding";
|
|
94
|
-
const _CEo = "ContentEncoding";
|
|
95
|
-
const _CF = "CloudFunction";
|
|
96
|
-
const _CFC = "CloudFunctionConfiguration";
|
|
97
|
-
const _CL = "ContentLanguage";
|
|
98
|
-
const _CL_ = "Content-Language";
|
|
99
|
-
const _CL__ = "Content-Length";
|
|
100
|
-
const _CLo = "ContentLength";
|
|
101
|
-
const _CM = "Content-MD5";
|
|
102
|
-
const _CMD = "ChecksumMD5";
|
|
103
|
-
const _CMDo = "ContentMD5";
|
|
104
|
-
const _CMU = "CompletedMultipartUpload";
|
|
105
|
-
const _CMUO = "CompleteMultipartUploadOutput";
|
|
106
|
-
const _CMUOr = "CreateMultipartUploadOutput";
|
|
107
|
-
const _CMUR = "CompleteMultipartUploadResult";
|
|
108
|
-
const _CMURo = "CompleteMultipartUploadRequest";
|
|
109
|
-
const _CMURr = "CreateMultipartUploadRequest";
|
|
110
|
-
const _CMUo = "CompleteMultipartUpload";
|
|
111
|
-
const _CMUr = "CreateMultipartUpload";
|
|
112
|
-
const _CMh = "ChecksumMode";
|
|
113
|
-
const _CO = "CopyObject";
|
|
114
|
-
const _COO = "CopyObjectOutput";
|
|
115
|
-
const _COR = "CopyObjectResult";
|
|
116
|
-
const _CORSC = "CORSConfiguration";
|
|
117
|
-
const _CORSR = "CORSRules";
|
|
118
|
-
const _CORSRu = "CORSRule";
|
|
119
|
-
const _CORo = "CopyObjectRequest";
|
|
120
|
-
const _CP = "CommonPrefix";
|
|
121
|
-
const _CPL = "CommonPrefixList";
|
|
122
|
-
const _CPLo = "CompletedPartList";
|
|
123
|
-
const _CPR = "CopyPartResult";
|
|
124
|
-
const _CPo = "CompletedPart";
|
|
125
|
-
const _CPom = "CommonPrefixes";
|
|
126
|
-
const _CR = "ContentRange";
|
|
127
|
-
const _CRSBA = "ConfirmRemoveSelfBucketAccess";
|
|
128
|
-
const _CR_ = "Content-Range";
|
|
129
|
-
const _CS = "ConfigurationState";
|
|
130
|
-
const _CSHA = "ChecksumSHA1";
|
|
131
|
-
const _CSHAh = "ChecksumSHA256";
|
|
132
|
-
const _CSHAhe = "ChecksumSHA512";
|
|
133
|
-
const _CSIM = "CopySourceIfMatch";
|
|
134
|
-
const _CSIMS = "CopySourceIfModifiedSince";
|
|
135
|
-
const _CSINM = "CopySourceIfNoneMatch";
|
|
136
|
-
const _CSIUS = "CopySourceIfUnmodifiedSince";
|
|
137
|
-
const _CSO = "CreateSessionOutput";
|
|
138
|
-
const _CSR = "CreateSessionResult";
|
|
139
|
-
const _CSRo = "CopySourceRange";
|
|
140
|
-
const _CSRr = "CreateSessionRequest";
|
|
141
|
-
const _CSSSECA = "CopySourceSSECustomerAlgorithm";
|
|
142
|
-
const _CSSSECK = "CopySourceSSECustomerKey";
|
|
143
|
-
const _CSSSECKMD = "CopySourceSSECustomerKeyMD5";
|
|
144
|
-
const _CSV = "CSV";
|
|
145
|
-
const _CSVI = "CopySourceVersionId";
|
|
146
|
-
const _CSVIn = "CSVInput";
|
|
147
|
-
const _CSVO = "CSVOutput";
|
|
148
|
-
const _CSo = "CopySource";
|
|
149
|
-
const _CSr = "CreateSession";
|
|
150
|
-
const _CT = "ChecksumType";
|
|
151
|
-
const _CT_ = "Content-Type";
|
|
152
|
-
const _CTl = "ClientToken";
|
|
153
|
-
const _CTo = "ContentType";
|
|
154
|
-
const _CTom = "CompressionType";
|
|
155
|
-
const _CTon = "ContinuationToken";
|
|
156
|
-
const _CXXHASH = "ChecksumXXHASH64";
|
|
157
|
-
const _CXXHASHh = "ChecksumXXHASH3";
|
|
158
|
-
const _CXXHASHhe = "ChecksumXXHASH128";
|
|
159
|
-
const _Co = "Condition";
|
|
160
|
-
const _Cod = "Code";
|
|
161
|
-
const _Com = "Comments";
|
|
162
|
-
const _Con = "Contents";
|
|
163
|
-
const _Cont = "Cont";
|
|
164
|
-
const _Cr = "Credentials";
|
|
165
|
-
const _D = "Days";
|
|
166
|
-
const _DAI = "DaysAfterInitiation";
|
|
167
|
-
const _DB = "DeleteBucket";
|
|
168
|
-
const _DBAC = "DeleteBucketAnalyticsConfiguration";
|
|
169
|
-
const _DBACR = "DeleteBucketAnalyticsConfigurationRequest";
|
|
170
|
-
const _DBC = "DeleteBucketCors";
|
|
171
|
-
const _DBCR = "DeleteBucketCorsRequest";
|
|
172
|
-
const _DBE = "DeleteBucketEncryption";
|
|
173
|
-
const _DBER = "DeleteBucketEncryptionRequest";
|
|
174
|
-
const _DBIC = "DeleteBucketInventoryConfiguration";
|
|
175
|
-
const _DBICR = "DeleteBucketInventoryConfigurationRequest";
|
|
176
|
-
const _DBITC = "DeleteBucketIntelligentTieringConfiguration";
|
|
177
|
-
const _DBITCR = "DeleteBucketIntelligentTieringConfigurationRequest";
|
|
178
|
-
const _DBL = "DeleteBucketLifecycle";
|
|
179
|
-
const _DBLR = "DeleteBucketLifecycleRequest";
|
|
180
|
-
const _DBMC = "DeleteBucketMetadataConfiguration";
|
|
181
|
-
const _DBMCR = "DeleteBucketMetadataConfigurationRequest";
|
|
182
|
-
const _DBMCRe = "DeleteBucketMetricsConfigurationRequest";
|
|
183
|
-
const _DBMCe = "DeleteBucketMetricsConfiguration";
|
|
184
|
-
const _DBMTC = "DeleteBucketMetadataTableConfiguration";
|
|
185
|
-
const _DBMTCR = "DeleteBucketMetadataTableConfigurationRequest";
|
|
186
|
-
const _DBOC = "DeleteBucketOwnershipControls";
|
|
187
|
-
const _DBOCR = "DeleteBucketOwnershipControlsRequest";
|
|
188
|
-
const _DBP = "DeleteBucketPolicy";
|
|
189
|
-
const _DBPR = "DeleteBucketPolicyRequest";
|
|
190
|
-
const _DBR = "DeleteBucketRequest";
|
|
191
|
-
const _DBRR = "DeleteBucketReplicationRequest";
|
|
192
|
-
const _DBRe = "DeleteBucketReplication";
|
|
193
|
-
const _DBT = "DeleteBucketTagging";
|
|
194
|
-
const _DBTR = "DeleteBucketTaggingRequest";
|
|
195
|
-
const _DBW = "DeleteBucketWebsite";
|
|
196
|
-
const _DBWR = "DeleteBucketWebsiteRequest";
|
|
197
|
-
const _DE = "DataExport";
|
|
198
|
-
const _DIM = "DestinationIfMatch";
|
|
199
|
-
const _DIMS = "DestinationIfModifiedSince";
|
|
200
|
-
const _DINM = "DestinationIfNoneMatch";
|
|
201
|
-
const _DIUS = "DestinationIfUnmodifiedSince";
|
|
202
|
-
const _DM = "DeleteMarker";
|
|
203
|
-
const _DME = "DeleteMarkerEntry";
|
|
204
|
-
const _DMR = "DeleteMarkerReplication";
|
|
205
|
-
const _DMVI = "DeleteMarkerVersionId";
|
|
206
|
-
const _DMe = "DeleteMarkers";
|
|
207
|
-
const _DN = "DisplayName";
|
|
208
|
-
const _DO = "DeletedObject";
|
|
209
|
-
const _DOA = "DeleteObjectAnnotation";
|
|
210
|
-
const _DOAO = "DeleteObjectAnnotationOutput";
|
|
211
|
-
const _DOAR = "DeleteObjectAnnotationRequest";
|
|
212
|
-
const _DOO = "DeleteObjectOutput";
|
|
213
|
-
const _DOOe = "DeleteObjectsOutput";
|
|
214
|
-
const _DOR = "DeleteObjectRequest";
|
|
215
|
-
const _DORe = "DeleteObjectsRequest";
|
|
216
|
-
const _DOT = "DeleteObjectTagging";
|
|
217
|
-
const _DOTO = "DeleteObjectTaggingOutput";
|
|
218
|
-
const _DOTR = "DeleteObjectTaggingRequest";
|
|
219
|
-
const _DOe = "DeletedObjects";
|
|
220
|
-
const _DOel = "DeleteObject";
|
|
221
|
-
const _DOele = "DeleteObjects";
|
|
222
|
-
const _DPAB = "DeletePublicAccessBlock";
|
|
223
|
-
const _DPABR = "DeletePublicAccessBlockRequest";
|
|
224
|
-
const _DR = "DataRedundancy";
|
|
225
|
-
const _DRe = "DefaultRetention";
|
|
226
|
-
const _DRel = "DeleteResult";
|
|
227
|
-
const _DRes = "DestinationResult";
|
|
228
|
-
const _Da = "Date";
|
|
229
|
-
const _De = "Delete";
|
|
230
|
-
const _Del = "Deleted";
|
|
231
|
-
const _Deli = "Delimiter";
|
|
232
|
-
const _Des = "Destination";
|
|
233
|
-
const _Desc = "Description";
|
|
234
|
-
const _Det = "Details";
|
|
235
|
-
const _E = "Error";
|
|
236
|
-
const _EA = "EmailAddress";
|
|
237
|
-
const _EBC = "EventBridgeConfiguration";
|
|
238
|
-
const _EBO = "ExpectedBucketOwner";
|
|
239
|
-
const _EC = "EncryptionConfiguration";
|
|
240
|
-
const _ECr = "ErrorCode";
|
|
241
|
-
const _ED = "ErrorDetails";
|
|
242
|
-
const _EDr = "ErrorDocument";
|
|
243
|
-
const _EE = "EndEvent";
|
|
244
|
-
const _EH = "ExposeHeaders";
|
|
245
|
-
const _EHx = "ExposeHeader";
|
|
246
|
-
const _EM = "ErrorMessage";
|
|
247
|
-
const _EODM = "ExpiredObjectDeleteMarker";
|
|
248
|
-
const _EOR = "ExistingObjectReplication";
|
|
249
|
-
const _ES = "ExpiresString";
|
|
250
|
-
const _ESBO = "ExpectedSourceBucketOwner";
|
|
251
|
-
const _ET = "ETag";
|
|
252
|
-
const _ETL = "EncryptionTypeList";
|
|
253
|
-
const _ETM = "EncryptionTypeMismatch";
|
|
254
|
-
const _ETn = "EncryptionType";
|
|
255
|
-
const _ETnc = "EncodingType";
|
|
256
|
-
const _ETv = "EventThreshold";
|
|
257
|
-
const _ETx = "ExpressionType";
|
|
258
|
-
const _En = "Encryption";
|
|
259
|
-
const _Ena = "Enabled";
|
|
260
|
-
const _End = "End";
|
|
261
|
-
const _Er = "Errors";
|
|
262
|
-
const _Ev = "Events";
|
|
263
|
-
const _Eve = "Event";
|
|
264
|
-
const _Ex = "Expiration";
|
|
265
|
-
const _Exp = "Expires";
|
|
266
|
-
const _Expr = "Expression";
|
|
267
|
-
const _F = "Filter";
|
|
268
|
-
const _FD = "FieldDelimiter";
|
|
269
|
-
const _FHI = "FileHeaderInfo";
|
|
270
|
-
const _FO = "FetchOwner";
|
|
271
|
-
const _FR = "FilterRule";
|
|
272
|
-
const _FRL = "FilterRuleList";
|
|
273
|
-
const _FRi = "FilterRules";
|
|
274
|
-
const _Fi = "Field";
|
|
275
|
-
const _Fo = "Format";
|
|
276
|
-
const _Fr = "Frequency";
|
|
277
|
-
const _G = "Grants";
|
|
278
|
-
const _GBA = "GetBucketAbac";
|
|
279
|
-
const _GBAC = "GetBucketAccelerateConfiguration";
|
|
280
|
-
const _GBACO = "GetBucketAccelerateConfigurationOutput";
|
|
281
|
-
const _GBACOe = "GetBucketAnalyticsConfigurationOutput";
|
|
282
|
-
const _GBACR = "GetBucketAccelerateConfigurationRequest";
|
|
283
|
-
const _GBACRe = "GetBucketAnalyticsConfigurationRequest";
|
|
284
|
-
const _GBACe = "GetBucketAnalyticsConfiguration";
|
|
285
|
-
const _GBAO = "GetBucketAbacOutput";
|
|
286
|
-
const _GBAOe = "GetBucketAclOutput";
|
|
287
|
-
const _GBAR = "GetBucketAbacRequest";
|
|
288
|
-
const _GBARe = "GetBucketAclRequest";
|
|
289
|
-
const _GBAe = "GetBucketAcl";
|
|
290
|
-
const _GBC = "GetBucketCors";
|
|
291
|
-
const _GBCO = "GetBucketCorsOutput";
|
|
292
|
-
const _GBCR = "GetBucketCorsRequest";
|
|
293
|
-
const _GBE = "GetBucketEncryption";
|
|
294
|
-
const _GBEO = "GetBucketEncryptionOutput";
|
|
295
|
-
const _GBER = "GetBucketEncryptionRequest";
|
|
296
|
-
const _GBIC = "GetBucketInventoryConfiguration";
|
|
297
|
-
const _GBICO = "GetBucketInventoryConfigurationOutput";
|
|
298
|
-
const _GBICR = "GetBucketInventoryConfigurationRequest";
|
|
299
|
-
const _GBITC = "GetBucketIntelligentTieringConfiguration";
|
|
300
|
-
const _GBITCO = "GetBucketIntelligentTieringConfigurationOutput";
|
|
301
|
-
const _GBITCR = "GetBucketIntelligentTieringConfigurationRequest";
|
|
302
|
-
const _GBL = "GetBucketLocation";
|
|
303
|
-
const _GBLC = "GetBucketLifecycleConfiguration";
|
|
304
|
-
const _GBLCO = "GetBucketLifecycleConfigurationOutput";
|
|
305
|
-
const _GBLCR = "GetBucketLifecycleConfigurationRequest";
|
|
306
|
-
const _GBLO = "GetBucketLocationOutput";
|
|
307
|
-
const _GBLOe = "GetBucketLoggingOutput";
|
|
308
|
-
const _GBLR = "GetBucketLocationRequest";
|
|
309
|
-
const _GBLRe = "GetBucketLoggingRequest";
|
|
310
|
-
const _GBLe = "GetBucketLogging";
|
|
311
|
-
const _GBMC = "GetBucketMetadataConfiguration";
|
|
312
|
-
const _GBMCO = "GetBucketMetadataConfigurationOutput";
|
|
313
|
-
const _GBMCOe = "GetBucketMetricsConfigurationOutput";
|
|
314
|
-
const _GBMCR = "GetBucketMetadataConfigurationResult";
|
|
315
|
-
const _GBMCRe = "GetBucketMetadataConfigurationRequest";
|
|
316
|
-
const _GBMCRet = "GetBucketMetricsConfigurationRequest";
|
|
317
|
-
const _GBMCe = "GetBucketMetricsConfiguration";
|
|
318
|
-
const _GBMTC = "GetBucketMetadataTableConfiguration";
|
|
319
|
-
const _GBMTCO = "GetBucketMetadataTableConfigurationOutput";
|
|
320
|
-
const _GBMTCR = "GetBucketMetadataTableConfigurationResult";
|
|
321
|
-
const _GBMTCRe = "GetBucketMetadataTableConfigurationRequest";
|
|
322
|
-
const _GBNC = "GetBucketNotificationConfiguration";
|
|
323
|
-
const _GBNCR = "GetBucketNotificationConfigurationRequest";
|
|
324
|
-
const _GBOC = "GetBucketOwnershipControls";
|
|
325
|
-
const _GBOCO = "GetBucketOwnershipControlsOutput";
|
|
326
|
-
const _GBOCR = "GetBucketOwnershipControlsRequest";
|
|
327
|
-
const _GBP = "GetBucketPolicy";
|
|
328
|
-
const _GBPO = "GetBucketPolicyOutput";
|
|
329
|
-
const _GBPR = "GetBucketPolicyRequest";
|
|
330
|
-
const _GBPS = "GetBucketPolicyStatus";
|
|
331
|
-
const _GBPSO = "GetBucketPolicyStatusOutput";
|
|
332
|
-
const _GBPSR = "GetBucketPolicyStatusRequest";
|
|
333
|
-
const _GBR = "GetBucketReplication";
|
|
334
|
-
const _GBRO = "GetBucketReplicationOutput";
|
|
335
|
-
const _GBRP = "GetBucketRequestPayment";
|
|
336
|
-
const _GBRPO = "GetBucketRequestPaymentOutput";
|
|
337
|
-
const _GBRPR = "GetBucketRequestPaymentRequest";
|
|
338
|
-
const _GBRR = "GetBucketReplicationRequest";
|
|
339
|
-
const _GBT = "GetBucketTagging";
|
|
340
|
-
const _GBTO = "GetBucketTaggingOutput";
|
|
341
|
-
const _GBTR = "GetBucketTaggingRequest";
|
|
342
|
-
const _GBV = "GetBucketVersioning";
|
|
343
|
-
const _GBVO = "GetBucketVersioningOutput";
|
|
344
|
-
const _GBVR = "GetBucketVersioningRequest";
|
|
345
|
-
const _GBW = "GetBucketWebsite";
|
|
346
|
-
const _GBWO = "GetBucketWebsiteOutput";
|
|
347
|
-
const _GBWR = "GetBucketWebsiteRequest";
|
|
348
|
-
const _GFC = "GrantFullControl";
|
|
349
|
-
const _GJP = "GlacierJobParameters";
|
|
350
|
-
const _GO = "GetObject";
|
|
351
|
-
const _GOA = "GetObjectAcl";
|
|
352
|
-
const _GOAO = "GetObjectAclOutput";
|
|
353
|
-
const _GOAOe = "GetObjectAnnotationOutput";
|
|
354
|
-
const _GOAOet = "GetObjectAttributesOutput";
|
|
355
|
-
const _GOAP = "GetObjectAttributesParts";
|
|
356
|
-
const _GOAR = "GetObjectAclRequest";
|
|
357
|
-
const _GOARe = "GetObjectAnnotationRequest";
|
|
358
|
-
const _GOARet = "GetObjectAttributesResponse";
|
|
359
|
-
const _GOARetb = "GetObjectAttributesRequest";
|
|
360
|
-
const _GOAe = "GetObjectAnnotation";
|
|
361
|
-
const _GOAet = "GetObjectAttributes";
|
|
362
|
-
const _GOLC = "GetObjectLockConfiguration";
|
|
363
|
-
const _GOLCO = "GetObjectLockConfigurationOutput";
|
|
364
|
-
const _GOLCR = "GetObjectLockConfigurationRequest";
|
|
365
|
-
const _GOLH = "GetObjectLegalHold";
|
|
366
|
-
const _GOLHO = "GetObjectLegalHoldOutput";
|
|
367
|
-
const _GOLHR = "GetObjectLegalHoldRequest";
|
|
368
|
-
const _GOO = "GetObjectOutput";
|
|
369
|
-
const _GOR = "GetObjectRequest";
|
|
370
|
-
const _GORO = "GetObjectRetentionOutput";
|
|
371
|
-
const _GORR = "GetObjectRetentionRequest";
|
|
372
|
-
const _GORe = "GetObjectRetention";
|
|
373
|
-
const _GOT = "GetObjectTagging";
|
|
374
|
-
const _GOTO = "GetObjectTaggingOutput";
|
|
375
|
-
const _GOTOe = "GetObjectTorrentOutput";
|
|
376
|
-
const _GOTR = "GetObjectTaggingRequest";
|
|
377
|
-
const _GOTRe = "GetObjectTorrentRequest";
|
|
378
|
-
const _GOTe = "GetObjectTorrent";
|
|
379
|
-
const _GPAB = "GetPublicAccessBlock";
|
|
380
|
-
const _GPABO = "GetPublicAccessBlockOutput";
|
|
381
|
-
const _GPABR = "GetPublicAccessBlockRequest";
|
|
382
|
-
const _GR = "GrantRead";
|
|
383
|
-
const _GRACP = "GrantReadACP";
|
|
384
|
-
const _GW = "GrantWrite";
|
|
385
|
-
const _GWACP = "GrantWriteACP";
|
|
386
|
-
const _Gr = "Grant";
|
|
387
|
-
const _Gra = "Grantee";
|
|
388
|
-
const _HB = "HeadBucket";
|
|
389
|
-
const _HBO = "HeadBucketOutput";
|
|
390
|
-
const _HBR = "HeadBucketRequest";
|
|
391
|
-
const _HECRE = "HttpErrorCodeReturnedEquals";
|
|
392
|
-
const _HN = "HostName";
|
|
393
|
-
const _HO = "HeadObject";
|
|
394
|
-
const _HOO = "HeadObjectOutput";
|
|
395
|
-
const _HOR = "HeadObjectRequest";
|
|
396
|
-
const _HRC = "HttpRedirectCode";
|
|
397
|
-
const _I = "Id";
|
|
398
|
-
const _IAN = "InvalidAnnotationName";
|
|
399
|
-
const _IC = "InventoryConfiguration";
|
|
400
|
-
const _ICL = "InventoryConfigurationList";
|
|
401
|
-
const _ID = "ID";
|
|
402
|
-
const _IDn = "IndexDocument";
|
|
403
|
-
const _IDnv = "InventoryDestination";
|
|
404
|
-
const _IE = "IsEnabled";
|
|
405
|
-
const _IEn = "InventoryEncryption";
|
|
406
|
-
const _IF = "InventoryFilter";
|
|
407
|
-
const _IL = "IsLatest";
|
|
408
|
-
const _IM = "IfMatch";
|
|
409
|
-
const _IMIT = "IfMatchInitiatedTime";
|
|
410
|
-
const _IMLMT = "IfMatchLastModifiedTime";
|
|
411
|
-
const _IMS = "IfMatchSize";
|
|
412
|
-
const _IMS_ = "If-Modified-Since";
|
|
413
|
-
const _IMSf = "IfModifiedSince";
|
|
414
|
-
const _IMUR = "InitiateMultipartUploadResult";
|
|
415
|
-
const _IM_ = "If-Match";
|
|
416
|
-
const _INM = "IfNoneMatch";
|
|
417
|
-
const _INM_ = "If-None-Match";
|
|
418
|
-
const _IOF = "InventoryOptionalFields";
|
|
419
|
-
const _IOS = "InvalidObjectState";
|
|
420
|
-
const _IOV = "IncludedObjectVersions";
|
|
421
|
-
const _IP = "InvalidPrefix";
|
|
422
|
-
const _IPA = "IgnorePublicAcls";
|
|
423
|
-
const _IPM = "IdempotencyParameterMismatch";
|
|
424
|
-
const _IPs = "IsPublic";
|
|
425
|
-
const _IR = "InvalidRequest";
|
|
426
|
-
const _IRIP = "IsRestoreInProgress";
|
|
427
|
-
const _IS = "InputSerialization";
|
|
428
|
-
const _ISBD = "InventoryS3BucketDestination";
|
|
429
|
-
const _ISn = "InventorySchedule";
|
|
430
|
-
const _IT = "IsTruncated";
|
|
431
|
-
const _ITAO = "IntelligentTieringAndOperator";
|
|
432
|
-
const _ITC = "IntelligentTieringConfiguration";
|
|
433
|
-
const _ITCL = "IntelligentTieringConfigurationList";
|
|
434
|
-
const _ITCR = "InventoryTableConfigurationResult";
|
|
435
|
-
const _ITCU = "InventoryTableConfigurationUpdates";
|
|
436
|
-
const _ITCn = "InventoryTableConfiguration";
|
|
437
|
-
const _ITF = "IntelligentTieringFilter";
|
|
438
|
-
const _IUS = "IfUnmodifiedSince";
|
|
439
|
-
const _IUS_ = "If-Unmodified-Since";
|
|
440
|
-
const _IWO = "InvalidWriteOffset";
|
|
441
|
-
const _In = "Initiator";
|
|
442
|
-
const _Ini = "Initiated";
|
|
443
|
-
const _JSON = "JSON";
|
|
444
|
-
const _JSONI = "JSONInput";
|
|
445
|
-
const _JSONO = "JSONOutput";
|
|
446
|
-
const _JTC = "JournalTableConfiguration";
|
|
447
|
-
const _JTCR = "JournalTableConfigurationResult";
|
|
448
|
-
const _JTCU = "JournalTableConfigurationUpdates";
|
|
449
|
-
const _K = "Key";
|
|
450
|
-
const _KC = "KeyCount";
|
|
451
|
-
const _KI = "KeyId";
|
|
452
|
-
const _KKA = "KmsKeyArn";
|
|
453
|
-
const _KM = "KeyMarker";
|
|
454
|
-
const _KMSC = "KMSContext";
|
|
455
|
-
const _KMSKA = "KMSKeyArn";
|
|
456
|
-
const _KMSKI = "KMSKeyId";
|
|
457
|
-
const _KMSMKID = "KMSMasterKeyID";
|
|
458
|
-
const _KPE = "KeyPrefixEquals";
|
|
459
|
-
const _L = "Location";
|
|
460
|
-
const _LAMBR = "ListAllMyBucketsResult";
|
|
461
|
-
const _LAMDBR = "ListAllMyDirectoryBucketsResult";
|
|
462
|
-
const _LB = "ListBuckets";
|
|
463
|
-
const _LBAC = "ListBucketAnalyticsConfigurations";
|
|
464
|
-
const _LBACO = "ListBucketAnalyticsConfigurationsOutput";
|
|
465
|
-
const _LBACR = "ListBucketAnalyticsConfigurationResult";
|
|
466
|
-
const _LBACRi = "ListBucketAnalyticsConfigurationsRequest";
|
|
467
|
-
const _LBIC = "ListBucketInventoryConfigurations";
|
|
468
|
-
const _LBICO = "ListBucketInventoryConfigurationsOutput";
|
|
469
|
-
const _LBICR = "ListBucketInventoryConfigurationsRequest";
|
|
470
|
-
const _LBITC = "ListBucketIntelligentTieringConfigurations";
|
|
471
|
-
const _LBITCO = "ListBucketIntelligentTieringConfigurationsOutput";
|
|
472
|
-
const _LBITCR = "ListBucketIntelligentTieringConfigurationsRequest";
|
|
473
|
-
const _LBMC = "ListBucketMetricsConfigurations";
|
|
474
|
-
const _LBMCO = "ListBucketMetricsConfigurationsOutput";
|
|
475
|
-
const _LBMCR = "ListBucketMetricsConfigurationsRequest";
|
|
476
|
-
const _LBO = "ListBucketsOutput";
|
|
477
|
-
const _LBR = "ListBucketsRequest";
|
|
478
|
-
const _LBRi = "ListBucketResult";
|
|
479
|
-
const _LC = "LocationConstraint";
|
|
480
|
-
const _LCi = "LifecycleConfiguration";
|
|
481
|
-
const _LDB = "ListDirectoryBuckets";
|
|
482
|
-
const _LDBO = "ListDirectoryBucketsOutput";
|
|
483
|
-
const _LDBR = "ListDirectoryBucketsRequest";
|
|
484
|
-
const _LE = "LoggingEnabled";
|
|
485
|
-
const _LEi = "LifecycleExpiration";
|
|
486
|
-
const _LFA = "LambdaFunctionArn";
|
|
487
|
-
const _LFC = "LambdaFunctionConfiguration";
|
|
488
|
-
const _LFCL = "LambdaFunctionConfigurationList";
|
|
489
|
-
const _LFCa = "LambdaFunctionConfigurations";
|
|
490
|
-
const _LH = "LegalHold";
|
|
491
|
-
const _LI = "LocationInfo";
|
|
492
|
-
const _LICR = "ListInventoryConfigurationsResult";
|
|
493
|
-
const _LM = "LastModified";
|
|
494
|
-
const _LMCR = "ListMetricsConfigurationsResult";
|
|
495
|
-
const _LMT = "LastModifiedTime";
|
|
496
|
-
const _LMU = "ListMultipartUploads";
|
|
497
|
-
const _LMUO = "ListMultipartUploadsOutput";
|
|
498
|
-
const _LMUR = "ListMultipartUploadsResult";
|
|
499
|
-
const _LMURi = "ListMultipartUploadsRequest";
|
|
500
|
-
const _LM_ = "Last-Modified";
|
|
501
|
-
const _LO = "ListObjects";
|
|
502
|
-
const _LOA = "ListObjectAnnotations";
|
|
503
|
-
const _LOAO = "ListObjectAnnotationsOutput";
|
|
504
|
-
const _LOAR = "ListObjectAnnotationsRequest";
|
|
505
|
-
const _LOO = "ListObjectsOutput";
|
|
506
|
-
const _LOR = "ListObjectsRequest";
|
|
507
|
-
const _LOV = "ListObjectsV2";
|
|
508
|
-
const _LOVO = "ListObjectsV2Output";
|
|
509
|
-
const _LOVOi = "ListObjectVersionsOutput";
|
|
510
|
-
const _LOVR = "ListObjectsV2Request";
|
|
511
|
-
const _LOVRi = "ListObjectVersionsRequest";
|
|
512
|
-
const _LOVi = "ListObjectVersions";
|
|
513
|
-
const _LP = "ListParts";
|
|
514
|
-
const _LPO = "ListPartsOutput";
|
|
515
|
-
const _LPR = "ListPartsResult";
|
|
516
|
-
const _LPRi = "ListPartsRequest";
|
|
517
|
-
const _LR = "LifecycleRule";
|
|
518
|
-
const _LRAO = "LifecycleRuleAndOperator";
|
|
519
|
-
const _LRF = "LifecycleRuleFilter";
|
|
520
|
-
const _LRi = "LifecycleRules";
|
|
521
|
-
const _LVR = "ListVersionsResult";
|
|
522
|
-
const _M = "Metadata";
|
|
523
|
-
const _MAO = "MetricsAndOperator";
|
|
524
|
-
const _MAR = "MaxAnnotationResults";
|
|
525
|
-
const _MAS = "MaxAgeSeconds";
|
|
526
|
-
const _MB = "MaxBuckets";
|
|
527
|
-
const _MC = "MetadataConfiguration";
|
|
528
|
-
const _MCL = "MetricsConfigurationList";
|
|
529
|
-
const _MCR = "MetadataConfigurationResult";
|
|
530
|
-
const _MCe = "MetricsConfiguration";
|
|
531
|
-
const _MD = "MetadataDirective";
|
|
532
|
-
const _MDB = "MaxDirectoryBuckets";
|
|
533
|
-
const _MDf = "MfaDelete";
|
|
534
|
-
const _ME = "MetadataEntry";
|
|
535
|
-
const _MF = "MetricsFilter";
|
|
536
|
-
const _MFA = "MFA";
|
|
537
|
-
const _MFAD = "MFADelete";
|
|
538
|
-
const _MK = "MaxKeys";
|
|
539
|
-
const _MM = "MissingMeta";
|
|
540
|
-
const _MOS = "MpuObjectSize";
|
|
541
|
-
const _MP = "MaxParts";
|
|
542
|
-
const _MTC = "MetadataTableConfiguration";
|
|
543
|
-
const _MTCR = "MetadataTableConfigurationResult";
|
|
544
|
-
const _MTEC = "MetadataTableEncryptionConfiguration";
|
|
545
|
-
const _MU = "MultipartUpload";
|
|
546
|
-
const _MUL = "MultipartUploadList";
|
|
547
|
-
const _MUa = "MaxUploads";
|
|
548
|
-
const _Ma = "Marker";
|
|
549
|
-
const _Me = "Metrics";
|
|
550
|
-
const _Mes = "Message";
|
|
551
|
-
const _Mi = "Minutes";
|
|
552
|
-
const _Mo = "Mode";
|
|
553
|
-
const _N = "Name";
|
|
554
|
-
const _NC = "NotificationConfiguration";
|
|
555
|
-
const _NCF = "NotificationConfigurationFilter";
|
|
556
|
-
const _NCT = "NextContinuationToken";
|
|
557
|
-
const _ND = "NoncurrentDays";
|
|
558
|
-
const _NEKKAS = "NonEmptyKmsKeyArnString";
|
|
559
|
-
const _NF = "NotFound";
|
|
560
|
-
const _NKM = "NextKeyMarker";
|
|
561
|
-
const _NM = "NextMarker";
|
|
562
|
-
const _NNV = "NewerNoncurrentVersions";
|
|
563
|
-
const _NPNM = "NextPartNumberMarker";
|
|
564
|
-
const _NSA = "NoSuchAnnotation";
|
|
565
|
-
const _NSB = "NoSuchBucket";
|
|
566
|
-
const _NSK = "NoSuchKey";
|
|
567
|
-
const _NSU = "NoSuchUpload";
|
|
568
|
-
const _NUIM = "NextUploadIdMarker";
|
|
569
|
-
const _NVE = "NoncurrentVersionExpiration";
|
|
570
|
-
const _NVIM = "NextVersionIdMarker";
|
|
571
|
-
const _NVT = "NoncurrentVersionTransitions";
|
|
572
|
-
const _NVTL = "NoncurrentVersionTransitionList";
|
|
573
|
-
const _NVTo = "NoncurrentVersionTransition";
|
|
574
|
-
const _O = "Owner";
|
|
575
|
-
const _OA = "ObjectAttributes";
|
|
576
|
-
const _OAIATE = "ObjectAlreadyInActiveTierError";
|
|
577
|
-
const _OC = "OwnershipControls";
|
|
578
|
-
const _OCR = "OwnershipControlsRule";
|
|
579
|
-
const _OCRw = "OwnershipControlsRules";
|
|
580
|
-
const _OE = "ObjectEncryption";
|
|
581
|
-
const _OF = "OptionalFields";
|
|
582
|
-
const _OI = "ObjectIdentifier";
|
|
583
|
-
const _OIL = "ObjectIdentifierList";
|
|
584
|
-
const _OIM = "ObjectIfMatch";
|
|
585
|
-
const _OL = "OutputLocation";
|
|
586
|
-
const _OLC = "ObjectLockConfiguration";
|
|
587
|
-
const _OLE = "ObjectLockEnabled";
|
|
588
|
-
const _OLEFB = "ObjectLockEnabledForBucket";
|
|
589
|
-
const _OLLH = "ObjectLockLegalHold";
|
|
590
|
-
const _OLLHS = "ObjectLockLegalHoldStatus";
|
|
591
|
-
const _OLM = "ObjectLockMode";
|
|
592
|
-
const _OLR = "ObjectLockRetention";
|
|
593
|
-
const _OLRUD = "ObjectLockRetainUntilDate";
|
|
594
|
-
const _OLRb = "ObjectLockRule";
|
|
595
|
-
const _OLb = "ObjectList";
|
|
596
|
-
const _ONIATE = "ObjectNotInActiveTierError";
|
|
597
|
-
const _OO = "ObjectOwnership";
|
|
598
|
-
const _OOA = "OptionalObjectAttributes";
|
|
599
|
-
const _OP = "ObjectParts";
|
|
600
|
-
const _OPb = "ObjectPart";
|
|
601
|
-
const _OS = "ObjectSize";
|
|
602
|
-
const _OSGT = "ObjectSizeGreaterThan";
|
|
603
|
-
const _OSLT = "ObjectSizeLessThan";
|
|
604
|
-
const _OSV = "OutputSchemaVersion";
|
|
605
|
-
const _OSu = "OutputSerialization";
|
|
606
|
-
const _OV = "ObjectVersion";
|
|
607
|
-
const _OVI = "ObjectVersionId";
|
|
608
|
-
const _OVL = "ObjectVersionList";
|
|
609
|
-
const _Ob = "Objects";
|
|
610
|
-
const _Obj = "Object";
|
|
611
|
-
const _P = "Prefix";
|
|
612
|
-
const _PABC = "PublicAccessBlockConfiguration";
|
|
613
|
-
const _PBA = "PutBucketAbac";
|
|
614
|
-
const _PBAC = "PutBucketAccelerateConfiguration";
|
|
615
|
-
const _PBACR = "PutBucketAccelerateConfigurationRequest";
|
|
616
|
-
const _PBACRu = "PutBucketAnalyticsConfigurationRequest";
|
|
617
|
-
const _PBACu = "PutBucketAnalyticsConfiguration";
|
|
618
|
-
const _PBAR = "PutBucketAbacRequest";
|
|
619
|
-
const _PBARu = "PutBucketAclRequest";
|
|
620
|
-
const _PBAu = "PutBucketAcl";
|
|
621
|
-
const _PBC = "PutBucketCors";
|
|
622
|
-
const _PBCR = "PutBucketCorsRequest";
|
|
623
|
-
const _PBE = "PutBucketEncryption";
|
|
624
|
-
const _PBER = "PutBucketEncryptionRequest";
|
|
625
|
-
const _PBIC = "PutBucketInventoryConfiguration";
|
|
626
|
-
const _PBICR = "PutBucketInventoryConfigurationRequest";
|
|
627
|
-
const _PBITC = "PutBucketIntelligentTieringConfiguration";
|
|
628
|
-
const _PBITCR = "PutBucketIntelligentTieringConfigurationRequest";
|
|
629
|
-
const _PBL = "PutBucketLogging";
|
|
630
|
-
const _PBLC = "PutBucketLifecycleConfiguration";
|
|
631
|
-
const _PBLCO = "PutBucketLifecycleConfigurationOutput";
|
|
632
|
-
const _PBLCR = "PutBucketLifecycleConfigurationRequest";
|
|
633
|
-
const _PBLR = "PutBucketLoggingRequest";
|
|
634
|
-
const _PBMC = "PutBucketMetricsConfiguration";
|
|
635
|
-
const _PBMCR = "PutBucketMetricsConfigurationRequest";
|
|
636
|
-
const _PBNC = "PutBucketNotificationConfiguration";
|
|
637
|
-
const _PBNCR = "PutBucketNotificationConfigurationRequest";
|
|
638
|
-
const _PBOC = "PutBucketOwnershipControls";
|
|
639
|
-
const _PBOCR = "PutBucketOwnershipControlsRequest";
|
|
640
|
-
const _PBP = "PutBucketPolicy";
|
|
641
|
-
const _PBPR = "PutBucketPolicyRequest";
|
|
642
|
-
const _PBR = "PutBucketReplication";
|
|
643
|
-
const _PBRP = "PutBucketRequestPayment";
|
|
644
|
-
const _PBRPR = "PutBucketRequestPaymentRequest";
|
|
645
|
-
const _PBRR = "PutBucketReplicationRequest";
|
|
646
|
-
const _PBT = "PutBucketTagging";
|
|
647
|
-
const _PBTR = "PutBucketTaggingRequest";
|
|
648
|
-
const _PBV = "PutBucketVersioning";
|
|
649
|
-
const _PBVR = "PutBucketVersioningRequest";
|
|
650
|
-
const _PBW = "PutBucketWebsite";
|
|
651
|
-
const _PBWR = "PutBucketWebsiteRequest";
|
|
652
|
-
const _PC = "PartsCount";
|
|
653
|
-
const _PDS = "PartitionDateSource";
|
|
654
|
-
const _PE = "ProgressEvent";
|
|
655
|
-
const _PI = "ParquetInput";
|
|
656
|
-
const _PL = "PartsList";
|
|
657
|
-
const _PN = "PartNumber";
|
|
658
|
-
const _PNM = "PartNumberMarker";
|
|
659
|
-
const _PO = "PutObject";
|
|
660
|
-
const _POA = "PutObjectAcl";
|
|
661
|
-
const _POAO = "PutObjectAclOutput";
|
|
662
|
-
const _POAOu = "PutObjectAnnotationOutput";
|
|
663
|
-
const _POAR = "PutObjectAclRequest";
|
|
664
|
-
const _POARu = "PutObjectAnnotationRequest";
|
|
665
|
-
const _POAu = "PutObjectAnnotation";
|
|
666
|
-
const _POLC = "PutObjectLockConfiguration";
|
|
667
|
-
const _POLCO = "PutObjectLockConfigurationOutput";
|
|
668
|
-
const _POLCR = "PutObjectLockConfigurationRequest";
|
|
669
|
-
const _POLH = "PutObjectLegalHold";
|
|
670
|
-
const _POLHO = "PutObjectLegalHoldOutput";
|
|
671
|
-
const _POLHR = "PutObjectLegalHoldRequest";
|
|
672
|
-
const _POO = "PutObjectOutput";
|
|
673
|
-
const _POR = "PutObjectRequest";
|
|
674
|
-
const _PORO = "PutObjectRetentionOutput";
|
|
675
|
-
const _PORR = "PutObjectRetentionRequest";
|
|
676
|
-
const _PORu = "PutObjectRetention";
|
|
677
|
-
const _POT = "PutObjectTagging";
|
|
678
|
-
const _POTO = "PutObjectTaggingOutput";
|
|
679
|
-
const _POTR = "PutObjectTaggingRequest";
|
|
680
|
-
const _PP = "PartitionedPrefix";
|
|
681
|
-
const _PPAB = "PutPublicAccessBlock";
|
|
682
|
-
const _PPABR = "PutPublicAccessBlockRequest";
|
|
683
|
-
const _PS = "PolicyStatus";
|
|
684
|
-
const _Pa = "Parts";
|
|
685
|
-
const _Par = "Part";
|
|
686
|
-
const _Parq = "Parquet";
|
|
687
|
-
const _Pay = "Payer";
|
|
688
|
-
const _Payl = "Payload";
|
|
689
|
-
const _Pe = "Permission";
|
|
690
|
-
const _Po = "Policy";
|
|
691
|
-
const _Pr = "Progress";
|
|
692
|
-
const _Pri = "Priority";
|
|
693
|
-
const _Pro = "Protocol";
|
|
694
|
-
const _Q = "Quiet";
|
|
695
|
-
const _QA = "QueueArn";
|
|
696
|
-
const _QC = "QuoteCharacter";
|
|
697
|
-
const _QCL = "QueueConfigurationList";
|
|
698
|
-
const _QCu = "QueueConfigurations";
|
|
699
|
-
const _QCue = "QueueConfiguration";
|
|
700
|
-
const _QEC = "QuoteEscapeCharacter";
|
|
701
|
-
const _QF = "QuoteFields";
|
|
702
|
-
const _Qu = "Queue";
|
|
703
|
-
const _R = "Role";
|
|
704
|
-
const _RART = "RedirectAllRequestsTo";
|
|
705
|
-
const _RC = "RequestCharged";
|
|
706
|
-
const _RCC = "ResponseCacheControl";
|
|
707
|
-
const _RCD = "ResponseContentDisposition";
|
|
708
|
-
const _RCE = "ResponseContentEncoding";
|
|
709
|
-
const _RCL = "ResponseContentLanguage";
|
|
710
|
-
const _RCT = "ResponseContentType";
|
|
711
|
-
const _RCe = "ReplicationConfiguration";
|
|
712
|
-
const _RD = "RecordDelimiter";
|
|
713
|
-
const _RE = "ResponseExpires";
|
|
714
|
-
const _RED = "RestoreExpiryDate";
|
|
715
|
-
const _REe = "RecordExpiration";
|
|
716
|
-
const _REec = "RecordsEvent";
|
|
717
|
-
const _RKKID = "ReplicaKmsKeyID";
|
|
718
|
-
const _RKPW = "ReplaceKeyPrefixWith";
|
|
719
|
-
const _RKW = "ReplaceKeyWith";
|
|
720
|
-
const _RM = "ReplicaModifications";
|
|
721
|
-
const _RO = "RenameObject";
|
|
722
|
-
const _ROO = "RenameObjectOutput";
|
|
723
|
-
const _ROOe = "RestoreObjectOutput";
|
|
724
|
-
const _ROP = "RestoreOutputPath";
|
|
725
|
-
const _ROR = "RenameObjectRequest";
|
|
726
|
-
const _RORe = "RestoreObjectRequest";
|
|
727
|
-
const _ROe = "RestoreObject";
|
|
728
|
-
const _RP = "RequestPayer";
|
|
729
|
-
const _RPB = "RestrictPublicBuckets";
|
|
730
|
-
const _RPC = "RequestPaymentConfiguration";
|
|
731
|
-
const _RPe = "RequestProgress";
|
|
732
|
-
const _RR = "RoutingRules";
|
|
733
|
-
const _RRAO = "ReplicationRuleAndOperator";
|
|
734
|
-
const _RRF = "ReplicationRuleFilter";
|
|
735
|
-
const _RRe = "ReplicationRule";
|
|
736
|
-
const _RRep = "ReplicationRules";
|
|
737
|
-
const _RReq = "RequestRoute";
|
|
738
|
-
const _RRes = "RestoreRequest";
|
|
739
|
-
const _RRo = "RoutingRule";
|
|
740
|
-
const _RS = "ReplicationStatus";
|
|
741
|
-
const _RSe = "RestoreStatus";
|
|
742
|
-
const _RSen = "RenameSource";
|
|
743
|
-
const _RT = "ReplicationTime";
|
|
744
|
-
const _RTV = "ReplicationTimeValue";
|
|
745
|
-
const _RTe = "RequestToken";
|
|
746
|
-
const _RUD = "RetainUntilDate";
|
|
747
|
-
const _Ra = "Range";
|
|
748
|
-
const _Re = "Restore";
|
|
749
|
-
const _Rec = "Records";
|
|
750
|
-
const _Red = "Redirect";
|
|
751
|
-
const _Ret = "Retention";
|
|
752
|
-
const _Ru = "Rules";
|
|
753
|
-
const _Rul = "Rule";
|
|
754
|
-
const _S = "Status";
|
|
755
|
-
const _SA = "StartAfter";
|
|
756
|
-
const _SAK = "SecretAccessKey";
|
|
757
|
-
const _SAs = "SseAlgorithm";
|
|
758
|
-
const _SB = "StreamingBlob";
|
|
759
|
-
const _SBD = "S3BucketDestination";
|
|
760
|
-
const _SC = "StorageClass";
|
|
761
|
-
const _SCA = "StorageClassAnalysis";
|
|
762
|
-
const _SCADE = "StorageClassAnalysisDataExport";
|
|
763
|
-
const _SCV = "SessionCredentialValue";
|
|
764
|
-
const _SCe = "SessionCredentials";
|
|
765
|
-
const _SCt = "StatusCode";
|
|
766
|
-
const _SDV = "SkipDestinationValidation";
|
|
767
|
-
const _SE = "StatsEvent";
|
|
768
|
-
const _SIM = "SourceIfMatch";
|
|
769
|
-
const _SIMS = "SourceIfModifiedSince";
|
|
770
|
-
const _SINM = "SourceIfNoneMatch";
|
|
771
|
-
const _SIUS = "SourceIfUnmodifiedSince";
|
|
772
|
-
const _SK = "SSE-KMS";
|
|
773
|
-
const _SKEO = "SseKmsEncryptedObjects";
|
|
774
|
-
const _SKF = "S3KeyFilter";
|
|
775
|
-
const _SKe = "S3Key";
|
|
776
|
-
const _SL = "S3Location";
|
|
777
|
-
const _SM = "SessionMode";
|
|
778
|
-
const _SOC = "SelectObjectContent";
|
|
779
|
-
const _SOCES = "SelectObjectContentEventStream";
|
|
780
|
-
const _SOCO = "SelectObjectContentOutput";
|
|
781
|
-
const _SOCR = "SelectObjectContentRequest";
|
|
782
|
-
const _SP = "SelectParameters";
|
|
783
|
-
const _SPi = "SimplePrefix";
|
|
784
|
-
const _SR = "ScanRange";
|
|
785
|
-
const _SS = "SSE-S3";
|
|
786
|
-
const _SSC = "SourceSelectionCriteria";
|
|
787
|
-
const _SSE = "ServerSideEncryption";
|
|
788
|
-
const _SSEA = "SSEAlgorithm";
|
|
789
|
-
const _SSEBD = "ServerSideEncryptionByDefault";
|
|
790
|
-
const _SSEC = "ServerSideEncryptionConfiguration";
|
|
791
|
-
const _SSECA = "SSECustomerAlgorithm";
|
|
792
|
-
const _SSECK = "SSECustomerKey";
|
|
793
|
-
const _SSECKMD = "SSECustomerKeyMD5";
|
|
794
|
-
const _SSEKMS = "SSEKMS";
|
|
795
|
-
const _SSEKMSE = "SSEKMSEncryption";
|
|
796
|
-
const _SSEKMSEC = "SSEKMSEncryptionContext";
|
|
797
|
-
const _SSEKMSKI = "SSEKMSKeyId";
|
|
798
|
-
const _SSER = "ServerSideEncryptionRule";
|
|
799
|
-
const _SSERe = "ServerSideEncryptionRules";
|
|
800
|
-
const _SSES = "SSES3";
|
|
801
|
-
const _ST = "SessionToken";
|
|
802
|
-
const _STD = "S3TablesDestination";
|
|
803
|
-
const _STDR = "S3TablesDestinationResult";
|
|
804
|
-
const _S_ = "S3";
|
|
805
|
-
const _Sc = "Schedule";
|
|
806
|
-
const _Si = "Size";
|
|
807
|
-
const _St = "Start";
|
|
808
|
-
const _Sta = "Stats";
|
|
809
|
-
const _Su = "Suffix";
|
|
810
|
-
const _T = "Tags";
|
|
811
|
-
const _TA = "TableArn";
|
|
812
|
-
const _TAo = "TopicArn";
|
|
813
|
-
const _TB = "TargetBucket";
|
|
814
|
-
const _TBA = "TableBucketArn";
|
|
815
|
-
const _TBT = "TableBucketType";
|
|
816
|
-
const _TC = "TagCount";
|
|
817
|
-
const _TCL = "TopicConfigurationList";
|
|
818
|
-
const _TCo = "TopicConfigurations";
|
|
819
|
-
const _TCop = "TopicConfiguration";
|
|
820
|
-
const _TD = "TaggingDirective";
|
|
821
|
-
const _TDMOS = "TransitionDefaultMinimumObjectSize";
|
|
822
|
-
const _TG = "TargetGrants";
|
|
823
|
-
const _TGa = "TargetGrant";
|
|
824
|
-
const _TL = "TieringList";
|
|
825
|
-
const _TLr = "TransitionList";
|
|
826
|
-
const _TMP = "TooManyParts";
|
|
827
|
-
const _TN = "TableName";
|
|
828
|
-
const _TNa = "TableNamespace";
|
|
829
|
-
const _TOKF = "TargetObjectKeyFormat";
|
|
830
|
-
const _TP = "TargetPrefix";
|
|
831
|
-
const _TPC = "TotalPartsCount";
|
|
832
|
-
const _TS = "TableStatus";
|
|
833
|
-
const _TSa = "TagSet";
|
|
834
|
-
const _Ta = "Tag";
|
|
835
|
-
const _Tag = "Tagging";
|
|
836
|
-
const _Ti = "Tier";
|
|
837
|
-
const _Tie = "Tierings";
|
|
838
|
-
const _Tier = "Tiering";
|
|
839
|
-
const _Tim = "Time";
|
|
840
|
-
const _To = "Token";
|
|
841
|
-
const _Top = "Topic";
|
|
842
|
-
const _Tr = "Transitions";
|
|
843
|
-
const _Tra = "Transition";
|
|
844
|
-
const _Ty = "Type";
|
|
845
|
-
const _U = "Uploads";
|
|
846
|
-
const _UBMATC = "UpdateBucketMetadataAnnotationTableConfiguration";
|
|
847
|
-
const _UBMATCR = "UpdateBucketMetadataAnnotationTableConfigurationRequest";
|
|
848
|
-
const _UBMITC = "UpdateBucketMetadataInventoryTableConfiguration";
|
|
849
|
-
const _UBMITCR = "UpdateBucketMetadataInventoryTableConfigurationRequest";
|
|
850
|
-
const _UBMJTC = "UpdateBucketMetadataJournalTableConfiguration";
|
|
851
|
-
const _UBMJTCR = "UpdateBucketMetadataJournalTableConfigurationRequest";
|
|
852
|
-
const _UI = "UploadId";
|
|
853
|
-
const _UIM = "UploadIdMarker";
|
|
854
|
-
const _UM = "UserMetadata";
|
|
855
|
-
const _UMT = "UnsupportedMediaType";
|
|
856
|
-
const _UOE = "UpdateObjectEncryption";
|
|
857
|
-
const _UOER = "UpdateObjectEncryptionRequest";
|
|
858
|
-
const _UOERp = "UpdateObjectEncryptionResponse";
|
|
859
|
-
const _UP = "UploadPart";
|
|
860
|
-
const _UPC = "UploadPartCopy";
|
|
861
|
-
const _UPCO = "UploadPartCopyOutput";
|
|
862
|
-
const _UPCR = "UploadPartCopyRequest";
|
|
863
|
-
const _UPO = "UploadPartOutput";
|
|
864
|
-
const _UPR = "UploadPartRequest";
|
|
865
|
-
const _URI = "URI";
|
|
866
|
-
const _Up = "Upload";
|
|
867
|
-
const _V = "Value";
|
|
868
|
-
const _VC = "VersioningConfiguration";
|
|
869
|
-
const _VI = "VersionId";
|
|
870
|
-
const _VIM = "VersionIdMarker";
|
|
871
|
-
const _Ve = "Versions";
|
|
872
|
-
const _Ver = "Version";
|
|
873
|
-
const _WC = "WebsiteConfiguration";
|
|
874
|
-
const _WGOR = "WriteGetObjectResponse";
|
|
875
|
-
const _WGORR = "WriteGetObjectResponseRequest";
|
|
876
|
-
const _WOB = "WriteOffsetBytes";
|
|
877
|
-
const _WRL = "WebsiteRedirectLocation";
|
|
878
|
-
const _Y = "Years";
|
|
879
|
-
const _aN = "annotationName";
|
|
880
|
-
const _ap = "annotation-prefix";
|
|
881
|
-
const _ar = "accept-ranges";
|
|
882
|
-
const _br = "bucket-region";
|
|
883
|
-
const _c = "client";
|
|
884
|
-
const _ct = "continuation-token";
|
|
885
|
-
const _d = "delimiter";
|
|
886
|
-
const _e = "error";
|
|
887
|
-
const _eP = "eventPayload";
|
|
888
|
-
const _en = "endpoint";
|
|
889
|
-
const _et = "encoding-type";
|
|
890
|
-
const _fo = "fetch-owner";
|
|
891
|
-
const _h = "http";
|
|
892
|
-
const _hC = "httpChecksum";
|
|
893
|
-
const _hE = "httpError";
|
|
894
|
-
const _hH = "httpHeader";
|
|
895
|
-
const _hL = "hostLabel";
|
|
896
|
-
const _hP = "httpPayload";
|
|
897
|
-
const _hPH = "httpPrefixHeaders";
|
|
898
|
-
const _hQ = "httpQuery";
|
|
899
|
-
const _hi = "http://www.w3.org/2001/XMLSchema-instance";
|
|
900
|
-
const _i = "id";
|
|
901
|
-
const _iT = "idempotencyToken";
|
|
902
|
-
const _km = "key-marker";
|
|
903
|
-
const _m = "marker";
|
|
904
|
-
const _mar = "max-annotation-results";
|
|
905
|
-
const _mb = "max-buckets";
|
|
906
|
-
const _mdb = "max-directory-buckets";
|
|
907
|
-
const _mk = "max-keys";
|
|
908
|
-
const _mp = "max-parts";
|
|
909
|
-
const _mu = "max-uploads";
|
|
910
|
-
const _p = "prefix";
|
|
911
|
-
const _pN = "partNumber";
|
|
912
|
-
const _pnm = "part-number-marker";
|
|
913
|
-
const _rcc = "response-cache-control";
|
|
914
|
-
const _rcd = "response-content-disposition";
|
|
915
|
-
const _rce = "response-content-encoding";
|
|
916
|
-
const _rcl = "response-content-language";
|
|
917
|
-
const _rct = "response-content-type";
|
|
918
|
-
const _re = "response-expires";
|
|
919
|
-
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.s3";
|
|
920
|
-
const _sa = "start-after";
|
|
921
|
-
const _st = "streaming";
|
|
922
|
-
const _uI = "uploadId";
|
|
923
|
-
const _uim = "upload-id-marker";
|
|
924
|
-
const _vI = "versionId";
|
|
925
|
-
const _vim = "version-id-marker";
|
|
926
|
-
const _x = "xsi";
|
|
927
|
-
const _xA = "xmlAttribute";
|
|
928
|
-
const _xF = "xmlFlattened";
|
|
929
|
-
const _xN = "xmlName";
|
|
930
|
-
const _xNm = "xmlNamespace";
|
|
931
|
-
const _xaa = "x-amz-acl";
|
|
932
|
-
const _xaad = "x-amz-abort-date";
|
|
933
|
-
const _xaapa = "x-amz-access-point-alias";
|
|
934
|
-
const _xaari = "x-amz-abort-rule-id";
|
|
935
|
-
const _xaas = "x-amz-archive-status";
|
|
936
|
-
const _xaba = "x-amz-bucket-arn";
|
|
937
|
-
const _xabgr = "x-amz-bypass-governance-retention";
|
|
938
|
-
const _xabln = "x-amz-bucket-location-name";
|
|
939
|
-
const _xablt = "x-amz-bucket-location-type";
|
|
940
|
-
const _xabn = "x-amz-bucket-namespace";
|
|
941
|
-
const _xabole = "x-amz-bucket-object-lock-enabled";
|
|
942
|
-
const _xabolt = "x-amz-bucket-object-lock-token";
|
|
943
|
-
const _xabr = "x-amz-bucket-region";
|
|
944
|
-
const _xaca = "x-amz-checksum-algorithm";
|
|
945
|
-
const _xacc = "x-amz-checksum-crc32";
|
|
946
|
-
const _xacc_ = "x-amz-checksum-crc32c";
|
|
947
|
-
const _xacc__ = "x-amz-checksum-crc64nvme";
|
|
948
|
-
const _xacm = "x-amz-checksum-md5";
|
|
949
|
-
const _xacm_ = "x-amz-checksum-mode";
|
|
950
|
-
const _xacrsba = "x-amz-confirm-remove-self-bucket-access";
|
|
951
|
-
const _xacs = "x-amz-checksum-sha1";
|
|
952
|
-
const _xacs_ = "x-amz-checksum-sha256";
|
|
953
|
-
const _xacs__ = "x-amz-checksum-sha512";
|
|
954
|
-
const _xacs___ = "x-amz-copy-source";
|
|
955
|
-
const _xacsim = "x-amz-copy-source-if-match";
|
|
956
|
-
const _xacsims = "x-amz-copy-source-if-modified-since";
|
|
957
|
-
const _xacsinm = "x-amz-copy-source-if-none-match";
|
|
958
|
-
const _xacsius = "x-amz-copy-source-if-unmodified-since";
|
|
959
|
-
const _xacsm = "x-amz-create-session-mode";
|
|
960
|
-
const _xacsr = "x-amz-copy-source-range";
|
|
961
|
-
const _xacssseca = "x-amz-copy-source-server-side-encryption-customer-algorithm";
|
|
962
|
-
const _xacssseck = "x-amz-copy-source-server-side-encryption-customer-key";
|
|
963
|
-
const _xacssseckM = "x-amz-copy-source-server-side-encryption-customer-key-MD5";
|
|
964
|
-
const _xacsvi = "x-amz-copy-source-version-id";
|
|
965
|
-
const _xact = "x-amz-checksum-type";
|
|
966
|
-
const _xact_ = "x-amz-client-token";
|
|
967
|
-
const _xacx = "x-amz-checksum-xxhash64";
|
|
968
|
-
const _xacx_ = "x-amz-checksum-xxhash3";
|
|
969
|
-
const _xacx__ = "x-amz-checksum-xxhash128";
|
|
970
|
-
const _xadm = "x-amz-delete-marker";
|
|
971
|
-
const _xae = "x-amz-expiration";
|
|
972
|
-
const _xaebo = "x-amz-expected-bucket-owner";
|
|
973
|
-
const _xafec = "x-amz-fwd-error-code";
|
|
974
|
-
const _xafem = "x-amz-fwd-error-message";
|
|
975
|
-
const _xafhCC = "x-amz-fwd-header-Cache-Control";
|
|
976
|
-
const _xafhCD = "x-amz-fwd-header-Content-Disposition";
|
|
977
|
-
const _xafhCE = "x-amz-fwd-header-Content-Encoding";
|
|
978
|
-
const _xafhCL = "x-amz-fwd-header-Content-Language";
|
|
979
|
-
const _xafhCR = "x-amz-fwd-header-Content-Range";
|
|
980
|
-
const _xafhCT = "x-amz-fwd-header-Content-Type";
|
|
981
|
-
const _xafhE = "x-amz-fwd-header-ETag";
|
|
982
|
-
const _xafhE_ = "x-amz-fwd-header-Expires";
|
|
983
|
-
const _xafhLM = "x-amz-fwd-header-Last-Modified";
|
|
984
|
-
const _xafhar = "x-amz-fwd-header-accept-ranges";
|
|
985
|
-
const _xafhxacc = "x-amz-fwd-header-x-amz-checksum-crc32";
|
|
986
|
-
const _xafhxacc_ = "x-amz-fwd-header-x-amz-checksum-crc32c";
|
|
987
|
-
const _xafhxacc__ = "x-amz-fwd-header-x-amz-checksum-crc64nvme";
|
|
988
|
-
const _xafhxacm = "x-amz-fwd-header-x-amz-checksum-md5";
|
|
989
|
-
const _xafhxacs = "x-amz-fwd-header-x-amz-checksum-sha1";
|
|
990
|
-
const _xafhxacs_ = "x-amz-fwd-header-x-amz-checksum-sha256";
|
|
991
|
-
const _xafhxacs__ = "x-amz-fwd-header-x-amz-checksum-sha512";
|
|
992
|
-
const _xafhxacx = "x-amz-fwd-header-x-amz-checksum-xxhash64";
|
|
993
|
-
const _xafhxacx_ = "x-amz-fwd-header-x-amz-checksum-xxhash3";
|
|
994
|
-
const _xafhxacx__ = "x-amz-fwd-header-x-amz-checksum-xxhash128";
|
|
995
|
-
const _xafhxadm = "x-amz-fwd-header-x-amz-delete-marker";
|
|
996
|
-
const _xafhxae = "x-amz-fwd-header-x-amz-expiration";
|
|
997
|
-
const _xafhxamm = "x-amz-fwd-header-x-amz-missing-meta";
|
|
998
|
-
const _xafhxampc = "x-amz-fwd-header-x-amz-mp-parts-count";
|
|
999
|
-
const _xafhxaollh = "x-amz-fwd-header-x-amz-object-lock-legal-hold";
|
|
1000
|
-
const _xafhxaolm = "x-amz-fwd-header-x-amz-object-lock-mode";
|
|
1001
|
-
const _xafhxaolrud = "x-amz-fwd-header-x-amz-object-lock-retain-until-date";
|
|
1002
|
-
const _xafhxar = "x-amz-fwd-header-x-amz-restore";
|
|
1003
|
-
const _xafhxarc = "x-amz-fwd-header-x-amz-request-charged";
|
|
1004
|
-
const _xafhxars = "x-amz-fwd-header-x-amz-replication-status";
|
|
1005
|
-
const _xafhxasc = "x-amz-fwd-header-x-amz-storage-class";
|
|
1006
|
-
const _xafhxasse = "x-amz-fwd-header-x-amz-server-side-encryption";
|
|
1007
|
-
const _xafhxasseakki = "x-amz-fwd-header-x-amz-server-side-encryption-aws-kms-key-id";
|
|
1008
|
-
const _xafhxassebke = "x-amz-fwd-header-x-amz-server-side-encryption-bucket-key-enabled";
|
|
1009
|
-
const _xafhxasseca = "x-amz-fwd-header-x-amz-server-side-encryption-customer-algorithm";
|
|
1010
|
-
const _xafhxasseckM = "x-amz-fwd-header-x-amz-server-side-encryption-customer-key-MD5";
|
|
1011
|
-
const _xafhxatc = "x-amz-fwd-header-x-amz-tagging-count";
|
|
1012
|
-
const _xafhxavi = "x-amz-fwd-header-x-amz-version-id";
|
|
1013
|
-
const _xafs = "x-amz-fwd-status";
|
|
1014
|
-
const _xagfc = "x-amz-grant-full-control";
|
|
1015
|
-
const _xagr = "x-amz-grant-read";
|
|
1016
|
-
const _xagra = "x-amz-grant-read-acp";
|
|
1017
|
-
const _xagw = "x-amz-grant-write";
|
|
1018
|
-
const _xagwa = "x-amz-grant-write-acp";
|
|
1019
|
-
const _xaimit = "x-amz-if-match-initiated-time";
|
|
1020
|
-
const _xaimlmt = "x-amz-if-match-last-modified-time";
|
|
1021
|
-
const _xaims = "x-amz-if-match-size";
|
|
1022
|
-
const _xam = "x-amz-meta-";
|
|
1023
|
-
const _xam_ = "x-amz-mfa";
|
|
1024
|
-
const _xamd = "x-amz-metadata-directive";
|
|
1025
|
-
const _xamm = "x-amz-missing-meta";
|
|
1026
|
-
const _xamos = "x-amz-mp-object-size";
|
|
1027
|
-
const _xamp = "x-amz-max-parts";
|
|
1028
|
-
const _xampc = "x-amz-mp-parts-count";
|
|
1029
|
-
const _xaoa = "x-amz-object-attributes";
|
|
1030
|
-
const _xaoad = "x-amz-object-annotation-directive";
|
|
1031
|
-
const _xaoim = "x-amz-object-if-match";
|
|
1032
|
-
const _xaollh = "x-amz-object-lock-legal-hold";
|
|
1033
|
-
const _xaolm = "x-amz-object-lock-mode";
|
|
1034
|
-
const _xaolrud = "x-amz-object-lock-retain-until-date";
|
|
1035
|
-
const _xaoo = "x-amz-object-ownership";
|
|
1036
|
-
const _xaooa = "x-amz-optional-object-attributes";
|
|
1037
|
-
const _xaos = "x-amz-object-size";
|
|
1038
|
-
const _xaovi = "x-amz-object-version-id";
|
|
1039
|
-
const _xapnm = "x-amz-part-number-marker";
|
|
1040
|
-
const _xar = "x-amz-restore";
|
|
1041
|
-
const _xarc = "x-amz-request-charged";
|
|
1042
|
-
const _xarop = "x-amz-restore-output-path";
|
|
1043
|
-
const _xarp = "x-amz-request-payer";
|
|
1044
|
-
const _xarr = "x-amz-request-route";
|
|
1045
|
-
const _xars = "x-amz-replication-status";
|
|
1046
|
-
const _xars_ = "x-amz-rename-source";
|
|
1047
|
-
const _xarsim = "x-amz-rename-source-if-match";
|
|
1048
|
-
const _xarsims = "x-amz-rename-source-if-modified-since";
|
|
1049
|
-
const _xarsinm = "x-amz-rename-source-if-none-match";
|
|
1050
|
-
const _xarsius = "x-amz-rename-source-if-unmodified-since";
|
|
1051
|
-
const _xart = "x-amz-request-token";
|
|
1052
|
-
const _xasc = "x-amz-storage-class";
|
|
1053
|
-
const _xasca = "x-amz-sdk-checksum-algorithm";
|
|
1054
|
-
const _xasdv = "x-amz-skip-destination-validation";
|
|
1055
|
-
const _xasebo = "x-amz-source-expected-bucket-owner";
|
|
1056
|
-
const _xasse = "x-amz-server-side-encryption";
|
|
1057
|
-
const _xasseakki = "x-amz-server-side-encryption-aws-kms-key-id";
|
|
1058
|
-
const _xassebke = "x-amz-server-side-encryption-bucket-key-enabled";
|
|
1059
|
-
const _xassec = "x-amz-server-side-encryption-context";
|
|
1060
|
-
const _xasseca = "x-amz-server-side-encryption-customer-algorithm";
|
|
1061
|
-
const _xasseck = "x-amz-server-side-encryption-customer-key";
|
|
1062
|
-
const _xasseckM = "x-amz-server-side-encryption-customer-key-MD5";
|
|
1063
|
-
const _xat = "x-amz-tagging";
|
|
1064
|
-
const _xatc = "x-amz-tagging-count";
|
|
1065
|
-
const _xatd = "x-amz-tagging-directive";
|
|
1066
|
-
const _xatdmos = "x-amz-transition-default-minimum-object-size";
|
|
1067
|
-
const _xavi = "x-amz-version-id";
|
|
1068
|
-
const _xawob = "x-amz-write-offset-bytes";
|
|
1069
|
-
const _xawrl = "x-amz-website-redirect-location";
|
|
1070
|
-
const _xs = "xsi:type";
|
|
1071
|
-
const n0 = "com.amazonaws.s3";
|
|
1072
|
-
const { TypeRegistry } = require("@smithy/core/schema");
|
|
1073
|
-
const { AccessDenied, AnnotationLimitExceeded, AnnotationNameTooLong, BucketAlreadyExists, BucketAlreadyOwnedByYou, EncryptionTypeMismatch, IdempotencyParameterMismatch, InvalidAnnotationName, InvalidObjectState, InvalidPrefix, InvalidRequest, InvalidWriteOffset, NoSuchAnnotation, NoSuchBucket, NoSuchKey, NoSuchUpload, NotFound, ObjectAlreadyInActiveTierError, ObjectNotInActiveTierError, TooManyParts, UnsupportedMediaType } = require("../models/errors");
|
|
1074
|
-
const { S3ServiceException } = require("../models/S3ServiceException");
|
|
1075
|
-
const _s_registry = TypeRegistry.for(_s);
|
|
1076
|
-
const S3ServiceException$ = [-3, _s, "S3ServiceException", 0, [], []];
|
|
1077
|
-
exports.S3ServiceException$ = S3ServiceException$;
|
|
1078
|
-
_s_registry.registerError(S3ServiceException$, S3ServiceException);
|
|
1079
|
-
const n0_registry = TypeRegistry.for(n0);
|
|
1080
|
-
const AccessDenied$ = [-3, n0, _AD,
|
|
1081
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
1082
|
-
[],
|
|
1083
|
-
[]
|
|
1084
|
-
];
|
|
1085
|
-
exports.AccessDenied$ = AccessDenied$;
|
|
1086
|
-
n0_registry.registerError(AccessDenied$, AccessDenied);
|
|
1087
|
-
const AnnotationLimitExceeded$ = [-3, n0, _ALE,
|
|
1088
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1089
|
-
[],
|
|
1090
|
-
[]
|
|
1091
|
-
];
|
|
1092
|
-
exports.AnnotationLimitExceeded$ = AnnotationLimitExceeded$;
|
|
1093
|
-
n0_registry.registerError(AnnotationLimitExceeded$, AnnotationLimitExceeded);
|
|
1094
|
-
const AnnotationNameTooLong$ = [-3, n0, _ANTL,
|
|
1095
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1096
|
-
[],
|
|
1097
|
-
[]
|
|
1098
|
-
];
|
|
1099
|
-
exports.AnnotationNameTooLong$ = AnnotationNameTooLong$;
|
|
1100
|
-
n0_registry.registerError(AnnotationNameTooLong$, AnnotationNameTooLong);
|
|
1101
|
-
const BucketAlreadyExists$ = [-3, n0, _BAE,
|
|
1102
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
1103
|
-
[],
|
|
1104
|
-
[]
|
|
1105
|
-
];
|
|
1106
|
-
exports.BucketAlreadyExists$ = BucketAlreadyExists$;
|
|
1107
|
-
n0_registry.registerError(BucketAlreadyExists$, BucketAlreadyExists);
|
|
1108
|
-
const BucketAlreadyOwnedByYou$ = [-3, n0, _BAOBY,
|
|
1109
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
1110
|
-
[],
|
|
1111
|
-
[]
|
|
1112
|
-
];
|
|
1113
|
-
exports.BucketAlreadyOwnedByYou$ = BucketAlreadyOwnedByYou$;
|
|
1114
|
-
n0_registry.registerError(BucketAlreadyOwnedByYou$, BucketAlreadyOwnedByYou);
|
|
1115
|
-
const EncryptionTypeMismatch$ = [-3, n0, _ETM,
|
|
1116
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1117
|
-
[],
|
|
1118
|
-
[]
|
|
1119
|
-
];
|
|
1120
|
-
exports.EncryptionTypeMismatch$ = EncryptionTypeMismatch$;
|
|
1121
|
-
n0_registry.registerError(EncryptionTypeMismatch$, EncryptionTypeMismatch);
|
|
1122
|
-
const IdempotencyParameterMismatch$ = [-3, n0, _IPM,
|
|
1123
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1124
|
-
[],
|
|
1125
|
-
[]
|
|
1126
|
-
];
|
|
1127
|
-
exports.IdempotencyParameterMismatch$ = IdempotencyParameterMismatch$;
|
|
1128
|
-
n0_registry.registerError(IdempotencyParameterMismatch$, IdempotencyParameterMismatch);
|
|
1129
|
-
const InvalidAnnotationName$ = [-3, n0, _IAN,
|
|
1130
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1131
|
-
[],
|
|
1132
|
-
[]
|
|
1133
|
-
];
|
|
1134
|
-
exports.InvalidAnnotationName$ = InvalidAnnotationName$;
|
|
1135
|
-
n0_registry.registerError(InvalidAnnotationName$, InvalidAnnotationName);
|
|
1136
|
-
const InvalidObjectState$ = [-3, n0, _IOS,
|
|
1137
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
1138
|
-
[_SC, _AT],
|
|
1139
|
-
[0, 0]
|
|
1140
|
-
];
|
|
1141
|
-
exports.InvalidObjectState$ = InvalidObjectState$;
|
|
1142
|
-
n0_registry.registerError(InvalidObjectState$, InvalidObjectState);
|
|
1143
|
-
const InvalidPrefix$ = [-3, n0, _IP,
|
|
1144
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1145
|
-
[],
|
|
1146
|
-
[]
|
|
1147
|
-
];
|
|
1148
|
-
exports.InvalidPrefix$ = InvalidPrefix$;
|
|
1149
|
-
n0_registry.registerError(InvalidPrefix$, InvalidPrefix);
|
|
1150
|
-
const InvalidRequest$ = [-3, n0, _IR,
|
|
1151
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1152
|
-
[],
|
|
1153
|
-
[]
|
|
1154
|
-
];
|
|
1155
|
-
exports.InvalidRequest$ = InvalidRequest$;
|
|
1156
|
-
n0_registry.registerError(InvalidRequest$, InvalidRequest);
|
|
1157
|
-
const InvalidWriteOffset$ = [-3, n0, _IWO,
|
|
1158
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1159
|
-
[],
|
|
1160
|
-
[]
|
|
1161
|
-
];
|
|
1162
|
-
exports.InvalidWriteOffset$ = InvalidWriteOffset$;
|
|
1163
|
-
n0_registry.registerError(InvalidWriteOffset$, InvalidWriteOffset);
|
|
1164
|
-
const NoSuchAnnotation$ = [-3, n0, _NSA,
|
|
1165
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
1166
|
-
[],
|
|
1167
|
-
[]
|
|
1168
|
-
];
|
|
1169
|
-
exports.NoSuchAnnotation$ = NoSuchAnnotation$;
|
|
1170
|
-
n0_registry.registerError(NoSuchAnnotation$, NoSuchAnnotation);
|
|
1171
|
-
const NoSuchBucket$ = [-3, n0, _NSB,
|
|
1172
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
1173
|
-
[],
|
|
1174
|
-
[]
|
|
1175
|
-
];
|
|
1176
|
-
exports.NoSuchBucket$ = NoSuchBucket$;
|
|
1177
|
-
n0_registry.registerError(NoSuchBucket$, NoSuchBucket);
|
|
1178
|
-
const NoSuchKey$ = [-3, n0, _NSK,
|
|
1179
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
1180
|
-
[],
|
|
1181
|
-
[]
|
|
1182
|
-
];
|
|
1183
|
-
exports.NoSuchKey$ = NoSuchKey$;
|
|
1184
|
-
n0_registry.registerError(NoSuchKey$, NoSuchKey);
|
|
1185
|
-
const NoSuchUpload$ = [-3, n0, _NSU,
|
|
1186
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
1187
|
-
[],
|
|
1188
|
-
[]
|
|
1189
|
-
];
|
|
1190
|
-
exports.NoSuchUpload$ = NoSuchUpload$;
|
|
1191
|
-
n0_registry.registerError(NoSuchUpload$, NoSuchUpload);
|
|
1192
|
-
const NotFound$ = [-3, n0, _NF,
|
|
1193
|
-
{ [_e]: _c },
|
|
1194
|
-
[],
|
|
1195
|
-
[]
|
|
1196
|
-
];
|
|
1197
|
-
exports.NotFound$ = NotFound$;
|
|
1198
|
-
n0_registry.registerError(NotFound$, NotFound);
|
|
1199
|
-
const ObjectAlreadyInActiveTierError$ = [-3, n0, _OAIATE,
|
|
1200
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
1201
|
-
[],
|
|
1202
|
-
[]
|
|
1203
|
-
];
|
|
1204
|
-
exports.ObjectAlreadyInActiveTierError$ = ObjectAlreadyInActiveTierError$;
|
|
1205
|
-
n0_registry.registerError(ObjectAlreadyInActiveTierError$, ObjectAlreadyInActiveTierError);
|
|
1206
|
-
const ObjectNotInActiveTierError$ = [-3, n0, _ONIATE,
|
|
1207
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
1208
|
-
[],
|
|
1209
|
-
[]
|
|
1210
|
-
];
|
|
1211
|
-
exports.ObjectNotInActiveTierError$ = ObjectNotInActiveTierError$;
|
|
1212
|
-
n0_registry.registerError(ObjectNotInActiveTierError$, ObjectNotInActiveTierError);
|
|
1213
|
-
const TooManyParts$ = [-3, n0, _TMP,
|
|
1214
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1215
|
-
[],
|
|
1216
|
-
[]
|
|
1217
|
-
];
|
|
1218
|
-
exports.TooManyParts$ = TooManyParts$;
|
|
1219
|
-
n0_registry.registerError(TooManyParts$, TooManyParts);
|
|
1220
|
-
const UnsupportedMediaType$ = [-3, n0, _UMT,
|
|
1221
|
-
{ [_e]: _c, [_hE]: 415 },
|
|
1222
|
-
[],
|
|
1223
|
-
[]
|
|
1224
|
-
];
|
|
1225
|
-
exports.UnsupportedMediaType$ = UnsupportedMediaType$;
|
|
1226
|
-
n0_registry.registerError(UnsupportedMediaType$, UnsupportedMediaType);
|
|
1227
|
-
exports.errorTypeRegistries = [
|
|
1228
|
-
_s_registry,
|
|
1229
|
-
n0_registry,
|
|
1230
|
-
];
|
|
1231
|
-
var CopySourceSSECustomerKey = [0, n0, _CSSSECK, 8, 0];
|
|
1232
|
-
var NonEmptyKmsKeyArnString = [0, n0, _NEKKAS, 8, 0];
|
|
1233
|
-
var SessionCredentialValue = [0, n0, _SCV, 8, 0];
|
|
1234
|
-
var SSECustomerKey = [0, n0, _SSECK, 8, 0];
|
|
1235
|
-
var SSEKMSEncryptionContext = [0, n0, _SSEKMSEC, 8, 0];
|
|
1236
|
-
var SSEKMSKeyId = [0, n0, _SSEKMSKI, 8, 0];
|
|
1237
|
-
var StreamingBlob = [0, n0, _SB, { [_st]: 1 }, 42];
|
|
1238
|
-
const AbacStatus$ = [3, n0, _AS,
|
|
1239
|
-
0,
|
|
1240
|
-
[_S],
|
|
1241
|
-
[0]
|
|
1242
|
-
];
|
|
1243
|
-
exports.AbacStatus$ = AbacStatus$;
|
|
1244
|
-
const AbortIncompleteMultipartUpload$ = [3, n0, _AIMU,
|
|
1245
|
-
0,
|
|
1246
|
-
[_DAI],
|
|
1247
|
-
[1]
|
|
1248
|
-
];
|
|
1249
|
-
exports.AbortIncompleteMultipartUpload$ = AbortIncompleteMultipartUpload$;
|
|
1250
|
-
const AbortMultipartUploadOutput$ = [3, n0, _AMUO,
|
|
1251
|
-
0,
|
|
1252
|
-
[_RC],
|
|
1253
|
-
[[0, { [_hH]: _xarc }]]
|
|
1254
|
-
];
|
|
1255
|
-
exports.AbortMultipartUploadOutput$ = AbortMultipartUploadOutput$;
|
|
1256
|
-
const AbortMultipartUploadRequest$ = [3, n0, _AMUR,
|
|
1257
|
-
0,
|
|
1258
|
-
[_B, _K, _UI, _RP, _EBO, _IMIT],
|
|
1259
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _uI }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }], [6, { [_hH]: _xaimit }]], 3
|
|
1260
|
-
];
|
|
1261
|
-
exports.AbortMultipartUploadRequest$ = AbortMultipartUploadRequest$;
|
|
1262
|
-
const AccelerateConfiguration$ = [3, n0, _AC,
|
|
1263
|
-
0,
|
|
1264
|
-
[_S],
|
|
1265
|
-
[0]
|
|
1266
|
-
];
|
|
1267
|
-
exports.AccelerateConfiguration$ = AccelerateConfiguration$;
|
|
1268
|
-
const AccessControlPolicy$ = [3, n0, _ACP,
|
|
1269
|
-
0,
|
|
1270
|
-
[_G, _O],
|
|
1271
|
-
[[() => Grants, { [_xN]: _ACL }], () => Owner$]
|
|
1272
|
-
];
|
|
1273
|
-
exports.AccessControlPolicy$ = AccessControlPolicy$;
|
|
1274
|
-
const AccessControlTranslation$ = [3, n0, _ACT,
|
|
1275
|
-
0,
|
|
1276
|
-
[_O],
|
|
1277
|
-
[0], 1
|
|
1278
|
-
];
|
|
1279
|
-
exports.AccessControlTranslation$ = AccessControlTranslation$;
|
|
1280
|
-
const AnalyticsAndOperator$ = [3, n0, _AAO,
|
|
1281
|
-
0,
|
|
1282
|
-
[_P, _T],
|
|
1283
|
-
[0, [() => TagSet, { [_xF]: 1, [_xN]: _Ta }]]
|
|
1284
|
-
];
|
|
1285
|
-
exports.AnalyticsAndOperator$ = AnalyticsAndOperator$;
|
|
1286
|
-
const AnalyticsConfiguration$ = [3, n0, _ACn,
|
|
1287
|
-
0,
|
|
1288
|
-
[_I, _SCA, _F],
|
|
1289
|
-
[0, () => StorageClassAnalysis$, [() => AnalyticsFilter$, 0]], 2
|
|
1290
|
-
];
|
|
1291
|
-
exports.AnalyticsConfiguration$ = AnalyticsConfiguration$;
|
|
1292
|
-
const AnalyticsExportDestination$ = [3, n0, _AED,
|
|
1293
|
-
0,
|
|
1294
|
-
[_SBD],
|
|
1295
|
-
[() => AnalyticsS3BucketDestination$], 1
|
|
1296
|
-
];
|
|
1297
|
-
exports.AnalyticsExportDestination$ = AnalyticsExportDestination$;
|
|
1298
|
-
const AnalyticsS3BucketDestination$ = [3, n0, _ASBD,
|
|
1299
|
-
0,
|
|
1300
|
-
[_Fo, _B, _BAI, _P],
|
|
1301
|
-
[0, 0, 0, 0], 2
|
|
1302
|
-
];
|
|
1303
|
-
exports.AnalyticsS3BucketDestination$ = AnalyticsS3BucketDestination$;
|
|
1304
|
-
const AnnotationEntry$ = [3, n0, _AE,
|
|
1305
|
-
0,
|
|
1306
|
-
[_AN, _LM, _Si, _ET, _CA, _RS],
|
|
1307
|
-
[0, 4, 1, 0, [64 | 0, { [_xF]: 1 }], 0], 3
|
|
1308
|
-
];
|
|
1309
|
-
exports.AnnotationEntry$ = AnnotationEntry$;
|
|
1310
|
-
const AnnotationTableConfiguration$ = [3, n0, _ATC,
|
|
1311
|
-
0,
|
|
1312
|
-
[_CS, _EC, _R],
|
|
1313
|
-
[0, () => MetadataTableEncryptionConfiguration$, 0], 1
|
|
1314
|
-
];
|
|
1315
|
-
exports.AnnotationTableConfiguration$ = AnnotationTableConfiguration$;
|
|
1316
|
-
const AnnotationTableConfigurationResult$ = [3, n0, _ATCR,
|
|
1317
|
-
0,
|
|
1318
|
-
[_CS, _TS, _E, _TN, _TA, _R],
|
|
1319
|
-
[0, 0, () => ErrorDetails$, 0, 0, 0], 1
|
|
1320
|
-
];
|
|
1321
|
-
exports.AnnotationTableConfigurationResult$ = AnnotationTableConfigurationResult$;
|
|
1322
|
-
const AnnotationTableConfigurationUpdates$ = [3, n0, _ATCU,
|
|
1323
|
-
0,
|
|
1324
|
-
[_CS, _EC, _R],
|
|
1325
|
-
[0, () => MetadataTableEncryptionConfiguration$, 0], 1
|
|
1326
|
-
];
|
|
1327
|
-
exports.AnnotationTableConfigurationUpdates$ = AnnotationTableConfigurationUpdates$;
|
|
1328
|
-
const BlockedEncryptionTypes$ = [3, n0, _BET,
|
|
1329
|
-
0,
|
|
1330
|
-
[_ETn],
|
|
1331
|
-
[[() => EncryptionTypeList, { [_xF]: 1 }]]
|
|
1332
|
-
];
|
|
1333
|
-
exports.BlockedEncryptionTypes$ = BlockedEncryptionTypes$;
|
|
1334
|
-
const Bucket$ = [3, n0, _B,
|
|
1335
|
-
0,
|
|
1336
|
-
[_N, _CD, _BR, _BA],
|
|
1337
|
-
[0, 4, 0, 0]
|
|
1338
|
-
];
|
|
1339
|
-
exports.Bucket$ = Bucket$;
|
|
1340
|
-
const BucketInfo$ = [3, n0, _BI,
|
|
1341
|
-
0,
|
|
1342
|
-
[_DR, _Ty],
|
|
1343
|
-
[0, 0]
|
|
1344
|
-
];
|
|
1345
|
-
exports.BucketInfo$ = BucketInfo$;
|
|
1346
|
-
const BucketLifecycleConfiguration$ = [3, n0, _BLC,
|
|
1347
|
-
0,
|
|
1348
|
-
[_Ru],
|
|
1349
|
-
[[() => LifecycleRules, { [_xF]: 1, [_xN]: _Rul }]], 1
|
|
1350
|
-
];
|
|
1351
|
-
exports.BucketLifecycleConfiguration$ = BucketLifecycleConfiguration$;
|
|
1352
|
-
const BucketLoggingStatus$ = [3, n0, _BLS,
|
|
1353
|
-
0,
|
|
1354
|
-
[_LE],
|
|
1355
|
-
[[() => LoggingEnabled$, 0]]
|
|
1356
|
-
];
|
|
1357
|
-
exports.BucketLoggingStatus$ = BucketLoggingStatus$;
|
|
1358
|
-
const Checksum$ = [3, n0, _C,
|
|
1359
|
-
0,
|
|
1360
|
-
[_CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh, _CSHAhe, _CMD, _CXXHASH, _CXXHASHh, _CXXHASHhe, _CT],
|
|
1361
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
|
|
1362
|
-
];
|
|
1363
|
-
exports.Checksum$ = Checksum$;
|
|
1364
|
-
const CommonPrefix$ = [3, n0, _CP,
|
|
1365
|
-
0,
|
|
1366
|
-
[_P],
|
|
1367
|
-
[0]
|
|
1368
|
-
];
|
|
1369
|
-
exports.CommonPrefix$ = CommonPrefix$;
|
|
1370
|
-
const CompletedMultipartUpload$ = [3, n0, _CMU,
|
|
1371
|
-
0,
|
|
1372
|
-
[_Pa],
|
|
1373
|
-
[[() => CompletedPartList, { [_xF]: 1, [_xN]: _Par }]]
|
|
1374
|
-
];
|
|
1375
|
-
exports.CompletedMultipartUpload$ = CompletedMultipartUpload$;
|
|
1376
|
-
const CompletedPart$ = [3, n0, _CPo,
|
|
1377
|
-
0,
|
|
1378
|
-
[_ET, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh, _CSHAhe, _CMD, _CXXHASH, _CXXHASHh, _CXXHASHhe, _PN],
|
|
1379
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]
|
|
1380
|
-
];
|
|
1381
|
-
exports.CompletedPart$ = CompletedPart$;
|
|
1382
|
-
const CompleteMultipartUploadOutput$ = [3, n0, _CMUO,
|
|
1383
|
-
{ [_xN]: _CMUR },
|
|
1384
|
-
[_L, _B, _K, _Ex, _ET, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh, _CSHAhe, _CMD, _CXXHASH, _CXXHASHh, _CXXHASHhe, _CT, _SSE, _VI, _SSEKMSKI, _BKE, _RC],
|
|
1385
|
-
[0, 0, 0, [0, { [_hH]: _xae }], 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, [0, { [_hH]: _xasse }], [0, { [_hH]: _xavi }], [() => SSEKMSKeyId, { [_hH]: _xasseakki }], [2, { [_hH]: _xassebke }], [0, { [_hH]: _xarc }]]
|
|
1386
|
-
];
|
|
1387
|
-
exports.CompleteMultipartUploadOutput$ = CompleteMultipartUploadOutput$;
|
|
1388
|
-
const CompleteMultipartUploadRequest$ = [3, n0, _CMURo,
|
|
1389
|
-
0,
|
|
1390
|
-
[_B, _K, _UI, _MU, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh, _CSHAhe, _CMD, _CXXHASH, _CXXHASHh, _CXXHASHhe, _CT, _MOS, _RP, _EBO, _IM, _INM, _SSECA, _SSECK, _SSECKMD],
|
|
1391
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _uI }], [() => CompletedMultipartUpload$, { [_hP]: 1, [_xN]: _CMUo }], [0, { [_hH]: _xacc }], [0, { [_hH]: _xacc_ }], [0, { [_hH]: _xacc__ }], [0, { [_hH]: _xacs }], [0, { [_hH]: _xacs_ }], [0, { [_hH]: _xacs__ }], [0, { [_hH]: _xacm }], [0, { [_hH]: _xacx }], [0, { [_hH]: _xacx_ }], [0, { [_hH]: _xacx__ }], [0, { [_hH]: _xact }], [1, { [_hH]: _xamos }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _IM_ }], [0, { [_hH]: _INM_ }], [0, { [_hH]: _xasseca }], [() => SSECustomerKey, { [_hH]: _xasseck }], [0, { [_hH]: _xasseckM }]], 3
|
|
1392
|
-
];
|
|
1393
|
-
exports.CompleteMultipartUploadRequest$ = CompleteMultipartUploadRequest$;
|
|
1394
|
-
const Condition$ = [3, n0, _Co,
|
|
1395
|
-
0,
|
|
1396
|
-
[_HECRE, _KPE],
|
|
1397
|
-
[0, 0]
|
|
1398
|
-
];
|
|
1399
|
-
exports.Condition$ = Condition$;
|
|
1400
|
-
const ContinuationEvent$ = [3, n0, _CE,
|
|
1401
|
-
0,
|
|
1402
|
-
[],
|
|
1403
|
-
[]
|
|
1404
|
-
];
|
|
1405
|
-
exports.ContinuationEvent$ = ContinuationEvent$;
|
|
1406
|
-
const CopyObjectOutput$ = [3, n0, _COO,
|
|
1407
|
-
0,
|
|
1408
|
-
[_COR, _Ex, _CSVI, _VI, _SSE, _SSECA, _SSECKMD, _SSEKMSKI, _SSEKMSEC, _BKE, _RC],
|
|
1409
|
-
[[() => CopyObjectResult$, 16], [0, { [_hH]: _xae }], [0, { [_hH]: _xacsvi }], [0, { [_hH]: _xavi }], [0, { [_hH]: _xasse }], [0, { [_hH]: _xasseca }], [0, { [_hH]: _xasseckM }], [() => SSEKMSKeyId, { [_hH]: _xasseakki }], [() => SSEKMSEncryptionContext, { [_hH]: _xassec }], [2, { [_hH]: _xassebke }], [0, { [_hH]: _xarc }]]
|
|
1410
|
-
];
|
|
1411
|
-
exports.CopyObjectOutput$ = CopyObjectOutput$;
|
|
1412
|
-
const CopyObjectRequest$ = [3, n0, _CORo,
|
|
1413
|
-
0,
|
|
1414
|
-
[_B, _CSo, _K, _ACL_, _CC, _CA, _CDo, _CEo, _CL, _CTo, _CSIM, _CSIMS, _CSINM, _CSIUS, _Exp, _GFC, _GR, _GRACP, _GWACP, _IM, _INM, _M, _MD, _TD, _ADn, _SSE, _SC, _WRL, _SSECA, _SSECK, _SSECKMD, _SSEKMSKI, _SSEKMSEC, _BKE, _CSSSECA, _CSSSECK, _CSSSECKMD, _RP, _Tag, _OLM, _OLRUD, _OLLHS, _EBO, _ESBO],
|
|
1415
|
-
[[0, 1], [0, { [_hH]: _xacs___ }], [0, 1], [0, { [_hH]: _xaa }], [0, { [_hH]: _CC_ }], [0, { [_hH]: _xaca }], [0, { [_hH]: _CD_ }], [0, { [_hH]: _CE_ }], [0, { [_hH]: _CL_ }], [0, { [_hH]: _CT_ }], [0, { [_hH]: _xacsim }], [4, { [_hH]: _xacsims }], [0, { [_hH]: _xacsinm }], [4, { [_hH]: _xacsius }], [4, { [_hH]: _Exp }], [0, { [_hH]: _xagfc }], [0, { [_hH]: _xagr }], [0, { [_hH]: _xagra }], [0, { [_hH]: _xagwa }], [0, { [_hH]: _IM_ }], [0, { [_hH]: _INM_ }], [128 | 0, { [_hPH]: _xam }], [0, { [_hH]: _xamd }], [0, { [_hH]: _xatd }], [0, { [_hH]: _xaoad }], [0, { [_hH]: _xasse }], [0, { [_hH]: _xasc }], [0, { [_hH]: _xawrl }], [0, { [_hH]: _xasseca }], [() => SSECustomerKey, { [_hH]: _xasseck }], [0, { [_hH]: _xasseckM }], [() => SSEKMSKeyId, { [_hH]: _xasseakki }], [() => SSEKMSEncryptionContext, { [_hH]: _xassec }], [2, { [_hH]: _xassebke }], [0, { [_hH]: _xacssseca }], [() => CopySourceSSECustomerKey, { [_hH]: _xacssseck }], [0, { [_hH]: _xacssseckM }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xat }], [0, { [_hH]: _xaolm }], [5, { [_hH]: _xaolrud }], [0, { [_hH]: _xaollh }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xasebo }]], 3
|
|
1416
|
-
];
|
|
1417
|
-
exports.CopyObjectRequest$ = CopyObjectRequest$;
|
|
1418
|
-
const CopyObjectResult$ = [3, n0, _COR,
|
|
1419
|
-
0,
|
|
1420
|
-
[_ET, _LM, _CT, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh, _CSHAhe, _CMD, _CXXHASH, _CXXHASHh, _CXXHASHhe],
|
|
1421
|
-
[0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
|
|
1422
|
-
];
|
|
1423
|
-
exports.CopyObjectResult$ = CopyObjectResult$;
|
|
1424
|
-
const CopyPartResult$ = [3, n0, _CPR,
|
|
1425
|
-
0,
|
|
1426
|
-
[_ET, _LM, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh, _CSHAhe, _CMD, _CXXHASH, _CXXHASHh, _CXXHASHhe],
|
|
1427
|
-
[0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
|
|
1428
|
-
];
|
|
1429
|
-
exports.CopyPartResult$ = CopyPartResult$;
|
|
1430
|
-
const CORSConfiguration$ = [3, n0, _CORSC,
|
|
1431
|
-
0,
|
|
1432
|
-
[_CORSR],
|
|
1433
|
-
[[() => CORSRules, { [_xF]: 1, [_xN]: _CORSRu }]], 1
|
|
1434
|
-
];
|
|
1435
|
-
exports.CORSConfiguration$ = CORSConfiguration$;
|
|
1436
|
-
const CORSRule$ = [3, n0, _CORSRu,
|
|
1437
|
-
0,
|
|
1438
|
-
[_AM, _AO, _ID, _AH, _EH, _MAS],
|
|
1439
|
-
[[64 | 0, { [_xF]: 1, [_xN]: _AMl }], [64 | 0, { [_xF]: 1, [_xN]: _AOl }], 0, [64 | 0, { [_xF]: 1, [_xN]: _AHl }], [64 | 0, { [_xF]: 1, [_xN]: _EHx }], 1], 2
|
|
1440
|
-
];
|
|
1441
|
-
exports.CORSRule$ = CORSRule$;
|
|
1442
|
-
const CreateBucketConfiguration$ = [3, n0, _CBC,
|
|
1443
|
-
0,
|
|
1444
|
-
[_LC, _L, _B, _T],
|
|
1445
|
-
[0, () => LocationInfo$, () => BucketInfo$, [() => TagSet, 0]]
|
|
1446
|
-
];
|
|
1447
|
-
exports.CreateBucketConfiguration$ = CreateBucketConfiguration$;
|
|
1448
|
-
const CreateBucketMetadataConfigurationRequest$ = [3, n0, _CBMCR,
|
|
1449
|
-
0,
|
|
1450
|
-
[_B, _MC, _CMDo, _CA, _EBO],
|
|
1451
|
-
[[0, 1], [() => MetadataConfiguration$, { [_hP]: 1, [_xN]: _MC }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2
|
|
1452
|
-
];
|
|
1453
|
-
exports.CreateBucketMetadataConfigurationRequest$ = CreateBucketMetadataConfigurationRequest$;
|
|
1454
|
-
const CreateBucketMetadataTableConfigurationRequest$ = [3, n0, _CBMTCR,
|
|
1455
|
-
0,
|
|
1456
|
-
[_B, _MTC, _CMDo, _CA, _EBO],
|
|
1457
|
-
[[0, 1], [() => MetadataTableConfiguration$, { [_hP]: 1, [_xN]: _MTC }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2
|
|
1458
|
-
];
|
|
1459
|
-
exports.CreateBucketMetadataTableConfigurationRequest$ = CreateBucketMetadataTableConfigurationRequest$;
|
|
1460
|
-
const CreateBucketOutput$ = [3, n0, _CBO,
|
|
1461
|
-
0,
|
|
1462
|
-
[_L, _BA],
|
|
1463
|
-
[[0, { [_hH]: _L }], [0, { [_hH]: _xaba }]]
|
|
1464
|
-
];
|
|
1465
|
-
exports.CreateBucketOutput$ = CreateBucketOutput$;
|
|
1466
|
-
const CreateBucketRequest$ = [3, n0, _CBR,
|
|
1467
|
-
0,
|
|
1468
|
-
[_B, _ACL_, _CBC, _GFC, _GR, _GRACP, _GW, _GWACP, _OLEFB, _OO, _BN],
|
|
1469
|
-
[[0, 1], [0, { [_hH]: _xaa }], [() => CreateBucketConfiguration$, { [_hP]: 1, [_xN]: _CBC }], [0, { [_hH]: _xagfc }], [0, { [_hH]: _xagr }], [0, { [_hH]: _xagra }], [0, { [_hH]: _xagw }], [0, { [_hH]: _xagwa }], [2, { [_hH]: _xabole }], [0, { [_hH]: _xaoo }], [0, { [_hH]: _xabn }]], 1
|
|
1470
|
-
];
|
|
1471
|
-
exports.CreateBucketRequest$ = CreateBucketRequest$;
|
|
1472
|
-
const CreateMultipartUploadOutput$ = [3, n0, _CMUOr,
|
|
1473
|
-
{ [_xN]: _IMUR },
|
|
1474
|
-
[_ADb, _ARI, _B, _K, _UI, _SSE, _SSECA, _SSECKMD, _SSEKMSKI, _SSEKMSEC, _BKE, _RC, _CA, _CT],
|
|
1475
|
-
[[4, { [_hH]: _xaad }], [0, { [_hH]: _xaari }], [0, { [_xN]: _B }], 0, 0, [0, { [_hH]: _xasse }], [0, { [_hH]: _xasseca }], [0, { [_hH]: _xasseckM }], [() => SSEKMSKeyId, { [_hH]: _xasseakki }], [() => SSEKMSEncryptionContext, { [_hH]: _xassec }], [2, { [_hH]: _xassebke }], [0, { [_hH]: _xarc }], [0, { [_hH]: _xaca }], [0, { [_hH]: _xact }]]
|
|
1476
|
-
];
|
|
1477
|
-
exports.CreateMultipartUploadOutput$ = CreateMultipartUploadOutput$;
|
|
1478
|
-
const CreateMultipartUploadRequest$ = [3, n0, _CMURr,
|
|
1479
|
-
0,
|
|
1480
|
-
[_B, _K, _ACL_, _CC, _CDo, _CEo, _CL, _CTo, _Exp, _GFC, _GR, _GRACP, _GWACP, _M, _SSE, _SC, _WRL, _SSECA, _SSECK, _SSECKMD, _SSEKMSKI, _SSEKMSEC, _BKE, _RP, _Tag, _OLM, _OLRUD, _OLLHS, _EBO, _CA, _CT],
|
|
1481
|
-
[[0, 1], [0, 1], [0, { [_hH]: _xaa }], [0, { [_hH]: _CC_ }], [0, { [_hH]: _CD_ }], [0, { [_hH]: _CE_ }], [0, { [_hH]: _CL_ }], [0, { [_hH]: _CT_ }], [4, { [_hH]: _Exp }], [0, { [_hH]: _xagfc }], [0, { [_hH]: _xagr }], [0, { [_hH]: _xagra }], [0, { [_hH]: _xagwa }], [128 | 0, { [_hPH]: _xam }], [0, { [_hH]: _xasse }], [0, { [_hH]: _xasc }], [0, { [_hH]: _xawrl }], [0, { [_hH]: _xasseca }], [() => SSECustomerKey, { [_hH]: _xasseck }], [0, { [_hH]: _xasseckM }], [() => SSEKMSKeyId, { [_hH]: _xasseakki }], [() => SSEKMSEncryptionContext, { [_hH]: _xassec }], [2, { [_hH]: _xassebke }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xat }], [0, { [_hH]: _xaolm }], [5, { [_hH]: _xaolrud }], [0, { [_hH]: _xaollh }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xaca }], [0, { [_hH]: _xact }]], 2
|
|
1482
|
-
];
|
|
1483
|
-
exports.CreateMultipartUploadRequest$ = CreateMultipartUploadRequest$;
|
|
1484
|
-
const CreateSessionOutput$ = [3, n0, _CSO,
|
|
1485
|
-
{ [_xN]: _CSR },
|
|
1486
|
-
[_Cr, _SSE, _SSEKMSKI, _SSEKMSEC, _BKE],
|
|
1487
|
-
[[() => SessionCredentials$, { [_xN]: _Cr }], [0, { [_hH]: _xasse }], [() => SSEKMSKeyId, { [_hH]: _xasseakki }], [() => SSEKMSEncryptionContext, { [_hH]: _xassec }], [2, { [_hH]: _xassebke }]], 1
|
|
1488
|
-
];
|
|
1489
|
-
exports.CreateSessionOutput$ = CreateSessionOutput$;
|
|
1490
|
-
const CreateSessionRequest$ = [3, n0, _CSRr,
|
|
1491
|
-
0,
|
|
1492
|
-
[_B, _SM, _SSE, _SSEKMSKI, _SSEKMSEC, _BKE],
|
|
1493
|
-
[[0, 1], [0, { [_hH]: _xacsm }], [0, { [_hH]: _xasse }], [() => SSEKMSKeyId, { [_hH]: _xasseakki }], [() => SSEKMSEncryptionContext, { [_hH]: _xassec }], [2, { [_hH]: _xassebke }]], 1
|
|
1494
|
-
];
|
|
1495
|
-
exports.CreateSessionRequest$ = CreateSessionRequest$;
|
|
1496
|
-
const CSVInput$ = [3, n0, _CSVIn,
|
|
1497
|
-
0,
|
|
1498
|
-
[_FHI, _Com, _QEC, _RD, _FD, _QC, _AQRD],
|
|
1499
|
-
[0, 0, 0, 0, 0, 0, 2]
|
|
1500
|
-
];
|
|
1501
|
-
exports.CSVInput$ = CSVInput$;
|
|
1502
|
-
const CSVOutput$ = [3, n0, _CSVO,
|
|
1503
|
-
0,
|
|
1504
|
-
[_QF, _QEC, _RD, _FD, _QC],
|
|
1505
|
-
[0, 0, 0, 0, 0]
|
|
1506
|
-
];
|
|
1507
|
-
exports.CSVOutput$ = CSVOutput$;
|
|
1508
|
-
const DefaultRetention$ = [3, n0, _DRe,
|
|
1509
|
-
0,
|
|
1510
|
-
[_Mo, _D, _Y],
|
|
1511
|
-
[0, 1, 1]
|
|
1512
|
-
];
|
|
1513
|
-
exports.DefaultRetention$ = DefaultRetention$;
|
|
1514
|
-
const Delete$ = [3, n0, _De,
|
|
1515
|
-
0,
|
|
1516
|
-
[_Ob, _Q],
|
|
1517
|
-
[[() => ObjectIdentifierList, { [_xF]: 1, [_xN]: _Obj }], 2], 1
|
|
1518
|
-
];
|
|
1519
|
-
exports.Delete$ = Delete$;
|
|
1520
|
-
const DeleteBucketAnalyticsConfigurationRequest$ = [3, n0, _DBACR,
|
|
1521
|
-
0,
|
|
1522
|
-
[_B, _I, _EBO],
|
|
1523
|
-
[[0, 1], [0, { [_hQ]: _i }], [0, { [_hH]: _xaebo }]], 2
|
|
1524
|
-
];
|
|
1525
|
-
exports.DeleteBucketAnalyticsConfigurationRequest$ = DeleteBucketAnalyticsConfigurationRequest$;
|
|
1526
|
-
const DeleteBucketCorsRequest$ = [3, n0, _DBCR,
|
|
1527
|
-
0,
|
|
1528
|
-
[_B, _EBO],
|
|
1529
|
-
[[0, 1], [0, { [_hH]: _xaebo }]], 1
|
|
1530
|
-
];
|
|
1531
|
-
exports.DeleteBucketCorsRequest$ = DeleteBucketCorsRequest$;
|
|
1532
|
-
const DeleteBucketEncryptionRequest$ = [3, n0, _DBER,
|
|
1533
|
-
0,
|
|
1534
|
-
[_B, _EBO],
|
|
1535
|
-
[[0, 1], [0, { [_hH]: _xaebo }]], 1
|
|
1536
|
-
];
|
|
1537
|
-
exports.DeleteBucketEncryptionRequest$ = DeleteBucketEncryptionRequest$;
|
|
1538
|
-
const DeleteBucketIntelligentTieringConfigurationRequest$ = [3, n0, _DBITCR,
|
|
1539
|
-
0,
|
|
1540
|
-
[_B, _I, _EBO],
|
|
1541
|
-
[[0, 1], [0, { [_hQ]: _i }], [0, { [_hH]: _xaebo }]], 2
|
|
1542
|
-
];
|
|
1543
|
-
exports.DeleteBucketIntelligentTieringConfigurationRequest$ = DeleteBucketIntelligentTieringConfigurationRequest$;
|
|
1544
|
-
const DeleteBucketInventoryConfigurationRequest$ = [3, n0, _DBICR,
|
|
1545
|
-
0,
|
|
1546
|
-
[_B, _I, _EBO],
|
|
1547
|
-
[[0, 1], [0, { [_hQ]: _i }], [0, { [_hH]: _xaebo }]], 2
|
|
1548
|
-
];
|
|
1549
|
-
exports.DeleteBucketInventoryConfigurationRequest$ = DeleteBucketInventoryConfigurationRequest$;
|
|
1550
|
-
const DeleteBucketLifecycleRequest$ = [3, n0, _DBLR,
|
|
1551
|
-
0,
|
|
1552
|
-
[_B, _EBO],
|
|
1553
|
-
[[0, 1], [0, { [_hH]: _xaebo }]], 1
|
|
1554
|
-
];
|
|
1555
|
-
exports.DeleteBucketLifecycleRequest$ = DeleteBucketLifecycleRequest$;
|
|
1556
|
-
const DeleteBucketMetadataConfigurationRequest$ = [3, n0, _DBMCR,
|
|
1557
|
-
0,
|
|
1558
|
-
[_B, _EBO],
|
|
1559
|
-
[[0, 1], [0, { [_hH]: _xaebo }]], 1
|
|
1560
|
-
];
|
|
1561
|
-
exports.DeleteBucketMetadataConfigurationRequest$ = DeleteBucketMetadataConfigurationRequest$;
|
|
1562
|
-
const DeleteBucketMetadataTableConfigurationRequest$ = [3, n0, _DBMTCR,
|
|
1563
|
-
0,
|
|
1564
|
-
[_B, _EBO],
|
|
1565
|
-
[[0, 1], [0, { [_hH]: _xaebo }]], 1
|
|
1566
|
-
];
|
|
1567
|
-
exports.DeleteBucketMetadataTableConfigurationRequest$ = DeleteBucketMetadataTableConfigurationRequest$;
|
|
1568
|
-
const DeleteBucketMetricsConfigurationRequest$ = [3, n0, _DBMCRe,
|
|
1569
|
-
0,
|
|
1570
|
-
[_B, _I, _EBO],
|
|
1571
|
-
[[0, 1], [0, { [_hQ]: _i }], [0, { [_hH]: _xaebo }]], 2
|
|
1572
|
-
];
|
|
1573
|
-
exports.DeleteBucketMetricsConfigurationRequest$ = DeleteBucketMetricsConfigurationRequest$;
|
|
1574
|
-
const DeleteBucketOwnershipControlsRequest$ = [3, n0, _DBOCR,
|
|
1575
|
-
0,
|
|
1576
|
-
[_B, _EBO],
|
|
1577
|
-
[[0, 1], [0, { [_hH]: _xaebo }]], 1
|
|
1578
|
-
];
|
|
1579
|
-
exports.DeleteBucketOwnershipControlsRequest$ = DeleteBucketOwnershipControlsRequest$;
|
|
1580
|
-
const DeleteBucketPolicyRequest$ = [3, n0, _DBPR,
|
|
1581
|
-
0,
|
|
1582
|
-
[_B, _EBO],
|
|
1583
|
-
[[0, 1], [0, { [_hH]: _xaebo }]], 1
|
|
1584
|
-
];
|
|
1585
|
-
exports.DeleteBucketPolicyRequest$ = DeleteBucketPolicyRequest$;
|
|
1586
|
-
const DeleteBucketReplicationRequest$ = [3, n0, _DBRR,
|
|
1587
|
-
0,
|
|
1588
|
-
[_B, _EBO],
|
|
1589
|
-
[[0, 1], [0, { [_hH]: _xaebo }]], 1
|
|
1590
|
-
];
|
|
1591
|
-
exports.DeleteBucketReplicationRequest$ = DeleteBucketReplicationRequest$;
|
|
1592
|
-
const DeleteBucketRequest$ = [3, n0, _DBR,
|
|
1593
|
-
0,
|
|
1594
|
-
[_B, _EBO],
|
|
1595
|
-
[[0, 1], [0, { [_hH]: _xaebo }]], 1
|
|
1596
|
-
];
|
|
1597
|
-
exports.DeleteBucketRequest$ = DeleteBucketRequest$;
|
|
1598
|
-
const DeleteBucketTaggingRequest$ = [3, n0, _DBTR,
|
|
1599
|
-
0,
|
|
1600
|
-
[_B, _EBO],
|
|
1601
|
-
[[0, 1], [0, { [_hH]: _xaebo }]], 1
|
|
1602
|
-
];
|
|
1603
|
-
exports.DeleteBucketTaggingRequest$ = DeleteBucketTaggingRequest$;
|
|
1604
|
-
const DeleteBucketWebsiteRequest$ = [3, n0, _DBWR,
|
|
1605
|
-
0,
|
|
1606
|
-
[_B, _EBO],
|
|
1607
|
-
[[0, 1], [0, { [_hH]: _xaebo }]], 1
|
|
1608
|
-
];
|
|
1609
|
-
exports.DeleteBucketWebsiteRequest$ = DeleteBucketWebsiteRequest$;
|
|
1610
|
-
const DeletedObject$ = [3, n0, _DO,
|
|
1611
|
-
0,
|
|
1612
|
-
[_K, _VI, _DM, _DMVI],
|
|
1613
|
-
[0, 0, 2, 0]
|
|
1614
|
-
];
|
|
1615
|
-
exports.DeletedObject$ = DeletedObject$;
|
|
1616
|
-
const DeleteMarkerEntry$ = [3, n0, _DME,
|
|
1617
|
-
0,
|
|
1618
|
-
[_O, _K, _VI, _IL, _LM],
|
|
1619
|
-
[() => Owner$, 0, 0, 2, 4]
|
|
1620
|
-
];
|
|
1621
|
-
exports.DeleteMarkerEntry$ = DeleteMarkerEntry$;
|
|
1622
|
-
const DeleteMarkerReplication$ = [3, n0, _DMR,
|
|
1623
|
-
0,
|
|
1624
|
-
[_S],
|
|
1625
|
-
[0]
|
|
1626
|
-
];
|
|
1627
|
-
exports.DeleteMarkerReplication$ = DeleteMarkerReplication$;
|
|
1628
|
-
const DeleteObjectAnnotationOutput$ = [3, n0, _DOAO,
|
|
1629
|
-
0,
|
|
1630
|
-
[_OVI, _RC],
|
|
1631
|
-
[[0, { [_hH]: _xaovi }], [0, { [_hH]: _xarc }]]
|
|
1632
|
-
];
|
|
1633
|
-
exports.DeleteObjectAnnotationOutput$ = DeleteObjectAnnotationOutput$;
|
|
1634
|
-
const DeleteObjectAnnotationRequest$ = [3, n0, _DOAR,
|
|
1635
|
-
0,
|
|
1636
|
-
[_B, _K, _AN, _VI, _RP, _EBO, _OIM],
|
|
1637
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _aN }], [0, { [_hQ]: _vI }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xaoim }]], 3
|
|
1638
|
-
];
|
|
1639
|
-
exports.DeleteObjectAnnotationRequest$ = DeleteObjectAnnotationRequest$;
|
|
1640
|
-
const DeleteObjectOutput$ = [3, n0, _DOO,
|
|
1641
|
-
0,
|
|
1642
|
-
[_DM, _VI, _RC],
|
|
1643
|
-
[[2, { [_hH]: _xadm }], [0, { [_hH]: _xavi }], [0, { [_hH]: _xarc }]]
|
|
1644
|
-
];
|
|
1645
|
-
exports.DeleteObjectOutput$ = DeleteObjectOutput$;
|
|
1646
|
-
const DeleteObjectRequest$ = [3, n0, _DOR,
|
|
1647
|
-
0,
|
|
1648
|
-
[_B, _K, _MFA, _VI, _RP, _BGR, _EBO, _IM, _IMLMT, _IMS],
|
|
1649
|
-
[[0, 1], [0, 1], [0, { [_hH]: _xam_ }], [0, { [_hQ]: _vI }], [0, { [_hH]: _xarp }], [2, { [_hH]: _xabgr }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _IM_ }], [6, { [_hH]: _xaimlmt }], [1, { [_hH]: _xaims }]], 2
|
|
1650
|
-
];
|
|
1651
|
-
exports.DeleteObjectRequest$ = DeleteObjectRequest$;
|
|
1652
|
-
const DeleteObjectsOutput$ = [3, n0, _DOOe,
|
|
1653
|
-
{ [_xN]: _DRel },
|
|
1654
|
-
[_Del, _RC, _Er],
|
|
1655
|
-
[[() => DeletedObjects, { [_xF]: 1 }], [0, { [_hH]: _xarc }], [() => Errors, { [_xF]: 1, [_xN]: _E }]]
|
|
1656
|
-
];
|
|
1657
|
-
exports.DeleteObjectsOutput$ = DeleteObjectsOutput$;
|
|
1658
|
-
const DeleteObjectsRequest$ = [3, n0, _DORe,
|
|
1659
|
-
0,
|
|
1660
|
-
[_B, _De, _MFA, _RP, _BGR, _EBO, _CA],
|
|
1661
|
-
[[0, 1], [() => Delete$, { [_hP]: 1, [_xN]: _De }], [0, { [_hH]: _xam_ }], [0, { [_hH]: _xarp }], [2, { [_hH]: _xabgr }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xasca }]], 2
|
|
1662
|
-
];
|
|
1663
|
-
exports.DeleteObjectsRequest$ = DeleteObjectsRequest$;
|
|
1664
|
-
const DeleteObjectTaggingOutput$ = [3, n0, _DOTO,
|
|
1665
|
-
0,
|
|
1666
|
-
[_VI],
|
|
1667
|
-
[[0, { [_hH]: _xavi }]]
|
|
1668
|
-
];
|
|
1669
|
-
exports.DeleteObjectTaggingOutput$ = DeleteObjectTaggingOutput$;
|
|
1670
|
-
const DeleteObjectTaggingRequest$ = [3, n0, _DOTR,
|
|
1671
|
-
0,
|
|
1672
|
-
[_B, _K, _VI, _EBO],
|
|
1673
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _vI }], [0, { [_hH]: _xaebo }]], 2
|
|
1674
|
-
];
|
|
1675
|
-
exports.DeleteObjectTaggingRequest$ = DeleteObjectTaggingRequest$;
|
|
1676
|
-
const DeletePublicAccessBlockRequest$ = [3, n0, _DPABR,
|
|
1677
|
-
0,
|
|
1678
|
-
[_B, _EBO],
|
|
1679
|
-
[[0, 1], [0, { [_hH]: _xaebo }]], 1
|
|
1680
|
-
];
|
|
1681
|
-
exports.DeletePublicAccessBlockRequest$ = DeletePublicAccessBlockRequest$;
|
|
1682
|
-
const Destination$ = [3, n0, _Des,
|
|
1683
|
-
0,
|
|
1684
|
-
[_B, _A, _SC, _ACT, _EC, _RT, _Me],
|
|
1685
|
-
[0, 0, 0, () => AccessControlTranslation$, () => EncryptionConfiguration$, () => ReplicationTime$, () => Metrics$], 1
|
|
1686
|
-
];
|
|
1687
|
-
exports.Destination$ = Destination$;
|
|
1688
|
-
const DestinationResult$ = [3, n0, _DRes,
|
|
1689
|
-
0,
|
|
1690
|
-
[_TBT, _TBA, _TNa],
|
|
1691
|
-
[0, 0, 0]
|
|
1692
|
-
];
|
|
1693
|
-
exports.DestinationResult$ = DestinationResult$;
|
|
1694
|
-
const Encryption$ = [3, n0, _En,
|
|
1695
|
-
0,
|
|
1696
|
-
[_ETn, _KMSKI, _KMSC],
|
|
1697
|
-
[0, [() => SSEKMSKeyId, 0], 0], 1
|
|
1698
|
-
];
|
|
1699
|
-
exports.Encryption$ = Encryption$;
|
|
1700
|
-
const EncryptionConfiguration$ = [3, n0, _EC,
|
|
1701
|
-
0,
|
|
1702
|
-
[_RKKID],
|
|
1703
|
-
[0]
|
|
1704
|
-
];
|
|
1705
|
-
exports.EncryptionConfiguration$ = EncryptionConfiguration$;
|
|
1706
|
-
const EndEvent$ = [3, n0, _EE,
|
|
1707
|
-
0,
|
|
1708
|
-
[],
|
|
1709
|
-
[]
|
|
1710
|
-
];
|
|
1711
|
-
exports.EndEvent$ = EndEvent$;
|
|
1712
|
-
const _Error$ = [3, n0, _E,
|
|
1713
|
-
0,
|
|
1714
|
-
[_K, _VI, _Cod, _Mes],
|
|
1715
|
-
[0, 0, 0, 0]
|
|
1716
|
-
];
|
|
1717
|
-
exports._Error$ = _Error$;
|
|
1718
|
-
const ErrorDetails$ = [3, n0, _ED,
|
|
1719
|
-
0,
|
|
1720
|
-
[_ECr, _EM],
|
|
1721
|
-
[0, 0]
|
|
1722
|
-
];
|
|
1723
|
-
exports.ErrorDetails$ = ErrorDetails$;
|
|
1724
|
-
const ErrorDocument$ = [3, n0, _EDr,
|
|
1725
|
-
0,
|
|
1726
|
-
[_K],
|
|
1727
|
-
[0], 1
|
|
1728
|
-
];
|
|
1729
|
-
exports.ErrorDocument$ = ErrorDocument$;
|
|
1730
|
-
const EventBridgeConfiguration$ = [3, n0, _EBC,
|
|
1731
|
-
0,
|
|
1732
|
-
[],
|
|
1733
|
-
[]
|
|
1734
|
-
];
|
|
1735
|
-
exports.EventBridgeConfiguration$ = EventBridgeConfiguration$;
|
|
1736
|
-
const ExistingObjectReplication$ = [3, n0, _EOR,
|
|
1737
|
-
0,
|
|
1738
|
-
[_S],
|
|
1739
|
-
[0], 1
|
|
1740
|
-
];
|
|
1741
|
-
exports.ExistingObjectReplication$ = ExistingObjectReplication$;
|
|
1742
|
-
const FilterRule$ = [3, n0, _FR,
|
|
1743
|
-
0,
|
|
1744
|
-
[_N, _V],
|
|
1745
|
-
[0, 0]
|
|
1746
|
-
];
|
|
1747
|
-
exports.FilterRule$ = FilterRule$;
|
|
1748
|
-
const GetBucketAbacOutput$ = [3, n0, _GBAO,
|
|
1749
|
-
0,
|
|
1750
|
-
[_AS],
|
|
1751
|
-
[[() => AbacStatus$, 16]]
|
|
1752
|
-
];
|
|
1753
|
-
exports.GetBucketAbacOutput$ = GetBucketAbacOutput$;
|
|
1754
|
-
const GetBucketAbacRequest$ = [3, n0, _GBAR,
|
|
1755
|
-
0,
|
|
1756
|
-
[_B, _EBO],
|
|
1757
|
-
[[0, 1], [0, { [_hH]: _xaebo }]], 1
|
|
1758
|
-
];
|
|
1759
|
-
exports.GetBucketAbacRequest$ = GetBucketAbacRequest$;
|
|
1760
|
-
const GetBucketAccelerateConfigurationOutput$ = [3, n0, _GBACO,
|
|
1761
|
-
{ [_xN]: _AC },
|
|
1762
|
-
[_S, _RC],
|
|
1763
|
-
[0, [0, { [_hH]: _xarc }]]
|
|
1764
|
-
];
|
|
1765
|
-
exports.GetBucketAccelerateConfigurationOutput$ = GetBucketAccelerateConfigurationOutput$;
|
|
1766
|
-
const GetBucketAccelerateConfigurationRequest$ = [3, n0, _GBACR,
|
|
1767
|
-
0,
|
|
1768
|
-
[_B, _EBO, _RP],
|
|
1769
|
-
[[0, 1], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xarp }]], 1
|
|
1770
|
-
];
|
|
1771
|
-
exports.GetBucketAccelerateConfigurationRequest$ = GetBucketAccelerateConfigurationRequest$;
|
|
1772
|
-
const GetBucketAclOutput$ = [3, n0, _GBAOe,
|
|
1773
|
-
{ [_xN]: _ACP },
|
|
1774
|
-
[_O, _G],
|
|
1775
|
-
[() => Owner$, [() => Grants, { [_xN]: _ACL }]]
|
|
1776
|
-
];
|
|
1777
|
-
exports.GetBucketAclOutput$ = GetBucketAclOutput$;
|
|
1778
|
-
const GetBucketAclRequest$ = [3, n0, _GBARe,
|
|
1779
|
-
0,
|
|
1780
|
-
[_B, _EBO],
|
|
1781
|
-
[[0, 1], [0, { [_hH]: _xaebo }]], 1
|
|
1782
|
-
];
|
|
1783
|
-
exports.GetBucketAclRequest$ = GetBucketAclRequest$;
|
|
1784
|
-
const GetBucketAnalyticsConfigurationOutput$ = [3, n0, _GBACOe,
|
|
1785
|
-
0,
|
|
1786
|
-
[_ACn],
|
|
1787
|
-
[[() => AnalyticsConfiguration$, 16]]
|
|
1788
|
-
];
|
|
1789
|
-
exports.GetBucketAnalyticsConfigurationOutput$ = GetBucketAnalyticsConfigurationOutput$;
|
|
1790
|
-
const GetBucketAnalyticsConfigurationRequest$ = [3, n0, _GBACRe,
|
|
1791
|
-
0,
|
|
1792
|
-
[_B, _I, _EBO],
|
|
1793
|
-
[[0, 1], [0, { [_hQ]: _i }], [0, { [_hH]: _xaebo }]], 2
|
|
1794
|
-
];
|
|
1795
|
-
exports.GetBucketAnalyticsConfigurationRequest$ = GetBucketAnalyticsConfigurationRequest$;
|
|
1796
|
-
const GetBucketCorsOutput$ = [3, n0, _GBCO,
|
|
1797
|
-
{ [_xN]: _CORSC },
|
|
1798
|
-
[_CORSR],
|
|
1799
|
-
[[() => CORSRules, { [_xF]: 1, [_xN]: _CORSRu }]]
|
|
1800
|
-
];
|
|
1801
|
-
exports.GetBucketCorsOutput$ = GetBucketCorsOutput$;
|
|
1802
|
-
const GetBucketCorsRequest$ = [3, n0, _GBCR,
|
|
1803
|
-
0,
|
|
1804
|
-
[_B, _EBO],
|
|
1805
|
-
[[0, 1], [0, { [_hH]: _xaebo }]], 1
|
|
1806
|
-
];
|
|
1807
|
-
exports.GetBucketCorsRequest$ = GetBucketCorsRequest$;
|
|
1808
|
-
const GetBucketEncryptionOutput$ = [3, n0, _GBEO,
|
|
1809
|
-
0,
|
|
1810
|
-
[_SSEC],
|
|
1811
|
-
[[() => ServerSideEncryptionConfiguration$, 16]]
|
|
1812
|
-
];
|
|
1813
|
-
exports.GetBucketEncryptionOutput$ = GetBucketEncryptionOutput$;
|
|
1814
|
-
const GetBucketEncryptionRequest$ = [3, n0, _GBER,
|
|
1815
|
-
0,
|
|
1816
|
-
[_B, _EBO],
|
|
1817
|
-
[[0, 1], [0, { [_hH]: _xaebo }]], 1
|
|
1818
|
-
];
|
|
1819
|
-
exports.GetBucketEncryptionRequest$ = GetBucketEncryptionRequest$;
|
|
1820
|
-
const GetBucketIntelligentTieringConfigurationOutput$ = [3, n0, _GBITCO,
|
|
1821
|
-
0,
|
|
1822
|
-
[_ITC],
|
|
1823
|
-
[[() => IntelligentTieringConfiguration$, 16]]
|
|
1824
|
-
];
|
|
1825
|
-
exports.GetBucketIntelligentTieringConfigurationOutput$ = GetBucketIntelligentTieringConfigurationOutput$;
|
|
1826
|
-
const GetBucketIntelligentTieringConfigurationRequest$ = [3, n0, _GBITCR,
|
|
1827
|
-
0,
|
|
1828
|
-
[_B, _I, _EBO],
|
|
1829
|
-
[[0, 1], [0, { [_hQ]: _i }], [0, { [_hH]: _xaebo }]], 2
|
|
1830
|
-
];
|
|
1831
|
-
exports.GetBucketIntelligentTieringConfigurationRequest$ = GetBucketIntelligentTieringConfigurationRequest$;
|
|
1832
|
-
const GetBucketInventoryConfigurationOutput$ = [3, n0, _GBICO,
|
|
1833
|
-
0,
|
|
1834
|
-
[_IC],
|
|
1835
|
-
[[() => InventoryConfiguration$, 16]]
|
|
1836
|
-
];
|
|
1837
|
-
exports.GetBucketInventoryConfigurationOutput$ = GetBucketInventoryConfigurationOutput$;
|
|
1838
|
-
const GetBucketInventoryConfigurationRequest$ = [3, n0, _GBICR,
|
|
1839
|
-
0,
|
|
1840
|
-
[_B, _I, _EBO],
|
|
1841
|
-
[[0, 1], [0, { [_hQ]: _i }], [0, { [_hH]: _xaebo }]], 2
|
|
1842
|
-
];
|
|
1843
|
-
exports.GetBucketInventoryConfigurationRequest$ = GetBucketInventoryConfigurationRequest$;
|
|
1844
|
-
const GetBucketLifecycleConfigurationOutput$ = [3, n0, _GBLCO,
|
|
1845
|
-
{ [_xN]: _LCi },
|
|
1846
|
-
[_Ru, _TDMOS],
|
|
1847
|
-
[[() => LifecycleRules, { [_xF]: 1, [_xN]: _Rul }], [0, { [_hH]: _xatdmos }]]
|
|
1848
|
-
];
|
|
1849
|
-
exports.GetBucketLifecycleConfigurationOutput$ = GetBucketLifecycleConfigurationOutput$;
|
|
1850
|
-
const GetBucketLifecycleConfigurationRequest$ = [3, n0, _GBLCR,
|
|
1851
|
-
0,
|
|
1852
|
-
[_B, _EBO],
|
|
1853
|
-
[[0, 1], [0, { [_hH]: _xaebo }]], 1
|
|
1854
|
-
];
|
|
1855
|
-
exports.GetBucketLifecycleConfigurationRequest$ = GetBucketLifecycleConfigurationRequest$;
|
|
1856
|
-
const GetBucketLocationOutput$ = [3, n0, _GBLO,
|
|
1857
|
-
{ [_xN]: _LC },
|
|
1858
|
-
[_LC],
|
|
1859
|
-
[0]
|
|
1860
|
-
];
|
|
1861
|
-
exports.GetBucketLocationOutput$ = GetBucketLocationOutput$;
|
|
1862
|
-
const GetBucketLocationRequest$ = [3, n0, _GBLR,
|
|
1863
|
-
0,
|
|
1864
|
-
[_B, _EBO],
|
|
1865
|
-
[[0, 1], [0, { [_hH]: _xaebo }]], 1
|
|
1866
|
-
];
|
|
1867
|
-
exports.GetBucketLocationRequest$ = GetBucketLocationRequest$;
|
|
1868
|
-
const GetBucketLoggingOutput$ = [3, n0, _GBLOe,
|
|
1869
|
-
{ [_xN]: _BLS },
|
|
1870
|
-
[_LE],
|
|
1871
|
-
[[() => LoggingEnabled$, 0]]
|
|
1872
|
-
];
|
|
1873
|
-
exports.GetBucketLoggingOutput$ = GetBucketLoggingOutput$;
|
|
1874
|
-
const GetBucketLoggingRequest$ = [3, n0, _GBLRe,
|
|
1875
|
-
0,
|
|
1876
|
-
[_B, _EBO],
|
|
1877
|
-
[[0, 1], [0, { [_hH]: _xaebo }]], 1
|
|
1878
|
-
];
|
|
1879
|
-
exports.GetBucketLoggingRequest$ = GetBucketLoggingRequest$;
|
|
1880
|
-
const GetBucketMetadataConfigurationOutput$ = [3, n0, _GBMCO,
|
|
1881
|
-
0,
|
|
1882
|
-
[_GBMCR],
|
|
1883
|
-
[[() => GetBucketMetadataConfigurationResult$, 16]]
|
|
1884
|
-
];
|
|
1885
|
-
exports.GetBucketMetadataConfigurationOutput$ = GetBucketMetadataConfigurationOutput$;
|
|
1886
|
-
const GetBucketMetadataConfigurationRequest$ = [3, n0, _GBMCRe,
|
|
1887
|
-
0,
|
|
1888
|
-
[_B, _EBO],
|
|
1889
|
-
[[0, 1], [0, { [_hH]: _xaebo }]], 1
|
|
1890
|
-
];
|
|
1891
|
-
exports.GetBucketMetadataConfigurationRequest$ = GetBucketMetadataConfigurationRequest$;
|
|
1892
|
-
const GetBucketMetadataConfigurationResult$ = [3, n0, _GBMCR,
|
|
1893
|
-
0,
|
|
1894
|
-
[_MCR],
|
|
1895
|
-
[() => MetadataConfigurationResult$], 1
|
|
1896
|
-
];
|
|
1897
|
-
exports.GetBucketMetadataConfigurationResult$ = GetBucketMetadataConfigurationResult$;
|
|
1898
|
-
const GetBucketMetadataTableConfigurationOutput$ = [3, n0, _GBMTCO,
|
|
1899
|
-
0,
|
|
1900
|
-
[_GBMTCR],
|
|
1901
|
-
[[() => GetBucketMetadataTableConfigurationResult$, 16]]
|
|
1902
|
-
];
|
|
1903
|
-
exports.GetBucketMetadataTableConfigurationOutput$ = GetBucketMetadataTableConfigurationOutput$;
|
|
1904
|
-
const GetBucketMetadataTableConfigurationRequest$ = [3, n0, _GBMTCRe,
|
|
1905
|
-
0,
|
|
1906
|
-
[_B, _EBO],
|
|
1907
|
-
[[0, 1], [0, { [_hH]: _xaebo }]], 1
|
|
1908
|
-
];
|
|
1909
|
-
exports.GetBucketMetadataTableConfigurationRequest$ = GetBucketMetadataTableConfigurationRequest$;
|
|
1910
|
-
const GetBucketMetadataTableConfigurationResult$ = [3, n0, _GBMTCR,
|
|
1911
|
-
0,
|
|
1912
|
-
[_MTCR, _S, _E],
|
|
1913
|
-
[() => MetadataTableConfigurationResult$, 0, () => ErrorDetails$], 2
|
|
1914
|
-
];
|
|
1915
|
-
exports.GetBucketMetadataTableConfigurationResult$ = GetBucketMetadataTableConfigurationResult$;
|
|
1916
|
-
const GetBucketMetricsConfigurationOutput$ = [3, n0, _GBMCOe,
|
|
1917
|
-
0,
|
|
1918
|
-
[_MCe],
|
|
1919
|
-
[[() => MetricsConfiguration$, 16]]
|
|
1920
|
-
];
|
|
1921
|
-
exports.GetBucketMetricsConfigurationOutput$ = GetBucketMetricsConfigurationOutput$;
|
|
1922
|
-
const GetBucketMetricsConfigurationRequest$ = [3, n0, _GBMCRet,
|
|
1923
|
-
0,
|
|
1924
|
-
[_B, _I, _EBO],
|
|
1925
|
-
[[0, 1], [0, { [_hQ]: _i }], [0, { [_hH]: _xaebo }]], 2
|
|
1926
|
-
];
|
|
1927
|
-
exports.GetBucketMetricsConfigurationRequest$ = GetBucketMetricsConfigurationRequest$;
|
|
1928
|
-
const GetBucketNotificationConfigurationRequest$ = [3, n0, _GBNCR,
|
|
1929
|
-
0,
|
|
1930
|
-
[_B, _EBO],
|
|
1931
|
-
[[0, 1], [0, { [_hH]: _xaebo }]], 1
|
|
1932
|
-
];
|
|
1933
|
-
exports.GetBucketNotificationConfigurationRequest$ = GetBucketNotificationConfigurationRequest$;
|
|
1934
|
-
const GetBucketOwnershipControlsOutput$ = [3, n0, _GBOCO,
|
|
1935
|
-
0,
|
|
1936
|
-
[_OC],
|
|
1937
|
-
[[() => OwnershipControls$, 16]]
|
|
1938
|
-
];
|
|
1939
|
-
exports.GetBucketOwnershipControlsOutput$ = GetBucketOwnershipControlsOutput$;
|
|
1940
|
-
const GetBucketOwnershipControlsRequest$ = [3, n0, _GBOCR,
|
|
1941
|
-
0,
|
|
1942
|
-
[_B, _EBO],
|
|
1943
|
-
[[0, 1], [0, { [_hH]: _xaebo }]], 1
|
|
1944
|
-
];
|
|
1945
|
-
exports.GetBucketOwnershipControlsRequest$ = GetBucketOwnershipControlsRequest$;
|
|
1946
|
-
const GetBucketPolicyOutput$ = [3, n0, _GBPO,
|
|
1947
|
-
0,
|
|
1948
|
-
[_Po],
|
|
1949
|
-
[[0, 16]]
|
|
1950
|
-
];
|
|
1951
|
-
exports.GetBucketPolicyOutput$ = GetBucketPolicyOutput$;
|
|
1952
|
-
const GetBucketPolicyRequest$ = [3, n0, _GBPR,
|
|
1953
|
-
0,
|
|
1954
|
-
[_B, _EBO],
|
|
1955
|
-
[[0, 1], [0, { [_hH]: _xaebo }]], 1
|
|
1956
|
-
];
|
|
1957
|
-
exports.GetBucketPolicyRequest$ = GetBucketPolicyRequest$;
|
|
1958
|
-
const GetBucketPolicyStatusOutput$ = [3, n0, _GBPSO,
|
|
1959
|
-
0,
|
|
1960
|
-
[_PS],
|
|
1961
|
-
[[() => PolicyStatus$, 16]]
|
|
1962
|
-
];
|
|
1963
|
-
exports.GetBucketPolicyStatusOutput$ = GetBucketPolicyStatusOutput$;
|
|
1964
|
-
const GetBucketPolicyStatusRequest$ = [3, n0, _GBPSR,
|
|
1965
|
-
0,
|
|
1966
|
-
[_B, _EBO],
|
|
1967
|
-
[[0, 1], [0, { [_hH]: _xaebo }]], 1
|
|
1968
|
-
];
|
|
1969
|
-
exports.GetBucketPolicyStatusRequest$ = GetBucketPolicyStatusRequest$;
|
|
1970
|
-
const GetBucketReplicationOutput$ = [3, n0, _GBRO,
|
|
1971
|
-
0,
|
|
1972
|
-
[_RCe],
|
|
1973
|
-
[[() => ReplicationConfiguration$, 16]]
|
|
1974
|
-
];
|
|
1975
|
-
exports.GetBucketReplicationOutput$ = GetBucketReplicationOutput$;
|
|
1976
|
-
const GetBucketReplicationRequest$ = [3, n0, _GBRR,
|
|
1977
|
-
0,
|
|
1978
|
-
[_B, _EBO],
|
|
1979
|
-
[[0, 1], [0, { [_hH]: _xaebo }]], 1
|
|
1980
|
-
];
|
|
1981
|
-
exports.GetBucketReplicationRequest$ = GetBucketReplicationRequest$;
|
|
1982
|
-
const GetBucketRequestPaymentOutput$ = [3, n0, _GBRPO,
|
|
1983
|
-
{ [_xN]: _RPC },
|
|
1984
|
-
[_Pay],
|
|
1985
|
-
[0]
|
|
1986
|
-
];
|
|
1987
|
-
exports.GetBucketRequestPaymentOutput$ = GetBucketRequestPaymentOutput$;
|
|
1988
|
-
const GetBucketRequestPaymentRequest$ = [3, n0, _GBRPR,
|
|
1989
|
-
0,
|
|
1990
|
-
[_B, _EBO],
|
|
1991
|
-
[[0, 1], [0, { [_hH]: _xaebo }]], 1
|
|
1992
|
-
];
|
|
1993
|
-
exports.GetBucketRequestPaymentRequest$ = GetBucketRequestPaymentRequest$;
|
|
1994
|
-
const GetBucketTaggingOutput$ = [3, n0, _GBTO,
|
|
1995
|
-
{ [_xN]: _Tag },
|
|
1996
|
-
[_TSa],
|
|
1997
|
-
[[() => TagSet, 0]], 1
|
|
1998
|
-
];
|
|
1999
|
-
exports.GetBucketTaggingOutput$ = GetBucketTaggingOutput$;
|
|
2000
|
-
const GetBucketTaggingRequest$ = [3, n0, _GBTR,
|
|
2001
|
-
0,
|
|
2002
|
-
[_B, _EBO],
|
|
2003
|
-
[[0, 1], [0, { [_hH]: _xaebo }]], 1
|
|
2004
|
-
];
|
|
2005
|
-
exports.GetBucketTaggingRequest$ = GetBucketTaggingRequest$;
|
|
2006
|
-
const GetBucketVersioningOutput$ = [3, n0, _GBVO,
|
|
2007
|
-
{ [_xN]: _VC },
|
|
2008
|
-
[_S, _MFAD],
|
|
2009
|
-
[0, [0, { [_xN]: _MDf }]]
|
|
2010
|
-
];
|
|
2011
|
-
exports.GetBucketVersioningOutput$ = GetBucketVersioningOutput$;
|
|
2012
|
-
const GetBucketVersioningRequest$ = [3, n0, _GBVR,
|
|
2013
|
-
0,
|
|
2014
|
-
[_B, _EBO],
|
|
2015
|
-
[[0, 1], [0, { [_hH]: _xaebo }]], 1
|
|
2016
|
-
];
|
|
2017
|
-
exports.GetBucketVersioningRequest$ = GetBucketVersioningRequest$;
|
|
2018
|
-
const GetBucketWebsiteOutput$ = [3, n0, _GBWO,
|
|
2019
|
-
{ [_xN]: _WC },
|
|
2020
|
-
[_RART, _IDn, _EDr, _RR],
|
|
2021
|
-
[() => RedirectAllRequestsTo$, () => IndexDocument$, () => ErrorDocument$, [() => RoutingRules, 0]]
|
|
2022
|
-
];
|
|
2023
|
-
exports.GetBucketWebsiteOutput$ = GetBucketWebsiteOutput$;
|
|
2024
|
-
const GetBucketWebsiteRequest$ = [3, n0, _GBWR,
|
|
2025
|
-
0,
|
|
2026
|
-
[_B, _EBO],
|
|
2027
|
-
[[0, 1], [0, { [_hH]: _xaebo }]], 1
|
|
2028
|
-
];
|
|
2029
|
-
exports.GetBucketWebsiteRequest$ = GetBucketWebsiteRequest$;
|
|
2030
|
-
const GetObjectAclOutput$ = [3, n0, _GOAO,
|
|
2031
|
-
{ [_xN]: _ACP },
|
|
2032
|
-
[_O, _G, _RC],
|
|
2033
|
-
[() => Owner$, [() => Grants, { [_xN]: _ACL }], [0, { [_hH]: _xarc }]]
|
|
2034
|
-
];
|
|
2035
|
-
exports.GetObjectAclOutput$ = GetObjectAclOutput$;
|
|
2036
|
-
const GetObjectAclRequest$ = [3, n0, _GOAR,
|
|
2037
|
-
0,
|
|
2038
|
-
[_B, _K, _VI, _RP, _EBO],
|
|
2039
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _vI }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }]], 2
|
|
2040
|
-
];
|
|
2041
|
-
exports.GetObjectAclRequest$ = GetObjectAclRequest$;
|
|
2042
|
-
const GetObjectAnnotationOutput$ = [3, n0, _GOAOe,
|
|
2043
|
-
0,
|
|
2044
|
-
[_AP, _OVI, _LM, _CLo, _ET, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh, _CSHAhe, _CMD, _CXXHASH, _CXXHASHh, _CXXHASHhe, _CT, _SSE, _RC, _RS],
|
|
2045
|
-
[[() => StreamingBlob, 16], [0, { [_hH]: _xaovi }], [4, { [_hH]: _LM_ }], [1, { [_hH]: _CL__ }], [0, { [_hH]: _ET }], [0, { [_hH]: _xacc }], [0, { [_hH]: _xacc_ }], [0, { [_hH]: _xacc__ }], [0, { [_hH]: _xacs }], [0, { [_hH]: _xacs_ }], [0, { [_hH]: _xacs__ }], [0, { [_hH]: _xacm }], [0, { [_hH]: _xacx }], [0, { [_hH]: _xacx_ }], [0, { [_hH]: _xacx__ }], [0, { [_hH]: _xact }], [0, { [_hH]: _xasse }], [0, { [_hH]: _xarc }], [0, { [_hH]: _xars }]]
|
|
2046
|
-
];
|
|
2047
|
-
exports.GetObjectAnnotationOutput$ = GetObjectAnnotationOutput$;
|
|
2048
|
-
const GetObjectAnnotationRequest$ = [3, n0, _GOARe,
|
|
2049
|
-
0,
|
|
2050
|
-
[_B, _K, _AN, _VI, _RP, _EBO, _CMh],
|
|
2051
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _aN }], [0, { [_hQ]: _vI }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xacm_ }]], 3
|
|
2052
|
-
];
|
|
2053
|
-
exports.GetObjectAnnotationRequest$ = GetObjectAnnotationRequest$;
|
|
2054
|
-
const GetObjectAttributesOutput$ = [3, n0, _GOAOet,
|
|
2055
|
-
{ [_xN]: _GOARet },
|
|
2056
|
-
[_DM, _LM, _VI, _RC, _ET, _C, _OP, _SC, _OS],
|
|
2057
|
-
[[2, { [_hH]: _xadm }], [4, { [_hH]: _LM_ }], [0, { [_hH]: _xavi }], [0, { [_hH]: _xarc }], 0, () => Checksum$, [() => GetObjectAttributesParts$, 0], 0, 1]
|
|
2058
|
-
];
|
|
2059
|
-
exports.GetObjectAttributesOutput$ = GetObjectAttributesOutput$;
|
|
2060
|
-
const GetObjectAttributesParts$ = [3, n0, _GOAP,
|
|
2061
|
-
0,
|
|
2062
|
-
[_TPC, _PNM, _NPNM, _MP, _IT, _Pa],
|
|
2063
|
-
[[1, { [_xN]: _PC }], 0, 0, 1, 2, [() => PartsList, { [_xF]: 1, [_xN]: _Par }]]
|
|
2064
|
-
];
|
|
2065
|
-
exports.GetObjectAttributesParts$ = GetObjectAttributesParts$;
|
|
2066
|
-
const GetObjectAttributesRequest$ = [3, n0, _GOARetb,
|
|
2067
|
-
0,
|
|
2068
|
-
[_B, _K, _OA, _VI, _MP, _PNM, _SSECA, _SSECK, _SSECKMD, _RP, _EBO],
|
|
2069
|
-
[[0, 1], [0, 1], [64 | 0, { [_hH]: _xaoa }], [0, { [_hQ]: _vI }], [1, { [_hH]: _xamp }], [0, { [_hH]: _xapnm }], [0, { [_hH]: _xasseca }], [() => SSECustomerKey, { [_hH]: _xasseck }], [0, { [_hH]: _xasseckM }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }]], 3
|
|
2070
|
-
];
|
|
2071
|
-
exports.GetObjectAttributesRequest$ = GetObjectAttributesRequest$;
|
|
2072
|
-
const GetObjectLegalHoldOutput$ = [3, n0, _GOLHO,
|
|
2073
|
-
0,
|
|
2074
|
-
[_LH],
|
|
2075
|
-
[[() => ObjectLockLegalHold$, { [_hP]: 1, [_xN]: _LH }]]
|
|
2076
|
-
];
|
|
2077
|
-
exports.GetObjectLegalHoldOutput$ = GetObjectLegalHoldOutput$;
|
|
2078
|
-
const GetObjectLegalHoldRequest$ = [3, n0, _GOLHR,
|
|
2079
|
-
0,
|
|
2080
|
-
[_B, _K, _VI, _RP, _EBO],
|
|
2081
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _vI }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }]], 2
|
|
2082
|
-
];
|
|
2083
|
-
exports.GetObjectLegalHoldRequest$ = GetObjectLegalHoldRequest$;
|
|
2084
|
-
const GetObjectLockConfigurationOutput$ = [3, n0, _GOLCO,
|
|
2085
|
-
0,
|
|
2086
|
-
[_OLC],
|
|
2087
|
-
[[() => ObjectLockConfiguration$, 16]]
|
|
2088
|
-
];
|
|
2089
|
-
exports.GetObjectLockConfigurationOutput$ = GetObjectLockConfigurationOutput$;
|
|
2090
|
-
const GetObjectLockConfigurationRequest$ = [3, n0, _GOLCR,
|
|
2091
|
-
0,
|
|
2092
|
-
[_B, _EBO],
|
|
2093
|
-
[[0, 1], [0, { [_hH]: _xaebo }]], 1
|
|
2094
|
-
];
|
|
2095
|
-
exports.GetObjectLockConfigurationRequest$ = GetObjectLockConfigurationRequest$;
|
|
2096
|
-
const GetObjectOutput$ = [3, n0, _GOO,
|
|
2097
|
-
0,
|
|
2098
|
-
[_Bo, _DM, _AR, _Ex, _Re, _LM, _CLo, _ET, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh, _CSHAhe, _CMD, _CXXHASH, _CXXHASHh, _CXXHASHhe, _CT, _MM, _VI, _CC, _CDo, _CEo, _CL, _CR, _CTo, _Exp, _ES, _WRL, _SSE, _M, _SSECA, _SSECKMD, _SSEKMSKI, _BKE, _SC, _RC, _RS, _PC, _TC, _OLM, _OLRUD, _OLLHS],
|
|
2099
|
-
[[() => StreamingBlob, 16], [2, { [_hH]: _xadm }], [0, { [_hH]: _ar }], [0, { [_hH]: _xae }], [0, { [_hH]: _xar }], [4, { [_hH]: _LM_ }], [1, { [_hH]: _CL__ }], [0, { [_hH]: _ET }], [0, { [_hH]: _xacc }], [0, { [_hH]: _xacc_ }], [0, { [_hH]: _xacc__ }], [0, { [_hH]: _xacs }], [0, { [_hH]: _xacs_ }], [0, { [_hH]: _xacs__ }], [0, { [_hH]: _xacm }], [0, { [_hH]: _xacx }], [0, { [_hH]: _xacx_ }], [0, { [_hH]: _xacx__ }], [0, { [_hH]: _xact }], [1, { [_hH]: _xamm }], [0, { [_hH]: _xavi }], [0, { [_hH]: _CC_ }], [0, { [_hH]: _CD_ }], [0, { [_hH]: _CE_ }], [0, { [_hH]: _CL_ }], [0, { [_hH]: _CR_ }], [0, { [_hH]: _CT_ }], [4, { [_hH]: _Exp }], [0, { [_hH]: _ES }], [0, { [_hH]: _xawrl }], [0, { [_hH]: _xasse }], [128 | 0, { [_hPH]: _xam }], [0, { [_hH]: _xasseca }], [0, { [_hH]: _xasseckM }], [() => SSEKMSKeyId, { [_hH]: _xasseakki }], [2, { [_hH]: _xassebke }], [0, { [_hH]: _xasc }], [0, { [_hH]: _xarc }], [0, { [_hH]: _xars }], [1, { [_hH]: _xampc }], [1, { [_hH]: _xatc }], [0, { [_hH]: _xaolm }], [5, { [_hH]: _xaolrud }], [0, { [_hH]: _xaollh }]]
|
|
2100
|
-
];
|
|
2101
|
-
exports.GetObjectOutput$ = GetObjectOutput$;
|
|
2102
|
-
const GetObjectRequest$ = [3, n0, _GOR,
|
|
2103
|
-
0,
|
|
2104
|
-
[_B, _K, _IM, _IMSf, _INM, _IUS, _Ra, _RCC, _RCD, _RCE, _RCL, _RCT, _RE, _VI, _SSECA, _SSECK, _SSECKMD, _RP, _PN, _EBO, _CMh],
|
|
2105
|
-
[[0, 1], [0, 1], [0, { [_hH]: _IM_ }], [4, { [_hH]: _IMS_ }], [0, { [_hH]: _INM_ }], [4, { [_hH]: _IUS_ }], [0, { [_hH]: _Ra }], [0, { [_hQ]: _rcc }], [0, { [_hQ]: _rcd }], [0, { [_hQ]: _rce }], [0, { [_hQ]: _rcl }], [0, { [_hQ]: _rct }], [6, { [_hQ]: _re }], [0, { [_hQ]: _vI }], [0, { [_hH]: _xasseca }], [() => SSECustomerKey, { [_hH]: _xasseck }], [0, { [_hH]: _xasseckM }], [0, { [_hH]: _xarp }], [1, { [_hQ]: _pN }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xacm_ }]], 2
|
|
2106
|
-
];
|
|
2107
|
-
exports.GetObjectRequest$ = GetObjectRequest$;
|
|
2108
|
-
const GetObjectRetentionOutput$ = [3, n0, _GORO,
|
|
2109
|
-
0,
|
|
2110
|
-
[_Ret],
|
|
2111
|
-
[[() => ObjectLockRetention$, { [_hP]: 1, [_xN]: _Ret }]]
|
|
2112
|
-
];
|
|
2113
|
-
exports.GetObjectRetentionOutput$ = GetObjectRetentionOutput$;
|
|
2114
|
-
const GetObjectRetentionRequest$ = [3, n0, _GORR,
|
|
2115
|
-
0,
|
|
2116
|
-
[_B, _K, _VI, _RP, _EBO],
|
|
2117
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _vI }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }]], 2
|
|
2118
|
-
];
|
|
2119
|
-
exports.GetObjectRetentionRequest$ = GetObjectRetentionRequest$;
|
|
2120
|
-
const GetObjectTaggingOutput$ = [3, n0, _GOTO,
|
|
2121
|
-
{ [_xN]: _Tag },
|
|
2122
|
-
[_TSa, _VI],
|
|
2123
|
-
[[() => TagSet, 0], [0, { [_hH]: _xavi }]], 1
|
|
2124
|
-
];
|
|
2125
|
-
exports.GetObjectTaggingOutput$ = GetObjectTaggingOutput$;
|
|
2126
|
-
const GetObjectTaggingRequest$ = [3, n0, _GOTR,
|
|
2127
|
-
0,
|
|
2128
|
-
[_B, _K, _VI, _EBO, _RP],
|
|
2129
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _vI }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xarp }]], 2
|
|
2130
|
-
];
|
|
2131
|
-
exports.GetObjectTaggingRequest$ = GetObjectTaggingRequest$;
|
|
2132
|
-
const GetObjectTorrentOutput$ = [3, n0, _GOTOe,
|
|
2133
|
-
0,
|
|
2134
|
-
[_Bo, _RC],
|
|
2135
|
-
[[() => StreamingBlob, 16], [0, { [_hH]: _xarc }]]
|
|
2136
|
-
];
|
|
2137
|
-
exports.GetObjectTorrentOutput$ = GetObjectTorrentOutput$;
|
|
2138
|
-
const GetObjectTorrentRequest$ = [3, n0, _GOTRe,
|
|
2139
|
-
0,
|
|
2140
|
-
[_B, _K, _RP, _EBO],
|
|
2141
|
-
[[0, 1], [0, 1], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }]], 2
|
|
2142
|
-
];
|
|
2143
|
-
exports.GetObjectTorrentRequest$ = GetObjectTorrentRequest$;
|
|
2144
|
-
const GetPublicAccessBlockOutput$ = [3, n0, _GPABO,
|
|
2145
|
-
0,
|
|
2146
|
-
[_PABC],
|
|
2147
|
-
[[() => PublicAccessBlockConfiguration$, 16]]
|
|
2148
|
-
];
|
|
2149
|
-
exports.GetPublicAccessBlockOutput$ = GetPublicAccessBlockOutput$;
|
|
2150
|
-
const GetPublicAccessBlockRequest$ = [3, n0, _GPABR,
|
|
2151
|
-
0,
|
|
2152
|
-
[_B, _EBO],
|
|
2153
|
-
[[0, 1], [0, { [_hH]: _xaebo }]], 1
|
|
2154
|
-
];
|
|
2155
|
-
exports.GetPublicAccessBlockRequest$ = GetPublicAccessBlockRequest$;
|
|
2156
|
-
const GlacierJobParameters$ = [3, n0, _GJP,
|
|
2157
|
-
0,
|
|
2158
|
-
[_Ti],
|
|
2159
|
-
[0], 1
|
|
2160
|
-
];
|
|
2161
|
-
exports.GlacierJobParameters$ = GlacierJobParameters$;
|
|
2162
|
-
const Grant$ = [3, n0, _Gr,
|
|
2163
|
-
0,
|
|
2164
|
-
[_Gra, _Pe],
|
|
2165
|
-
[[() => Grantee$, { [_xNm]: [_x, _hi] }], 0]
|
|
2166
|
-
];
|
|
2167
|
-
exports.Grant$ = Grant$;
|
|
2168
|
-
const Grantee$ = [3, n0, _Gra,
|
|
2169
|
-
0,
|
|
2170
|
-
[_Ty, _DN, _EA, _ID, _URI],
|
|
2171
|
-
[[0, { [_xA]: 1, [_xN]: _xs }], 0, 0, 0, 0], 1
|
|
2172
|
-
];
|
|
2173
|
-
exports.Grantee$ = Grantee$;
|
|
2174
|
-
const HeadBucketOutput$ = [3, n0, _HBO,
|
|
2175
|
-
0,
|
|
2176
|
-
[_BA, _BLT, _BLN, _BR, _APA],
|
|
2177
|
-
[[0, { [_hH]: _xaba }], [0, { [_hH]: _xablt }], [0, { [_hH]: _xabln }], [0, { [_hH]: _xabr }], [2, { [_hH]: _xaapa }]]
|
|
2178
|
-
];
|
|
2179
|
-
exports.HeadBucketOutput$ = HeadBucketOutput$;
|
|
2180
|
-
const HeadBucketRequest$ = [3, n0, _HBR,
|
|
2181
|
-
0,
|
|
2182
|
-
[_B, _EBO],
|
|
2183
|
-
[[0, 1], [0, { [_hH]: _xaebo }]], 1
|
|
2184
|
-
];
|
|
2185
|
-
exports.HeadBucketRequest$ = HeadBucketRequest$;
|
|
2186
|
-
const HeadObjectOutput$ = [3, n0, _HOO,
|
|
2187
|
-
0,
|
|
2188
|
-
[_DM, _AR, _Ex, _Re, _ASr, _LM, _CLo, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh, _CSHAhe, _CMD, _CXXHASH, _CXXHASHh, _CXXHASHhe, _CT, _ET, _MM, _VI, _CC, _CDo, _CEo, _CL, _CTo, _CR, _Exp, _ES, _WRL, _SSE, _M, _SSECA, _SSECKMD, _SSEKMSKI, _BKE, _SC, _RC, _RS, _PC, _TC, _OLM, _OLRUD, _OLLHS],
|
|
2189
|
-
[[2, { [_hH]: _xadm }], [0, { [_hH]: _ar }], [0, { [_hH]: _xae }], [0, { [_hH]: _xar }], [0, { [_hH]: _xaas }], [4, { [_hH]: _LM_ }], [1, { [_hH]: _CL__ }], [0, { [_hH]: _xacc }], [0, { [_hH]: _xacc_ }], [0, { [_hH]: _xacc__ }], [0, { [_hH]: _xacs }], [0, { [_hH]: _xacs_ }], [0, { [_hH]: _xacs__ }], [0, { [_hH]: _xacm }], [0, { [_hH]: _xacx }], [0, { [_hH]: _xacx_ }], [0, { [_hH]: _xacx__ }], [0, { [_hH]: _xact }], [0, { [_hH]: _ET }], [1, { [_hH]: _xamm }], [0, { [_hH]: _xavi }], [0, { [_hH]: _CC_ }], [0, { [_hH]: _CD_ }], [0, { [_hH]: _CE_ }], [0, { [_hH]: _CL_ }], [0, { [_hH]: _CT_ }], [0, { [_hH]: _CR_ }], [4, { [_hH]: _Exp }], [0, { [_hH]: _ES }], [0, { [_hH]: _xawrl }], [0, { [_hH]: _xasse }], [128 | 0, { [_hPH]: _xam }], [0, { [_hH]: _xasseca }], [0, { [_hH]: _xasseckM }], [() => SSEKMSKeyId, { [_hH]: _xasseakki }], [2, { [_hH]: _xassebke }], [0, { [_hH]: _xasc }], [0, { [_hH]: _xarc }], [0, { [_hH]: _xars }], [1, { [_hH]: _xampc }], [1, { [_hH]: _xatc }], [0, { [_hH]: _xaolm }], [5, { [_hH]: _xaolrud }], [0, { [_hH]: _xaollh }]]
|
|
2190
|
-
];
|
|
2191
|
-
exports.HeadObjectOutput$ = HeadObjectOutput$;
|
|
2192
|
-
const HeadObjectRequest$ = [3, n0, _HOR,
|
|
2193
|
-
0,
|
|
2194
|
-
[_B, _K, _IM, _IMSf, _INM, _IUS, _Ra, _RCC, _RCD, _RCE, _RCL, _RCT, _RE, _VI, _SSECA, _SSECK, _SSECKMD, _RP, _PN, _EBO, _CMh],
|
|
2195
|
-
[[0, 1], [0, 1], [0, { [_hH]: _IM_ }], [4, { [_hH]: _IMS_ }], [0, { [_hH]: _INM_ }], [4, { [_hH]: _IUS_ }], [0, { [_hH]: _Ra }], [0, { [_hQ]: _rcc }], [0, { [_hQ]: _rcd }], [0, { [_hQ]: _rce }], [0, { [_hQ]: _rcl }], [0, { [_hQ]: _rct }], [6, { [_hQ]: _re }], [0, { [_hQ]: _vI }], [0, { [_hH]: _xasseca }], [() => SSECustomerKey, { [_hH]: _xasseck }], [0, { [_hH]: _xasseckM }], [0, { [_hH]: _xarp }], [1, { [_hQ]: _pN }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xacm_ }]], 2
|
|
2196
|
-
];
|
|
2197
|
-
exports.HeadObjectRequest$ = HeadObjectRequest$;
|
|
2198
|
-
const IndexDocument$ = [3, n0, _IDn,
|
|
2199
|
-
0,
|
|
2200
|
-
[_Su],
|
|
2201
|
-
[0], 1
|
|
2202
|
-
];
|
|
2203
|
-
exports.IndexDocument$ = IndexDocument$;
|
|
2204
|
-
const Initiator$ = [3, n0, _In,
|
|
2205
|
-
0,
|
|
2206
|
-
[_ID, _DN],
|
|
2207
|
-
[0, 0]
|
|
2208
|
-
];
|
|
2209
|
-
exports.Initiator$ = Initiator$;
|
|
2210
|
-
const InputSerialization$ = [3, n0, _IS,
|
|
2211
|
-
0,
|
|
2212
|
-
[_CSV, _CTom, _JSON, _Parq],
|
|
2213
|
-
[() => CSVInput$, 0, () => JSONInput$, () => ParquetInput$]
|
|
2214
|
-
];
|
|
2215
|
-
exports.InputSerialization$ = InputSerialization$;
|
|
2216
|
-
const IntelligentTieringAndOperator$ = [3, n0, _ITAO,
|
|
2217
|
-
0,
|
|
2218
|
-
[_P, _T],
|
|
2219
|
-
[0, [() => TagSet, { [_xF]: 1, [_xN]: _Ta }]]
|
|
2220
|
-
];
|
|
2221
|
-
exports.IntelligentTieringAndOperator$ = IntelligentTieringAndOperator$;
|
|
2222
|
-
const IntelligentTieringConfiguration$ = [3, n0, _ITC,
|
|
2223
|
-
0,
|
|
2224
|
-
[_I, _S, _Tie, _F],
|
|
2225
|
-
[0, 0, [() => TieringList, { [_xF]: 1, [_xN]: _Tier }], [() => IntelligentTieringFilter$, 0]], 3
|
|
2226
|
-
];
|
|
2227
|
-
exports.IntelligentTieringConfiguration$ = IntelligentTieringConfiguration$;
|
|
2228
|
-
const IntelligentTieringFilter$ = [3, n0, _ITF,
|
|
2229
|
-
0,
|
|
2230
|
-
[_P, _Ta, _An],
|
|
2231
|
-
[0, () => Tag$, [() => IntelligentTieringAndOperator$, 0]]
|
|
2232
|
-
];
|
|
2233
|
-
exports.IntelligentTieringFilter$ = IntelligentTieringFilter$;
|
|
2234
|
-
const InventoryConfiguration$ = [3, n0, _IC,
|
|
2235
|
-
0,
|
|
2236
|
-
[_Des, _IE, _I, _IOV, _Sc, _F, _OF],
|
|
2237
|
-
[[() => InventoryDestination$, 0], 2, 0, 0, () => InventorySchedule$, () => InventoryFilter$, [() => InventoryOptionalFields, 0]], 5
|
|
2238
|
-
];
|
|
2239
|
-
exports.InventoryConfiguration$ = InventoryConfiguration$;
|
|
2240
|
-
const InventoryDestination$ = [3, n0, _IDnv,
|
|
2241
|
-
0,
|
|
2242
|
-
[_SBD],
|
|
2243
|
-
[[() => InventoryS3BucketDestination$, 0]], 1
|
|
2244
|
-
];
|
|
2245
|
-
exports.InventoryDestination$ = InventoryDestination$;
|
|
2246
|
-
const InventoryEncryption$ = [3, n0, _IEn,
|
|
2247
|
-
0,
|
|
2248
|
-
[_SSES, _SSEKMS],
|
|
2249
|
-
[[() => SSES3$, { [_xN]: _SS }], [() => SSEKMS$, { [_xN]: _SK }]]
|
|
2250
|
-
];
|
|
2251
|
-
exports.InventoryEncryption$ = InventoryEncryption$;
|
|
2252
|
-
const InventoryFilter$ = [3, n0, _IF,
|
|
2253
|
-
0,
|
|
2254
|
-
[_P],
|
|
2255
|
-
[0], 1
|
|
2256
|
-
];
|
|
2257
|
-
exports.InventoryFilter$ = InventoryFilter$;
|
|
2258
|
-
const InventoryS3BucketDestination$ = [3, n0, _ISBD,
|
|
2259
|
-
0,
|
|
2260
|
-
[_B, _Fo, _AI, _P, _En],
|
|
2261
|
-
[0, 0, 0, 0, [() => InventoryEncryption$, 0]], 2
|
|
2262
|
-
];
|
|
2263
|
-
exports.InventoryS3BucketDestination$ = InventoryS3BucketDestination$;
|
|
2264
|
-
const InventorySchedule$ = [3, n0, _ISn,
|
|
2265
|
-
0,
|
|
2266
|
-
[_Fr],
|
|
2267
|
-
[0], 1
|
|
2268
|
-
];
|
|
2269
|
-
exports.InventorySchedule$ = InventorySchedule$;
|
|
2270
|
-
const InventoryTableConfiguration$ = [3, n0, _ITCn,
|
|
2271
|
-
0,
|
|
2272
|
-
[_CS, _EC],
|
|
2273
|
-
[0, () => MetadataTableEncryptionConfiguration$], 1
|
|
2274
|
-
];
|
|
2275
|
-
exports.InventoryTableConfiguration$ = InventoryTableConfiguration$;
|
|
2276
|
-
const InventoryTableConfigurationResult$ = [3, n0, _ITCR,
|
|
2277
|
-
0,
|
|
2278
|
-
[_CS, _TS, _E, _TN, _TA],
|
|
2279
|
-
[0, 0, () => ErrorDetails$, 0, 0], 1
|
|
2280
|
-
];
|
|
2281
|
-
exports.InventoryTableConfigurationResult$ = InventoryTableConfigurationResult$;
|
|
2282
|
-
const InventoryTableConfigurationUpdates$ = [3, n0, _ITCU,
|
|
2283
|
-
0,
|
|
2284
|
-
[_CS, _EC],
|
|
2285
|
-
[0, () => MetadataTableEncryptionConfiguration$], 1
|
|
2286
|
-
];
|
|
2287
|
-
exports.InventoryTableConfigurationUpdates$ = InventoryTableConfigurationUpdates$;
|
|
2288
|
-
const JournalTableConfiguration$ = [3, n0, _JTC,
|
|
2289
|
-
0,
|
|
2290
|
-
[_REe, _EC],
|
|
2291
|
-
[() => RecordExpiration$, () => MetadataTableEncryptionConfiguration$], 1
|
|
2292
|
-
];
|
|
2293
|
-
exports.JournalTableConfiguration$ = JournalTableConfiguration$;
|
|
2294
|
-
const JournalTableConfigurationResult$ = [3, n0, _JTCR,
|
|
2295
|
-
0,
|
|
2296
|
-
[_TS, _TN, _REe, _E, _TA],
|
|
2297
|
-
[0, 0, () => RecordExpiration$, () => ErrorDetails$, 0], 3
|
|
2298
|
-
];
|
|
2299
|
-
exports.JournalTableConfigurationResult$ = JournalTableConfigurationResult$;
|
|
2300
|
-
const JournalTableConfigurationUpdates$ = [3, n0, _JTCU,
|
|
2301
|
-
0,
|
|
2302
|
-
[_REe],
|
|
2303
|
-
[() => RecordExpiration$], 1
|
|
2304
|
-
];
|
|
2305
|
-
exports.JournalTableConfigurationUpdates$ = JournalTableConfigurationUpdates$;
|
|
2306
|
-
const JSONInput$ = [3, n0, _JSONI,
|
|
2307
|
-
0,
|
|
2308
|
-
[_Ty],
|
|
2309
|
-
[0]
|
|
2310
|
-
];
|
|
2311
|
-
exports.JSONInput$ = JSONInput$;
|
|
2312
|
-
const JSONOutput$ = [3, n0, _JSONO,
|
|
2313
|
-
0,
|
|
2314
|
-
[_RD],
|
|
2315
|
-
[0]
|
|
2316
|
-
];
|
|
2317
|
-
exports.JSONOutput$ = JSONOutput$;
|
|
2318
|
-
const LambdaFunctionConfiguration$ = [3, n0, _LFC,
|
|
2319
|
-
0,
|
|
2320
|
-
[_LFA, _Ev, _I, _F],
|
|
2321
|
-
[[0, { [_xN]: _CF }], [64 | 0, { [_xF]: 1, [_xN]: _Eve }], 0, [() => NotificationConfigurationFilter$, 0]], 2
|
|
2322
|
-
];
|
|
2323
|
-
exports.LambdaFunctionConfiguration$ = LambdaFunctionConfiguration$;
|
|
2324
|
-
const LifecycleExpiration$ = [3, n0, _LEi,
|
|
2325
|
-
0,
|
|
2326
|
-
[_Da, _D, _EODM],
|
|
2327
|
-
[5, 1, 2]
|
|
2328
|
-
];
|
|
2329
|
-
exports.LifecycleExpiration$ = LifecycleExpiration$;
|
|
2330
|
-
const LifecycleRule$ = [3, n0, _LR,
|
|
2331
|
-
0,
|
|
2332
|
-
[_S, _Ex, _ID, _P, _F, _Tr, _NVT, _NVE, _AIMU],
|
|
2333
|
-
[0, () => LifecycleExpiration$, 0, 0, [() => LifecycleRuleFilter$, 0], [() => TransitionList, { [_xF]: 1, [_xN]: _Tra }], [() => NoncurrentVersionTransitionList, { [_xF]: 1, [_xN]: _NVTo }], () => NoncurrentVersionExpiration$, () => AbortIncompleteMultipartUpload$], 1
|
|
2334
|
-
];
|
|
2335
|
-
exports.LifecycleRule$ = LifecycleRule$;
|
|
2336
|
-
const LifecycleRuleAndOperator$ = [3, n0, _LRAO,
|
|
2337
|
-
0,
|
|
2338
|
-
[_P, _T, _OSGT, _OSLT],
|
|
2339
|
-
[0, [() => TagSet, { [_xF]: 1, [_xN]: _Ta }], 1, 1]
|
|
2340
|
-
];
|
|
2341
|
-
exports.LifecycleRuleAndOperator$ = LifecycleRuleAndOperator$;
|
|
2342
|
-
const LifecycleRuleFilter$ = [3, n0, _LRF,
|
|
2343
|
-
0,
|
|
2344
|
-
[_P, _Ta, _OSGT, _OSLT, _An],
|
|
2345
|
-
[0, () => Tag$, 1, 1, [() => LifecycleRuleAndOperator$, 0]]
|
|
2346
|
-
];
|
|
2347
|
-
exports.LifecycleRuleFilter$ = LifecycleRuleFilter$;
|
|
2348
|
-
const ListBucketAnalyticsConfigurationsOutput$ = [3, n0, _LBACO,
|
|
2349
|
-
{ [_xN]: _LBACR },
|
|
2350
|
-
[_IT, _CTon, _NCT, _ACLn],
|
|
2351
|
-
[2, 0, 0, [() => AnalyticsConfigurationList, { [_xF]: 1, [_xN]: _ACn }]]
|
|
2352
|
-
];
|
|
2353
|
-
exports.ListBucketAnalyticsConfigurationsOutput$ = ListBucketAnalyticsConfigurationsOutput$;
|
|
2354
|
-
const ListBucketAnalyticsConfigurationsRequest$ = [3, n0, _LBACRi,
|
|
2355
|
-
0,
|
|
2356
|
-
[_B, _CTon, _EBO],
|
|
2357
|
-
[[0, 1], [0, { [_hQ]: _ct }], [0, { [_hH]: _xaebo }]], 1
|
|
2358
|
-
];
|
|
2359
|
-
exports.ListBucketAnalyticsConfigurationsRequest$ = ListBucketAnalyticsConfigurationsRequest$;
|
|
2360
|
-
const ListBucketIntelligentTieringConfigurationsOutput$ = [3, n0, _LBITCO,
|
|
2361
|
-
0,
|
|
2362
|
-
[_IT, _CTon, _NCT, _ITCL],
|
|
2363
|
-
[2, 0, 0, [() => IntelligentTieringConfigurationList, { [_xF]: 1, [_xN]: _ITC }]]
|
|
2364
|
-
];
|
|
2365
|
-
exports.ListBucketIntelligentTieringConfigurationsOutput$ = ListBucketIntelligentTieringConfigurationsOutput$;
|
|
2366
|
-
const ListBucketIntelligentTieringConfigurationsRequest$ = [3, n0, _LBITCR,
|
|
2367
|
-
0,
|
|
2368
|
-
[_B, _CTon, _EBO],
|
|
2369
|
-
[[0, 1], [0, { [_hQ]: _ct }], [0, { [_hH]: _xaebo }]], 1
|
|
2370
|
-
];
|
|
2371
|
-
exports.ListBucketIntelligentTieringConfigurationsRequest$ = ListBucketIntelligentTieringConfigurationsRequest$;
|
|
2372
|
-
const ListBucketInventoryConfigurationsOutput$ = [3, n0, _LBICO,
|
|
2373
|
-
{ [_xN]: _LICR },
|
|
2374
|
-
[_CTon, _ICL, _IT, _NCT],
|
|
2375
|
-
[0, [() => InventoryConfigurationList, { [_xF]: 1, [_xN]: _IC }], 2, 0]
|
|
2376
|
-
];
|
|
2377
|
-
exports.ListBucketInventoryConfigurationsOutput$ = ListBucketInventoryConfigurationsOutput$;
|
|
2378
|
-
const ListBucketInventoryConfigurationsRequest$ = [3, n0, _LBICR,
|
|
2379
|
-
0,
|
|
2380
|
-
[_B, _CTon, _EBO],
|
|
2381
|
-
[[0, 1], [0, { [_hQ]: _ct }], [0, { [_hH]: _xaebo }]], 1
|
|
2382
|
-
];
|
|
2383
|
-
exports.ListBucketInventoryConfigurationsRequest$ = ListBucketInventoryConfigurationsRequest$;
|
|
2384
|
-
const ListBucketMetricsConfigurationsOutput$ = [3, n0, _LBMCO,
|
|
2385
|
-
{ [_xN]: _LMCR },
|
|
2386
|
-
[_IT, _CTon, _NCT, _MCL],
|
|
2387
|
-
[2, 0, 0, [() => MetricsConfigurationList, { [_xF]: 1, [_xN]: _MCe }]]
|
|
2388
|
-
];
|
|
2389
|
-
exports.ListBucketMetricsConfigurationsOutput$ = ListBucketMetricsConfigurationsOutput$;
|
|
2390
|
-
const ListBucketMetricsConfigurationsRequest$ = [3, n0, _LBMCR,
|
|
2391
|
-
0,
|
|
2392
|
-
[_B, _CTon, _EBO],
|
|
2393
|
-
[[0, 1], [0, { [_hQ]: _ct }], [0, { [_hH]: _xaebo }]], 1
|
|
2394
|
-
];
|
|
2395
|
-
exports.ListBucketMetricsConfigurationsRequest$ = ListBucketMetricsConfigurationsRequest$;
|
|
2396
|
-
const ListBucketsOutput$ = [3, n0, _LBO,
|
|
2397
|
-
{ [_xN]: _LAMBR },
|
|
2398
|
-
[_Bu, _O, _CTon, _P],
|
|
2399
|
-
[[() => Buckets, 0], () => Owner$, 0, 0]
|
|
2400
|
-
];
|
|
2401
|
-
exports.ListBucketsOutput$ = ListBucketsOutput$;
|
|
2402
|
-
const ListBucketsRequest$ = [3, n0, _LBR,
|
|
2403
|
-
0,
|
|
2404
|
-
[_MB, _CTon, _P, _BR],
|
|
2405
|
-
[[1, { [_hQ]: _mb }], [0, { [_hQ]: _ct }], [0, { [_hQ]: _p }], [0, { [_hQ]: _br }]]
|
|
2406
|
-
];
|
|
2407
|
-
exports.ListBucketsRequest$ = ListBucketsRequest$;
|
|
2408
|
-
const ListDirectoryBucketsOutput$ = [3, n0, _LDBO,
|
|
2409
|
-
{ [_xN]: _LAMDBR },
|
|
2410
|
-
[_Bu, _CTon],
|
|
2411
|
-
[[() => Buckets, 0], 0]
|
|
2412
|
-
];
|
|
2413
|
-
exports.ListDirectoryBucketsOutput$ = ListDirectoryBucketsOutput$;
|
|
2414
|
-
const ListDirectoryBucketsRequest$ = [3, n0, _LDBR,
|
|
2415
|
-
0,
|
|
2416
|
-
[_CTon, _MDB],
|
|
2417
|
-
[[0, { [_hQ]: _ct }], [1, { [_hQ]: _mdb }]]
|
|
2418
|
-
];
|
|
2419
|
-
exports.ListDirectoryBucketsRequest$ = ListDirectoryBucketsRequest$;
|
|
2420
|
-
const ListMultipartUploadsOutput$ = [3, n0, _LMUO,
|
|
2421
|
-
{ [_xN]: _LMUR },
|
|
2422
|
-
[_B, _KM, _UIM, _NKM, _P, _Deli, _NUIM, _MUa, _IT, _U, _CPom, _ETnc, _RC],
|
|
2423
|
-
[0, 0, 0, 0, 0, 0, 0, 1, 2, [() => MultipartUploadList, { [_xF]: 1, [_xN]: _Up }], [() => CommonPrefixList, { [_xF]: 1 }], 0, [0, { [_hH]: _xarc }]]
|
|
2424
|
-
];
|
|
2425
|
-
exports.ListMultipartUploadsOutput$ = ListMultipartUploadsOutput$;
|
|
2426
|
-
const ListMultipartUploadsRequest$ = [3, n0, _LMURi,
|
|
2427
|
-
0,
|
|
2428
|
-
[_B, _Deli, _ETnc, _KM, _MUa, _P, _UIM, _EBO, _RP],
|
|
2429
|
-
[[0, 1], [0, { [_hQ]: _d }], [0, { [_hQ]: _et }], [0, { [_hQ]: _km }], [1, { [_hQ]: _mu }], [0, { [_hQ]: _p }], [0, { [_hQ]: _uim }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xarp }]], 1
|
|
2430
|
-
];
|
|
2431
|
-
exports.ListMultipartUploadsRequest$ = ListMultipartUploadsRequest$;
|
|
2432
|
-
const ListObjectAnnotationsOutput$ = [3, n0, _LOAO,
|
|
2433
|
-
0,
|
|
2434
|
-
[_Ann, _B, _K, _OVI, _APn, _MAR, _ACnn, _CTon, _NCT, _RC],
|
|
2435
|
-
[[() => AnnotationList, 0], 0, 0, [0, { [_hH]: _xaovi }], 0, 1, 1, 0, 0, [0, { [_hH]: _xarc }]]
|
|
2436
|
-
];
|
|
2437
|
-
exports.ListObjectAnnotationsOutput$ = ListObjectAnnotationsOutput$;
|
|
2438
|
-
const ListObjectAnnotationsRequest$ = [3, n0, _LOAR,
|
|
2439
|
-
0,
|
|
2440
|
-
[_B, _K, _VI, _MAR, _APn, _CTon, _RP, _EBO],
|
|
2441
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _vI }], [1, { [_hQ]: _mar }], [0, { [_hQ]: _ap }], [0, { [_hQ]: _ct }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }]], 2
|
|
2442
|
-
];
|
|
2443
|
-
exports.ListObjectAnnotationsRequest$ = ListObjectAnnotationsRequest$;
|
|
2444
|
-
const ListObjectsOutput$ = [3, n0, _LOO,
|
|
2445
|
-
{ [_xN]: _LBRi },
|
|
2446
|
-
[_IT, _Ma, _NM, _Con, _N, _P, _Deli, _MK, _CPom, _ETnc, _RC],
|
|
2447
|
-
[2, 0, 0, [() => ObjectList, { [_xF]: 1 }], 0, 0, 0, 1, [() => CommonPrefixList, { [_xF]: 1 }], 0, [0, { [_hH]: _xarc }]]
|
|
2448
|
-
];
|
|
2449
|
-
exports.ListObjectsOutput$ = ListObjectsOutput$;
|
|
2450
|
-
const ListObjectsRequest$ = [3, n0, _LOR,
|
|
2451
|
-
0,
|
|
2452
|
-
[_B, _Deli, _ETnc, _Ma, _MK, _P, _RP, _EBO, _OOA],
|
|
2453
|
-
[[0, 1], [0, { [_hQ]: _d }], [0, { [_hQ]: _et }], [0, { [_hQ]: _m }], [1, { [_hQ]: _mk }], [0, { [_hQ]: _p }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }], [64 | 0, { [_hH]: _xaooa }]], 1
|
|
2454
|
-
];
|
|
2455
|
-
exports.ListObjectsRequest$ = ListObjectsRequest$;
|
|
2456
|
-
const ListObjectsV2Output$ = [3, n0, _LOVO,
|
|
2457
|
-
{ [_xN]: _LBRi },
|
|
2458
|
-
[_IT, _Con, _N, _P, _Deli, _MK, _CPom, _ETnc, _KC, _CTon, _NCT, _SA, _RC],
|
|
2459
|
-
[2, [() => ObjectList, { [_xF]: 1 }], 0, 0, 0, 1, [() => CommonPrefixList, { [_xF]: 1 }], 0, 1, 0, 0, 0, [0, { [_hH]: _xarc }]]
|
|
2460
|
-
];
|
|
2461
|
-
exports.ListObjectsV2Output$ = ListObjectsV2Output$;
|
|
2462
|
-
const ListObjectsV2Request$ = [3, n0, _LOVR,
|
|
2463
|
-
0,
|
|
2464
|
-
[_B, _Deli, _ETnc, _MK, _P, _CTon, _FO, _SA, _RP, _EBO, _OOA],
|
|
2465
|
-
[[0, 1], [0, { [_hQ]: _d }], [0, { [_hQ]: _et }], [1, { [_hQ]: _mk }], [0, { [_hQ]: _p }], [0, { [_hQ]: _ct }], [2, { [_hQ]: _fo }], [0, { [_hQ]: _sa }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }], [64 | 0, { [_hH]: _xaooa }]], 1
|
|
2466
|
-
];
|
|
2467
|
-
exports.ListObjectsV2Request$ = ListObjectsV2Request$;
|
|
2468
|
-
const ListObjectVersionsOutput$ = [3, n0, _LOVOi,
|
|
2469
|
-
{ [_xN]: _LVR },
|
|
2470
|
-
[_IT, _KM, _VIM, _NKM, _NVIM, _Ve, _DMe, _N, _P, _Deli, _MK, _CPom, _ETnc, _RC],
|
|
2471
|
-
[2, 0, 0, 0, 0, [() => ObjectVersionList, { [_xF]: 1, [_xN]: _Ver }], [() => DeleteMarkers, { [_xF]: 1, [_xN]: _DM }], 0, 0, 0, 1, [() => CommonPrefixList, { [_xF]: 1 }], 0, [0, { [_hH]: _xarc }]]
|
|
2472
|
-
];
|
|
2473
|
-
exports.ListObjectVersionsOutput$ = ListObjectVersionsOutput$;
|
|
2474
|
-
const ListObjectVersionsRequest$ = [3, n0, _LOVRi,
|
|
2475
|
-
0,
|
|
2476
|
-
[_B, _Deli, _ETnc, _KM, _MK, _P, _VIM, _EBO, _RP, _OOA],
|
|
2477
|
-
[[0, 1], [0, { [_hQ]: _d }], [0, { [_hQ]: _et }], [0, { [_hQ]: _km }], [1, { [_hQ]: _mk }], [0, { [_hQ]: _p }], [0, { [_hQ]: _vim }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xarp }], [64 | 0, { [_hH]: _xaooa }]], 1
|
|
2478
|
-
];
|
|
2479
|
-
exports.ListObjectVersionsRequest$ = ListObjectVersionsRequest$;
|
|
2480
|
-
const ListPartsOutput$ = [3, n0, _LPO,
|
|
2481
|
-
{ [_xN]: _LPR },
|
|
2482
|
-
[_ADb, _ARI, _B, _K, _UI, _PNM, _NPNM, _MP, _IT, _Pa, _In, _O, _SC, _RC, _CA, _CT],
|
|
2483
|
-
[[4, { [_hH]: _xaad }], [0, { [_hH]: _xaari }], 0, 0, 0, 0, 0, 1, 2, [() => Parts, { [_xF]: 1, [_xN]: _Par }], () => Initiator$, () => Owner$, 0, [0, { [_hH]: _xarc }], 0, 0]
|
|
2484
|
-
];
|
|
2485
|
-
exports.ListPartsOutput$ = ListPartsOutput$;
|
|
2486
|
-
const ListPartsRequest$ = [3, n0, _LPRi,
|
|
2487
|
-
0,
|
|
2488
|
-
[_B, _K, _UI, _MP, _PNM, _RP, _EBO, _SSECA, _SSECK, _SSECKMD],
|
|
2489
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _uI }], [1, { [_hQ]: _mp }], [0, { [_hQ]: _pnm }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xasseca }], [() => SSECustomerKey, { [_hH]: _xasseck }], [0, { [_hH]: _xasseckM }]], 3
|
|
2490
|
-
];
|
|
2491
|
-
exports.ListPartsRequest$ = ListPartsRequest$;
|
|
2492
|
-
const LocationInfo$ = [3, n0, _LI,
|
|
2493
|
-
0,
|
|
2494
|
-
[_Ty, _N],
|
|
2495
|
-
[0, 0]
|
|
2496
|
-
];
|
|
2497
|
-
exports.LocationInfo$ = LocationInfo$;
|
|
2498
|
-
const LoggingEnabled$ = [3, n0, _LE,
|
|
2499
|
-
0,
|
|
2500
|
-
[_TB, _TP, _TG, _TOKF],
|
|
2501
|
-
[0, 0, [() => TargetGrants, 0], [() => TargetObjectKeyFormat$, 0]], 2
|
|
2502
|
-
];
|
|
2503
|
-
exports.LoggingEnabled$ = LoggingEnabled$;
|
|
2504
|
-
const MetadataConfiguration$ = [3, n0, _MC,
|
|
2505
|
-
0,
|
|
2506
|
-
[_JTC, _ITCn, _ATC],
|
|
2507
|
-
[() => JournalTableConfiguration$, () => InventoryTableConfiguration$, () => AnnotationTableConfiguration$], 1
|
|
2508
|
-
];
|
|
2509
|
-
exports.MetadataConfiguration$ = MetadataConfiguration$;
|
|
2510
|
-
const MetadataConfigurationResult$ = [3, n0, _MCR,
|
|
2511
|
-
0,
|
|
2512
|
-
[_DRes, _JTCR, _ITCR, _ATCR],
|
|
2513
|
-
[() => DestinationResult$, () => JournalTableConfigurationResult$, () => InventoryTableConfigurationResult$, () => AnnotationTableConfigurationResult$], 1
|
|
2514
|
-
];
|
|
2515
|
-
exports.MetadataConfigurationResult$ = MetadataConfigurationResult$;
|
|
2516
|
-
const MetadataEntry$ = [3, n0, _ME,
|
|
2517
|
-
0,
|
|
2518
|
-
[_N, _V],
|
|
2519
|
-
[0, 0]
|
|
2520
|
-
];
|
|
2521
|
-
exports.MetadataEntry$ = MetadataEntry$;
|
|
2522
|
-
const MetadataTableConfiguration$ = [3, n0, _MTC,
|
|
2523
|
-
0,
|
|
2524
|
-
[_STD],
|
|
2525
|
-
[() => S3TablesDestination$], 1
|
|
2526
|
-
];
|
|
2527
|
-
exports.MetadataTableConfiguration$ = MetadataTableConfiguration$;
|
|
2528
|
-
const MetadataTableConfigurationResult$ = [3, n0, _MTCR,
|
|
2529
|
-
0,
|
|
2530
|
-
[_STDR],
|
|
2531
|
-
[() => S3TablesDestinationResult$], 1
|
|
2532
|
-
];
|
|
2533
|
-
exports.MetadataTableConfigurationResult$ = MetadataTableConfigurationResult$;
|
|
2534
|
-
const MetadataTableEncryptionConfiguration$ = [3, n0, _MTEC,
|
|
2535
|
-
0,
|
|
2536
|
-
[_SAs, _KKA],
|
|
2537
|
-
[0, 0], 1
|
|
2538
|
-
];
|
|
2539
|
-
exports.MetadataTableEncryptionConfiguration$ = MetadataTableEncryptionConfiguration$;
|
|
2540
|
-
const Metrics$ = [3, n0, _Me,
|
|
2541
|
-
0,
|
|
2542
|
-
[_S, _ETv],
|
|
2543
|
-
[0, () => ReplicationTimeValue$], 1
|
|
2544
|
-
];
|
|
2545
|
-
exports.Metrics$ = Metrics$;
|
|
2546
|
-
const MetricsAndOperator$ = [3, n0, _MAO,
|
|
2547
|
-
0,
|
|
2548
|
-
[_P, _T, _APAc],
|
|
2549
|
-
[0, [() => TagSet, { [_xF]: 1, [_xN]: _Ta }], 0]
|
|
2550
|
-
];
|
|
2551
|
-
exports.MetricsAndOperator$ = MetricsAndOperator$;
|
|
2552
|
-
const MetricsConfiguration$ = [3, n0, _MCe,
|
|
2553
|
-
0,
|
|
2554
|
-
[_I, _F],
|
|
2555
|
-
[0, [() => MetricsFilter$, 0]], 1
|
|
2556
|
-
];
|
|
2557
|
-
exports.MetricsConfiguration$ = MetricsConfiguration$;
|
|
2558
|
-
const MultipartUpload$ = [3, n0, _MU,
|
|
2559
|
-
0,
|
|
2560
|
-
[_UI, _K, _Ini, _SC, _O, _In, _CA, _CT],
|
|
2561
|
-
[0, 0, 4, 0, () => Owner$, () => Initiator$, 0, 0]
|
|
2562
|
-
];
|
|
2563
|
-
exports.MultipartUpload$ = MultipartUpload$;
|
|
2564
|
-
const NoncurrentVersionExpiration$ = [3, n0, _NVE,
|
|
2565
|
-
0,
|
|
2566
|
-
[_ND, _NNV],
|
|
2567
|
-
[1, 1]
|
|
2568
|
-
];
|
|
2569
|
-
exports.NoncurrentVersionExpiration$ = NoncurrentVersionExpiration$;
|
|
2570
|
-
const NoncurrentVersionTransition$ = [3, n0, _NVTo,
|
|
2571
|
-
0,
|
|
2572
|
-
[_ND, _SC, _NNV],
|
|
2573
|
-
[1, 0, 1]
|
|
2574
|
-
];
|
|
2575
|
-
exports.NoncurrentVersionTransition$ = NoncurrentVersionTransition$;
|
|
2576
|
-
const NotificationConfiguration$ = [3, n0, _NC,
|
|
2577
|
-
0,
|
|
2578
|
-
[_TCo, _QCu, _LFCa, _EBC],
|
|
2579
|
-
[[() => TopicConfigurationList, { [_xF]: 1, [_xN]: _TCop }], [() => QueueConfigurationList, { [_xF]: 1, [_xN]: _QCue }], [() => LambdaFunctionConfigurationList, { [_xF]: 1, [_xN]: _CFC }], () => EventBridgeConfiguration$]
|
|
2580
|
-
];
|
|
2581
|
-
exports.NotificationConfiguration$ = NotificationConfiguration$;
|
|
2582
|
-
const NotificationConfigurationFilter$ = [3, n0, _NCF,
|
|
2583
|
-
0,
|
|
2584
|
-
[_K],
|
|
2585
|
-
[[() => S3KeyFilter$, { [_xN]: _SKe }]]
|
|
2586
|
-
];
|
|
2587
|
-
exports.NotificationConfigurationFilter$ = NotificationConfigurationFilter$;
|
|
2588
|
-
const _Object$ = [3, n0, _Obj,
|
|
2589
|
-
0,
|
|
2590
|
-
[_K, _LM, _ET, _CA, _CT, _Si, _SC, _O, _RSe],
|
|
2591
|
-
[0, 4, 0, [64 | 0, { [_xF]: 1 }], 0, 1, 0, () => Owner$, () => RestoreStatus$]
|
|
2592
|
-
];
|
|
2593
|
-
exports._Object$ = _Object$;
|
|
2594
|
-
const ObjectIdentifier$ = [3, n0, _OI,
|
|
2595
|
-
0,
|
|
2596
|
-
[_K, _VI, _ET, _LMT, _Si],
|
|
2597
|
-
[0, 0, 0, 6, 1], 1
|
|
2598
|
-
];
|
|
2599
|
-
exports.ObjectIdentifier$ = ObjectIdentifier$;
|
|
2600
|
-
const ObjectLockConfiguration$ = [3, n0, _OLC,
|
|
2601
|
-
0,
|
|
2602
|
-
[_OLE, _Rul],
|
|
2603
|
-
[0, () => ObjectLockRule$]
|
|
2604
|
-
];
|
|
2605
|
-
exports.ObjectLockConfiguration$ = ObjectLockConfiguration$;
|
|
2606
|
-
const ObjectLockLegalHold$ = [3, n0, _OLLH,
|
|
2607
|
-
0,
|
|
2608
|
-
[_S],
|
|
2609
|
-
[0]
|
|
2610
|
-
];
|
|
2611
|
-
exports.ObjectLockLegalHold$ = ObjectLockLegalHold$;
|
|
2612
|
-
const ObjectLockRetention$ = [3, n0, _OLR,
|
|
2613
|
-
0,
|
|
2614
|
-
[_Mo, _RUD],
|
|
2615
|
-
[0, 5]
|
|
2616
|
-
];
|
|
2617
|
-
exports.ObjectLockRetention$ = ObjectLockRetention$;
|
|
2618
|
-
const ObjectLockRule$ = [3, n0, _OLRb,
|
|
2619
|
-
0,
|
|
2620
|
-
[_DRe],
|
|
2621
|
-
[() => DefaultRetention$]
|
|
2622
|
-
];
|
|
2623
|
-
exports.ObjectLockRule$ = ObjectLockRule$;
|
|
2624
|
-
const ObjectPart$ = [3, n0, _OPb,
|
|
2625
|
-
0,
|
|
2626
|
-
[_PN, _Si, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh, _CSHAhe, _CMD, _CXXHASH, _CXXHASHh, _CXXHASHhe],
|
|
2627
|
-
[1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
|
|
2628
|
-
];
|
|
2629
|
-
exports.ObjectPart$ = ObjectPart$;
|
|
2630
|
-
const ObjectVersion$ = [3, n0, _OV,
|
|
2631
|
-
0,
|
|
2632
|
-
[_ET, _CA, _CT, _Si, _SC, _K, _VI, _IL, _LM, _O, _RSe],
|
|
2633
|
-
[0, [64 | 0, { [_xF]: 1 }], 0, 1, 0, 0, 0, 2, 4, () => Owner$, () => RestoreStatus$]
|
|
2634
|
-
];
|
|
2635
|
-
exports.ObjectVersion$ = ObjectVersion$;
|
|
2636
|
-
const OutputLocation$ = [3, n0, _OL,
|
|
2637
|
-
0,
|
|
2638
|
-
[_S_],
|
|
2639
|
-
[[() => S3Location$, 0]]
|
|
2640
|
-
];
|
|
2641
|
-
exports.OutputLocation$ = OutputLocation$;
|
|
2642
|
-
const OutputSerialization$ = [3, n0, _OSu,
|
|
2643
|
-
0,
|
|
2644
|
-
[_CSV, _JSON],
|
|
2645
|
-
[() => CSVOutput$, () => JSONOutput$]
|
|
2646
|
-
];
|
|
2647
|
-
exports.OutputSerialization$ = OutputSerialization$;
|
|
2648
|
-
const Owner$ = [3, n0, _O,
|
|
2649
|
-
0,
|
|
2650
|
-
[_DN, _ID],
|
|
2651
|
-
[0, 0]
|
|
2652
|
-
];
|
|
2653
|
-
exports.Owner$ = Owner$;
|
|
2654
|
-
const OwnershipControls$ = [3, n0, _OC,
|
|
2655
|
-
0,
|
|
2656
|
-
[_Ru],
|
|
2657
|
-
[[() => OwnershipControlsRules, { [_xF]: 1, [_xN]: _Rul }]], 1
|
|
2658
|
-
];
|
|
2659
|
-
exports.OwnershipControls$ = OwnershipControls$;
|
|
2660
|
-
const OwnershipControlsRule$ = [3, n0, _OCR,
|
|
2661
|
-
0,
|
|
2662
|
-
[_OO],
|
|
2663
|
-
[0], 1
|
|
2664
|
-
];
|
|
2665
|
-
exports.OwnershipControlsRule$ = OwnershipControlsRule$;
|
|
2666
|
-
const ParquetInput$ = [3, n0, _PI,
|
|
2667
|
-
0,
|
|
2668
|
-
[],
|
|
2669
|
-
[]
|
|
2670
|
-
];
|
|
2671
|
-
exports.ParquetInput$ = ParquetInput$;
|
|
2672
|
-
const Part$ = [3, n0, _Par,
|
|
2673
|
-
0,
|
|
2674
|
-
[_PN, _LM, _ET, _Si, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh, _CSHAhe, _CMD, _CXXHASH, _CXXHASHh, _CXXHASHhe],
|
|
2675
|
-
[1, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
|
|
2676
|
-
];
|
|
2677
|
-
exports.Part$ = Part$;
|
|
2678
|
-
const PartitionedPrefix$ = [3, n0, _PP,
|
|
2679
|
-
{ [_xN]: _PP },
|
|
2680
|
-
[_PDS],
|
|
2681
|
-
[0]
|
|
2682
|
-
];
|
|
2683
|
-
exports.PartitionedPrefix$ = PartitionedPrefix$;
|
|
2684
|
-
const PolicyStatus$ = [3, n0, _PS,
|
|
2685
|
-
0,
|
|
2686
|
-
[_IPs],
|
|
2687
|
-
[[2, { [_xN]: _IPs }]]
|
|
2688
|
-
];
|
|
2689
|
-
exports.PolicyStatus$ = PolicyStatus$;
|
|
2690
|
-
const Progress$ = [3, n0, _Pr,
|
|
2691
|
-
0,
|
|
2692
|
-
[_BS, _BP, _BRy],
|
|
2693
|
-
[1, 1, 1]
|
|
2694
|
-
];
|
|
2695
|
-
exports.Progress$ = Progress$;
|
|
2696
|
-
const ProgressEvent$ = [3, n0, _PE,
|
|
2697
|
-
0,
|
|
2698
|
-
[_Det],
|
|
2699
|
-
[[() => Progress$, { [_eP]: 1 }]]
|
|
2700
|
-
];
|
|
2701
|
-
exports.ProgressEvent$ = ProgressEvent$;
|
|
2702
|
-
const PublicAccessBlockConfiguration$ = [3, n0, _PABC,
|
|
2703
|
-
0,
|
|
2704
|
-
[_BPA, _IPA, _BPP, _RPB],
|
|
2705
|
-
[[2, { [_xN]: _BPA }], [2, { [_xN]: _IPA }], [2, { [_xN]: _BPP }], [2, { [_xN]: _RPB }]]
|
|
2706
|
-
];
|
|
2707
|
-
exports.PublicAccessBlockConfiguration$ = PublicAccessBlockConfiguration$;
|
|
2708
|
-
const PutBucketAbacRequest$ = [3, n0, _PBAR,
|
|
2709
|
-
0,
|
|
2710
|
-
[_B, _AS, _CMDo, _CA, _EBO],
|
|
2711
|
-
[[0, 1], [() => AbacStatus$, { [_hP]: 1, [_xN]: _AS }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2
|
|
2712
|
-
];
|
|
2713
|
-
exports.PutBucketAbacRequest$ = PutBucketAbacRequest$;
|
|
2714
|
-
const PutBucketAccelerateConfigurationRequest$ = [3, n0, _PBACR,
|
|
2715
|
-
0,
|
|
2716
|
-
[_B, _AC, _EBO, _CA],
|
|
2717
|
-
[[0, 1], [() => AccelerateConfiguration$, { [_hP]: 1, [_xN]: _AC }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xasca }]], 2
|
|
2718
|
-
];
|
|
2719
|
-
exports.PutBucketAccelerateConfigurationRequest$ = PutBucketAccelerateConfigurationRequest$;
|
|
2720
|
-
const PutBucketAclRequest$ = [3, n0, _PBARu,
|
|
2721
|
-
0,
|
|
2722
|
-
[_B, _ACL_, _ACP, _CMDo, _CA, _GFC, _GR, _GRACP, _GW, _GWACP, _EBO],
|
|
2723
|
-
[[0, 1], [0, { [_hH]: _xaa }], [() => AccessControlPolicy$, { [_hP]: 1, [_xN]: _ACP }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xagfc }], [0, { [_hH]: _xagr }], [0, { [_hH]: _xagra }], [0, { [_hH]: _xagw }], [0, { [_hH]: _xagwa }], [0, { [_hH]: _xaebo }]], 1
|
|
2724
|
-
];
|
|
2725
|
-
exports.PutBucketAclRequest$ = PutBucketAclRequest$;
|
|
2726
|
-
const PutBucketAnalyticsConfigurationRequest$ = [3, n0, _PBACRu,
|
|
2727
|
-
0,
|
|
2728
|
-
[_B, _I, _ACn, _EBO],
|
|
2729
|
-
[[0, 1], [0, { [_hQ]: _i }], [() => AnalyticsConfiguration$, { [_hP]: 1, [_xN]: _ACn }], [0, { [_hH]: _xaebo }]], 3
|
|
2730
|
-
];
|
|
2731
|
-
exports.PutBucketAnalyticsConfigurationRequest$ = PutBucketAnalyticsConfigurationRequest$;
|
|
2732
|
-
const PutBucketCorsRequest$ = [3, n0, _PBCR,
|
|
2733
|
-
0,
|
|
2734
|
-
[_B, _CORSC, _CMDo, _CA, _EBO],
|
|
2735
|
-
[[0, 1], [() => CORSConfiguration$, { [_hP]: 1, [_xN]: _CORSC }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2
|
|
2736
|
-
];
|
|
2737
|
-
exports.PutBucketCorsRequest$ = PutBucketCorsRequest$;
|
|
2738
|
-
const PutBucketEncryptionRequest$ = [3, n0, _PBER,
|
|
2739
|
-
0,
|
|
2740
|
-
[_B, _SSEC, _CMDo, _CA, _EBO],
|
|
2741
|
-
[[0, 1], [() => ServerSideEncryptionConfiguration$, { [_hP]: 1, [_xN]: _SSEC }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2
|
|
2742
|
-
];
|
|
2743
|
-
exports.PutBucketEncryptionRequest$ = PutBucketEncryptionRequest$;
|
|
2744
|
-
const PutBucketIntelligentTieringConfigurationRequest$ = [3, n0, _PBITCR,
|
|
2745
|
-
0,
|
|
2746
|
-
[_B, _I, _ITC, _EBO],
|
|
2747
|
-
[[0, 1], [0, { [_hQ]: _i }], [() => IntelligentTieringConfiguration$, { [_hP]: 1, [_xN]: _ITC }], [0, { [_hH]: _xaebo }]], 3
|
|
2748
|
-
];
|
|
2749
|
-
exports.PutBucketIntelligentTieringConfigurationRequest$ = PutBucketIntelligentTieringConfigurationRequest$;
|
|
2750
|
-
const PutBucketInventoryConfigurationRequest$ = [3, n0, _PBICR,
|
|
2751
|
-
0,
|
|
2752
|
-
[_B, _I, _IC, _EBO],
|
|
2753
|
-
[[0, 1], [0, { [_hQ]: _i }], [() => InventoryConfiguration$, { [_hP]: 1, [_xN]: _IC }], [0, { [_hH]: _xaebo }]], 3
|
|
2754
|
-
];
|
|
2755
|
-
exports.PutBucketInventoryConfigurationRequest$ = PutBucketInventoryConfigurationRequest$;
|
|
2756
|
-
const PutBucketLifecycleConfigurationOutput$ = [3, n0, _PBLCO,
|
|
2757
|
-
0,
|
|
2758
|
-
[_TDMOS],
|
|
2759
|
-
[[0, { [_hH]: _xatdmos }]]
|
|
2760
|
-
];
|
|
2761
|
-
exports.PutBucketLifecycleConfigurationOutput$ = PutBucketLifecycleConfigurationOutput$;
|
|
2762
|
-
const PutBucketLifecycleConfigurationRequest$ = [3, n0, _PBLCR,
|
|
2763
|
-
0,
|
|
2764
|
-
[_B, _CA, _LCi, _EBO, _TDMOS],
|
|
2765
|
-
[[0, 1], [0, { [_hH]: _xasca }], [() => BucketLifecycleConfiguration$, { [_hP]: 1, [_xN]: _LCi }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xatdmos }]], 1
|
|
2766
|
-
];
|
|
2767
|
-
exports.PutBucketLifecycleConfigurationRequest$ = PutBucketLifecycleConfigurationRequest$;
|
|
2768
|
-
const PutBucketLoggingRequest$ = [3, n0, _PBLR,
|
|
2769
|
-
0,
|
|
2770
|
-
[_B, _BLS, _CMDo, _CA, _EBO],
|
|
2771
|
-
[[0, 1], [() => BucketLoggingStatus$, { [_hP]: 1, [_xN]: _BLS }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2
|
|
2772
|
-
];
|
|
2773
|
-
exports.PutBucketLoggingRequest$ = PutBucketLoggingRequest$;
|
|
2774
|
-
const PutBucketMetricsConfigurationRequest$ = [3, n0, _PBMCR,
|
|
2775
|
-
0,
|
|
2776
|
-
[_B, _I, _MCe, _EBO],
|
|
2777
|
-
[[0, 1], [0, { [_hQ]: _i }], [() => MetricsConfiguration$, { [_hP]: 1, [_xN]: _MCe }], [0, { [_hH]: _xaebo }]], 3
|
|
2778
|
-
];
|
|
2779
|
-
exports.PutBucketMetricsConfigurationRequest$ = PutBucketMetricsConfigurationRequest$;
|
|
2780
|
-
const PutBucketNotificationConfigurationRequest$ = [3, n0, _PBNCR,
|
|
2781
|
-
0,
|
|
2782
|
-
[_B, _NC, _EBO, _SDV],
|
|
2783
|
-
[[0, 1], [() => NotificationConfiguration$, { [_hP]: 1, [_xN]: _NC }], [0, { [_hH]: _xaebo }], [2, { [_hH]: _xasdv }]], 2
|
|
2784
|
-
];
|
|
2785
|
-
exports.PutBucketNotificationConfigurationRequest$ = PutBucketNotificationConfigurationRequest$;
|
|
2786
|
-
const PutBucketOwnershipControlsRequest$ = [3, n0, _PBOCR,
|
|
2787
|
-
0,
|
|
2788
|
-
[_B, _OC, _CMDo, _EBO, _CA],
|
|
2789
|
-
[[0, 1], [() => OwnershipControls$, { [_hP]: 1, [_xN]: _OC }], [0, { [_hH]: _CM }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xasca }]], 2
|
|
2790
|
-
];
|
|
2791
|
-
exports.PutBucketOwnershipControlsRequest$ = PutBucketOwnershipControlsRequest$;
|
|
2792
|
-
const PutBucketPolicyRequest$ = [3, n0, _PBPR,
|
|
2793
|
-
0,
|
|
2794
|
-
[_B, _Po, _CMDo, _CA, _CRSBA, _EBO],
|
|
2795
|
-
[[0, 1], [0, 16], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [2, { [_hH]: _xacrsba }], [0, { [_hH]: _xaebo }]], 2
|
|
2796
|
-
];
|
|
2797
|
-
exports.PutBucketPolicyRequest$ = PutBucketPolicyRequest$;
|
|
2798
|
-
const PutBucketReplicationRequest$ = [3, n0, _PBRR,
|
|
2799
|
-
0,
|
|
2800
|
-
[_B, _RCe, _CMDo, _CA, _To, _EBO],
|
|
2801
|
-
[[0, 1], [() => ReplicationConfiguration$, { [_hP]: 1, [_xN]: _RCe }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xabolt }], [0, { [_hH]: _xaebo }]], 2
|
|
2802
|
-
];
|
|
2803
|
-
exports.PutBucketReplicationRequest$ = PutBucketReplicationRequest$;
|
|
2804
|
-
const PutBucketRequestPaymentRequest$ = [3, n0, _PBRPR,
|
|
2805
|
-
0,
|
|
2806
|
-
[_B, _RPC, _CMDo, _CA, _EBO],
|
|
2807
|
-
[[0, 1], [() => RequestPaymentConfiguration$, { [_hP]: 1, [_xN]: _RPC }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2
|
|
2808
|
-
];
|
|
2809
|
-
exports.PutBucketRequestPaymentRequest$ = PutBucketRequestPaymentRequest$;
|
|
2810
|
-
const PutBucketTaggingRequest$ = [3, n0, _PBTR,
|
|
2811
|
-
0,
|
|
2812
|
-
[_B, _Tag, _CMDo, _CA, _EBO],
|
|
2813
|
-
[[0, 1], [() => Tagging$, { [_hP]: 1, [_xN]: _Tag }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2
|
|
2814
|
-
];
|
|
2815
|
-
exports.PutBucketTaggingRequest$ = PutBucketTaggingRequest$;
|
|
2816
|
-
const PutBucketVersioningRequest$ = [3, n0, _PBVR,
|
|
2817
|
-
0,
|
|
2818
|
-
[_B, _VC, _CMDo, _CA, _MFA, _EBO],
|
|
2819
|
-
[[0, 1], [() => VersioningConfiguration$, { [_hP]: 1, [_xN]: _VC }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xam_ }], [0, { [_hH]: _xaebo }]], 2
|
|
2820
|
-
];
|
|
2821
|
-
exports.PutBucketVersioningRequest$ = PutBucketVersioningRequest$;
|
|
2822
|
-
const PutBucketWebsiteRequest$ = [3, n0, _PBWR,
|
|
2823
|
-
0,
|
|
2824
|
-
[_B, _WC, _CMDo, _CA, _EBO],
|
|
2825
|
-
[[0, 1], [() => WebsiteConfiguration$, { [_hP]: 1, [_xN]: _WC }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2
|
|
2826
|
-
];
|
|
2827
|
-
exports.PutBucketWebsiteRequest$ = PutBucketWebsiteRequest$;
|
|
2828
|
-
const PutObjectAclOutput$ = [3, n0, _POAO,
|
|
2829
|
-
0,
|
|
2830
|
-
[_RC],
|
|
2831
|
-
[[0, { [_hH]: _xarc }]]
|
|
2832
|
-
];
|
|
2833
|
-
exports.PutObjectAclOutput$ = PutObjectAclOutput$;
|
|
2834
|
-
const PutObjectAclRequest$ = [3, n0, _POAR,
|
|
2835
|
-
0,
|
|
2836
|
-
[_B, _K, _ACL_, _ACP, _CMDo, _CA, _GFC, _GR, _GRACP, _GW, _GWACP, _RP, _VI, _EBO],
|
|
2837
|
-
[[0, 1], [0, 1], [0, { [_hH]: _xaa }], [() => AccessControlPolicy$, { [_hP]: 1, [_xN]: _ACP }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xagfc }], [0, { [_hH]: _xagr }], [0, { [_hH]: _xagra }], [0, { [_hH]: _xagw }], [0, { [_hH]: _xagwa }], [0, { [_hH]: _xarp }], [0, { [_hQ]: _vI }], [0, { [_hH]: _xaebo }]], 2
|
|
2838
|
-
];
|
|
2839
|
-
exports.PutObjectAclRequest$ = PutObjectAclRequest$;
|
|
2840
|
-
const PutObjectAnnotationOutput$ = [3, n0, _POAOu,
|
|
2841
|
-
0,
|
|
2842
|
-
[_K, _AN, _OVI, _ET, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh, _CSHAhe, _CMD, _CXXHASH, _CXXHASHh, _CXXHASHhe, _CT, _SSE, _RC],
|
|
2843
|
-
[0, 0, [0, { [_hH]: _xaovi }], [0, { [_hH]: _ET }], [0, { [_hH]: _xacc }], [0, { [_hH]: _xacc_ }], [0, { [_hH]: _xacc__ }], [0, { [_hH]: _xacs }], [0, { [_hH]: _xacs_ }], [0, { [_hH]: _xacs__ }], [0, { [_hH]: _xacm }], [0, { [_hH]: _xacx }], [0, { [_hH]: _xacx_ }], [0, { [_hH]: _xacx__ }], [0, { [_hH]: _xact }], [0, { [_hH]: _xasse }], [0, { [_hH]: _xarc }]]
|
|
2844
|
-
];
|
|
2845
|
-
exports.PutObjectAnnotationOutput$ = PutObjectAnnotationOutput$;
|
|
2846
|
-
const PutObjectAnnotationRequest$ = [3, n0, _POARu,
|
|
2847
|
-
0,
|
|
2848
|
-
[_B, _K, _AN, _AP, _VI, _OIM, _CA, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh, _CSHAhe, _CMD, _CXXHASH, _CXXHASHh, _CXXHASHhe, _CMDo, _RP, _EBO],
|
|
2849
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _aN }], [() => StreamingBlob, 16], [0, { [_hQ]: _vI }], [0, { [_hH]: _xaoim }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xacc }], [0, { [_hH]: _xacc_ }], [0, { [_hH]: _xacc__ }], [0, { [_hH]: _xacs }], [0, { [_hH]: _xacs_ }], [0, { [_hH]: _xacs__ }], [0, { [_hH]: _xacm }], [0, { [_hH]: _xacx }], [0, { [_hH]: _xacx_ }], [0, { [_hH]: _xacx__ }], [0, { [_hH]: _CM }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }]], 4
|
|
2850
|
-
];
|
|
2851
|
-
exports.PutObjectAnnotationRequest$ = PutObjectAnnotationRequest$;
|
|
2852
|
-
const PutObjectLegalHoldOutput$ = [3, n0, _POLHO,
|
|
2853
|
-
0,
|
|
2854
|
-
[_RC],
|
|
2855
|
-
[[0, { [_hH]: _xarc }]]
|
|
2856
|
-
];
|
|
2857
|
-
exports.PutObjectLegalHoldOutput$ = PutObjectLegalHoldOutput$;
|
|
2858
|
-
const PutObjectLegalHoldRequest$ = [3, n0, _POLHR,
|
|
2859
|
-
0,
|
|
2860
|
-
[_B, _K, _LH, _RP, _VI, _CMDo, _CA, _EBO],
|
|
2861
|
-
[[0, 1], [0, 1], [() => ObjectLockLegalHold$, { [_hP]: 1, [_xN]: _LH }], [0, { [_hH]: _xarp }], [0, { [_hQ]: _vI }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2
|
|
2862
|
-
];
|
|
2863
|
-
exports.PutObjectLegalHoldRequest$ = PutObjectLegalHoldRequest$;
|
|
2864
|
-
const PutObjectLockConfigurationOutput$ = [3, n0, _POLCO,
|
|
2865
|
-
0,
|
|
2866
|
-
[_RC],
|
|
2867
|
-
[[0, { [_hH]: _xarc }]]
|
|
2868
|
-
];
|
|
2869
|
-
exports.PutObjectLockConfigurationOutput$ = PutObjectLockConfigurationOutput$;
|
|
2870
|
-
const PutObjectLockConfigurationRequest$ = [3, n0, _POLCR,
|
|
2871
|
-
0,
|
|
2872
|
-
[_B, _OLC, _RP, _To, _CMDo, _CA, _EBO],
|
|
2873
|
-
[[0, 1], [() => ObjectLockConfiguration$, { [_hP]: 1, [_xN]: _OLC }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xabolt }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 1
|
|
2874
|
-
];
|
|
2875
|
-
exports.PutObjectLockConfigurationRequest$ = PutObjectLockConfigurationRequest$;
|
|
2876
|
-
const PutObjectOutput$ = [3, n0, _POO,
|
|
2877
|
-
0,
|
|
2878
|
-
[_Ex, _ET, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh, _CSHAhe, _CMD, _CXXHASH, _CXXHASHh, _CXXHASHhe, _CT, _SSE, _VI, _SSECA, _SSECKMD, _SSEKMSKI, _SSEKMSEC, _BKE, _Si, _RC],
|
|
2879
|
-
[[0, { [_hH]: _xae }], [0, { [_hH]: _ET }], [0, { [_hH]: _xacc }], [0, { [_hH]: _xacc_ }], [0, { [_hH]: _xacc__ }], [0, { [_hH]: _xacs }], [0, { [_hH]: _xacs_ }], [0, { [_hH]: _xacs__ }], [0, { [_hH]: _xacm }], [0, { [_hH]: _xacx }], [0, { [_hH]: _xacx_ }], [0, { [_hH]: _xacx__ }], [0, { [_hH]: _xact }], [0, { [_hH]: _xasse }], [0, { [_hH]: _xavi }], [0, { [_hH]: _xasseca }], [0, { [_hH]: _xasseckM }], [() => SSEKMSKeyId, { [_hH]: _xasseakki }], [() => SSEKMSEncryptionContext, { [_hH]: _xassec }], [2, { [_hH]: _xassebke }], [1, { [_hH]: _xaos }], [0, { [_hH]: _xarc }]]
|
|
2880
|
-
];
|
|
2881
|
-
exports.PutObjectOutput$ = PutObjectOutput$;
|
|
2882
|
-
const PutObjectRequest$ = [3, n0, _POR,
|
|
2883
|
-
0,
|
|
2884
|
-
[_B, _K, _ACL_, _Bo, _CC, _CDo, _CEo, _CL, _CLo, _CMDo, _CTo, _CA, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh, _CSHAhe, _CMD, _CXXHASH, _CXXHASHh, _CXXHASHhe, _Exp, _IM, _INM, _GFC, _GR, _GRACP, _GWACP, _WOB, _M, _SSE, _SC, _WRL, _SSECA, _SSECK, _SSECKMD, _SSEKMSKI, _SSEKMSEC, _BKE, _RP, _Tag, _OLM, _OLRUD, _OLLHS, _EBO],
|
|
2885
|
-
[[0, 1], [0, 1], [0, { [_hH]: _xaa }], [() => StreamingBlob, 16], [0, { [_hH]: _CC_ }], [0, { [_hH]: _CD_ }], [0, { [_hH]: _CE_ }], [0, { [_hH]: _CL_ }], [1, { [_hH]: _CL__ }], [0, { [_hH]: _CM }], [0, { [_hH]: _CT_ }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xacc }], [0, { [_hH]: _xacc_ }], [0, { [_hH]: _xacc__ }], [0, { [_hH]: _xacs }], [0, { [_hH]: _xacs_ }], [0, { [_hH]: _xacs__ }], [0, { [_hH]: _xacm }], [0, { [_hH]: _xacx }], [0, { [_hH]: _xacx_ }], [0, { [_hH]: _xacx__ }], [4, { [_hH]: _Exp }], [0, { [_hH]: _IM_ }], [0, { [_hH]: _INM_ }], [0, { [_hH]: _xagfc }], [0, { [_hH]: _xagr }], [0, { [_hH]: _xagra }], [0, { [_hH]: _xagwa }], [1, { [_hH]: _xawob }], [128 | 0, { [_hPH]: _xam }], [0, { [_hH]: _xasse }], [0, { [_hH]: _xasc }], [0, { [_hH]: _xawrl }], [0, { [_hH]: _xasseca }], [() => SSECustomerKey, { [_hH]: _xasseck }], [0, { [_hH]: _xasseckM }], [() => SSEKMSKeyId, { [_hH]: _xasseakki }], [() => SSEKMSEncryptionContext, { [_hH]: _xassec }], [2, { [_hH]: _xassebke }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xat }], [0, { [_hH]: _xaolm }], [5, { [_hH]: _xaolrud }], [0, { [_hH]: _xaollh }], [0, { [_hH]: _xaebo }]], 2
|
|
2886
|
-
];
|
|
2887
|
-
exports.PutObjectRequest$ = PutObjectRequest$;
|
|
2888
|
-
const PutObjectRetentionOutput$ = [3, n0, _PORO,
|
|
2889
|
-
0,
|
|
2890
|
-
[_RC],
|
|
2891
|
-
[[0, { [_hH]: _xarc }]]
|
|
2892
|
-
];
|
|
2893
|
-
exports.PutObjectRetentionOutput$ = PutObjectRetentionOutput$;
|
|
2894
|
-
const PutObjectRetentionRequest$ = [3, n0, _PORR,
|
|
2895
|
-
0,
|
|
2896
|
-
[_B, _K, _Ret, _RP, _VI, _BGR, _CMDo, _CA, _EBO],
|
|
2897
|
-
[[0, 1], [0, 1], [() => ObjectLockRetention$, { [_hP]: 1, [_xN]: _Ret }], [0, { [_hH]: _xarp }], [0, { [_hQ]: _vI }], [2, { [_hH]: _xabgr }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2
|
|
2898
|
-
];
|
|
2899
|
-
exports.PutObjectRetentionRequest$ = PutObjectRetentionRequest$;
|
|
2900
|
-
const PutObjectTaggingOutput$ = [3, n0, _POTO,
|
|
2901
|
-
0,
|
|
2902
|
-
[_VI],
|
|
2903
|
-
[[0, { [_hH]: _xavi }]]
|
|
2904
|
-
];
|
|
2905
|
-
exports.PutObjectTaggingOutput$ = PutObjectTaggingOutput$;
|
|
2906
|
-
const PutObjectTaggingRequest$ = [3, n0, _POTR,
|
|
2907
|
-
0,
|
|
2908
|
-
[_B, _K, _Tag, _VI, _CMDo, _CA, _EBO, _RP],
|
|
2909
|
-
[[0, 1], [0, 1], [() => Tagging$, { [_hP]: 1, [_xN]: _Tag }], [0, { [_hQ]: _vI }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xarp }]], 3
|
|
2910
|
-
];
|
|
2911
|
-
exports.PutObjectTaggingRequest$ = PutObjectTaggingRequest$;
|
|
2912
|
-
const PutPublicAccessBlockRequest$ = [3, n0, _PPABR,
|
|
2913
|
-
0,
|
|
2914
|
-
[_B, _PABC, _CMDo, _CA, _EBO],
|
|
2915
|
-
[[0, 1], [() => PublicAccessBlockConfiguration$, { [_hP]: 1, [_xN]: _PABC }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2
|
|
2916
|
-
];
|
|
2917
|
-
exports.PutPublicAccessBlockRequest$ = PutPublicAccessBlockRequest$;
|
|
2918
|
-
const QueueConfiguration$ = [3, n0, _QCue,
|
|
2919
|
-
0,
|
|
2920
|
-
[_QA, _Ev, _I, _F],
|
|
2921
|
-
[[0, { [_xN]: _Qu }], [64 | 0, { [_xF]: 1, [_xN]: _Eve }], 0, [() => NotificationConfigurationFilter$, 0]], 2
|
|
2922
|
-
];
|
|
2923
|
-
exports.QueueConfiguration$ = QueueConfiguration$;
|
|
2924
|
-
const RecordExpiration$ = [3, n0, _REe,
|
|
2925
|
-
0,
|
|
2926
|
-
[_Ex, _D],
|
|
2927
|
-
[0, 1], 1
|
|
2928
|
-
];
|
|
2929
|
-
exports.RecordExpiration$ = RecordExpiration$;
|
|
2930
|
-
const RecordsEvent$ = [3, n0, _REec,
|
|
2931
|
-
0,
|
|
2932
|
-
[_Payl],
|
|
2933
|
-
[[21, { [_eP]: 1 }]]
|
|
2934
|
-
];
|
|
2935
|
-
exports.RecordsEvent$ = RecordsEvent$;
|
|
2936
|
-
const Redirect$ = [3, n0, _Red,
|
|
2937
|
-
0,
|
|
2938
|
-
[_HN, _HRC, _Pro, _RKPW, _RKW],
|
|
2939
|
-
[0, 0, 0, 0, 0]
|
|
2940
|
-
];
|
|
2941
|
-
exports.Redirect$ = Redirect$;
|
|
2942
|
-
const RedirectAllRequestsTo$ = [3, n0, _RART,
|
|
2943
|
-
0,
|
|
2944
|
-
[_HN, _Pro],
|
|
2945
|
-
[0, 0], 1
|
|
2946
|
-
];
|
|
2947
|
-
exports.RedirectAllRequestsTo$ = RedirectAllRequestsTo$;
|
|
2948
|
-
const RenameObjectOutput$ = [3, n0, _ROO,
|
|
2949
|
-
0,
|
|
2950
|
-
[],
|
|
2951
|
-
[]
|
|
2952
|
-
];
|
|
2953
|
-
exports.RenameObjectOutput$ = RenameObjectOutput$;
|
|
2954
|
-
const RenameObjectRequest$ = [3, n0, _ROR,
|
|
2955
|
-
0,
|
|
2956
|
-
[_B, _K, _RSen, _DIM, _DINM, _DIMS, _DIUS, _SIM, _SINM, _SIMS, _SIUS, _CTl],
|
|
2957
|
-
[[0, 1], [0, 1], [0, { [_hH]: _xars_ }], [0, { [_hH]: _IM_ }], [0, { [_hH]: _INM_ }], [4, { [_hH]: _IMS_ }], [4, { [_hH]: _IUS_ }], [0, { [_hH]: _xarsim }], [0, { [_hH]: _xarsinm }], [6, { [_hH]: _xarsims }], [6, { [_hH]: _xarsius }], [0, { [_hH]: _xact_, [_iT]: 1 }]], 3
|
|
2958
|
-
];
|
|
2959
|
-
exports.RenameObjectRequest$ = RenameObjectRequest$;
|
|
2960
|
-
const ReplicaModifications$ = [3, n0, _RM,
|
|
2961
|
-
0,
|
|
2962
|
-
[_S],
|
|
2963
|
-
[0], 1
|
|
2964
|
-
];
|
|
2965
|
-
exports.ReplicaModifications$ = ReplicaModifications$;
|
|
2966
|
-
const ReplicationConfiguration$ = [3, n0, _RCe,
|
|
2967
|
-
0,
|
|
2968
|
-
[_R, _Ru],
|
|
2969
|
-
[0, [() => ReplicationRules, { [_xF]: 1, [_xN]: _Rul }]], 2
|
|
2970
|
-
];
|
|
2971
|
-
exports.ReplicationConfiguration$ = ReplicationConfiguration$;
|
|
2972
|
-
const ReplicationRule$ = [3, n0, _RRe,
|
|
2973
|
-
0,
|
|
2974
|
-
[_S, _Des, _ID, _Pri, _P, _F, _SSC, _EOR, _DMR],
|
|
2975
|
-
[0, () => Destination$, 0, 1, 0, [() => ReplicationRuleFilter$, 0], () => SourceSelectionCriteria$, () => ExistingObjectReplication$, () => DeleteMarkerReplication$], 2
|
|
2976
|
-
];
|
|
2977
|
-
exports.ReplicationRule$ = ReplicationRule$;
|
|
2978
|
-
const ReplicationRuleAndOperator$ = [3, n0, _RRAO,
|
|
2979
|
-
0,
|
|
2980
|
-
[_P, _T],
|
|
2981
|
-
[0, [() => TagSet, { [_xF]: 1, [_xN]: _Ta }]]
|
|
2982
|
-
];
|
|
2983
|
-
exports.ReplicationRuleAndOperator$ = ReplicationRuleAndOperator$;
|
|
2984
|
-
const ReplicationRuleFilter$ = [3, n0, _RRF,
|
|
2985
|
-
0,
|
|
2986
|
-
[_P, _Ta, _An],
|
|
2987
|
-
[0, () => Tag$, [() => ReplicationRuleAndOperator$, 0]]
|
|
2988
|
-
];
|
|
2989
|
-
exports.ReplicationRuleFilter$ = ReplicationRuleFilter$;
|
|
2990
|
-
const ReplicationTime$ = [3, n0, _RT,
|
|
2991
|
-
0,
|
|
2992
|
-
[_S, _Tim],
|
|
2993
|
-
[0, () => ReplicationTimeValue$], 2
|
|
2994
|
-
];
|
|
2995
|
-
exports.ReplicationTime$ = ReplicationTime$;
|
|
2996
|
-
const ReplicationTimeValue$ = [3, n0, _RTV,
|
|
2997
|
-
0,
|
|
2998
|
-
[_Mi],
|
|
2999
|
-
[1]
|
|
3000
|
-
];
|
|
3001
|
-
exports.ReplicationTimeValue$ = ReplicationTimeValue$;
|
|
3002
|
-
const RequestPaymentConfiguration$ = [3, n0, _RPC,
|
|
3003
|
-
0,
|
|
3004
|
-
[_Pay],
|
|
3005
|
-
[0], 1
|
|
3006
|
-
];
|
|
3007
|
-
exports.RequestPaymentConfiguration$ = RequestPaymentConfiguration$;
|
|
3008
|
-
const RequestProgress$ = [3, n0, _RPe,
|
|
3009
|
-
0,
|
|
3010
|
-
[_Ena],
|
|
3011
|
-
[2]
|
|
3012
|
-
];
|
|
3013
|
-
exports.RequestProgress$ = RequestProgress$;
|
|
3014
|
-
const RestoreObjectOutput$ = [3, n0, _ROOe,
|
|
3015
|
-
0,
|
|
3016
|
-
[_RC, _ROP],
|
|
3017
|
-
[[0, { [_hH]: _xarc }], [0, { [_hH]: _xarop }]]
|
|
3018
|
-
];
|
|
3019
|
-
exports.RestoreObjectOutput$ = RestoreObjectOutput$;
|
|
3020
|
-
const RestoreObjectRequest$ = [3, n0, _RORe,
|
|
3021
|
-
0,
|
|
3022
|
-
[_B, _K, _VI, _RRes, _RP, _CA, _EBO],
|
|
3023
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _vI }], [() => RestoreRequest$, { [_hP]: 1, [_xN]: _RRes }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2
|
|
3024
|
-
];
|
|
3025
|
-
exports.RestoreObjectRequest$ = RestoreObjectRequest$;
|
|
3026
|
-
const RestoreRequest$ = [3, n0, _RRes,
|
|
3027
|
-
0,
|
|
3028
|
-
[_D, _GJP, _Ty, _Ti, _Desc, _SP, _OL],
|
|
3029
|
-
[1, () => GlacierJobParameters$, 0, 0, 0, () => SelectParameters$, [() => OutputLocation$, 0]]
|
|
3030
|
-
];
|
|
3031
|
-
exports.RestoreRequest$ = RestoreRequest$;
|
|
3032
|
-
const RestoreStatus$ = [3, n0, _RSe,
|
|
3033
|
-
0,
|
|
3034
|
-
[_IRIP, _RED],
|
|
3035
|
-
[2, 4]
|
|
3036
|
-
];
|
|
3037
|
-
exports.RestoreStatus$ = RestoreStatus$;
|
|
3038
|
-
const RoutingRule$ = [3, n0, _RRo,
|
|
3039
|
-
0,
|
|
3040
|
-
[_Red, _Co],
|
|
3041
|
-
[() => Redirect$, () => Condition$], 1
|
|
3042
|
-
];
|
|
3043
|
-
exports.RoutingRule$ = RoutingRule$;
|
|
3044
|
-
const S3KeyFilter$ = [3, n0, _SKF,
|
|
3045
|
-
0,
|
|
3046
|
-
[_FRi],
|
|
3047
|
-
[[() => FilterRuleList, { [_xF]: 1, [_xN]: _FR }]]
|
|
3048
|
-
];
|
|
3049
|
-
exports.S3KeyFilter$ = S3KeyFilter$;
|
|
3050
|
-
const S3Location$ = [3, n0, _SL,
|
|
3051
|
-
0,
|
|
3052
|
-
[_BNu, _P, _En, _CACL, _ACL, _Tag, _UM, _SC],
|
|
3053
|
-
[0, 0, [() => Encryption$, 0], 0, [() => Grants, 0], [() => Tagging$, 0], [() => UserMetadata, 0], 0], 2
|
|
3054
|
-
];
|
|
3055
|
-
exports.S3Location$ = S3Location$;
|
|
3056
|
-
const S3TablesDestination$ = [3, n0, _STD,
|
|
3057
|
-
0,
|
|
3058
|
-
[_TBA, _TN],
|
|
3059
|
-
[0, 0], 2
|
|
3060
|
-
];
|
|
3061
|
-
exports.S3TablesDestination$ = S3TablesDestination$;
|
|
3062
|
-
const S3TablesDestinationResult$ = [3, n0, _STDR,
|
|
3063
|
-
0,
|
|
3064
|
-
[_TBA, _TN, _TA, _TNa],
|
|
3065
|
-
[0, 0, 0, 0], 4
|
|
3066
|
-
];
|
|
3067
|
-
exports.S3TablesDestinationResult$ = S3TablesDestinationResult$;
|
|
3068
|
-
const ScanRange$ = [3, n0, _SR,
|
|
3069
|
-
0,
|
|
3070
|
-
[_St, _End],
|
|
3071
|
-
[1, 1]
|
|
3072
|
-
];
|
|
3073
|
-
exports.ScanRange$ = ScanRange$;
|
|
3074
|
-
const SelectObjectContentOutput$ = [3, n0, _SOCO,
|
|
3075
|
-
0,
|
|
3076
|
-
[_Payl],
|
|
3077
|
-
[[() => SelectObjectContentEventStream$, 16]]
|
|
3078
|
-
];
|
|
3079
|
-
exports.SelectObjectContentOutput$ = SelectObjectContentOutput$;
|
|
3080
|
-
const SelectObjectContentRequest$ = [3, n0, _SOCR,
|
|
3081
|
-
0,
|
|
3082
|
-
[_B, _K, _Expr, _ETx, _IS, _OSu, _SSECA, _SSECK, _SSECKMD, _RPe, _SR, _EBO],
|
|
3083
|
-
[[0, 1], [0, 1], 0, 0, () => InputSerialization$, () => OutputSerialization$, [0, { [_hH]: _xasseca }], [() => SSECustomerKey, { [_hH]: _xasseck }], [0, { [_hH]: _xasseckM }], () => RequestProgress$, () => ScanRange$, [0, { [_hH]: _xaebo }]], 6
|
|
3084
|
-
];
|
|
3085
|
-
exports.SelectObjectContentRequest$ = SelectObjectContentRequest$;
|
|
3086
|
-
const SelectParameters$ = [3, n0, _SP,
|
|
3087
|
-
0,
|
|
3088
|
-
[_IS, _ETx, _Expr, _OSu],
|
|
3089
|
-
[() => InputSerialization$, 0, 0, () => OutputSerialization$], 4
|
|
3090
|
-
];
|
|
3091
|
-
exports.SelectParameters$ = SelectParameters$;
|
|
3092
|
-
const ServerSideEncryptionByDefault$ = [3, n0, _SSEBD,
|
|
3093
|
-
0,
|
|
3094
|
-
[_SSEA, _KMSMKID],
|
|
3095
|
-
[0, [() => SSEKMSKeyId, 0]], 1
|
|
3096
|
-
];
|
|
3097
|
-
exports.ServerSideEncryptionByDefault$ = ServerSideEncryptionByDefault$;
|
|
3098
|
-
const ServerSideEncryptionConfiguration$ = [3, n0, _SSEC,
|
|
3099
|
-
0,
|
|
3100
|
-
[_Ru],
|
|
3101
|
-
[[() => ServerSideEncryptionRules, { [_xF]: 1, [_xN]: _Rul }]], 1
|
|
3102
|
-
];
|
|
3103
|
-
exports.ServerSideEncryptionConfiguration$ = ServerSideEncryptionConfiguration$;
|
|
3104
|
-
const ServerSideEncryptionRule$ = [3, n0, _SSER,
|
|
3105
|
-
0,
|
|
3106
|
-
[_ASSEBD, _BKE, _BET],
|
|
3107
|
-
[[() => ServerSideEncryptionByDefault$, 0], 2, [() => BlockedEncryptionTypes$, 0]]
|
|
3108
|
-
];
|
|
3109
|
-
exports.ServerSideEncryptionRule$ = ServerSideEncryptionRule$;
|
|
3110
|
-
const SessionCredentials$ = [3, n0, _SCe,
|
|
3111
|
-
0,
|
|
3112
|
-
[_AKI, _SAK, _ST, _Ex],
|
|
3113
|
-
[[0, { [_xN]: _AKI }], [() => SessionCredentialValue, { [_xN]: _SAK }], [() => SessionCredentialValue, { [_xN]: _ST }], [4, { [_xN]: _Ex }]], 4
|
|
3114
|
-
];
|
|
3115
|
-
exports.SessionCredentials$ = SessionCredentials$;
|
|
3116
|
-
const SimplePrefix$ = [3, n0, _SPi,
|
|
3117
|
-
{ [_xN]: _SPi },
|
|
3118
|
-
[],
|
|
3119
|
-
[]
|
|
3120
|
-
];
|
|
3121
|
-
exports.SimplePrefix$ = SimplePrefix$;
|
|
3122
|
-
const SourceSelectionCriteria$ = [3, n0, _SSC,
|
|
3123
|
-
0,
|
|
3124
|
-
[_SKEO, _RM],
|
|
3125
|
-
[() => SseKmsEncryptedObjects$, () => ReplicaModifications$]
|
|
3126
|
-
];
|
|
3127
|
-
exports.SourceSelectionCriteria$ = SourceSelectionCriteria$;
|
|
3128
|
-
const SSEKMS$ = [3, n0, _SSEKMS,
|
|
3129
|
-
{ [_xN]: _SK },
|
|
3130
|
-
[_KI],
|
|
3131
|
-
[[() => SSEKMSKeyId, 0]], 1
|
|
3132
|
-
];
|
|
3133
|
-
exports.SSEKMS$ = SSEKMS$;
|
|
3134
|
-
const SseKmsEncryptedObjects$ = [3, n0, _SKEO,
|
|
3135
|
-
0,
|
|
3136
|
-
[_S],
|
|
3137
|
-
[0], 1
|
|
3138
|
-
];
|
|
3139
|
-
exports.SseKmsEncryptedObjects$ = SseKmsEncryptedObjects$;
|
|
3140
|
-
const SSEKMSEncryption$ = [3, n0, _SSEKMSE,
|
|
3141
|
-
{ [_xN]: _SK },
|
|
3142
|
-
[_KMSKA, _BKE],
|
|
3143
|
-
[[() => NonEmptyKmsKeyArnString, 0], 2], 1
|
|
3144
|
-
];
|
|
3145
|
-
exports.SSEKMSEncryption$ = SSEKMSEncryption$;
|
|
3146
|
-
const SSES3$ = [3, n0, _SSES,
|
|
3147
|
-
{ [_xN]: _SS },
|
|
3148
|
-
[],
|
|
3149
|
-
[]
|
|
3150
|
-
];
|
|
3151
|
-
exports.SSES3$ = SSES3$;
|
|
3152
|
-
const Stats$ = [3, n0, _Sta,
|
|
3153
|
-
0,
|
|
3154
|
-
[_BS, _BP, _BRy],
|
|
3155
|
-
[1, 1, 1]
|
|
3156
|
-
];
|
|
3157
|
-
exports.Stats$ = Stats$;
|
|
3158
|
-
const StatsEvent$ = [3, n0, _SE,
|
|
3159
|
-
0,
|
|
3160
|
-
[_Det],
|
|
3161
|
-
[[() => Stats$, { [_eP]: 1 }]]
|
|
3162
|
-
];
|
|
3163
|
-
exports.StatsEvent$ = StatsEvent$;
|
|
3164
|
-
const StorageClassAnalysis$ = [3, n0, _SCA,
|
|
3165
|
-
0,
|
|
3166
|
-
[_DE],
|
|
3167
|
-
[() => StorageClassAnalysisDataExport$]
|
|
3168
|
-
];
|
|
3169
|
-
exports.StorageClassAnalysis$ = StorageClassAnalysis$;
|
|
3170
|
-
const StorageClassAnalysisDataExport$ = [3, n0, _SCADE,
|
|
3171
|
-
0,
|
|
3172
|
-
[_OSV, _Des],
|
|
3173
|
-
[0, () => AnalyticsExportDestination$], 2
|
|
3174
|
-
];
|
|
3175
|
-
exports.StorageClassAnalysisDataExport$ = StorageClassAnalysisDataExport$;
|
|
3176
|
-
const Tag$ = [3, n0, _Ta,
|
|
3177
|
-
0,
|
|
3178
|
-
[_K, _V],
|
|
3179
|
-
[0, 0], 2
|
|
3180
|
-
];
|
|
3181
|
-
exports.Tag$ = Tag$;
|
|
3182
|
-
const Tagging$ = [3, n0, _Tag,
|
|
3183
|
-
0,
|
|
3184
|
-
[_TSa],
|
|
3185
|
-
[[() => TagSet, 0]], 1
|
|
3186
|
-
];
|
|
3187
|
-
exports.Tagging$ = Tagging$;
|
|
3188
|
-
const TargetGrant$ = [3, n0, _TGa,
|
|
3189
|
-
0,
|
|
3190
|
-
[_Gra, _Pe],
|
|
3191
|
-
[[() => Grantee$, { [_xNm]: [_x, _hi] }], 0]
|
|
3192
|
-
];
|
|
3193
|
-
exports.TargetGrant$ = TargetGrant$;
|
|
3194
|
-
const TargetObjectKeyFormat$ = [3, n0, _TOKF,
|
|
3195
|
-
0,
|
|
3196
|
-
[_SPi, _PP],
|
|
3197
|
-
[[() => SimplePrefix$, { [_xN]: _SPi }], [() => PartitionedPrefix$, { [_xN]: _PP }]]
|
|
3198
|
-
];
|
|
3199
|
-
exports.TargetObjectKeyFormat$ = TargetObjectKeyFormat$;
|
|
3200
|
-
const Tiering$ = [3, n0, _Tier,
|
|
3201
|
-
0,
|
|
3202
|
-
[_D, _AT],
|
|
3203
|
-
[1, 0], 2
|
|
3204
|
-
];
|
|
3205
|
-
exports.Tiering$ = Tiering$;
|
|
3206
|
-
const TopicConfiguration$ = [3, n0, _TCop,
|
|
3207
|
-
0,
|
|
3208
|
-
[_TAo, _Ev, _I, _F],
|
|
3209
|
-
[[0, { [_xN]: _Top }], [64 | 0, { [_xF]: 1, [_xN]: _Eve }], 0, [() => NotificationConfigurationFilter$, 0]], 2
|
|
3210
|
-
];
|
|
3211
|
-
exports.TopicConfiguration$ = TopicConfiguration$;
|
|
3212
|
-
const Transition$ = [3, n0, _Tra,
|
|
3213
|
-
0,
|
|
3214
|
-
[_Da, _D, _SC],
|
|
3215
|
-
[5, 1, 0]
|
|
3216
|
-
];
|
|
3217
|
-
exports.Transition$ = Transition$;
|
|
3218
|
-
const UpdateBucketMetadataAnnotationTableConfigurationRequest$ = [3, n0, _UBMATCR,
|
|
3219
|
-
0,
|
|
3220
|
-
[_B, _ATC, _CMDo, _CA, _EBO],
|
|
3221
|
-
[[0, 1], [() => AnnotationTableConfigurationUpdates$, { [_hP]: 1, [_xN]: _ATC }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2
|
|
3222
|
-
];
|
|
3223
|
-
exports.UpdateBucketMetadataAnnotationTableConfigurationRequest$ = UpdateBucketMetadataAnnotationTableConfigurationRequest$;
|
|
3224
|
-
const UpdateBucketMetadataInventoryTableConfigurationRequest$ = [3, n0, _UBMITCR,
|
|
3225
|
-
0,
|
|
3226
|
-
[_B, _ITCn, _CMDo, _CA, _EBO],
|
|
3227
|
-
[[0, 1], [() => InventoryTableConfigurationUpdates$, { [_hP]: 1, [_xN]: _ITCn }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2
|
|
3228
|
-
];
|
|
3229
|
-
exports.UpdateBucketMetadataInventoryTableConfigurationRequest$ = UpdateBucketMetadataInventoryTableConfigurationRequest$;
|
|
3230
|
-
const UpdateBucketMetadataJournalTableConfigurationRequest$ = [3, n0, _UBMJTCR,
|
|
3231
|
-
0,
|
|
3232
|
-
[_B, _JTC, _CMDo, _CA, _EBO],
|
|
3233
|
-
[[0, 1], [() => JournalTableConfigurationUpdates$, { [_hP]: 1, [_xN]: _JTC }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xaebo }]], 2
|
|
3234
|
-
];
|
|
3235
|
-
exports.UpdateBucketMetadataJournalTableConfigurationRequest$ = UpdateBucketMetadataJournalTableConfigurationRequest$;
|
|
3236
|
-
const UpdateObjectEncryptionRequest$ = [3, n0, _UOER,
|
|
3237
|
-
0,
|
|
3238
|
-
[_B, _K, _OE, _VI, _RP, _EBO, _CMDo, _CA],
|
|
3239
|
-
[[0, 1], [0, 1], [() => ObjectEncryption$, 16], [0, { [_hQ]: _vI }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }]], 3
|
|
3240
|
-
];
|
|
3241
|
-
exports.UpdateObjectEncryptionRequest$ = UpdateObjectEncryptionRequest$;
|
|
3242
|
-
const UpdateObjectEncryptionResponse$ = [3, n0, _UOERp,
|
|
3243
|
-
0,
|
|
3244
|
-
[_RC],
|
|
3245
|
-
[[0, { [_hH]: _xarc }]]
|
|
3246
|
-
];
|
|
3247
|
-
exports.UpdateObjectEncryptionResponse$ = UpdateObjectEncryptionResponse$;
|
|
3248
|
-
const UploadPartCopyOutput$ = [3, n0, _UPCO,
|
|
3249
|
-
0,
|
|
3250
|
-
[_CSVI, _CPR, _SSE, _SSECA, _SSECKMD, _SSEKMSKI, _BKE, _RC],
|
|
3251
|
-
[[0, { [_hH]: _xacsvi }], [() => CopyPartResult$, 16], [0, { [_hH]: _xasse }], [0, { [_hH]: _xasseca }], [0, { [_hH]: _xasseckM }], [() => SSEKMSKeyId, { [_hH]: _xasseakki }], [2, { [_hH]: _xassebke }], [0, { [_hH]: _xarc }]]
|
|
3252
|
-
];
|
|
3253
|
-
exports.UploadPartCopyOutput$ = UploadPartCopyOutput$;
|
|
3254
|
-
const UploadPartCopyRequest$ = [3, n0, _UPCR,
|
|
3255
|
-
0,
|
|
3256
|
-
[_B, _CSo, _K, _PN, _UI, _CSIM, _CSIMS, _CSINM, _CSIUS, _CSRo, _SSECA, _SSECK, _SSECKMD, _CSSSECA, _CSSSECK, _CSSSECKMD, _RP, _EBO, _ESBO],
|
|
3257
|
-
[[0, 1], [0, { [_hH]: _xacs___ }], [0, 1], [1, { [_hQ]: _pN }], [0, { [_hQ]: _uI }], [0, { [_hH]: _xacsim }], [4, { [_hH]: _xacsims }], [0, { [_hH]: _xacsinm }], [4, { [_hH]: _xacsius }], [0, { [_hH]: _xacsr }], [0, { [_hH]: _xasseca }], [() => SSECustomerKey, { [_hH]: _xasseck }], [0, { [_hH]: _xasseckM }], [0, { [_hH]: _xacssseca }], [() => CopySourceSSECustomerKey, { [_hH]: _xacssseck }], [0, { [_hH]: _xacssseckM }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }], [0, { [_hH]: _xasebo }]], 5
|
|
3258
|
-
];
|
|
3259
|
-
exports.UploadPartCopyRequest$ = UploadPartCopyRequest$;
|
|
3260
|
-
const UploadPartOutput$ = [3, n0, _UPO,
|
|
3261
|
-
0,
|
|
3262
|
-
[_SSE, _ET, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh, _CSHAhe, _CMD, _CXXHASH, _CXXHASHh, _CXXHASHhe, _SSECA, _SSECKMD, _SSEKMSKI, _BKE, _RC],
|
|
3263
|
-
[[0, { [_hH]: _xasse }], [0, { [_hH]: _ET }], [0, { [_hH]: _xacc }], [0, { [_hH]: _xacc_ }], [0, { [_hH]: _xacc__ }], [0, { [_hH]: _xacs }], [0, { [_hH]: _xacs_ }], [0, { [_hH]: _xacs__ }], [0, { [_hH]: _xacm }], [0, { [_hH]: _xacx }], [0, { [_hH]: _xacx_ }], [0, { [_hH]: _xacx__ }], [0, { [_hH]: _xasseca }], [0, { [_hH]: _xasseckM }], [() => SSEKMSKeyId, { [_hH]: _xasseakki }], [2, { [_hH]: _xassebke }], [0, { [_hH]: _xarc }]]
|
|
3264
|
-
];
|
|
3265
|
-
exports.UploadPartOutput$ = UploadPartOutput$;
|
|
3266
|
-
const UploadPartRequest$ = [3, n0, _UPR,
|
|
3267
|
-
0,
|
|
3268
|
-
[_B, _K, _PN, _UI, _Bo, _CLo, _CMDo, _CA, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh, _CSHAhe, _CMD, _CXXHASH, _CXXHASHh, _CXXHASHhe, _SSECA, _SSECK, _SSECKMD, _RP, _EBO],
|
|
3269
|
-
[[0, 1], [0, 1], [1, { [_hQ]: _pN }], [0, { [_hQ]: _uI }], [() => StreamingBlob, 16], [1, { [_hH]: _CL__ }], [0, { [_hH]: _CM }], [0, { [_hH]: _xasca }], [0, { [_hH]: _xacc }], [0, { [_hH]: _xacc_ }], [0, { [_hH]: _xacc__ }], [0, { [_hH]: _xacs }], [0, { [_hH]: _xacs_ }], [0, { [_hH]: _xacs__ }], [0, { [_hH]: _xacm }], [0, { [_hH]: _xacx }], [0, { [_hH]: _xacx_ }], [0, { [_hH]: _xacx__ }], [0, { [_hH]: _xasseca }], [() => SSECustomerKey, { [_hH]: _xasseck }], [0, { [_hH]: _xasseckM }], [0, { [_hH]: _xarp }], [0, { [_hH]: _xaebo }]], 4
|
|
3270
|
-
];
|
|
3271
|
-
exports.UploadPartRequest$ = UploadPartRequest$;
|
|
3272
|
-
const VersioningConfiguration$ = [3, n0, _VC,
|
|
3273
|
-
0,
|
|
3274
|
-
[_MFAD, _S],
|
|
3275
|
-
[[0, { [_xN]: _MDf }], 0]
|
|
3276
|
-
];
|
|
3277
|
-
exports.VersioningConfiguration$ = VersioningConfiguration$;
|
|
3278
|
-
const WebsiteConfiguration$ = [3, n0, _WC,
|
|
3279
|
-
0,
|
|
3280
|
-
[_EDr, _IDn, _RART, _RR],
|
|
3281
|
-
[() => ErrorDocument$, () => IndexDocument$, () => RedirectAllRequestsTo$, [() => RoutingRules, 0]]
|
|
3282
|
-
];
|
|
3283
|
-
exports.WebsiteConfiguration$ = WebsiteConfiguration$;
|
|
3284
|
-
const WriteGetObjectResponseRequest$ = [3, n0, _WGORR,
|
|
3285
|
-
0,
|
|
3286
|
-
[_RReq, _RTe, _Bo, _SCt, _ECr, _EM, _AR, _CC, _CDo, _CEo, _CL, _CLo, _CR, _CTo, _CCRC, _CCRCC, _CCRCNVME, _CSHA, _CSHAh, _CSHAhe, _CMD, _CXXHASH, _CXXHASHh, _CXXHASHhe, _DM, _ET, _Exp, _Ex, _LM, _MM, _M, _OLM, _OLLHS, _OLRUD, _PC, _RS, _RC, _Re, _SSE, _SSECA, _SSEKMSKI, _SSECKMD, _SC, _TC, _VI, _BKE],
|
|
3287
|
-
[[0, { [_hL]: 1, [_hH]: _xarr }], [0, { [_hH]: _xart }], [() => StreamingBlob, 16], [1, { [_hH]: _xafs }], [0, { [_hH]: _xafec }], [0, { [_hH]: _xafem }], [0, { [_hH]: _xafhar }], [0, { [_hH]: _xafhCC }], [0, { [_hH]: _xafhCD }], [0, { [_hH]: _xafhCE }], [0, { [_hH]: _xafhCL }], [1, { [_hH]: _CL__ }], [0, { [_hH]: _xafhCR }], [0, { [_hH]: _xafhCT }], [0, { [_hH]: _xafhxacc }], [0, { [_hH]: _xafhxacc_ }], [0, { [_hH]: _xafhxacc__ }], [0, { [_hH]: _xafhxacs }], [0, { [_hH]: _xafhxacs_ }], [0, { [_hH]: _xafhxacs__ }], [0, { [_hH]: _xafhxacm }], [0, { [_hH]: _xafhxacx }], [0, { [_hH]: _xafhxacx_ }], [0, { [_hH]: _xafhxacx__ }], [2, { [_hH]: _xafhxadm }], [0, { [_hH]: _xafhE }], [4, { [_hH]: _xafhE_ }], [0, { [_hH]: _xafhxae }], [4, { [_hH]: _xafhLM }], [1, { [_hH]: _xafhxamm }], [128 | 0, { [_hPH]: _xam }], [0, { [_hH]: _xafhxaolm }], [0, { [_hH]: _xafhxaollh }], [5, { [_hH]: _xafhxaolrud }], [1, { [_hH]: _xafhxampc }], [0, { [_hH]: _xafhxars }], [0, { [_hH]: _xafhxarc }], [0, { [_hH]: _xafhxar }], [0, { [_hH]: _xafhxasse }], [0, { [_hH]: _xafhxasseca }], [() => SSEKMSKeyId, { [_hH]: _xafhxasseakki }], [0, { [_hH]: _xafhxasseckM }], [0, { [_hH]: _xafhxasc }], [1, { [_hH]: _xafhxatc }], [0, { [_hH]: _xafhxavi }], [2, { [_hH]: _xafhxassebke }]], 2
|
|
3288
|
-
];
|
|
3289
|
-
exports.WriteGetObjectResponseRequest$ = WriteGetObjectResponseRequest$;
|
|
3290
|
-
var __Unit = "unit";
|
|
3291
|
-
var AllowedHeaders = 64 | 0;
|
|
3292
|
-
var AllowedMethods = 64 | 0;
|
|
3293
|
-
var AllowedOrigins = 64 | 0;
|
|
3294
|
-
var AnalyticsConfigurationList = [1, n0, _ACLn,
|
|
3295
|
-
0, [() => AnalyticsConfiguration$,
|
|
3296
|
-
0]
|
|
3297
|
-
];
|
|
3298
|
-
var AnnotationList = [1, n0, _AL,
|
|
3299
|
-
0, [() => AnnotationEntry$,
|
|
3300
|
-
{ [_xN]: _AE }]
|
|
3301
|
-
];
|
|
3302
|
-
var Buckets = [1, n0, _Bu,
|
|
3303
|
-
0, [() => Bucket$,
|
|
3304
|
-
{ [_xN]: _B }]
|
|
3305
|
-
];
|
|
3306
|
-
var ChecksumAlgorithmList = 64 | 0;
|
|
3307
|
-
var CommonPrefixList = [1, n0, _CPL,
|
|
3308
|
-
0, () => CommonPrefix$
|
|
3309
|
-
];
|
|
3310
|
-
var CompletedPartList = [1, n0, _CPLo,
|
|
3311
|
-
0, () => CompletedPart$
|
|
3312
|
-
];
|
|
3313
|
-
var CORSRules = [1, n0, _CORSR,
|
|
3314
|
-
0, [() => CORSRule$,
|
|
3315
|
-
0]
|
|
3316
|
-
];
|
|
3317
|
-
var DeletedObjects = [1, n0, _DOe,
|
|
3318
|
-
0, () => DeletedObject$
|
|
3319
|
-
];
|
|
3320
|
-
var DeleteMarkers = [1, n0, _DMe,
|
|
3321
|
-
0, () => DeleteMarkerEntry$
|
|
3322
|
-
];
|
|
3323
|
-
var EncryptionTypeList = [1, n0, _ETL,
|
|
3324
|
-
0, [0,
|
|
3325
|
-
{ [_xN]: _ETn }]
|
|
3326
|
-
];
|
|
3327
|
-
var Errors = [1, n0, _Er,
|
|
3328
|
-
0, () => _Error$
|
|
3329
|
-
];
|
|
3330
|
-
var EventList = 64 | 0;
|
|
3331
|
-
var ExposeHeaders = 64 | 0;
|
|
3332
|
-
var FilterRuleList = [1, n0, _FRL,
|
|
3333
|
-
0, () => FilterRule$
|
|
3334
|
-
];
|
|
3335
|
-
var Grants = [1, n0, _G,
|
|
3336
|
-
0, [() => Grant$,
|
|
3337
|
-
{ [_xN]: _Gr }]
|
|
3338
|
-
];
|
|
3339
|
-
var IntelligentTieringConfigurationList = [1, n0, _ITCL,
|
|
3340
|
-
0, [() => IntelligentTieringConfiguration$,
|
|
3341
|
-
0]
|
|
3342
|
-
];
|
|
3343
|
-
var InventoryConfigurationList = [1, n0, _ICL,
|
|
3344
|
-
0, [() => InventoryConfiguration$,
|
|
3345
|
-
0]
|
|
3346
|
-
];
|
|
3347
|
-
var InventoryOptionalFields = [1, n0, _IOF,
|
|
3348
|
-
0, [0,
|
|
3349
|
-
{ [_xN]: _Fi }]
|
|
3350
|
-
];
|
|
3351
|
-
var LambdaFunctionConfigurationList = [1, n0, _LFCL,
|
|
3352
|
-
0, [() => LambdaFunctionConfiguration$,
|
|
3353
|
-
0]
|
|
3354
|
-
];
|
|
3355
|
-
var LifecycleRules = [1, n0, _LRi,
|
|
3356
|
-
0, [() => LifecycleRule$,
|
|
3357
|
-
0]
|
|
3358
|
-
];
|
|
3359
|
-
var MetricsConfigurationList = [1, n0, _MCL,
|
|
3360
|
-
0, [() => MetricsConfiguration$,
|
|
3361
|
-
0]
|
|
3362
|
-
];
|
|
3363
|
-
var MultipartUploadList = [1, n0, _MUL,
|
|
3364
|
-
0, () => MultipartUpload$
|
|
3365
|
-
];
|
|
3366
|
-
var NoncurrentVersionTransitionList = [1, n0, _NVTL,
|
|
3367
|
-
0, () => NoncurrentVersionTransition$
|
|
3368
|
-
];
|
|
3369
|
-
var ObjectAttributesList = 64 | 0;
|
|
3370
|
-
var ObjectIdentifierList = [1, n0, _OIL,
|
|
3371
|
-
0, () => ObjectIdentifier$
|
|
3372
|
-
];
|
|
3373
|
-
var ObjectList = [1, n0, _OLb,
|
|
3374
|
-
0, [() => _Object$,
|
|
3375
|
-
0]
|
|
3376
|
-
];
|
|
3377
|
-
var ObjectVersionList = [1, n0, _OVL,
|
|
3378
|
-
0, [() => ObjectVersion$,
|
|
3379
|
-
0]
|
|
3380
|
-
];
|
|
3381
|
-
var OptionalObjectAttributesList = 64 | 0;
|
|
3382
|
-
var OwnershipControlsRules = [1, n0, _OCRw,
|
|
3383
|
-
0, () => OwnershipControlsRule$
|
|
3384
|
-
];
|
|
3385
|
-
var Parts = [1, n0, _Pa,
|
|
3386
|
-
0, () => Part$
|
|
3387
|
-
];
|
|
3388
|
-
var PartsList = [1, n0, _PL,
|
|
3389
|
-
0, () => ObjectPart$
|
|
3390
|
-
];
|
|
3391
|
-
var QueueConfigurationList = [1, n0, _QCL,
|
|
3392
|
-
0, [() => QueueConfiguration$,
|
|
3393
|
-
0]
|
|
3394
|
-
];
|
|
3395
|
-
var ReplicationRules = [1, n0, _RRep,
|
|
3396
|
-
0, [() => ReplicationRule$,
|
|
3397
|
-
0]
|
|
3398
|
-
];
|
|
3399
|
-
var RoutingRules = [1, n0, _RR,
|
|
3400
|
-
0, [() => RoutingRule$,
|
|
3401
|
-
{ [_xN]: _RRo }]
|
|
3402
|
-
];
|
|
3403
|
-
var ServerSideEncryptionRules = [1, n0, _SSERe,
|
|
3404
|
-
0, [() => ServerSideEncryptionRule$,
|
|
3405
|
-
0]
|
|
3406
|
-
];
|
|
3407
|
-
var TagSet = [1, n0, _TSa,
|
|
3408
|
-
0, [() => Tag$,
|
|
3409
|
-
{ [_xN]: _Ta }]
|
|
3410
|
-
];
|
|
3411
|
-
var TargetGrants = [1, n0, _TG,
|
|
3412
|
-
0, [() => TargetGrant$,
|
|
3413
|
-
{ [_xN]: _Gr }]
|
|
3414
|
-
];
|
|
3415
|
-
var TieringList = [1, n0, _TL,
|
|
3416
|
-
0, () => Tiering$
|
|
3417
|
-
];
|
|
3418
|
-
var TopicConfigurationList = [1, n0, _TCL,
|
|
3419
|
-
0, [() => TopicConfiguration$,
|
|
3420
|
-
0]
|
|
3421
|
-
];
|
|
3422
|
-
var TransitionList = [1, n0, _TLr,
|
|
3423
|
-
0, () => Transition$
|
|
3424
|
-
];
|
|
3425
|
-
var UserMetadata = [1, n0, _UM,
|
|
3426
|
-
0, [() => MetadataEntry$,
|
|
3427
|
-
{ [_xN]: _ME }]
|
|
3428
|
-
];
|
|
3429
|
-
var Metadata = 128 | 0;
|
|
3430
|
-
const AnalyticsFilter$ = [4, n0, _AF,
|
|
3431
|
-
0,
|
|
3432
|
-
[_P, _Ta, _An],
|
|
3433
|
-
[0, () => Tag$, [() => AnalyticsAndOperator$, 0]]
|
|
3434
|
-
];
|
|
3435
|
-
exports.AnalyticsFilter$ = AnalyticsFilter$;
|
|
3436
|
-
const MetricsFilter$ = [4, n0, _MF,
|
|
3437
|
-
0,
|
|
3438
|
-
[_P, _Ta, _APAc, _An],
|
|
3439
|
-
[0, () => Tag$, 0, [() => MetricsAndOperator$, 0]]
|
|
3440
|
-
];
|
|
3441
|
-
exports.MetricsFilter$ = MetricsFilter$;
|
|
3442
|
-
const ObjectEncryption$ = [4, n0, _OE,
|
|
3443
|
-
0,
|
|
3444
|
-
[_SSEKMS],
|
|
3445
|
-
[[() => SSEKMSEncryption$, { [_xN]: _SK }]]
|
|
3446
|
-
];
|
|
3447
|
-
exports.ObjectEncryption$ = ObjectEncryption$;
|
|
3448
|
-
const SelectObjectContentEventStream$ = [4, n0, _SOCES,
|
|
3449
|
-
{ [_st]: 1 },
|
|
3450
|
-
[_Rec, _Sta, _Pr, _Cont, _End],
|
|
3451
|
-
[[() => RecordsEvent$, 0], [() => StatsEvent$, 0], [() => ProgressEvent$, 0], () => ContinuationEvent$, () => EndEvent$]
|
|
3452
|
-
];
|
|
3453
|
-
exports.SelectObjectContentEventStream$ = SelectObjectContentEventStream$;
|
|
3454
|
-
exports.AbortMultipartUpload$ = [9, n0, _AMU,
|
|
3455
|
-
{ [_h]: ["DELETE", "/{Key+}?x-id=AbortMultipartUpload", 204] }, () => AbortMultipartUploadRequest$, () => AbortMultipartUploadOutput$
|
|
3456
|
-
];
|
|
3457
|
-
exports.CompleteMultipartUpload$ = [9, n0, _CMUo,
|
|
3458
|
-
{ [_h]: ["POST", "/{Key+}", 200] }, () => CompleteMultipartUploadRequest$, () => CompleteMultipartUploadOutput$
|
|
3459
|
-
];
|
|
3460
|
-
exports.CopyObject$ = [9, n0, _CO,
|
|
3461
|
-
{ [_h]: ["PUT", "/{Key+}?x-id=CopyObject", 200] }, () => CopyObjectRequest$, () => CopyObjectOutput$
|
|
3462
|
-
];
|
|
3463
|
-
exports.CreateBucket$ = [9, n0, _CB,
|
|
3464
|
-
{ [_h]: ["PUT", "/", 200] }, () => CreateBucketRequest$, () => CreateBucketOutput$
|
|
3465
|
-
];
|
|
3466
|
-
exports.CreateBucketMetadataConfiguration$ = [9, n0, _CBMC,
|
|
3467
|
-
{ [_hC]: "-", [_h]: ["POST", "/?metadataConfiguration", 200] }, () => CreateBucketMetadataConfigurationRequest$, () => __Unit
|
|
3468
|
-
];
|
|
3469
|
-
exports.CreateBucketMetadataTableConfiguration$ = [9, n0, _CBMTC,
|
|
3470
|
-
{ [_hC]: "-", [_h]: ["POST", "/?metadataTable", 200] }, () => CreateBucketMetadataTableConfigurationRequest$, () => __Unit
|
|
3471
|
-
];
|
|
3472
|
-
exports.CreateMultipartUpload$ = [9, n0, _CMUr,
|
|
3473
|
-
{ [_h]: ["POST", "/{Key+}?uploads", 200] }, () => CreateMultipartUploadRequest$, () => CreateMultipartUploadOutput$
|
|
3474
|
-
];
|
|
3475
|
-
exports.CreateSession$ = [9, n0, _CSr,
|
|
3476
|
-
{ [_h]: ["GET", "/?session", 200] }, () => CreateSessionRequest$, () => CreateSessionOutput$
|
|
3477
|
-
];
|
|
3478
|
-
exports.DeleteBucket$ = [9, n0, _DB,
|
|
3479
|
-
{ [_h]: ["DELETE", "/", 204] }, () => DeleteBucketRequest$, () => __Unit
|
|
3480
|
-
];
|
|
3481
|
-
exports.DeleteBucketAnalyticsConfiguration$ = [9, n0, _DBAC,
|
|
3482
|
-
{ [_h]: ["DELETE", "/?analytics", 204] }, () => DeleteBucketAnalyticsConfigurationRequest$, () => __Unit
|
|
3483
|
-
];
|
|
3484
|
-
exports.DeleteBucketCors$ = [9, n0, _DBC,
|
|
3485
|
-
{ [_h]: ["DELETE", "/?cors", 204] }, () => DeleteBucketCorsRequest$, () => __Unit
|
|
3486
|
-
];
|
|
3487
|
-
exports.DeleteBucketEncryption$ = [9, n0, _DBE,
|
|
3488
|
-
{ [_h]: ["DELETE", "/?encryption", 204] }, () => DeleteBucketEncryptionRequest$, () => __Unit
|
|
3489
|
-
];
|
|
3490
|
-
exports.DeleteBucketIntelligentTieringConfiguration$ = [9, n0, _DBITC,
|
|
3491
|
-
{ [_h]: ["DELETE", "/?intelligent-tiering", 204] }, () => DeleteBucketIntelligentTieringConfigurationRequest$, () => __Unit
|
|
3492
|
-
];
|
|
3493
|
-
exports.DeleteBucketInventoryConfiguration$ = [9, n0, _DBIC,
|
|
3494
|
-
{ [_h]: ["DELETE", "/?inventory", 204] }, () => DeleteBucketInventoryConfigurationRequest$, () => __Unit
|
|
3495
|
-
];
|
|
3496
|
-
exports.DeleteBucketLifecycle$ = [9, n0, _DBL,
|
|
3497
|
-
{ [_h]: ["DELETE", "/?lifecycle", 204] }, () => DeleteBucketLifecycleRequest$, () => __Unit
|
|
3498
|
-
];
|
|
3499
|
-
exports.DeleteBucketMetadataConfiguration$ = [9, n0, _DBMC,
|
|
3500
|
-
{ [_h]: ["DELETE", "/?metadataConfiguration", 204] }, () => DeleteBucketMetadataConfigurationRequest$, () => __Unit
|
|
3501
|
-
];
|
|
3502
|
-
exports.DeleteBucketMetadataTableConfiguration$ = [9, n0, _DBMTC,
|
|
3503
|
-
{ [_h]: ["DELETE", "/?metadataTable", 204] }, () => DeleteBucketMetadataTableConfigurationRequest$, () => __Unit
|
|
3504
|
-
];
|
|
3505
|
-
exports.DeleteBucketMetricsConfiguration$ = [9, n0, _DBMCe,
|
|
3506
|
-
{ [_h]: ["DELETE", "/?metrics", 204] }, () => DeleteBucketMetricsConfigurationRequest$, () => __Unit
|
|
3507
|
-
];
|
|
3508
|
-
exports.DeleteBucketOwnershipControls$ = [9, n0, _DBOC,
|
|
3509
|
-
{ [_h]: ["DELETE", "/?ownershipControls", 204] }, () => DeleteBucketOwnershipControlsRequest$, () => __Unit
|
|
3510
|
-
];
|
|
3511
|
-
exports.DeleteBucketPolicy$ = [9, n0, _DBP,
|
|
3512
|
-
{ [_h]: ["DELETE", "/?policy", 204] }, () => DeleteBucketPolicyRequest$, () => __Unit
|
|
3513
|
-
];
|
|
3514
|
-
exports.DeleteBucketReplication$ = [9, n0, _DBRe,
|
|
3515
|
-
{ [_h]: ["DELETE", "/?replication", 204] }, () => DeleteBucketReplicationRequest$, () => __Unit
|
|
3516
|
-
];
|
|
3517
|
-
exports.DeleteBucketTagging$ = [9, n0, _DBT,
|
|
3518
|
-
{ [_h]: ["DELETE", "/?tagging", 204] }, () => DeleteBucketTaggingRequest$, () => __Unit
|
|
3519
|
-
];
|
|
3520
|
-
exports.DeleteBucketWebsite$ = [9, n0, _DBW,
|
|
3521
|
-
{ [_h]: ["DELETE", "/?website", 204] }, () => DeleteBucketWebsiteRequest$, () => __Unit
|
|
3522
|
-
];
|
|
3523
|
-
exports.DeleteObject$ = [9, n0, _DOel,
|
|
3524
|
-
{ [_h]: ["DELETE", "/{Key+}?x-id=DeleteObject", 204] }, () => DeleteObjectRequest$, () => DeleteObjectOutput$
|
|
3525
|
-
];
|
|
3526
|
-
exports.DeleteObjectAnnotation$ = [9, n0, _DOA,
|
|
3527
|
-
{ [_h]: ["DELETE", "/{Key+}?annotation", 204] }, () => DeleteObjectAnnotationRequest$, () => DeleteObjectAnnotationOutput$
|
|
3528
|
-
];
|
|
3529
|
-
exports.DeleteObjects$ = [9, n0, _DOele,
|
|
3530
|
-
{ [_hC]: "-", [_h]: ["POST", "/?delete", 200] }, () => DeleteObjectsRequest$, () => DeleteObjectsOutput$
|
|
3531
|
-
];
|
|
3532
|
-
exports.DeleteObjectTagging$ = [9, n0, _DOT,
|
|
3533
|
-
{ [_h]: ["DELETE", "/{Key+}?tagging", 204] }, () => DeleteObjectTaggingRequest$, () => DeleteObjectTaggingOutput$
|
|
3534
|
-
];
|
|
3535
|
-
exports.DeletePublicAccessBlock$ = [9, n0, _DPAB,
|
|
3536
|
-
{ [_h]: ["DELETE", "/?publicAccessBlock", 204] }, () => DeletePublicAccessBlockRequest$, () => __Unit
|
|
3537
|
-
];
|
|
3538
|
-
exports.GetBucketAbac$ = [9, n0, _GBA,
|
|
3539
|
-
{ [_h]: ["GET", "/?abac", 200] }, () => GetBucketAbacRequest$, () => GetBucketAbacOutput$
|
|
3540
|
-
];
|
|
3541
|
-
exports.GetBucketAccelerateConfiguration$ = [9, n0, _GBAC,
|
|
3542
|
-
{ [_h]: ["GET", "/?accelerate", 200] }, () => GetBucketAccelerateConfigurationRequest$, () => GetBucketAccelerateConfigurationOutput$
|
|
3543
|
-
];
|
|
3544
|
-
exports.GetBucketAcl$ = [9, n0, _GBAe,
|
|
3545
|
-
{ [_h]: ["GET", "/?acl", 200] }, () => GetBucketAclRequest$, () => GetBucketAclOutput$
|
|
3546
|
-
];
|
|
3547
|
-
exports.GetBucketAnalyticsConfiguration$ = [9, n0, _GBACe,
|
|
3548
|
-
{ [_h]: ["GET", "/?analytics&x-id=GetBucketAnalyticsConfiguration", 200] }, () => GetBucketAnalyticsConfigurationRequest$, () => GetBucketAnalyticsConfigurationOutput$
|
|
3549
|
-
];
|
|
3550
|
-
exports.GetBucketCors$ = [9, n0, _GBC,
|
|
3551
|
-
{ [_h]: ["GET", "/?cors", 200] }, () => GetBucketCorsRequest$, () => GetBucketCorsOutput$
|
|
3552
|
-
];
|
|
3553
|
-
exports.GetBucketEncryption$ = [9, n0, _GBE,
|
|
3554
|
-
{ [_h]: ["GET", "/?encryption", 200] }, () => GetBucketEncryptionRequest$, () => GetBucketEncryptionOutput$
|
|
3555
|
-
];
|
|
3556
|
-
exports.GetBucketIntelligentTieringConfiguration$ = [9, n0, _GBITC,
|
|
3557
|
-
{ [_h]: ["GET", "/?intelligent-tiering&x-id=GetBucketIntelligentTieringConfiguration", 200] }, () => GetBucketIntelligentTieringConfigurationRequest$, () => GetBucketIntelligentTieringConfigurationOutput$
|
|
3558
|
-
];
|
|
3559
|
-
exports.GetBucketInventoryConfiguration$ = [9, n0, _GBIC,
|
|
3560
|
-
{ [_h]: ["GET", "/?inventory&x-id=GetBucketInventoryConfiguration", 200] }, () => GetBucketInventoryConfigurationRequest$, () => GetBucketInventoryConfigurationOutput$
|
|
3561
|
-
];
|
|
3562
|
-
exports.GetBucketLifecycleConfiguration$ = [9, n0, _GBLC,
|
|
3563
|
-
{ [_h]: ["GET", "/?lifecycle", 200] }, () => GetBucketLifecycleConfigurationRequest$, () => GetBucketLifecycleConfigurationOutput$
|
|
3564
|
-
];
|
|
3565
|
-
exports.GetBucketLocation$ = [9, n0, _GBL,
|
|
3566
|
-
{ [_h]: ["GET", "/?location", 200] }, () => GetBucketLocationRequest$, () => GetBucketLocationOutput$
|
|
3567
|
-
];
|
|
3568
|
-
exports.GetBucketLogging$ = [9, n0, _GBLe,
|
|
3569
|
-
{ [_h]: ["GET", "/?logging", 200] }, () => GetBucketLoggingRequest$, () => GetBucketLoggingOutput$
|
|
3570
|
-
];
|
|
3571
|
-
exports.GetBucketMetadataConfiguration$ = [9, n0, _GBMC,
|
|
3572
|
-
{ [_h]: ["GET", "/?metadataConfiguration", 200] }, () => GetBucketMetadataConfigurationRequest$, () => GetBucketMetadataConfigurationOutput$
|
|
3573
|
-
];
|
|
3574
|
-
exports.GetBucketMetadataTableConfiguration$ = [9, n0, _GBMTC,
|
|
3575
|
-
{ [_h]: ["GET", "/?metadataTable", 200] }, () => GetBucketMetadataTableConfigurationRequest$, () => GetBucketMetadataTableConfigurationOutput$
|
|
3576
|
-
];
|
|
3577
|
-
exports.GetBucketMetricsConfiguration$ = [9, n0, _GBMCe,
|
|
3578
|
-
{ [_h]: ["GET", "/?metrics&x-id=GetBucketMetricsConfiguration", 200] }, () => GetBucketMetricsConfigurationRequest$, () => GetBucketMetricsConfigurationOutput$
|
|
3579
|
-
];
|
|
3580
|
-
exports.GetBucketNotificationConfiguration$ = [9, n0, _GBNC,
|
|
3581
|
-
{ [_h]: ["GET", "/?notification", 200] }, () => GetBucketNotificationConfigurationRequest$, () => NotificationConfiguration$
|
|
3582
|
-
];
|
|
3583
|
-
exports.GetBucketOwnershipControls$ = [9, n0, _GBOC,
|
|
3584
|
-
{ [_h]: ["GET", "/?ownershipControls", 200] }, () => GetBucketOwnershipControlsRequest$, () => GetBucketOwnershipControlsOutput$
|
|
3585
|
-
];
|
|
3586
|
-
exports.GetBucketPolicy$ = [9, n0, _GBP,
|
|
3587
|
-
{ [_h]: ["GET", "/?policy", 200] }, () => GetBucketPolicyRequest$, () => GetBucketPolicyOutput$
|
|
3588
|
-
];
|
|
3589
|
-
exports.GetBucketPolicyStatus$ = [9, n0, _GBPS,
|
|
3590
|
-
{ [_h]: ["GET", "/?policyStatus", 200] }, () => GetBucketPolicyStatusRequest$, () => GetBucketPolicyStatusOutput$
|
|
3591
|
-
];
|
|
3592
|
-
exports.GetBucketReplication$ = [9, n0, _GBR,
|
|
3593
|
-
{ [_h]: ["GET", "/?replication", 200] }, () => GetBucketReplicationRequest$, () => GetBucketReplicationOutput$
|
|
3594
|
-
];
|
|
3595
|
-
exports.GetBucketRequestPayment$ = [9, n0, _GBRP,
|
|
3596
|
-
{ [_h]: ["GET", "/?requestPayment", 200] }, () => GetBucketRequestPaymentRequest$, () => GetBucketRequestPaymentOutput$
|
|
3597
|
-
];
|
|
3598
|
-
exports.GetBucketTagging$ = [9, n0, _GBT,
|
|
3599
|
-
{ [_h]: ["GET", "/?tagging", 200] }, () => GetBucketTaggingRequest$, () => GetBucketTaggingOutput$
|
|
3600
|
-
];
|
|
3601
|
-
exports.GetBucketVersioning$ = [9, n0, _GBV,
|
|
3602
|
-
{ [_h]: ["GET", "/?versioning", 200] }, () => GetBucketVersioningRequest$, () => GetBucketVersioningOutput$
|
|
3603
|
-
];
|
|
3604
|
-
exports.GetBucketWebsite$ = [9, n0, _GBW,
|
|
3605
|
-
{ [_h]: ["GET", "/?website", 200] }, () => GetBucketWebsiteRequest$, () => GetBucketWebsiteOutput$
|
|
3606
|
-
];
|
|
3607
|
-
exports.GetObject$ = [9, n0, _GO,
|
|
3608
|
-
{ [_hC]: "-", [_h]: ["GET", "/{Key+}?x-id=GetObject", 200] }, () => GetObjectRequest$, () => GetObjectOutput$
|
|
3609
|
-
];
|
|
3610
|
-
exports.GetObjectAcl$ = [9, n0, _GOA,
|
|
3611
|
-
{ [_h]: ["GET", "/{Key+}?acl", 200] }, () => GetObjectAclRequest$, () => GetObjectAclOutput$
|
|
3612
|
-
];
|
|
3613
|
-
exports.GetObjectAnnotation$ = [9, n0, _GOAe,
|
|
3614
|
-
{ [_hC]: "-", [_h]: ["GET", "/{Key+}?annotation&x-id=GetObjectAnnotation", 200] }, () => GetObjectAnnotationRequest$, () => GetObjectAnnotationOutput$
|
|
3615
|
-
];
|
|
3616
|
-
exports.GetObjectAttributes$ = [9, n0, _GOAet,
|
|
3617
|
-
{ [_h]: ["GET", "/{Key+}?attributes", 200] }, () => GetObjectAttributesRequest$, () => GetObjectAttributesOutput$
|
|
3618
|
-
];
|
|
3619
|
-
exports.GetObjectLegalHold$ = [9, n0, _GOLH,
|
|
3620
|
-
{ [_h]: ["GET", "/{Key+}?legal-hold", 200] }, () => GetObjectLegalHoldRequest$, () => GetObjectLegalHoldOutput$
|
|
3621
|
-
];
|
|
3622
|
-
exports.GetObjectLockConfiguration$ = [9, n0, _GOLC,
|
|
3623
|
-
{ [_h]: ["GET", "/?object-lock", 200] }, () => GetObjectLockConfigurationRequest$, () => GetObjectLockConfigurationOutput$
|
|
3624
|
-
];
|
|
3625
|
-
exports.GetObjectRetention$ = [9, n0, _GORe,
|
|
3626
|
-
{ [_h]: ["GET", "/{Key+}?retention", 200] }, () => GetObjectRetentionRequest$, () => GetObjectRetentionOutput$
|
|
3627
|
-
];
|
|
3628
|
-
exports.GetObjectTagging$ = [9, n0, _GOT,
|
|
3629
|
-
{ [_h]: ["GET", "/{Key+}?tagging", 200] }, () => GetObjectTaggingRequest$, () => GetObjectTaggingOutput$
|
|
3630
|
-
];
|
|
3631
|
-
exports.GetObjectTorrent$ = [9, n0, _GOTe,
|
|
3632
|
-
{ [_h]: ["GET", "/{Key+}?torrent", 200] }, () => GetObjectTorrentRequest$, () => GetObjectTorrentOutput$
|
|
3633
|
-
];
|
|
3634
|
-
exports.GetPublicAccessBlock$ = [9, n0, _GPAB,
|
|
3635
|
-
{ [_h]: ["GET", "/?publicAccessBlock", 200] }, () => GetPublicAccessBlockRequest$, () => GetPublicAccessBlockOutput$
|
|
3636
|
-
];
|
|
3637
|
-
exports.HeadBucket$ = [9, n0, _HB,
|
|
3638
|
-
{ [_h]: ["HEAD", "/", 200] }, () => HeadBucketRequest$, () => HeadBucketOutput$
|
|
3639
|
-
];
|
|
3640
|
-
exports.HeadObject$ = [9, n0, _HO,
|
|
3641
|
-
{ [_h]: ["HEAD", "/{Key+}", 200] }, () => HeadObjectRequest$, () => HeadObjectOutput$
|
|
3642
|
-
];
|
|
3643
|
-
exports.ListBucketAnalyticsConfigurations$ = [9, n0, _LBAC,
|
|
3644
|
-
{ [_h]: ["GET", "/?analytics&x-id=ListBucketAnalyticsConfigurations", 200] }, () => ListBucketAnalyticsConfigurationsRequest$, () => ListBucketAnalyticsConfigurationsOutput$
|
|
3645
|
-
];
|
|
3646
|
-
exports.ListBucketIntelligentTieringConfigurations$ = [9, n0, _LBITC,
|
|
3647
|
-
{ [_h]: ["GET", "/?intelligent-tiering&x-id=ListBucketIntelligentTieringConfigurations", 200] }, () => ListBucketIntelligentTieringConfigurationsRequest$, () => ListBucketIntelligentTieringConfigurationsOutput$
|
|
3648
|
-
];
|
|
3649
|
-
exports.ListBucketInventoryConfigurations$ = [9, n0, _LBIC,
|
|
3650
|
-
{ [_h]: ["GET", "/?inventory&x-id=ListBucketInventoryConfigurations", 200] }, () => ListBucketInventoryConfigurationsRequest$, () => ListBucketInventoryConfigurationsOutput$
|
|
3651
|
-
];
|
|
3652
|
-
exports.ListBucketMetricsConfigurations$ = [9, n0, _LBMC,
|
|
3653
|
-
{ [_h]: ["GET", "/?metrics&x-id=ListBucketMetricsConfigurations", 200] }, () => ListBucketMetricsConfigurationsRequest$, () => ListBucketMetricsConfigurationsOutput$
|
|
3654
|
-
];
|
|
3655
|
-
exports.ListBuckets$ = [9, n0, _LB,
|
|
3656
|
-
{ [_h]: ["GET", "/?x-id=ListBuckets", 200] }, () => ListBucketsRequest$, () => ListBucketsOutput$
|
|
3657
|
-
];
|
|
3658
|
-
exports.ListDirectoryBuckets$ = [9, n0, _LDB,
|
|
3659
|
-
{ [_h]: ["GET", "/?x-id=ListDirectoryBuckets", 200] }, () => ListDirectoryBucketsRequest$, () => ListDirectoryBucketsOutput$
|
|
3660
|
-
];
|
|
3661
|
-
exports.ListMultipartUploads$ = [9, n0, _LMU,
|
|
3662
|
-
{ [_h]: ["GET", "/?uploads", 200] }, () => ListMultipartUploadsRequest$, () => ListMultipartUploadsOutput$
|
|
3663
|
-
];
|
|
3664
|
-
exports.ListObjectAnnotations$ = [9, n0, _LOA,
|
|
3665
|
-
{ [_h]: ["GET", "/{Key+}?annotation&x-id=ListObjectAnnotations", 200] }, () => ListObjectAnnotationsRequest$, () => ListObjectAnnotationsOutput$
|
|
3666
|
-
];
|
|
3667
|
-
exports.ListObjects$ = [9, n0, _LO,
|
|
3668
|
-
{ [_h]: ["GET", "/", 200] }, () => ListObjectsRequest$, () => ListObjectsOutput$
|
|
3669
|
-
];
|
|
3670
|
-
exports.ListObjectsV2$ = [9, n0, _LOV,
|
|
3671
|
-
{ [_h]: ["GET", "/?list-type=2", 200] }, () => ListObjectsV2Request$, () => ListObjectsV2Output$
|
|
3672
|
-
];
|
|
3673
|
-
exports.ListObjectVersions$ = [9, n0, _LOVi,
|
|
3674
|
-
{ [_h]: ["GET", "/?versions", 200] }, () => ListObjectVersionsRequest$, () => ListObjectVersionsOutput$
|
|
3675
|
-
];
|
|
3676
|
-
exports.ListParts$ = [9, n0, _LP,
|
|
3677
|
-
{ [_h]: ["GET", "/{Key+}?x-id=ListParts", 200] }, () => ListPartsRequest$, () => ListPartsOutput$
|
|
3678
|
-
];
|
|
3679
|
-
exports.PutBucketAbac$ = [9, n0, _PBA,
|
|
3680
|
-
{ [_hC]: "-", [_h]: ["PUT", "/?abac", 200] }, () => PutBucketAbacRequest$, () => __Unit
|
|
3681
|
-
];
|
|
3682
|
-
exports.PutBucketAccelerateConfiguration$ = [9, n0, _PBAC,
|
|
3683
|
-
{ [_hC]: "-", [_h]: ["PUT", "/?accelerate", 200] }, () => PutBucketAccelerateConfigurationRequest$, () => __Unit
|
|
3684
|
-
];
|
|
3685
|
-
exports.PutBucketAcl$ = [9, n0, _PBAu,
|
|
3686
|
-
{ [_hC]: "-", [_h]: ["PUT", "/?acl", 200] }, () => PutBucketAclRequest$, () => __Unit
|
|
3687
|
-
];
|
|
3688
|
-
exports.PutBucketAnalyticsConfiguration$ = [9, n0, _PBACu,
|
|
3689
|
-
{ [_h]: ["PUT", "/?analytics", 200] }, () => PutBucketAnalyticsConfigurationRequest$, () => __Unit
|
|
3690
|
-
];
|
|
3691
|
-
exports.PutBucketCors$ = [9, n0, _PBC,
|
|
3692
|
-
{ [_hC]: "-", [_h]: ["PUT", "/?cors", 200] }, () => PutBucketCorsRequest$, () => __Unit
|
|
3693
|
-
];
|
|
3694
|
-
exports.PutBucketEncryption$ = [9, n0, _PBE,
|
|
3695
|
-
{ [_hC]: "-", [_h]: ["PUT", "/?encryption", 200] }, () => PutBucketEncryptionRequest$, () => __Unit
|
|
3696
|
-
];
|
|
3697
|
-
exports.PutBucketIntelligentTieringConfiguration$ = [9, n0, _PBITC,
|
|
3698
|
-
{ [_h]: ["PUT", "/?intelligent-tiering", 200] }, () => PutBucketIntelligentTieringConfigurationRequest$, () => __Unit
|
|
3699
|
-
];
|
|
3700
|
-
exports.PutBucketInventoryConfiguration$ = [9, n0, _PBIC,
|
|
3701
|
-
{ [_h]: ["PUT", "/?inventory", 200] }, () => PutBucketInventoryConfigurationRequest$, () => __Unit
|
|
3702
|
-
];
|
|
3703
|
-
exports.PutBucketLifecycleConfiguration$ = [9, n0, _PBLC,
|
|
3704
|
-
{ [_hC]: "-", [_h]: ["PUT", "/?lifecycle", 200] }, () => PutBucketLifecycleConfigurationRequest$, () => PutBucketLifecycleConfigurationOutput$
|
|
3705
|
-
];
|
|
3706
|
-
exports.PutBucketLogging$ = [9, n0, _PBL,
|
|
3707
|
-
{ [_hC]: "-", [_h]: ["PUT", "/?logging", 200] }, () => PutBucketLoggingRequest$, () => __Unit
|
|
3708
|
-
];
|
|
3709
|
-
exports.PutBucketMetricsConfiguration$ = [9, n0, _PBMC,
|
|
3710
|
-
{ [_h]: ["PUT", "/?metrics", 200] }, () => PutBucketMetricsConfigurationRequest$, () => __Unit
|
|
3711
|
-
];
|
|
3712
|
-
exports.PutBucketNotificationConfiguration$ = [9, n0, _PBNC,
|
|
3713
|
-
{ [_h]: ["PUT", "/?notification", 200] }, () => PutBucketNotificationConfigurationRequest$, () => __Unit
|
|
3714
|
-
];
|
|
3715
|
-
exports.PutBucketOwnershipControls$ = [9, n0, _PBOC,
|
|
3716
|
-
{ [_hC]: "-", [_h]: ["PUT", "/?ownershipControls", 200] }, () => PutBucketOwnershipControlsRequest$, () => __Unit
|
|
3717
|
-
];
|
|
3718
|
-
exports.PutBucketPolicy$ = [9, n0, _PBP,
|
|
3719
|
-
{ [_hC]: "-", [_h]: ["PUT", "/?policy", 200] }, () => PutBucketPolicyRequest$, () => __Unit
|
|
3720
|
-
];
|
|
3721
|
-
exports.PutBucketReplication$ = [9, n0, _PBR,
|
|
3722
|
-
{ [_hC]: "-", [_h]: ["PUT", "/?replication", 200] }, () => PutBucketReplicationRequest$, () => __Unit
|
|
3723
|
-
];
|
|
3724
|
-
exports.PutBucketRequestPayment$ = [9, n0, _PBRP,
|
|
3725
|
-
{ [_hC]: "-", [_h]: ["PUT", "/?requestPayment", 200] }, () => PutBucketRequestPaymentRequest$, () => __Unit
|
|
3726
|
-
];
|
|
3727
|
-
exports.PutBucketTagging$ = [9, n0, _PBT,
|
|
3728
|
-
{ [_hC]: "-", [_h]: ["PUT", "/?tagging", 200] }, () => PutBucketTaggingRequest$, () => __Unit
|
|
3729
|
-
];
|
|
3730
|
-
exports.PutBucketVersioning$ = [9, n0, _PBV,
|
|
3731
|
-
{ [_hC]: "-", [_h]: ["PUT", "/?versioning", 200] }, () => PutBucketVersioningRequest$, () => __Unit
|
|
3732
|
-
];
|
|
3733
|
-
exports.PutBucketWebsite$ = [9, n0, _PBW,
|
|
3734
|
-
{ [_hC]: "-", [_h]: ["PUT", "/?website", 200] }, () => PutBucketWebsiteRequest$, () => __Unit
|
|
3735
|
-
];
|
|
3736
|
-
exports.PutObject$ = [9, n0, _PO,
|
|
3737
|
-
{ [_hC]: "-", [_h]: ["PUT", "/{Key+}?x-id=PutObject", 200] }, () => PutObjectRequest$, () => PutObjectOutput$
|
|
3738
|
-
];
|
|
3739
|
-
exports.PutObjectAcl$ = [9, n0, _POA,
|
|
3740
|
-
{ [_hC]: "-", [_h]: ["PUT", "/{Key+}?acl", 200] }, () => PutObjectAclRequest$, () => PutObjectAclOutput$
|
|
3741
|
-
];
|
|
3742
|
-
exports.PutObjectAnnotation$ = [9, n0, _POAu,
|
|
3743
|
-
{ [_hC]: "-", [_h]: ["PUT", "/{Key+}?annotation", 200] }, () => PutObjectAnnotationRequest$, () => PutObjectAnnotationOutput$
|
|
3744
|
-
];
|
|
3745
|
-
exports.PutObjectLegalHold$ = [9, n0, _POLH,
|
|
3746
|
-
{ [_hC]: "-", [_h]: ["PUT", "/{Key+}?legal-hold", 200] }, () => PutObjectLegalHoldRequest$, () => PutObjectLegalHoldOutput$
|
|
3747
|
-
];
|
|
3748
|
-
exports.PutObjectLockConfiguration$ = [9, n0, _POLC,
|
|
3749
|
-
{ [_hC]: "-", [_h]: ["PUT", "/?object-lock", 200] }, () => PutObjectLockConfigurationRequest$, () => PutObjectLockConfigurationOutput$
|
|
3750
|
-
];
|
|
3751
|
-
exports.PutObjectRetention$ = [9, n0, _PORu,
|
|
3752
|
-
{ [_hC]: "-", [_h]: ["PUT", "/{Key+}?retention", 200] }, () => PutObjectRetentionRequest$, () => PutObjectRetentionOutput$
|
|
3753
|
-
];
|
|
3754
|
-
exports.PutObjectTagging$ = [9, n0, _POT,
|
|
3755
|
-
{ [_hC]: "-", [_h]: ["PUT", "/{Key+}?tagging", 200] }, () => PutObjectTaggingRequest$, () => PutObjectTaggingOutput$
|
|
3756
|
-
];
|
|
3757
|
-
exports.PutPublicAccessBlock$ = [9, n0, _PPAB,
|
|
3758
|
-
{ [_hC]: "-", [_h]: ["PUT", "/?publicAccessBlock", 200] }, () => PutPublicAccessBlockRequest$, () => __Unit
|
|
3759
|
-
];
|
|
3760
|
-
exports.RenameObject$ = [9, n0, _RO,
|
|
3761
|
-
{ [_h]: ["PUT", "/{Key+}?renameObject", 200] }, () => RenameObjectRequest$, () => RenameObjectOutput$
|
|
3762
|
-
];
|
|
3763
|
-
exports.RestoreObject$ = [9, n0, _ROe,
|
|
3764
|
-
{ [_hC]: "-", [_h]: ["POST", "/{Key+}?restore", 200] }, () => RestoreObjectRequest$, () => RestoreObjectOutput$
|
|
3765
|
-
];
|
|
3766
|
-
exports.SelectObjectContent$ = [9, n0, _SOC,
|
|
3767
|
-
{ [_h]: ["POST", "/{Key+}?select&select-type=2", 200] }, () => SelectObjectContentRequest$, () => SelectObjectContentOutput$
|
|
3768
|
-
];
|
|
3769
|
-
exports.UpdateBucketMetadataAnnotationTableConfiguration$ = [9, n0, _UBMATC,
|
|
3770
|
-
{ [_hC]: "-", [_h]: ["PUT", "/?metadataAnnotationTable", 200] }, () => UpdateBucketMetadataAnnotationTableConfigurationRequest$, () => __Unit
|
|
3771
|
-
];
|
|
3772
|
-
exports.UpdateBucketMetadataInventoryTableConfiguration$ = [9, n0, _UBMITC,
|
|
3773
|
-
{ [_hC]: "-", [_h]: ["PUT", "/?metadataInventoryTable", 200] }, () => UpdateBucketMetadataInventoryTableConfigurationRequest$, () => __Unit
|
|
3774
|
-
];
|
|
3775
|
-
exports.UpdateBucketMetadataJournalTableConfiguration$ = [9, n0, _UBMJTC,
|
|
3776
|
-
{ [_hC]: "-", [_h]: ["PUT", "/?metadataJournalTable", 200] }, () => UpdateBucketMetadataJournalTableConfigurationRequest$, () => __Unit
|
|
3777
|
-
];
|
|
3778
|
-
exports.UpdateObjectEncryption$ = [9, n0, _UOE,
|
|
3779
|
-
{ [_hC]: "-", [_h]: ["PUT", "/{Key+}?encryption", 200] }, () => UpdateObjectEncryptionRequest$, () => UpdateObjectEncryptionResponse$
|
|
3780
|
-
];
|
|
3781
|
-
exports.UploadPart$ = [9, n0, _UP,
|
|
3782
|
-
{ [_hC]: "-", [_h]: ["PUT", "/{Key+}?x-id=UploadPart", 200] }, () => UploadPartRequest$, () => UploadPartOutput$
|
|
3783
|
-
];
|
|
3784
|
-
exports.UploadPartCopy$ = [9, n0, _UPC,
|
|
3785
|
-
{ [_h]: ["PUT", "/{Key+}?x-id=UploadPartCopy", 200] }, () => UploadPartCopyRequest$, () => UploadPartCopyOutput$
|
|
3786
|
-
];
|
|
3787
|
-
exports.WriteGetObjectResponse$ = [9, n0, _WGOR,
|
|
3788
|
-
{ [_en]: ["{RequestRoute}."], [_h]: ["POST", "/WriteGetObjectResponse", 200] }, () => WriteGetObjectResponseRequest$, () => __Unit
|
|
3789
|
-
];
|