@cdklabs/cdk-ssm-documents 0.0.66 → 0.0.68
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 +13 -13
- 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/{crc64-nvme/Crc64Nvme.js → submodules/crc/crc64-nvme/Crc64NvmeJs.js} +2 -2
- 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/{flexible-checksums → submodules/flexible-checksums}/selectChecksumAlgorithmFunction.js +4 -10
- 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/{crc64-nvme → submodules/crc/crc64-nvme}/Crc64Nvme.d.ts +3 -6
- 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/{crc64-nvme → submodules/crc/crc64-nvme}/crc64-nvme-crt-container.d.ts +1 -3
- 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/{crc64-nvme → submodules/crc/crc64-nvme}/Crc64Nvme.d.ts +1 -2
- 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 +2357 -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 +77 -7
- 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 +4 -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 +4 -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 +4 -9
- 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 +849 -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 +7 -16
- 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 +92 -4
- 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 +37010 -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 +35 -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 +246 -98
- 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 +5 -11
- 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 +3 -8
- 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 +3 -8
- 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 +3 -8
- 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 +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLaunchTemplateVersionCommand.d.ts +3 -8
- 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 +3 -8
- 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 +3 -8
- 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 +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSecondaryNetworkCommand.d.ts +5 -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 +3 -8
- 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 +3 -8
- 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 +3 -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 +3 -8
- 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 +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceTypesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstancesCommand.d.ts +3 -8
- 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 +3 -8
- 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 +3 -8
- 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 +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeReservedInstancesOfferingsCommand.d.ts +3 -8
- 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 +5 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotInstanceRequestsCommand.d.ts +4 -10
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotPriceHistoryCommand.d.ts +3 -8
- 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 +11 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetAssociatedEnclaveCertificateIamRolesCommand.d.ts +3 -8
- 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 -9
- 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 +3 -8
- 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 +3 -8
- 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 +3 -8
- 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 +3 -8
- 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 +4 -10
- 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 +3 -8
- 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 +3 -8
- 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 +18 -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 +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RequestSpotInstancesCommand.d.ts +3 -8
- 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 +3 -8
- 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 +3 -8
- 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 +91 -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 +213 -52
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_2.d.ts +74 -77
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_3.d.ts +115 -247
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_4.d.ts +248 -543
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_5.d.ts +601 -220
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_6.d.ts +287 -273
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_7.d.ts +374 -219
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_8.d.ts +214 -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 +7 -16
- 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 +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSecondaryNetworkCommand.d.ts +9 -20
- 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 +7 -16
- 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 +8 -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 +7 -16
- 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 +10 -17
- 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 +7 -16
- 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 +47 -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 +38 -14
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_2.d.ts +21 -22
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_3.d.ts +32 -53
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_4.d.ts +54 -72
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_5.d.ts +94 -53
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_6.d.ts +74 -65
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_7.d.ts +89 -48
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_8.d.ts +49 -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 +4534 -1039
- 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 +4 -0
- 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 +24 -11
- 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 +3 -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 +3 -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 +4 -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 +3 -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 +3 -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 +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetDurableExecutionHistoryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetDurableExecutionStateCommand.d.ts +3 -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 +12 -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 +3 -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 +7 -12
- 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 +3 -8
- 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 +3 -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 +3 -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 +3 -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 +3 -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 +3 -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 +3 -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 +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/StopDurableExecutionCommand.d.ts +3 -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 +3 -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 +4 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionConfigurationCommand.d.ts +3 -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 +18 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/models/models_0.d.ts +68 -1
- 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 +2 -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 +6 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/models_0.d.ts +16 -0
- 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 +2 -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/dist-cjs/index.js +9038 -1855
- 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/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/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/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/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/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/index.js +1 -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-types/commandBuilder.d.ts +18 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/AddTagsToResourceCommand.d.ts +3 -8
- 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/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/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 +3 -8
- 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 +3 -8
- 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/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 +3 -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 +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParametersCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetPatchBaselineCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetPatchBaselineForPatchGroupCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetResourcePoliciesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetServiceSettingCommand.d.ts +3 -8
- 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 +3 -8
- 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 +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListNodesSummaryCommand.d.ts +3 -8
- 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 +3 -8
- 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 +3 -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 +3 -8
- 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/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/index.d.ts +1 -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/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/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/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/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 +7 -16
- 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 +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetPatchBaselineForPatchGroupCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetResourcePoliciesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetServiceSettingCommand.d.ts +7 -16
- 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/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/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/index.d.ts +1 -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/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/httpAuthSchemes.d.ts +1 -3
- package/node_modules/@aws-sdk/core/package.json +10 -17
- 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/package.json +5 -5
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.js +172 -1
- package/node_modules/@aws-sdk/credential-provider-http/package.json +8 -10
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +13 -13
- package/node_modules/@aws-sdk/credential-provider-login/package.json +6 -6
- package/node_modules/@aws-sdk/credential-provider-node/package.json +11 -11
- package/node_modules/@aws-sdk/credential-provider-process/package.json +5 -5
- 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/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/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/package.json +6 -6
- 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/xml-parser.browser.js +1 -1
- package/node_modules/@aws-sdk/xml-builder/dist-es/xml-parser.js +233 -43
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/xml-parser.d.ts +1 -1
- package/node_modules/@aws-sdk/xml-builder/dist-types/xml-parser.d.ts +2 -1
- package/node_modules/@aws-sdk/xml-builder/package.json +6 -7
- package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.browser.js +358 -145
- package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.js +462 -142
- package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.native.js +358 -145
- 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/protocols/index.js +5 -2
- package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.browser.js +30 -36
- package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.js +85 -137
- package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.native.js +30 -36
- package/node_modules/@smithy/core/dist-es/submodules/checksum/crc32/Crc32Js.js +30 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/crc32/Crc32Node.js +24 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/index.browser.js +7 -1
- package/node_modules/@smithy/core/dist-es/submodules/checksum/index.js +7 -1
- package/node_modules/@smithy/core/dist-es/submodules/checksum/index.native.js +7 -1
- package/node_modules/@smithy/core/dist-es/submodules/checksum/md5/Md5Js.js +92 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/md5/Md5Node.js +29 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/sha256/Sha256Js.js +179 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/sha256/Sha256Node.js +59 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/sha256/Sha256WebCrypto.js +71 -0
- 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/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/HttpProtocol.js +4 -1
- package/node_modules/@smithy/core/dist-es/submodules/serde/concatBytes.js +15 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/index.browser.js +2 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/index.js +2 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/index.native.js +2 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/checksum/ChecksumStream.js +35 -27
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/headStream.js +2 -1
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/stream-collector.browser.js +12 -38
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/stream-collector.js +18 -33
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/toUint8Array.browser.js +3 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/toUint8Array.js +3 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/crc32/Crc32Js.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/crc32/Crc32Node.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/index.browser.d.ts +7 -1
- package/node_modules/@smithy/core/dist-types/submodules/checksum/index.d.ts +7 -1
- package/node_modules/@smithy/core/dist-types/submodules/checksum/index.native.d.ts +7 -1
- package/node_modules/@smithy/core/dist-types/submodules/checksum/md5/Md5Js.d.ts +19 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/md5/Md5Node.d.ts +17 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/sha256/Sha256Js.d.ts +28 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/sha256/Sha256Node.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/sha256/Sha256WebCrypto.d.ts +22 -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/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 +4 -5
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/index.d.ts +4 -5
- 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/serde/concatBytes.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/index.browser.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/index.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/index.native.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/checksum/ChecksumStream.d.ts +29 -12
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/stream-collector.browser.d.ts +8 -2
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/stream-collector.d.ts +4 -1
- package/node_modules/@smithy/core/package.json +5 -5
- package/node_modules/@smithy/credential-provider-imds/package.json +3 -3
- package/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +2 -55
- package/node_modules/@smithy/fetch-http-handler/dist-es/index.js +2 -2
- package/node_modules/@smithy/fetch-http-handler/dist-types/index.d.ts +2 -2
- package/node_modules/@smithy/fetch-http-handler/package.json +4 -4
- package/node_modules/@smithy/middleware-compression/package.json +3 -3
- package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +3 -51
- package/node_modules/@smithy/node-http-handler/dist-es/index.js +3 -3
- package/node_modules/@smithy/node-http-handler/dist-types/index.d.ts +3 -3
- package/node_modules/@smithy/node-http-handler/package.json +4 -4
- package/node_modules/@smithy/signature-v4/package.json +3 -4
- package/node_modules/@smithy/types/dist-es/endpoints/EndpointParameterInstructions.js +1 -0
- package/node_modules/@smithy/types/dist-types/index.d.ts +1 -0
- package/node_modules/@smithy/types/package.json +1 -1
- package/node_modules/immutable/dist/immutable.es.js +161 -15
- package/node_modules/immutable/dist/immutable.js +161 -15
- package/node_modules/immutable/dist/immutable.min.js +33 -32
- package/node_modules/immutable/package.json +1 -1
- package/node_modules/js-yaml/README.md +5 -3
- package/node_modules/js-yaml/dist/js-yaml.js +3009 -2402
- package/node_modules/js-yaml/dist/js-yaml.js.map +1 -1
- package/node_modules/js-yaml/dist/js-yaml.min.js +2 -33
- package/node_modules/js-yaml/dist/js-yaml.min.js.map +1 -1
- package/node_modules/js-yaml/dist/js-yaml.mjs +3073 -2381
- package/node_modules/js-yaml/dist/js-yaml.mjs.map +1 -1
- package/node_modules/js-yaml/lib/loader.js +7 -11
- package/node_modules/js-yaml/lib/type/float.js +1 -1
- package/node_modules/js-yaml/lib/type/int.js +4 -4
- package/node_modules/js-yaml/package.json +10 -4
- package/package.json +12 -12
- 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/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-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/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 -33452
- 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/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-external/nodable_entities.js +0 -333
- 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 -44
- package/node_modules/@aws-sdk/xml-builder/dist-es/xml-external/nodable_entities.js +0 -332
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/xml-external/nodable_entities.d.ts +0 -66
- package/node_modules/@aws-sdk/xml-builder/dist-types/xml-external/nodable_entities.d.ts +0 -65
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/CHANGELOG.md +0 -827
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/LICENSE +0 -21
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/README.md +0 -202
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxbuilder.min.js +0 -2
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxbuilder.min.js.map +0 -1
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxp.cjs +0 -1
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxp.d.cts +0 -770
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxp.min.js +0 -2
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxp.min.js.map +0 -1
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxparser.min.js +0 -2
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxparser.min.js.map +0 -1
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxvalidator.min.js +0 -2
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxvalidator.min.js.map +0 -1
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/package.json +0 -93
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/cli/cli.js +0 -97
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/cli/man.js +0 -17
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/cli/read.js +0 -43
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/fxp.d.ts +0 -739
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/fxp.js +0 -14
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/ignoreAttributes.js +0 -18
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/util.js +0 -61
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/CharsSymbol.js +0 -16
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/EntitiesParser.js +0 -106
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/OptionsBuilder.js +0 -61
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/OutputBuilders/BaseOutputBuilder.js +0 -69
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/OutputBuilders/JsArrBuilder.js +0 -103
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/OutputBuilders/JsMinArrBuilder.js +0 -100
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/OutputBuilders/JsObjBuilder.js +0 -154
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/OutputBuilders/ParserOptionsBuilder.js +0 -94
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/Report.js +0 -0
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/TagPath.js +0 -81
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/TagPathMatcher.js +0 -13
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/XMLParser.js +0 -83
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/Xml2JsParser.js +0 -235
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/XmlPartReader.js +0 -210
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/XmlSpecialTagsReader.js +0 -111
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/inputSource/BufferSource.js +0 -116
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/inputSource/StringSource.js +0 -121
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/valueParsers/EntitiesParser.js +0 -105
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/valueParsers/booleanParser.js +0 -22
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/valueParsers/booleanParserExt.js +0 -19
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/valueParsers/currency.js +0 -38
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/valueParsers/join.js +0 -13
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/valueParsers/number.js +0 -14
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/valueParsers/trim.js +0 -6
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/validator.js +0 -425
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/xmlbuilder/json2xml.js +0 -6
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/xmlparser/DocTypeReader.js +0 -407
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/xmlparser/OptionsBuilder.js +0 -163
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/xmlparser/OrderedObjParser.js +0 -840
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/xmlparser/XMLParser.js +0 -71
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/xmlparser/node2json.js +0 -177
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/xmlparser/xmlNode.js +0 -40
- package/node_modules/@aws-sdk/xml-builder/node_modules/strnum/CHANGELOG.md +0 -51
- package/node_modules/@aws-sdk/xml-builder/node_modules/strnum/LICENSE +0 -21
- package/node_modules/@aws-sdk/xml-builder/node_modules/strnum/README.md +0 -113
- package/node_modules/@aws-sdk/xml-builder/node_modules/strnum/package.json +0 -36
- package/node_modules/@aws-sdk/xml-builder/node_modules/strnum/strnum.js +0 -171
- package/node_modules/@nodable/entities/README.md +0 -41
- package/node_modules/@nodable/entities/package.json +0 -57
- package/node_modules/@nodable/entities/src/EntityDecoder.js +0 -644
- package/node_modules/@nodable/entities/src/EntityEncoder.js +0 -194
- package/node_modules/@nodable/entities/src/entities.js +0 -1159
- package/node_modules/@nodable/entities/src/entityTries.js +0 -49
- package/node_modules/@nodable/entities/src/index.d.ts +0 -341
- package/node_modules/@nodable/entities/src/index.js +0 -29
- package/node_modules/@smithy/core/dist-es/submodules/checksum/md5-js/constants.js +0 -3
- package/node_modules/@smithy/core/dist-es/submodules/checksum/md5-js/md5.js +0 -168
- package/node_modules/@smithy/core/dist-types/submodules/checksum/md5-js/constants.d.ts +0 -12
- package/node_modules/@smithy/core/dist-types/submodules/checksum/md5-js/md5.d.ts +0 -16
- package/node_modules/@smithy/fetch-http-handler/dist-es/stream-collector.js +0 -53
- package/node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts +0 -2
- 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/dist-types/ts3.4/index.d.ts +0 -4
- package/node_modules/@smithy/is-array-buffer/package.json +0 -60
- package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/collector.js +0 -8
- package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/index.js +0 -41
- package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +0 -5
- package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +0 -7
- 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/fromUtf8.browser.d.ts +0 -1
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +0 -1
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +0 -3
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +0 -1
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +0 -7
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.d.ts +0 -7
- package/node_modules/@smithy/util-utf8/package.json +0 -66
- package/node_modules/anynum/LICENSE +0 -21
- package/node_modules/anynum/README.md +0 -142
- package/node_modules/anynum/anynum.js +0 -135
- package/node_modules/anynum/digitTable.js +0 -116
- package/node_modules/anynum/package.json +0 -42
- package/node_modules/fast-xml-builder/CHANGELOG.md +0 -40
- package/node_modules/fast-xml-builder/LICENSE +0 -21
- package/node_modules/fast-xml-builder/README.md +0 -74
- package/node_modules/fast-xml-builder/lib/fxb.cjs +0 -1
- package/node_modules/fast-xml-builder/lib/fxb.d.cts +0 -270
- package/node_modules/fast-xml-builder/lib/fxb.min.js +0 -2
- package/node_modules/fast-xml-builder/lib/fxb.min.js.map +0 -1
- package/node_modules/fast-xml-builder/package.json +0 -81
- package/node_modules/fast-xml-builder/src/fxb.d.ts +0 -270
- package/node_modules/fast-xml-builder/src/fxb.js +0 -599
- package/node_modules/fast-xml-builder/src/ignoreAttributes.js +0 -18
- package/node_modules/fast-xml-builder/src/orderedJs2Xml.js +0 -359
- package/node_modules/fast-xml-builder/src/prettifyJs2Xml.js +0 -0
- package/node_modules/fast-xml-builder/src/util.js +0 -16
- package/node_modules/path-expression-matcher/LICENSE +0 -21
- package/node_modules/path-expression-matcher/README.md +0 -947
- package/node_modules/path-expression-matcher/lib/pem.cjs +0 -1
- package/node_modules/path-expression-matcher/lib/pem.d.cts +0 -715
- package/node_modules/path-expression-matcher/lib/pem.min.js +0 -2
- package/node_modules/path-expression-matcher/lib/pem.min.js.map +0 -1
- package/node_modules/path-expression-matcher/package.json +0 -79
- package/node_modules/path-expression-matcher/src/Expression.js +0 -232
- package/node_modules/path-expression-matcher/src/ExpressionSet.js +0 -225
- package/node_modules/path-expression-matcher/src/Matcher.js +0 -660
- package/node_modules/path-expression-matcher/src/index.d.ts +0 -589
- package/node_modules/path-expression-matcher/src/index.js +0 -29
- package/node_modules/xml-naming/README.md +0 -189
- package/node_modules/xml-naming/package.json +0 -54
- package/node_modules/xml-naming/src/index.d.ts +0 -74
- package/node_modules/xml-naming/src/index.js +0 -270
- /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/{core/dist-types/submodules/endpoints/middleware-endpoint/types.d.ts → types/dist-types/endpoints/EndpointParameterInstructions.d.ts} +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"js-yaml.mjs","names":["yaml"],"sources":["../lib/common.js","../lib/exception.js","../lib/snippet.js","../lib/type.js","../lib/schema.js","../lib/type/str.js","../lib/type/seq.js","../lib/type/map.js","../lib/schema/failsafe.js","../lib/type/null.js","../lib/type/bool.js","../lib/type/int.js","../lib/type/float.js","../lib/schema/json.js","../lib/schema/core.js","../lib/type/timestamp.js","../lib/type/merge.js","../lib/type/binary.js","../lib/type/omap.js","../lib/type/pairs.js","../lib/type/set.js","../lib/schema/default.js","../lib/loader.js","../lib/dumper.js","../index.js","../lib/index_vite_proxy.tmp.mjs"],"sourcesContent":["'use strict'\n\nfunction isNothing (subject) {\n return (typeof subject === 'undefined') || (subject === null)\n}\n\nfunction isObject (subject) {\n return (typeof subject === 'object') && (subject !== null)\n}\n\nfunction toArray (sequence) {\n if (Array.isArray(sequence)) return sequence\n else if (isNothing(sequence)) return []\n\n return [sequence]\n}\n\nfunction extend (target, source) {\n if (source) {\n const sourceKeys = Object.keys(source)\n\n for (let index = 0, length = sourceKeys.length; index < length; index += 1) {\n const key = sourceKeys[index]\n target[key] = source[key]\n }\n }\n\n return target\n}\n\nfunction repeat (string, count) {\n let result = ''\n\n for (let cycle = 0; cycle < count; cycle += 1) {\n result += string\n }\n\n return result\n}\n\nfunction isNegativeZero (number) {\n return (number === 0) && (Number.NEGATIVE_INFINITY === 1 / number)\n}\n\nmodule.exports.isNothing = isNothing\nmodule.exports.isObject = isObject\nmodule.exports.toArray = toArray\nmodule.exports.repeat = repeat\nmodule.exports.isNegativeZero = isNegativeZero\nmodule.exports.extend = extend\n","// YAML error class. http://stackoverflow.com/questions/8458984\n//\n'use strict'\n\nfunction formatError (exception, compact) {\n let where = ''\n const message = exception.reason || '(unknown reason)'\n\n if (!exception.mark) return message\n\n if (exception.mark.name) {\n where += 'in \"' + exception.mark.name + '\" '\n }\n\n where += '(' + (exception.mark.line + 1) + ':' + (exception.mark.column + 1) + ')'\n\n if (!compact && exception.mark.snippet) {\n where += '\\n\\n' + exception.mark.snippet\n }\n\n return message + ' ' + where\n}\n\nfunction YAMLException (reason, mark) {\n // Super constructor\n Error.call(this)\n\n this.name = 'YAMLException'\n this.reason = reason\n this.mark = mark\n this.message = formatError(this, false)\n\n // Include stack trace in error object\n if (Error.captureStackTrace) {\n // Chrome and NodeJS\n Error.captureStackTrace(this, this.constructor)\n } else {\n // FF, IE 10+ and Safari 6+. Fallback for others\n this.stack = (new Error()).stack || ''\n }\n}\n\n// Inherit from Error\nYAMLException.prototype = Object.create(Error.prototype)\nYAMLException.prototype.constructor = YAMLException\n\nYAMLException.prototype.toString = function toString (compact) {\n return this.name + ': ' + formatError(this, compact)\n}\n\nmodule.exports = YAMLException\n","'use strict'\n\nconst common = require('./common')\n\n// get snippet for a single line, respecting maxLength\nfunction getLine (buffer, lineStart, lineEnd, position, maxLineLength) {\n let head = ''\n let tail = ''\n const maxHalfLength = Math.floor(maxLineLength / 2) - 1\n\n if (position - lineStart > maxHalfLength) {\n head = ' ... '\n lineStart = position - maxHalfLength + head.length\n }\n\n if (lineEnd - position > maxHalfLength) {\n tail = ' ...'\n lineEnd = position + maxHalfLength - tail.length\n }\n\n return {\n str: head + buffer.slice(lineStart, lineEnd).replace(/\\t/g, '→') + tail,\n pos: position - lineStart + head.length // relative position\n }\n}\n\nfunction padStart (string, max) {\n return common.repeat(' ', max - string.length) + string\n}\n\nfunction makeSnippet (mark, options) {\n options = Object.create(options || null)\n\n if (!mark.buffer) return null\n\n if (!options.maxLength) options.maxLength = 79\n if (typeof options.indent !== 'number') options.indent = 1\n if (typeof options.linesBefore !== 'number') options.linesBefore = 3\n if (typeof options.linesAfter !== 'number') options.linesAfter = 2\n\n const re = /\\r?\\n|\\r|\\0/g\n const lineStarts = [0]\n const lineEnds = []\n let match\n let foundLineNo = -1\n\n while ((match = re.exec(mark.buffer))) {\n lineEnds.push(match.index)\n lineStarts.push(match.index + match[0].length)\n\n if (mark.position <= match.index && foundLineNo < 0) {\n foundLineNo = lineStarts.length - 2\n }\n }\n\n if (foundLineNo < 0) foundLineNo = lineStarts.length - 1\n\n let result = ''\n const lineNoLength = Math.min(mark.line + options.linesAfter, lineEnds.length).toString().length\n const maxLineLength = options.maxLength - (options.indent + lineNoLength + 3)\n\n for (let i = 1; i <= options.linesBefore; i++) {\n if (foundLineNo - i < 0) break\n const line = getLine(\n mark.buffer,\n lineStarts[foundLineNo - i],\n lineEnds[foundLineNo - i],\n mark.position - (lineStarts[foundLineNo] - lineStarts[foundLineNo - i]),\n maxLineLength\n )\n result = common.repeat(' ', options.indent) + padStart((mark.line - i + 1).toString(), lineNoLength) +\n ' | ' + line.str + '\\n' + result\n }\n\n const line = getLine(mark.buffer, lineStarts[foundLineNo], lineEnds[foundLineNo], mark.position, maxLineLength)\n result += common.repeat(' ', options.indent) + padStart((mark.line + 1).toString(), lineNoLength) +\n ' | ' + line.str + '\\n'\n result += common.repeat('-', options.indent + lineNoLength + 3 + line.pos) + '^' + '\\n'\n\n for (let i = 1; i <= options.linesAfter; i++) {\n if (foundLineNo + i >= lineEnds.length) break\n const line = getLine(\n mark.buffer,\n lineStarts[foundLineNo + i],\n lineEnds[foundLineNo + i],\n mark.position - (lineStarts[foundLineNo] - lineStarts[foundLineNo + i]),\n maxLineLength\n )\n result += common.repeat(' ', options.indent) + padStart((mark.line + i + 1).toString(), lineNoLength) +\n ' | ' + line.str + '\\n'\n }\n\n return result.replace(/\\n$/, '')\n}\n\nmodule.exports = makeSnippet\n","'use strict'\n\nconst YAMLException = require('./exception')\n\nconst TYPE_CONSTRUCTOR_OPTIONS = [\n 'kind',\n 'multi',\n 'resolve',\n 'construct',\n 'instanceOf',\n 'predicate',\n 'represent',\n 'representName',\n 'defaultStyle',\n 'styleAliases'\n]\n\nconst YAML_NODE_KINDS = [\n 'scalar',\n 'sequence',\n 'mapping'\n]\n\nfunction compileStyleAliases (map) {\n const result = {}\n\n if (map !== null) {\n Object.keys(map).forEach(function (style) {\n map[style].forEach(function (alias) {\n result[String(alias)] = style\n })\n })\n }\n\n return result\n}\n\nfunction Type (tag, options) {\n options = options || {}\n\n Object.keys(options).forEach(function (name) {\n if (TYPE_CONSTRUCTOR_OPTIONS.indexOf(name) === -1) {\n throw new YAMLException('Unknown option \"' + name + '\" is met in definition of \"' + tag + '\" YAML type.')\n }\n })\n\n // TODO: Add tag format check.\n this.options = options // keep original options in case user wants to extend this type later\n this.tag = tag\n this.kind = options['kind'] || null\n this.resolve = options['resolve'] || function () { return true }\n this.construct = options['construct'] || function (data) { return data }\n this.instanceOf = options['instanceOf'] || null\n this.predicate = options['predicate'] || null\n this.represent = options['represent'] || null\n this.representName = options['representName'] || null\n this.defaultStyle = options['defaultStyle'] || null\n this.multi = options['multi'] || false\n this.styleAliases = compileStyleAliases(options['styleAliases'] || null)\n\n if (YAML_NODE_KINDS.indexOf(this.kind) === -1) {\n throw new YAMLException('Unknown kind \"' + this.kind + '\" is specified for \"' + tag + '\" YAML type.')\n }\n}\n\nmodule.exports = Type\n","'use strict'\n\nconst YAMLException = require('./exception')\nconst Type = require('./type')\n\nfunction compileList (schema, name) {\n const result = []\n\n schema[name].forEach(function (currentType) {\n let newIndex = result.length\n\n result.forEach(function (previousType, previousIndex) {\n if (previousType.tag === currentType.tag &&\n previousType.kind === currentType.kind &&\n previousType.multi === currentType.multi) {\n newIndex = previousIndex\n }\n })\n\n result[newIndex] = currentType\n })\n\n return result\n}\n\nfunction compileMap (/* lists... */) {\n const result = {\n scalar: {},\n sequence: {},\n mapping: {},\n fallback: {},\n multi: {\n scalar: [],\n sequence: [],\n mapping: [],\n fallback: []\n }\n }\n function collectType (type) {\n if (type.multi) {\n result.multi[type.kind].push(type)\n result.multi['fallback'].push(type)\n } else {\n result[type.kind][type.tag] = result['fallback'][type.tag] = type\n }\n }\n\n for (let index = 0, length = arguments.length; index < length; index += 1) {\n arguments[index].forEach(collectType)\n }\n return result\n}\n\nfunction Schema (definition) {\n return this.extend(definition)\n}\n\nSchema.prototype.extend = function extend (definition) {\n let implicit = []\n let explicit = []\n\n if (definition instanceof Type) {\n // Schema.extend(type)\n explicit.push(definition)\n } else if (Array.isArray(definition)) {\n // Schema.extend([ type1, type2, ... ])\n explicit = explicit.concat(definition)\n } else if (definition && (Array.isArray(definition.implicit) || Array.isArray(definition.explicit))) {\n // Schema.extend({ explicit: [ type1, type2, ... ], implicit: [ type1, type2, ... ] })\n if (definition.implicit) implicit = implicit.concat(definition.implicit)\n if (definition.explicit) explicit = explicit.concat(definition.explicit)\n } else {\n throw new YAMLException('Schema.extend argument should be a Type, [ Type ], ' +\n 'or a schema definition ({ implicit: [...], explicit: [...] })')\n }\n\n implicit.forEach(function (type) {\n if (!(type instanceof Type)) {\n throw new YAMLException('Specified list of YAML types (or a single Type object) contains a non-Type object.')\n }\n\n if (type.loadKind && type.loadKind !== 'scalar') {\n throw new YAMLException('There is a non-scalar type in the implicit list of a schema. Implicit resolving of such types is not supported.')\n }\n\n if (type.multi) {\n throw new YAMLException('There is a multi type in the implicit list of a schema. Multi tags can only be listed as explicit.')\n }\n })\n\n explicit.forEach(function (type) {\n if (!(type instanceof Type)) {\n throw new YAMLException('Specified list of YAML types (or a single Type object) contains a non-Type object.')\n }\n })\n\n const result = Object.create(Schema.prototype)\n\n result.implicit = (this.implicit || []).concat(implicit)\n result.explicit = (this.explicit || []).concat(explicit)\n\n result.compiledImplicit = compileList(result, 'implicit')\n result.compiledExplicit = compileList(result, 'explicit')\n result.compiledTypeMap = compileMap(result.compiledImplicit, result.compiledExplicit)\n\n return result\n}\n\nmodule.exports = Schema\n","'use strict'\n\nconst Type = require('../type')\n\nmodule.exports = new Type('tag:yaml.org,2002:str', {\n kind: 'scalar',\n construct: function (data) { return data !== null ? data : '' }\n})\n","'use strict'\n\nconst Type = require('../type')\n\nmodule.exports = new Type('tag:yaml.org,2002:seq', {\n kind: 'sequence',\n construct: function (data) { return data !== null ? data : [] }\n})\n","'use strict'\n\nconst Type = require('../type')\n\nmodule.exports = new Type('tag:yaml.org,2002:map', {\n kind: 'mapping',\n construct: function (data) { return data !== null ? data : {} }\n})\n","// Standard YAML's Failsafe schema.\n// http://www.yaml.org/spec/1.2/spec.html#id2802346\n\n'use strict'\n\nconst Schema = require('../schema')\n\nmodule.exports = new Schema({\n explicit: [\n require('../type/str'),\n require('../type/seq'),\n require('../type/map')\n ]\n})\n","'use strict'\n\nconst Type = require('../type')\n\nfunction resolveYamlNull (data) {\n if (data === null) return true\n\n const max = data.length\n\n return (max === 1 && data === '~') ||\n (max === 4 && (data === 'null' || data === 'Null' || data === 'NULL'))\n}\n\nfunction constructYamlNull () {\n return null\n}\n\nfunction isNull (object) {\n return object === null\n}\n\nmodule.exports = new Type('tag:yaml.org,2002:null', {\n kind: 'scalar',\n resolve: resolveYamlNull,\n construct: constructYamlNull,\n predicate: isNull,\n represent: {\n canonical: function () { return '~' },\n lowercase: function () { return 'null' },\n uppercase: function () { return 'NULL' },\n camelcase: function () { return 'Null' },\n empty: function () { return '' }\n },\n defaultStyle: 'lowercase'\n})\n","'use strict'\n\nconst Type = require('../type')\n\nfunction resolveYamlBoolean (data) {\n if (data === null) return false\n\n const max = data.length\n\n return (max === 4 && (data === 'true' || data === 'True' || data === 'TRUE')) ||\n (max === 5 && (data === 'false' || data === 'False' || data === 'FALSE'))\n}\n\nfunction constructYamlBoolean (data) {\n return data === 'true' ||\n data === 'True' ||\n data === 'TRUE'\n}\n\nfunction isBoolean (object) {\n return Object.prototype.toString.call(object) === '[object Boolean]'\n}\n\nmodule.exports = new Type('tag:yaml.org,2002:bool', {\n kind: 'scalar',\n resolve: resolveYamlBoolean,\n construct: constructYamlBoolean,\n predicate: isBoolean,\n represent: {\n lowercase: function (object) { return object ? 'true' : 'false' },\n uppercase: function (object) { return object ? 'TRUE' : 'FALSE' },\n camelcase: function (object) { return object ? 'True' : 'False' }\n },\n defaultStyle: 'lowercase'\n})\n","'use strict'\n\nconst common = require('../common')\nconst Type = require('../type')\n\nfunction isHexCode (c) {\n return ((c >= 0x30/* 0 */) && (c <= 0x39/* 9 */)) ||\n ((c >= 0x41/* A */) && (c <= 0x46/* F */)) ||\n ((c >= 0x61/* a */) && (c <= 0x66/* f */))\n}\n\nfunction isOctCode (c) {\n return ((c >= 0x30/* 0 */) && (c <= 0x37/* 7 */))\n}\n\nfunction isDecCode (c) {\n return ((c >= 0x30/* 0 */) && (c <= 0x39/* 9 */))\n}\n\nfunction resolveYamlInteger (data) {\n if (data === null) return false\n\n const max = data.length\n let index = 0\n let hasDigits = false\n\n if (!max) return false\n\n let ch = data[index]\n\n // sign\n if (ch === '-' || ch === '+') {\n ch = data[++index]\n }\n\n if (ch === '0') {\n // 0\n if (index + 1 === max) return true\n ch = data[++index]\n\n // base 2, base 8, base 16\n\n if (ch === 'b') {\n // base 2\n index++\n\n for (; index < max; index++) {\n ch = data[index]\n if (ch !== '0' && ch !== '1') return false\n hasDigits = true\n }\n return hasDigits && Number.isFinite(parseYamlInteger(data))\n }\n\n if (ch === 'x') {\n // base 16\n index++\n\n for (; index < max; index++) {\n if (!isHexCode(data.charCodeAt(index))) return false\n hasDigits = true\n }\n return hasDigits && Number.isFinite(parseYamlInteger(data))\n }\n\n if (ch === 'o') {\n // base 8\n index++\n\n for (; index < max; index++) {\n if (!isOctCode(data.charCodeAt(index))) return false\n hasDigits = true\n }\n return hasDigits && Number.isFinite(parseYamlInteger(data))\n }\n }\n\n // base 10 (except 0)\n\n for (; index < max; index++) {\n if (!isDecCode(data.charCodeAt(index))) {\n return false\n }\n hasDigits = true\n }\n\n if (!hasDigits) return false\n\n return Number.isFinite(parseYamlInteger(data))\n}\n\nfunction parseYamlInteger (data) {\n let value = data\n let sign = 1\n\n let ch = value[0]\n\n if (ch === '-' || ch === '+') {\n if (ch === '-') sign = -1\n value = value.slice(1)\n ch = value[0]\n }\n\n if (value === '0') return 0\n\n if (ch === '0') {\n if (value[1] === 'b') return sign * parseInt(value.slice(2), 2)\n if (value[1] === 'x') return sign * parseInt(value.slice(2), 16)\n if (value[1] === 'o') return sign * parseInt(value.slice(2), 8)\n }\n\n return sign * parseInt(value, 10)\n}\n\nfunction constructYamlInteger (data) {\n return parseYamlInteger(data)\n}\n\nfunction isInteger (object) {\n return (Object.prototype.toString.call(object)) === '[object Number]' &&\n (object % 1 === 0 && !common.isNegativeZero(object))\n}\n\nmodule.exports = new Type('tag:yaml.org,2002:int', {\n kind: 'scalar',\n resolve: resolveYamlInteger,\n construct: constructYamlInteger,\n predicate: isInteger,\n represent: {\n binary: function (obj) { return obj >= 0 ? '0b' + obj.toString(2) : '-0b' + obj.toString(2).slice(1) },\n octal: function (obj) { return obj >= 0 ? '0o' + obj.toString(8) : '-0o' + obj.toString(8).slice(1) },\n decimal: function (obj) { return obj.toString(10) },\n hexadecimal: function (obj) { return obj >= 0 ? '0x' + obj.toString(16).toUpperCase() : '-0x' + obj.toString(16).toUpperCase().slice(1) }\n },\n defaultStyle: 'decimal',\n styleAliases: {\n binary: [2, 'bin'],\n octal: [8, 'oct'],\n decimal: [10, 'dec'],\n hexadecimal: [16, 'hex']\n }\n})\n","'use strict'\n\nconst common = require('../common')\nconst Type = require('../type')\n\nconst YAML_FLOAT_PATTERN = new RegExp(\n // 2.5e4, 2.5 and integers\n '^(?:[-+]?(?:[0-9]+)(?:\\\\.[0-9]*)?(?:[eE][-+]?[0-9]+)?' +\n // .2e4, .2\n // special case, seems not from spec\n '|\\\\.[0-9]+(?:[eE][-+]?[0-9]+)?' +\n // .inf\n '|[-+]?\\\\.(?:inf|Inf|INF)' +\n // .nan\n '|\\\\.(?:nan|NaN|NAN))$')\n\nconst YAML_FLOAT_SPECIAL_PATTERN = new RegExp(\n '^(?:' +\n // .inf\n '[-+]?\\\\.(?:inf|Inf|INF)' +\n // .nan\n '|\\\\.(?:nan|NaN|NAN))$')\n\nfunction resolveYamlFloat (data) {\n if (data === null) return false\n\n if (!YAML_FLOAT_PATTERN.test(data)) {\n return false\n }\n\n if (Number.isFinite(parseFloat(data, 10))) {\n return true\n }\n\n return YAML_FLOAT_SPECIAL_PATTERN.test(data)\n}\n\nfunction constructYamlFloat (data) {\n let value = data.toLowerCase()\n const sign = value[0] === '-' ? -1 : 1\n\n if ('+-'.indexOf(value[0]) >= 0) {\n value = value.slice(1)\n }\n\n if (value === '.inf') {\n return (sign === 1) ? Number.POSITIVE_INFINITY : Number.NEGATIVE_INFINITY\n } else if (value === '.nan') {\n return NaN\n }\n return sign * parseFloat(value, 10)\n}\n\nconst SCIENTIFIC_WITHOUT_DOT = /^[-+]?[0-9]+e/\n\nfunction representYamlFloat (object, style) {\n if (isNaN(object)) {\n switch (style) {\n case 'lowercase': return '.nan'\n case 'uppercase': return '.NAN'\n case 'camelcase': return '.NaN'\n }\n } else if (Number.POSITIVE_INFINITY === object) {\n switch (style) {\n case 'lowercase': return '.inf'\n case 'uppercase': return '.INF'\n case 'camelcase': return '.Inf'\n }\n } else if (Number.NEGATIVE_INFINITY === object) {\n switch (style) {\n case 'lowercase': return '-.inf'\n case 'uppercase': return '-.INF'\n case 'camelcase': return '-.Inf'\n }\n } else if (common.isNegativeZero(object)) {\n return '-0.0'\n }\n\n const res = object.toString(10)\n\n // JS stringifier can build scientific format without dots: 5e-100,\n // while YAML requres dot: 5.e-100. Fix it with simple hack\n\n return SCIENTIFIC_WITHOUT_DOT.test(res) ? res.replace('e', '.e') : res\n}\n\nfunction isFloat (object) {\n return (Object.prototype.toString.call(object) === '[object Number]') &&\n (object % 1 !== 0 || common.isNegativeZero(object))\n}\n\nmodule.exports = new Type('tag:yaml.org,2002:float', {\n kind: 'scalar',\n resolve: resolveYamlFloat,\n construct: constructYamlFloat,\n predicate: isFloat,\n represent: representYamlFloat,\n defaultStyle: 'lowercase'\n})\n","// Standard YAML's JSON schema.\n// http://www.yaml.org/spec/1.2/spec.html#id2803231\n//\n// NOTE: JS-YAML does not support schema-specific tag resolution restrictions.\n// So, this schema is not such strict as defined in the YAML specification.\n// It allows numbers in binary notaion, use `Null` and `NULL` as `null`, etc.\n\n'use strict'\n\nmodule.exports = require('./failsafe').extend({\n implicit: [\n require('../type/null'),\n require('../type/bool'),\n require('../type/int'),\n require('../type/float')\n ]\n})\n","// Standard YAML's Core schema.\n// http://www.yaml.org/spec/1.2/spec.html#id2804923\n//\n// NOTE: JS-YAML does not support schema-specific tag resolution restrictions.\n// So, Core schema has no distinctions from JSON schema is JS-YAML.\n\n'use strict'\n\nmodule.exports = require('./json')\n","'use strict'\n\nconst Type = require('../type')\n\nconst YAML_DATE_REGEXP = new RegExp(\n '^([0-9][0-9][0-9][0-9])' + // [1] year\n '-([0-9][0-9])' + // [2] month\n '-([0-9][0-9])$') // [3] day\n\nconst YAML_TIMESTAMP_REGEXP = new RegExp(\n '^([0-9][0-9][0-9][0-9])' + // [1] year\n '-([0-9][0-9]?)' + // [2] month\n '-([0-9][0-9]?)' + // [3] day\n '(?:[Tt]|[ \\\\t]+)' + // ...\n '([0-9][0-9]?)' + // [4] hour\n ':([0-9][0-9])' + // [5] minute\n ':([0-9][0-9])' + // [6] second\n '(?:\\\\.([0-9]*))?' + // [7] fraction\n '(?:[ \\\\t]*(Z|([-+])([0-9][0-9]?)' + // [8] tz [9] tz_sign [10] tzHour\n '(?::([0-9][0-9]))?))?$') // [11] tzMinute\n\nfunction resolveYamlTimestamp (data) {\n if (data === null) return false\n if (YAML_DATE_REGEXP.exec(data) !== null) return true\n if (YAML_TIMESTAMP_REGEXP.exec(data) !== null) return true\n return false\n}\n\nfunction constructYamlTimestamp (data) {\n let fraction = 0\n let delta = null\n\n let match = YAML_DATE_REGEXP.exec(data)\n if (match === null) match = YAML_TIMESTAMP_REGEXP.exec(data)\n\n if (match === null) throw new Error('Date resolve error')\n\n // match: [1] year [2] month [3] day\n\n const year = +(match[1])\n const month = +(match[2]) - 1 // JS month starts with 0\n const day = +(match[3])\n\n if (!match[4]) { // no hour\n return new Date(Date.UTC(year, month, day))\n }\n\n // match: [4] hour [5] minute [6] second [7] fraction\n\n const hour = +(match[4])\n const minute = +(match[5])\n const second = +(match[6])\n\n if (match[7]) {\n fraction = match[7].slice(0, 3)\n while (fraction.length < 3) { // milli-seconds\n fraction += '0'\n }\n fraction = +fraction\n }\n\n // match: [8] tz [9] tz_sign [10] tzHour [11] tzMinute\n\n if (match[9]) {\n const tzHour = +(match[10])\n const tzMinute = +(match[11] || 0)\n delta = (tzHour * 60 + tzMinute) * 60000 // delta in mili-seconds\n if (match[9] === '-') delta = -delta\n }\n\n const date = new Date(Date.UTC(year, month, day, hour, minute, second, fraction))\n\n if (delta) date.setTime(date.getTime() - delta)\n\n return date\n}\n\nfunction representYamlTimestamp (object /*, style */) {\n return object.toISOString()\n}\n\nmodule.exports = new Type('tag:yaml.org,2002:timestamp', {\n kind: 'scalar',\n resolve: resolveYamlTimestamp,\n construct: constructYamlTimestamp,\n instanceOf: Date,\n represent: representYamlTimestamp\n})\n","'use strict'\n\nconst Type = require('../type')\n\nfunction resolveYamlMerge (data) {\n return data === '<<' || data === null\n}\n\nmodule.exports = new Type('tag:yaml.org,2002:merge', {\n kind: 'scalar',\n resolve: resolveYamlMerge\n})\n","'use strict'\n\nconst Type = require('../type')\n\n// [ 64, 65, 66 ] -> [ padding, CR, LF ]\nconst BASE64_MAP = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\\n\\r'\n\nfunction resolveYamlBinary (data) {\n if (data === null) return false\n\n let bitlen = 0\n const max = data.length\n const map = BASE64_MAP\n\n // Convert one by one.\n for (let idx = 0; idx < max; idx++) {\n const code = map.indexOf(data.charAt(idx))\n\n // Skip CR/LF\n if (code > 64) continue\n\n // Fail on illegal characters\n if (code < 0) return false\n\n bitlen += 6\n }\n\n // If there are any bits left, source was corrupted\n return (bitlen % 8) === 0\n}\n\nfunction constructYamlBinary (data) {\n const input = data.replace(/[\\r\\n=]/g, '') // remove CR/LF & padding to simplify scan\n const max = input.length\n const map = BASE64_MAP\n let bits = 0\n const result = []\n\n // Collect by 6*4 bits (3 bytes)\n\n for (let idx = 0; idx < max; idx++) {\n if ((idx % 4 === 0) && idx) {\n result.push((bits >> 16) & 0xFF)\n result.push((bits >> 8) & 0xFF)\n result.push(bits & 0xFF)\n }\n\n bits = (bits << 6) | map.indexOf(input.charAt(idx))\n }\n\n // Dump tail\n\n const tailbits = (max % 4) * 6\n\n if (tailbits === 0) {\n result.push((bits >> 16) & 0xFF)\n result.push((bits >> 8) & 0xFF)\n result.push(bits & 0xFF)\n } else if (tailbits === 18) {\n result.push((bits >> 10) & 0xFF)\n result.push((bits >> 2) & 0xFF)\n } else if (tailbits === 12) {\n result.push((bits >> 4) & 0xFF)\n }\n\n return new Uint8Array(result)\n}\n\nfunction representYamlBinary (object /*, style */) {\n let result = ''\n let bits = 0\n const max = object.length\n const map = BASE64_MAP\n\n // Convert every three bytes to 4 ASCII characters.\n\n for (let idx = 0; idx < max; idx++) {\n if ((idx % 3 === 0) && idx) {\n result += map[(bits >> 18) & 0x3F]\n result += map[(bits >> 12) & 0x3F]\n result += map[(bits >> 6) & 0x3F]\n result += map[bits & 0x3F]\n }\n\n bits = (bits << 8) + object[idx]\n }\n\n // Dump tail\n\n const tail = max % 3\n\n if (tail === 0) {\n result += map[(bits >> 18) & 0x3F]\n result += map[(bits >> 12) & 0x3F]\n result += map[(bits >> 6) & 0x3F]\n result += map[bits & 0x3F]\n } else if (tail === 2) {\n result += map[(bits >> 10) & 0x3F]\n result += map[(bits >> 4) & 0x3F]\n result += map[(bits << 2) & 0x3F]\n result += map[64]\n } else if (tail === 1) {\n result += map[(bits >> 2) & 0x3F]\n result += map[(bits << 4) & 0x3F]\n result += map[64]\n result += map[64]\n }\n\n return result\n}\n\nfunction isBinary (obj) {\n return Object.prototype.toString.call(obj) === '[object Uint8Array]'\n}\n\nmodule.exports = new Type('tag:yaml.org,2002:binary', {\n kind: 'scalar',\n resolve: resolveYamlBinary,\n construct: constructYamlBinary,\n predicate: isBinary,\n represent: representYamlBinary\n})\n","'use strict'\n\nconst Type = require('../type')\n\nconst _hasOwnProperty = Object.prototype.hasOwnProperty\nconst _toString = Object.prototype.toString\n\nfunction resolveYamlOmap (data) {\n if (data === null) return true\n\n const objectKeys = []\n const object = data\n\n for (let index = 0, length = object.length; index < length; index += 1) {\n const pair = object[index]\n let pairHasKey = false\n\n if (_toString.call(pair) !== '[object Object]') return false\n\n let pairKey\n for (pairKey in pair) {\n if (_hasOwnProperty.call(pair, pairKey)) {\n if (!pairHasKey) pairHasKey = true\n else return false\n }\n }\n\n if (!pairHasKey) return false\n\n if (objectKeys.indexOf(pairKey) === -1) objectKeys.push(pairKey)\n else return false\n }\n\n return true\n}\n\nfunction constructYamlOmap (data) {\n return data !== null ? data : []\n}\n\nmodule.exports = new Type('tag:yaml.org,2002:omap', {\n kind: 'sequence',\n resolve: resolveYamlOmap,\n construct: constructYamlOmap\n})\n","'use strict'\n\nconst Type = require('../type')\n\nconst _toString = Object.prototype.toString\n\nfunction resolveYamlPairs (data) {\n if (data === null) return true\n\n const object = data\n\n const result = new Array(object.length)\n\n for (let index = 0, length = object.length; index < length; index += 1) {\n const pair = object[index]\n\n if (_toString.call(pair) !== '[object Object]') return false\n\n const keys = Object.keys(pair)\n\n if (keys.length !== 1) return false\n\n result[index] = [keys[0], pair[keys[0]]]\n }\n\n return true\n}\n\nfunction constructYamlPairs (data) {\n if (data === null) return []\n\n const object = data\n const result = new Array(object.length)\n\n for (let index = 0, length = object.length; index < length; index += 1) {\n const pair = object[index]\n\n const keys = Object.keys(pair)\n\n result[index] = [keys[0], pair[keys[0]]]\n }\n\n return result\n}\n\nmodule.exports = new Type('tag:yaml.org,2002:pairs', {\n kind: 'sequence',\n resolve: resolveYamlPairs,\n construct: constructYamlPairs\n})\n","'use strict'\n\nconst Type = require('../type')\n\nconst _hasOwnProperty = Object.prototype.hasOwnProperty\n\nfunction resolveYamlSet (data) {\n if (data === null) return true\n\n const object = data\n\n for (const key in object) {\n if (_hasOwnProperty.call(object, key)) {\n if (object[key] !== null) return false\n }\n }\n\n return true\n}\n\nfunction constructYamlSet (data) {\n return data !== null ? data : {}\n}\n\nmodule.exports = new Type('tag:yaml.org,2002:set', {\n kind: 'mapping',\n resolve: resolveYamlSet,\n construct: constructYamlSet\n})\n","// JS-YAML's default schema for `safeLoad` function.\n// It is not described in the YAML specification.\n//\n// This schema is based on standard YAML's Core schema and includes most of\n// extra types described at YAML tag repository. (http://yaml.org/type/)\n\n'use strict'\n\nmodule.exports = require('./core').extend({\n implicit: [\n require('../type/timestamp'),\n require('../type/merge')\n ],\n explicit: [\n require('../type/binary'),\n require('../type/omap'),\n require('../type/pairs'),\n require('../type/set')\n ]\n})\n","'use strict'\n\nconst common = require('./common')\nconst YAMLException = require('./exception')\nconst makeSnippet = require('./snippet')\nconst DEFAULT_SCHEMA = require('./schema/default')\n\nconst _hasOwnProperty = Object.prototype.hasOwnProperty\n\nconst CONTEXT_FLOW_IN = 1\nconst CONTEXT_FLOW_OUT = 2\nconst CONTEXT_BLOCK_IN = 3\nconst CONTEXT_BLOCK_OUT = 4\n\nconst CHOMPING_CLIP = 1\nconst CHOMPING_STRIP = 2\nconst CHOMPING_KEEP = 3\n\n// eslint-disable-next-line no-control-regex\nconst PATTERN_NON_PRINTABLE = /[\\x00-\\x08\\x0B\\x0C\\x0E-\\x1F\\x7F-\\x84\\x86-\\x9F\\uFFFE\\uFFFF]|[\\uD800-\\uDBFF](?![\\uDC00-\\uDFFF])|(?:[^\\uD800-\\uDBFF]|^)[\\uDC00-\\uDFFF]/\nconst PATTERN_NON_ASCII_LINE_BREAKS = /[\\x85\\u2028\\u2029]/\n// eslint-disable-next-line no-useless-escape\nconst PATTERN_FLOW_INDICATORS = /[,\\[\\]{}]/\n// eslint-disable-next-line no-useless-escape\nconst PATTERN_TAG_HANDLE = /^(?:!|!!|![0-9A-Za-z-]+!)$/\n// eslint-disable-next-line no-useless-escape\nconst PATTERN_TAG_URI = /^(?:!|[^,\\[\\]{}])(?:%[0-9a-f]{2}|[0-9a-z\\-#;/?:@&=+$,_.!~*'()\\[\\]])*$/i\n\nfunction _class (obj) { return Object.prototype.toString.call(obj) }\n\nfunction isEol (c) {\n return (c === 0x0A/* LF */) || (c === 0x0D/* CR */)\n}\n\nfunction isWhiteSpace (c) {\n return (c === 0x09/* Tab */) || (c === 0x20/* Space */)\n}\n\nfunction isWsOrEol (c) {\n return (c === 0x09/* Tab */) ||\n (c === 0x20/* Space */) ||\n (c === 0x0A/* LF */) ||\n (c === 0x0D/* CR */)\n}\n\nfunction isFlowIndicator (c) {\n return c === 0x2C/* , */ ||\n c === 0x5B/* [ */ ||\n c === 0x5D/* ] */ ||\n c === 0x7B/* { */ ||\n c === 0x7D/* } */\n}\n\nfunction fromHexCode (c) {\n if ((c >= 0x30/* 0 */) && (c <= 0x39/* 9 */)) {\n return c - 0x30\n }\n\n const lc = c | 0x20\n\n if ((lc >= 0x61/* a */) && (lc <= 0x66/* f */)) {\n return lc - 0x61 + 10\n }\n\n return -1\n}\n\nfunction escapedHexLen (c) {\n if (c === 0x78/* x */) { return 2 }\n if (c === 0x75/* u */) { return 4 }\n if (c === 0x55/* U */) { return 8 }\n return 0\n}\n\nfunction fromDecimalCode (c) {\n if ((c >= 0x30/* 0 */) && (c <= 0x39/* 9 */)) {\n return c - 0x30\n }\n\n return -1\n}\n\nfunction simpleEscapeSequence (c) {\n switch (c) {\n case 0x30/* 0 */: return '\\x00'\n case 0x61/* a */: return '\\x07'\n case 0x62/* b */: return '\\x08'\n case 0x74/* t */: return '\\x09'\n case 0x09/* Tab */: return '\\x09'\n case 0x6E/* n */: return '\\x0A'\n case 0x76/* v */: return '\\x0B'\n case 0x66/* f */: return '\\x0C'\n case 0x72/* r */: return '\\x0D'\n case 0x65/* e */: return '\\x1B'\n case 0x20/* Space */: return ' '\n case 0x22/* \" */: return '\\x22'\n case 0x2F/* / */: return '/'\n case 0x5C/* \\ */: return '\\x5C'\n case 0x4E/* N */: return '\\x85'\n case 0x5F/* _ */: return '\\xA0'\n case 0x4C/* L */: return '\\u2028'\n case 0x50/* P */: return '\\u2029'\n default: return ''\n }\n}\n\nfunction charFromCodepoint (c) {\n if (c <= 0xFFFF) {\n return String.fromCharCode(c)\n }\n // Encode UTF-16 surrogate pair\n // https://en.wikipedia.org/wiki/UTF-16#Code_points_U.2B010000_to_U.2B10FFFF\n return String.fromCharCode(\n ((c - 0x010000) >> 10) + 0xD800,\n ((c - 0x010000) & 0x03FF) + 0xDC00\n )\n}\n\n// set a property of a literal object, while protecting against prototype pollution,\n// see https://github.com/nodeca/js-yaml/issues/164 for more details\nfunction setProperty (object, key, value) {\n // used for this specific key only because Object.defineProperty is slow\n if (key === '__proto__') {\n Object.defineProperty(object, key, {\n configurable: true,\n enumerable: true,\n writable: true,\n value: value\n })\n } else {\n object[key] = value\n }\n}\n\nconst simpleEscapeCheck = new Array(256) // integer, for fast access\nconst simpleEscapeMap = new Array(256)\nfor (let i = 0; i < 256; i++) {\n simpleEscapeCheck[i] = simpleEscapeSequence(i) ? 1 : 0\n simpleEscapeMap[i] = simpleEscapeSequence(i)\n}\n\nfunction State (input, options) {\n this.input = input\n\n this.filename = options['filename'] || null\n this.schema = options['schema'] || DEFAULT_SCHEMA\n this.onWarning = options['onWarning'] || null\n // (Hidden) Remove? makes the loader to expect YAML 1.1 documents\n // if such documents have no explicit %YAML directive\n this.legacy = options['legacy'] || false\n\n this.json = options['json'] || false\n this.listener = options['listener'] || null\n this.maxDepth = typeof options['maxDepth'] === 'number' ? options['maxDepth'] : 100\n this.maxMergeSeqLength = typeof options['maxMergeSeqLength'] === 'number' ? options['maxMergeSeqLength'] : 20\n\n this.implicitTypes = this.schema.compiledImplicit\n this.typeMap = this.schema.compiledTypeMap\n\n this.length = input.length\n this.position = 0\n this.line = 0\n this.lineStart = 0\n this.lineIndent = 0\n this.depth = 0\n\n // position of first leading tab in the current line,\n // used to make sure there are no tabs in the indentation\n this.firstTabInLine = -1\n\n this.documents = []\n this.anchorMapTransactions = []\n\n /*\n this.version;\n this.checkLineBreaks;\n this.tagMap;\n this.anchorMap;\n this.tag;\n this.anchor;\n this.kind;\n this.result; */\n}\n\nfunction generateError (state, message) {\n const mark = {\n name: state.filename,\n buffer: state.input.slice(0, -1), // omit trailing \\0\n position: state.position,\n line: state.line,\n column: state.position - state.lineStart\n }\n\n mark.snippet = makeSnippet(mark)\n\n return new YAMLException(message, mark)\n}\n\nfunction throwError (state, message) {\n throw generateError(state, message)\n}\n\nfunction throwWarning (state, message) {\n if (state.onWarning) {\n state.onWarning.call(null, generateError(state, message))\n }\n}\n\nfunction storeAnchor (state, name, value) {\n const transactions = state.anchorMapTransactions\n\n if (transactions.length !== 0) {\n const transaction = transactions[transactions.length - 1]\n\n if (!_hasOwnProperty.call(transaction, name)) {\n transaction[name] = {\n existed: _hasOwnProperty.call(state.anchorMap, name),\n value: state.anchorMap[name]\n }\n }\n }\n\n state.anchorMap[name] = value\n}\n\nfunction beginAnchorTransaction (state) {\n state.anchorMapTransactions.push(Object.create(null))\n}\n\nfunction commitAnchorTransaction (state) {\n const transaction = state.anchorMapTransactions.pop()\n const transactions = state.anchorMapTransactions\n\n if (transactions.length === 0) return\n\n const parent = transactions[transactions.length - 1]\n const names = Object.keys(transaction)\n\n for (let index = 0, length = names.length; index < length; index += 1) {\n const name = names[index]\n\n if (!_hasOwnProperty.call(parent, name)) {\n parent[name] = transaction[name]\n }\n }\n}\n\nfunction rollbackAnchorTransaction (state) {\n const transaction = state.anchorMapTransactions.pop()\n const names = Object.keys(transaction)\n\n for (let index = names.length - 1; index >= 0; index -= 1) {\n const entry = transaction[names[index]]\n\n if (entry.existed) {\n state.anchorMap[names[index]] = entry.value\n } else {\n delete state.anchorMap[names[index]]\n }\n }\n}\n\nfunction snapshotState (state) {\n return {\n position: state.position,\n line: state.line,\n lineStart: state.lineStart,\n lineIndent: state.lineIndent,\n firstTabInLine: state.firstTabInLine,\n tag: state.tag,\n anchor: state.anchor,\n kind: state.kind,\n result: state.result\n }\n}\n\nfunction restoreState (state, snapshot) {\n state.position = snapshot.position\n state.line = snapshot.line\n state.lineStart = snapshot.lineStart\n state.lineIndent = snapshot.lineIndent\n state.firstTabInLine = snapshot.firstTabInLine\n state.tag = snapshot.tag\n state.anchor = snapshot.anchor\n state.kind = snapshot.kind\n state.result = snapshot.result\n}\n\nconst directiveHandlers = {\n\n YAML: function handleYamlDirective (state, name, args) {\n if (state.version !== null) {\n throwError(state, 'duplication of %YAML directive')\n }\n\n if (args.length !== 1) {\n throwError(state, 'YAML directive accepts exactly one argument')\n }\n\n const match = /^([0-9]+)\\.([0-9]+)$/.exec(args[0])\n\n if (match === null) {\n throwError(state, 'ill-formed argument of the YAML directive')\n }\n\n const major = parseInt(match[1], 10)\n const minor = parseInt(match[2], 10)\n\n if (major !== 1) {\n throwError(state, 'unacceptable YAML version of the document')\n }\n\n state.version = args[0]\n state.checkLineBreaks = (minor < 2)\n\n if (minor !== 1 && minor !== 2) {\n throwWarning(state, 'unsupported YAML version of the document')\n }\n },\n\n TAG: function handleTagDirective (state, name, args) {\n let prefix\n\n if (args.length !== 2) {\n throwError(state, 'TAG directive accepts exactly two arguments')\n }\n\n const handle = args[0]\n prefix = args[1]\n\n if (!PATTERN_TAG_HANDLE.test(handle)) {\n throwError(state, 'ill-formed tag handle (first argument) of the TAG directive')\n }\n\n if (_hasOwnProperty.call(state.tagMap, handle)) {\n throwError(state, 'there is a previously declared suffix for \"' + handle + '\" tag handle')\n }\n\n if (!PATTERN_TAG_URI.test(prefix)) {\n throwError(state, 'ill-formed tag prefix (second argument) of the TAG directive')\n }\n\n try {\n prefix = decodeURIComponent(prefix)\n } catch (err) {\n throwError(state, 'tag prefix is malformed: ' + prefix)\n }\n\n state.tagMap[handle] = prefix\n }\n}\n\nfunction captureSegment (state, start, end, checkJson) {\n if (start < end) {\n const _result = state.input.slice(start, end)\n\n if (checkJson) {\n for (let _position = 0, _length = _result.length; _position < _length; _position += 1) {\n const _character = _result.charCodeAt(_position)\n if (!(_character === 0x09 ||\n (_character >= 0x20 && _character <= 0x10FFFF))) {\n throwError(state, 'expected valid JSON character')\n }\n }\n } else if (PATTERN_NON_PRINTABLE.test(_result)) {\n throwError(state, 'the stream contains non-printable characters')\n }\n\n state.result += _result\n }\n}\n\nfunction mergeMappings (state, destination, source, overridableKeys) {\n if (!common.isObject(source)) {\n throwError(state, 'cannot merge mappings; the provided source object is unacceptable')\n }\n\n const sourceKeys = Object.keys(source)\n\n for (let index = 0, quantity = sourceKeys.length; index < quantity; index += 1) {\n const key = sourceKeys[index]\n\n if (!_hasOwnProperty.call(destination, key)) {\n setProperty(destination, key, source[key])\n overridableKeys[key] = true\n }\n }\n}\n\nfunction storeMappingPair (state, _result, overridableKeys, keyTag, keyNode, valueNode,\n startLine, startLineStart, startPos) {\n // The output is a plain object here, so keys can only be strings.\n // We need to convert keyNode to a string, but doing so can hang the process\n // (deeply nested arrays that explode exponentially using aliases).\n if (Array.isArray(keyNode)) {\n keyNode = Array.prototype.slice.call(keyNode)\n\n for (let index = 0, quantity = keyNode.length; index < quantity; index += 1) {\n if (Array.isArray(keyNode[index])) {\n throwError(state, 'nested arrays are not supported inside keys')\n }\n\n if (typeof keyNode === 'object' && _class(keyNode[index]) === '[object Object]') {\n keyNode[index] = '[object Object]'\n }\n }\n }\n\n // Avoid code execution in load() via toString property\n // (still use its own toString for arrays, timestamps,\n // and whatever user schema extensions happen to have @@toStringTag)\n if (typeof keyNode === 'object' && _class(keyNode) === '[object Object]') {\n keyNode = '[object Object]'\n }\n\n keyNode = String(keyNode)\n\n if (_result === null) {\n _result = {}\n }\n\n if (keyTag === 'tag:yaml.org,2002:merge') {\n if (Array.isArray(valueNode)) {\n if (valueNode.length > state.maxMergeSeqLength) {\n throwError(state, 'merge sequence length exceeded maxMergeSeqLength (' + state.maxMergeSeqLength + ')')\n }\n const seen = new Set()\n for (let index = 0, quantity = valueNode.length; index < quantity; index += 1) {\n const src = valueNode[index]\n // Existing keys are not overridden on merge, so dedupe sources to\n // avoid redundant work on repeated aliases.\n if (seen.has(src)) continue\n seen.add(src)\n mergeMappings(state, _result, src, overridableKeys)\n }\n } else {\n mergeMappings(state, _result, valueNode, overridableKeys)\n }\n } else {\n if (!state.json &&\n !_hasOwnProperty.call(overridableKeys, keyNode) &&\n _hasOwnProperty.call(_result, keyNode)) {\n state.line = startLine || state.line\n state.lineStart = startLineStart || state.lineStart\n state.position = startPos || state.position\n throwError(state, 'duplicated mapping key')\n }\n\n setProperty(_result, keyNode, valueNode)\n delete overridableKeys[keyNode]\n }\n\n return _result\n}\n\nfunction readLineBreak (state) {\n const ch = state.input.charCodeAt(state.position)\n\n if (ch === 0x0A/* LF */) {\n state.position++\n } else if (ch === 0x0D/* CR */) {\n state.position++\n if (state.input.charCodeAt(state.position) === 0x0A/* LF */) {\n state.position++\n }\n } else {\n throwError(state, 'a line break is expected')\n }\n\n state.line += 1\n state.lineStart = state.position\n state.firstTabInLine = -1\n}\n\nfunction skipSeparationSpace (state, allowComments, checkIndent) {\n let lineBreaks = 0\n let ch = state.input.charCodeAt(state.position)\n\n while (ch !== 0) {\n while (isWhiteSpace(ch)) {\n if (ch === 0x09/* Tab */ && state.firstTabInLine === -1) {\n state.firstTabInLine = state.position\n }\n ch = state.input.charCodeAt(++state.position)\n }\n\n if (allowComments && ch === 0x23/* # */) {\n do {\n ch = state.input.charCodeAt(++state.position)\n } while (ch !== 0x0A/* LF */ && ch !== 0x0D/* CR */ && ch !== 0)\n }\n\n if (isEol(ch)) {\n readLineBreak(state)\n\n ch = state.input.charCodeAt(state.position)\n lineBreaks++\n state.lineIndent = 0\n\n while (ch === 0x20/* Space */) {\n state.lineIndent++\n ch = state.input.charCodeAt(++state.position)\n }\n } else {\n break\n }\n }\n\n if (checkIndent !== -1 && lineBreaks !== 0 && state.lineIndent < checkIndent) {\n throwWarning(state, 'deficient indentation')\n }\n\n return lineBreaks\n}\n\nfunction testDocumentSeparator (state) {\n let _position = state.position\n let ch = state.input.charCodeAt(_position)\n\n // Condition state.position === state.lineStart is tested\n // in parent on each call, for efficiency. No needs to test here again.\n if ((ch === 0x2D/* - */ || ch === 0x2E/* . */) &&\n ch === state.input.charCodeAt(_position + 1) &&\n ch === state.input.charCodeAt(_position + 2)) {\n _position += 3\n\n ch = state.input.charCodeAt(_position)\n\n if (ch === 0 || isWsOrEol(ch)) {\n return true\n }\n }\n\n return false\n}\n\nfunction writeFoldedLines (state, count) {\n if (count === 1) {\n state.result += ' '\n } else if (count > 1) {\n state.result += common.repeat('\\n', count - 1)\n }\n}\n\nfunction readPlainScalar (state, nodeIndent, withinFlowCollection) {\n let captureStart\n let captureEnd\n let hasPendingContent\n let _line\n let _lineStart\n let _lineIndent\n const _kind = state.kind\n const _result = state.result\n\n let ch = state.input.charCodeAt(state.position)\n\n if (isWsOrEol(ch) ||\n isFlowIndicator(ch) ||\n ch === 0x23/* # */ ||\n ch === 0x26/* & */ ||\n ch === 0x2A/* * */ ||\n ch === 0x21/* ! */ ||\n ch === 0x7C/* | */ ||\n ch === 0x3E/* > */ ||\n ch === 0x27/* ' */ ||\n ch === 0x22/* \" */ ||\n ch === 0x25/* % */ ||\n ch === 0x40/* @ */ ||\n ch === 0x60/* ` */) {\n return false\n }\n\n if (ch === 0x3F/* ? */ || ch === 0x2D/* - */) {\n const following = state.input.charCodeAt(state.position + 1)\n\n if (isWsOrEol(following) ||\n (withinFlowCollection && isFlowIndicator(following))) {\n return false\n }\n }\n\n state.kind = 'scalar'\n state.result = ''\n captureStart = captureEnd = state.position\n hasPendingContent = false\n\n while (ch !== 0) {\n if (ch === 0x3A/* : */) {\n const following = state.input.charCodeAt(state.position + 1)\n\n if (isWsOrEol(following) ||\n (withinFlowCollection && isFlowIndicator(following))) {\n break\n }\n } else if (ch === 0x23/* # */) {\n const preceding = state.input.charCodeAt(state.position - 1)\n\n if (isWsOrEol(preceding)) {\n break\n }\n } else if ((state.position === state.lineStart && testDocumentSeparator(state)) ||\n (withinFlowCollection && isFlowIndicator(ch))) {\n break\n } else if (isEol(ch)) {\n _line = state.line\n _lineStart = state.lineStart\n _lineIndent = state.lineIndent\n skipSeparationSpace(state, false, -1)\n\n if (state.lineIndent >= nodeIndent) {\n hasPendingContent = true\n ch = state.input.charCodeAt(state.position)\n continue\n } else {\n state.position = captureEnd\n state.line = _line\n state.lineStart = _lineStart\n state.lineIndent = _lineIndent\n break\n }\n }\n\n if (hasPendingContent) {\n captureSegment(state, captureStart, captureEnd, false)\n writeFoldedLines(state, state.line - _line)\n captureStart = captureEnd = state.position\n hasPendingContent = false\n }\n\n if (!isWhiteSpace(ch)) {\n captureEnd = state.position + 1\n }\n\n ch = state.input.charCodeAt(++state.position)\n }\n\n captureSegment(state, captureStart, captureEnd, false)\n\n if (state.result) {\n return true\n }\n\n state.kind = _kind\n state.result = _result\n return false\n}\n\nfunction readSingleQuotedScalar (state, nodeIndent) {\n let captureStart\n let captureEnd\n\n let ch = state.input.charCodeAt(state.position)\n\n if (ch !== 0x27/* ' */) {\n return false\n }\n\n state.kind = 'scalar'\n state.result = ''\n state.position++\n captureStart = captureEnd = state.position\n\n while ((ch = state.input.charCodeAt(state.position)) !== 0) {\n if (ch === 0x27/* ' */) {\n captureSegment(state, captureStart, state.position, true)\n ch = state.input.charCodeAt(++state.position)\n\n if (ch === 0x27/* ' */) {\n captureStart = state.position\n state.position++\n captureEnd = state.position\n } else {\n return true\n }\n } else if (isEol(ch)) {\n captureSegment(state, captureStart, captureEnd, true)\n writeFoldedLines(state, skipSeparationSpace(state, false, nodeIndent))\n captureStart = captureEnd = state.position\n } else if (state.position === state.lineStart && testDocumentSeparator(state)) {\n throwError(state, 'unexpected end of the document within a single quoted scalar')\n } else {\n state.position++\n if (!isWhiteSpace(ch)) {\n captureEnd = state.position\n }\n }\n }\n\n throwError(state, 'unexpected end of the stream within a single quoted scalar')\n}\n\nfunction readDoubleQuotedScalar (state, nodeIndent) {\n let captureStart\n let captureEnd\n let tmp\n\n let ch = state.input.charCodeAt(state.position)\n\n if (ch !== 0x22/* \" */) {\n return false\n }\n\n state.kind = 'scalar'\n state.result = ''\n state.position++\n captureStart = captureEnd = state.position\n\n while ((ch = state.input.charCodeAt(state.position)) !== 0) {\n if (ch === 0x22/* \" */) {\n captureSegment(state, captureStart, state.position, true)\n state.position++\n return true\n } else if (ch === 0x5C/* \\ */) {\n captureSegment(state, captureStart, state.position, true)\n ch = state.input.charCodeAt(++state.position)\n\n if (isEol(ch)) {\n skipSeparationSpace(state, false, nodeIndent)\n\n // TODO: rework to inline fn with no type cast?\n } else if (ch < 256 && simpleEscapeCheck[ch]) {\n state.result += simpleEscapeMap[ch]\n state.position++\n } else if ((tmp = escapedHexLen(ch)) > 0) {\n let hexLength = tmp\n let hexResult = 0\n\n for (; hexLength > 0; hexLength--) {\n ch = state.input.charCodeAt(++state.position)\n\n if ((tmp = fromHexCode(ch)) >= 0) {\n hexResult = (hexResult << 4) + tmp\n } else {\n throwError(state, 'expected hexadecimal character')\n }\n }\n\n state.result += charFromCodepoint(hexResult)\n\n state.position++\n } else {\n throwError(state, 'unknown escape sequence')\n }\n\n captureStart = captureEnd = state.position\n } else if (isEol(ch)) {\n captureSegment(state, captureStart, captureEnd, true)\n writeFoldedLines(state, skipSeparationSpace(state, false, nodeIndent))\n captureStart = captureEnd = state.position\n } else if (state.position === state.lineStart && testDocumentSeparator(state)) {\n throwError(state, 'unexpected end of the document within a double quoted scalar')\n } else {\n state.position++\n if (!isWhiteSpace(ch)) {\n captureEnd = state.position\n }\n }\n }\n\n throwError(state, 'unexpected end of the stream within a double quoted scalar')\n}\n\nfunction readFlowCollection (state, nodeIndent) {\n let readNext = true\n let _line\n let _lineStart\n let _pos\n const _tag = state.tag\n let _result\n const _anchor = state.anchor\n let terminator\n let isPair\n let isExplicitPair\n let isMapping\n const overridableKeys = Object.create(null)\n let keyNode\n let keyTag\n let valueNode\n\n let ch = state.input.charCodeAt(state.position)\n\n if (ch === 0x5B/* [ */) {\n terminator = 0x5D/* ] */\n isMapping = false\n _result = []\n } else if (ch === 0x7B/* { */) {\n terminator = 0x7D/* } */\n isMapping = true\n _result = {}\n } else {\n return false\n }\n\n if (state.anchor !== null) {\n storeAnchor(state, state.anchor, _result)\n }\n\n ch = state.input.charCodeAt(++state.position)\n\n while (ch !== 0) {\n skipSeparationSpace(state, true, nodeIndent)\n\n ch = state.input.charCodeAt(state.position)\n\n if (ch === terminator) {\n state.position++\n state.tag = _tag\n state.anchor = _anchor\n state.kind = isMapping ? 'mapping' : 'sequence'\n state.result = _result\n return true\n } else if (!readNext) {\n throwError(state, 'missed comma between flow collection entries')\n } else if (ch === 0x2C/* , */) {\n // \"flow collection entries can never be completely empty\", as per YAML 1.2, section 7.4\n throwError(state, \"expected the node content, but found ','\")\n }\n\n keyTag = keyNode = valueNode = null\n isPair = isExplicitPair = false\n\n if (ch === 0x3F/* ? */) {\n const following = state.input.charCodeAt(state.position + 1)\n\n if (isWsOrEol(following)) {\n isPair = isExplicitPair = true\n state.position++\n skipSeparationSpace(state, true, nodeIndent)\n }\n }\n\n _line = state.line // Save the current line.\n _lineStart = state.lineStart\n _pos = state.position\n composeNode(state, nodeIndent, CONTEXT_FLOW_IN, false, true)\n keyTag = state.tag\n keyNode = state.result\n skipSeparationSpace(state, true, nodeIndent)\n\n ch = state.input.charCodeAt(state.position)\n\n if ((isExplicitPair || state.line === _line) && ch === 0x3A/* : */) {\n isPair = true\n ch = state.input.charCodeAt(++state.position)\n skipSeparationSpace(state, true, nodeIndent)\n composeNode(state, nodeIndent, CONTEXT_FLOW_IN, false, true)\n valueNode = state.result\n }\n\n if (isMapping) {\n storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, valueNode, _line, _lineStart, _pos)\n } else if (isPair) {\n _result.push(storeMappingPair(state, null, overridableKeys, keyTag, keyNode, valueNode, _line, _lineStart, _pos))\n } else {\n _result.push(keyNode)\n }\n\n skipSeparationSpace(state, true, nodeIndent)\n\n ch = state.input.charCodeAt(state.position)\n\n if (ch === 0x2C/* , */) {\n readNext = true\n ch = state.input.charCodeAt(++state.position)\n } else {\n readNext = false\n }\n }\n\n throwError(state, 'unexpected end of the stream within a flow collection')\n}\n\nfunction readBlockScalar (state, nodeIndent) {\n let folding\n let chomping = CHOMPING_CLIP\n let didReadContent = false\n let detectedIndent = false\n let textIndent = nodeIndent\n let emptyLines = 0\n let atMoreIndented = false\n let tmp\n\n let ch = state.input.charCodeAt(state.position)\n\n if (ch === 0x7C/* | */) {\n folding = false\n } else if (ch === 0x3E/* > */) {\n folding = true\n } else {\n return false\n }\n\n state.kind = 'scalar'\n state.result = ''\n\n while (ch !== 0) {\n ch = state.input.charCodeAt(++state.position)\n\n if (ch === 0x2B/* + */ || ch === 0x2D/* - */) {\n if (CHOMPING_CLIP === chomping) {\n chomping = (ch === 0x2B/* + */) ? CHOMPING_KEEP : CHOMPING_STRIP\n } else {\n throwError(state, 'repeat of a chomping mode identifier')\n }\n } else if ((tmp = fromDecimalCode(ch)) >= 0) {\n if (tmp === 0) {\n throwError(state, 'bad explicit indentation width of a block scalar; it cannot be less than one')\n } else if (!detectedIndent) {\n textIndent = nodeIndent + tmp - 1\n detectedIndent = true\n } else {\n throwError(state, 'repeat of an indentation width identifier')\n }\n } else {\n break\n }\n }\n\n if (isWhiteSpace(ch)) {\n do { ch = state.input.charCodeAt(++state.position) }\n while (isWhiteSpace(ch))\n\n if (ch === 0x23/* # */) {\n do { ch = state.input.charCodeAt(++state.position) }\n while (!isEol(ch) && (ch !== 0))\n }\n }\n\n while (ch !== 0) {\n readLineBreak(state)\n state.lineIndent = 0\n\n ch = state.input.charCodeAt(state.position)\n\n // eslint-disable-next-line no-unmodified-loop-condition\n while ((!detectedIndent || state.lineIndent < textIndent) &&\n (ch === 0x20/* Space */)) {\n state.lineIndent++\n ch = state.input.charCodeAt(++state.position)\n }\n\n if (!detectedIndent && state.lineIndent > textIndent) {\n textIndent = state.lineIndent\n }\n\n if (isEol(ch)) {\n emptyLines++\n continue\n }\n\n if (!detectedIndent && textIndent === 0) {\n throwError(state, 'missing indentation for block scalar')\n }\n\n // End of the scalar.\n if (state.lineIndent < textIndent) {\n // Perform the chomping.\n if (chomping === CHOMPING_KEEP) {\n state.result += common.repeat('\\n', didReadContent ? 1 + emptyLines : emptyLines)\n } else if (chomping === CHOMPING_CLIP) {\n if (didReadContent) { // i.e. only if the scalar is not empty.\n state.result += '\\n'\n }\n }\n\n // Break this `while` cycle and go to the funciton's epilogue.\n break\n }\n\n // Folded style: use fancy rules to handle line breaks.\n if (folding) {\n // Lines starting with white space characters (more-indented lines) are not folded.\n if (isWhiteSpace(ch)) {\n atMoreIndented = true\n // except for the first content line (cf. Example 8.1)\n state.result += common.repeat('\\n', didReadContent ? 1 + emptyLines : emptyLines)\n\n // End of more-indented block.\n } else if (atMoreIndented) {\n atMoreIndented = false\n state.result += common.repeat('\\n', emptyLines + 1)\n\n // Just one line break - perceive as the same line.\n } else if (emptyLines === 0) {\n if (didReadContent) { // i.e. only if we have already read some scalar content.\n state.result += ' '\n }\n\n // Several line breaks - perceive as different lines.\n } else {\n state.result += common.repeat('\\n', emptyLines)\n }\n\n // Literal style: just add exact number of line breaks between content lines.\n } else {\n // Keep all line breaks except the header line break.\n state.result += common.repeat('\\n', didReadContent ? 1 + emptyLines : emptyLines)\n }\n\n didReadContent = true\n detectedIndent = true\n emptyLines = 0\n const captureStart = state.position\n\n while (!isEol(ch) && (ch !== 0)) {\n ch = state.input.charCodeAt(++state.position)\n }\n\n captureSegment(state, captureStart, state.position, false)\n }\n\n return true\n}\n\nfunction readBlockSequence (state, nodeIndent) {\n const _tag = state.tag\n const _anchor = state.anchor\n const _result = []\n let detected = false\n\n // there is a leading tab before this token, so it can't be a block sequence/mapping;\n // it can still be flow sequence/mapping or a scalar\n if (state.firstTabInLine !== -1) return false\n\n if (state.anchor !== null) {\n storeAnchor(state, state.anchor, _result)\n }\n\n let ch = state.input.charCodeAt(state.position)\n\n while (ch !== 0) {\n if (state.firstTabInLine !== -1) {\n state.position = state.firstTabInLine\n throwError(state, 'tab characters must not be used in indentation')\n }\n\n if (ch !== 0x2D/* - */) {\n break\n }\n\n const following = state.input.charCodeAt(state.position + 1)\n\n if (!isWsOrEol(following)) {\n break\n }\n\n detected = true\n state.position++\n\n if (skipSeparationSpace(state, true, -1)) {\n if (state.lineIndent <= nodeIndent) {\n _result.push(null)\n ch = state.input.charCodeAt(state.position)\n continue\n }\n }\n\n const _line = state.line\n composeNode(state, nodeIndent, CONTEXT_BLOCK_IN, false, true)\n _result.push(state.result)\n skipSeparationSpace(state, true, -1)\n\n ch = state.input.charCodeAt(state.position)\n\n if ((state.line === _line || state.lineIndent > nodeIndent) && (ch !== 0)) {\n throwError(state, 'bad indentation of a sequence entry')\n } else if (state.lineIndent < nodeIndent) {\n break\n }\n }\n\n if (detected) {\n state.tag = _tag\n state.anchor = _anchor\n state.kind = 'sequence'\n state.result = _result\n return true\n }\n return false\n}\n\nfunction readBlockMapping (state, nodeIndent, flowIndent) {\n let allowCompact\n let _keyLine\n let _keyLineStart\n let _keyPos\n const _tag = state.tag\n const _anchor = state.anchor\n const _result = {}\n const overridableKeys = Object.create(null)\n let keyTag = null\n let keyNode = null\n let valueNode = null\n let atExplicitKey = false\n let detected = false\n\n // there is a leading tab before this token, so it can't be a block sequence/mapping;\n // it can still be flow sequence/mapping or a scalar\n if (state.firstTabInLine !== -1) return false\n\n if (state.anchor !== null) {\n storeAnchor(state, state.anchor, _result)\n }\n\n let ch = state.input.charCodeAt(state.position)\n\n while (ch !== 0) {\n if (!atExplicitKey && state.firstTabInLine !== -1) {\n state.position = state.firstTabInLine\n throwError(state, 'tab characters must not be used in indentation')\n }\n\n const following = state.input.charCodeAt(state.position + 1)\n const _line = state.line // Save the current line.\n\n //\n // Explicit notation case. There are two separate blocks:\n // first for the key (denoted by \"?\") and second for the value (denoted by \":\")\n //\n if ((ch === 0x3F/* ? */ || ch === 0x3A/* : */) && isWsOrEol(following)) {\n if (ch === 0x3F/* ? */) {\n if (atExplicitKey) {\n storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, null, _keyLine, _keyLineStart, _keyPos)\n keyTag = keyNode = valueNode = null\n }\n\n detected = true\n atExplicitKey = true\n allowCompact = true\n } else if (atExplicitKey) {\n // i.e. 0x3A/* : */ === character after the explicit key.\n atExplicitKey = false\n allowCompact = true\n } else {\n throwError(state, 'incomplete explicit mapping pair; a key node is missed; or followed by a non-tabulated empty line')\n }\n\n state.position += 1\n ch = following\n\n //\n // Implicit notation case. Flow-style node as the key first, then \":\", and the value.\n //\n } else {\n _keyLine = state.line\n _keyLineStart = state.lineStart\n _keyPos = state.position\n\n if (!composeNode(state, flowIndent, CONTEXT_FLOW_OUT, false, true)) {\n // Neither implicit nor explicit notation.\n // Reading is done. Go to the epilogue.\n break\n }\n\n if (state.line === _line) {\n ch = state.input.charCodeAt(state.position)\n\n while (isWhiteSpace(ch)) {\n ch = state.input.charCodeAt(++state.position)\n }\n\n if (ch === 0x3A/* : */) {\n ch = state.input.charCodeAt(++state.position)\n\n if (!isWsOrEol(ch)) {\n throwError(state, 'a whitespace character is expected after the key-value separator within a block mapping')\n }\n\n if (atExplicitKey) {\n storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, null, _keyLine, _keyLineStart, _keyPos)\n keyTag = keyNode = valueNode = null\n }\n\n detected = true\n atExplicitKey = false\n allowCompact = false\n keyTag = state.tag\n keyNode = state.result\n } else if (detected) {\n throwError(state, 'can not read an implicit mapping pair; a colon is missed')\n } else {\n state.tag = _tag\n state.anchor = _anchor\n return true // Keep the result of `composeNode`.\n }\n } else if (detected) {\n throwError(state, 'can not read a block mapping entry; a multiline key may not be an implicit key')\n } else {\n state.tag = _tag\n state.anchor = _anchor\n return true // Keep the result of `composeNode`.\n }\n }\n\n //\n // Common reading code for both explicit and implicit notations.\n //\n if (state.line === _line || state.lineIndent > nodeIndent) {\n if (atExplicitKey) {\n _keyLine = state.line\n _keyLineStart = state.lineStart\n _keyPos = state.position\n }\n\n if (composeNode(state, nodeIndent, CONTEXT_BLOCK_OUT, true, allowCompact)) {\n if (atExplicitKey) {\n keyNode = state.result\n } else {\n valueNode = state.result\n }\n }\n\n if (!atExplicitKey) {\n storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, valueNode, _keyLine, _keyLineStart, _keyPos)\n keyTag = keyNode = valueNode = null\n }\n\n skipSeparationSpace(state, true, -1)\n ch = state.input.charCodeAt(state.position)\n }\n\n if ((state.line === _line || state.lineIndent > nodeIndent) && (ch !== 0)) {\n throwError(state, 'bad indentation of a mapping entry')\n } else if (state.lineIndent < nodeIndent) {\n break\n }\n }\n\n //\n // Epilogue.\n //\n\n // Special case: last mapping's node contains only the key in explicit notation.\n if (atExplicitKey) {\n storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, null, _keyLine, _keyLineStart, _keyPos)\n }\n\n // Expose the resulting mapping.\n if (detected) {\n state.tag = _tag\n state.anchor = _anchor\n state.kind = 'mapping'\n state.result = _result\n }\n\n return detected\n}\n\nfunction readTagProperty (state) {\n let isVerbatim = false\n let isNamed = false\n let tagHandle\n let tagName\n\n let ch = state.input.charCodeAt(state.position)\n\n if (ch !== 0x21/* ! */) return false\n\n if (state.tag !== null) {\n throwError(state, 'duplication of a tag property')\n }\n\n ch = state.input.charCodeAt(++state.position)\n\n if (ch === 0x3C/* < */) {\n isVerbatim = true\n ch = state.input.charCodeAt(++state.position)\n } else if (ch === 0x21/* ! */) {\n isNamed = true\n tagHandle = '!!'\n ch = state.input.charCodeAt(++state.position)\n } else {\n tagHandle = '!'\n }\n\n let _position = state.position\n\n if (isVerbatim) {\n do { ch = state.input.charCodeAt(++state.position) }\n while (ch !== 0 && ch !== 0x3E/* > */)\n\n if (state.position < state.length) {\n tagName = state.input.slice(_position, state.position)\n ch = state.input.charCodeAt(++state.position)\n } else {\n throwError(state, 'unexpected end of the stream within a verbatim tag')\n }\n } else {\n while (ch !== 0 && !isWsOrEol(ch)) {\n if (ch === 0x21/* ! */) {\n if (!isNamed) {\n tagHandle = state.input.slice(_position - 1, state.position + 1)\n\n if (!PATTERN_TAG_HANDLE.test(tagHandle)) {\n throwError(state, 'named tag handle cannot contain such characters')\n }\n\n isNamed = true\n _position = state.position + 1\n } else {\n throwError(state, 'tag suffix cannot contain exclamation marks')\n }\n }\n\n ch = state.input.charCodeAt(++state.position)\n }\n\n tagName = state.input.slice(_position, state.position)\n\n if (PATTERN_FLOW_INDICATORS.test(tagName)) {\n throwError(state, 'tag suffix cannot contain flow indicator characters')\n }\n }\n\n if (tagName && !PATTERN_TAG_URI.test(tagName)) {\n throwError(state, 'tag name cannot contain such characters: ' + tagName)\n }\n\n try {\n tagName = decodeURIComponent(tagName)\n } catch (err) {\n throwError(state, 'tag name is malformed: ' + tagName)\n }\n\n if (isVerbatim) {\n state.tag = tagName\n } else if (_hasOwnProperty.call(state.tagMap, tagHandle)) {\n state.tag = state.tagMap[tagHandle] + tagName\n } else if (tagHandle === '!') {\n state.tag = '!' + tagName\n } else if (tagHandle === '!!') {\n state.tag = 'tag:yaml.org,2002:' + tagName\n } else {\n throwError(state, 'undeclared tag handle \"' + tagHandle + '\"')\n }\n\n return true\n}\n\nfunction readAnchorProperty (state) {\n let ch = state.input.charCodeAt(state.position)\n\n if (ch !== 0x26/* & */) return false\n\n if (state.anchor !== null) {\n throwError(state, 'duplication of an anchor property')\n }\n\n ch = state.input.charCodeAt(++state.position)\n const _position = state.position\n\n while (ch !== 0 && !isWsOrEol(ch) && !isFlowIndicator(ch)) {\n ch = state.input.charCodeAt(++state.position)\n }\n\n if (state.position === _position) {\n throwError(state, 'name of an anchor node must contain at least one character')\n }\n\n state.anchor = state.input.slice(_position, state.position)\n return true\n}\n\nfunction readAlias (state) {\n let ch = state.input.charCodeAt(state.position)\n\n if (ch !== 0x2A/* * */) return false\n\n ch = state.input.charCodeAt(++state.position)\n const _position = state.position\n\n while (ch !== 0 && !isWsOrEol(ch) && !isFlowIndicator(ch)) {\n ch = state.input.charCodeAt(++state.position)\n }\n\n if (state.position === _position) {\n throwError(state, 'name of an alias node must contain at least one character')\n }\n\n const alias = state.input.slice(_position, state.position)\n\n if (!_hasOwnProperty.call(state.anchorMap, alias)) {\n throwError(state, 'unidentified alias \"' + alias + '\"')\n }\n\n state.result = state.anchorMap[alias]\n skipSeparationSpace(state, true, -1)\n return true\n}\n\nfunction tryReadBlockMappingFromProperty (state, propertyStart, nodeIndent, flowIndent) {\n const fallbackState = snapshotState(state)\n\n beginAnchorTransaction(state)\n restoreState(state, propertyStart)\n\n // Re-read the leading properties as part of the first implicit key, not as\n // properties of the current node.\n state.tag = null\n state.anchor = null\n state.kind = null\n state.result = null\n\n if (readBlockMapping(state, nodeIndent, flowIndent) && state.kind === 'mapping') {\n commitAnchorTransaction(state)\n return true\n }\n\n rollbackAnchorTransaction(state)\n restoreState(state, fallbackState)\n return false\n}\n\nfunction composeNode (state, parentIndent, nodeContext, allowToSeek, allowCompact) {\n let allowBlockScalars\n let allowBlockCollections\n let indentStatus = 1 // 1: this>parent, 0: this=parent, -1: this<parent\n let atNewLine = false\n let hasContent = false\n let propertyStart = null\n let type\n let flowIndent\n let blockIndent\n\n if (state.depth >= state.maxDepth) {\n throwError(state, 'nesting exceeded maxDepth (' + state.maxDepth + ')')\n }\n\n state.depth += 1\n\n if (state.listener !== null) {\n state.listener('open', state)\n }\n\n state.tag = null\n state.anchor = null\n state.kind = null\n state.result = null\n\n const allowBlockStyles = allowBlockScalars = allowBlockCollections =\n CONTEXT_BLOCK_OUT === nodeContext ||\n CONTEXT_BLOCK_IN === nodeContext\n\n if (allowToSeek) {\n if (skipSeparationSpace(state, true, -1)) {\n atNewLine = true\n\n if (state.lineIndent > parentIndent) {\n indentStatus = 1\n } else if (state.lineIndent === parentIndent) {\n indentStatus = 0\n } else if (state.lineIndent < parentIndent) {\n indentStatus = -1\n }\n }\n }\n\n if (indentStatus === 1) {\n while (true) {\n const ch = state.input.charCodeAt(state.position)\n const propertyState = snapshotState(state)\n\n // A duplicate property token after a line break can be the first key of\n // a nested block mapping, e.g. `!!map\\n !!str key: value`.\n if (atNewLine &&\n ((ch === 0x21/* ! */ && state.tag !== null) ||\n (ch === 0x26/* & */ && state.anchor !== null))) {\n break\n }\n\n if (!readTagProperty(state) && !readAnchorProperty(state)) {\n break\n }\n\n if (propertyStart === null) {\n propertyStart = propertyState\n }\n\n if (skipSeparationSpace(state, true, -1)) {\n atNewLine = true\n allowBlockCollections = allowBlockStyles\n\n if (state.lineIndent > parentIndent) {\n indentStatus = 1\n } else if (state.lineIndent === parentIndent) {\n indentStatus = 0\n } else if (state.lineIndent < parentIndent) {\n indentStatus = -1\n }\n } else {\n allowBlockCollections = false\n }\n }\n }\n\n if (allowBlockCollections) {\n allowBlockCollections = atNewLine || allowCompact\n }\n\n if (indentStatus === 1 || CONTEXT_BLOCK_OUT === nodeContext) {\n if (CONTEXT_FLOW_IN === nodeContext || CONTEXT_FLOW_OUT === nodeContext) {\n flowIndent = parentIndent\n } else {\n flowIndent = parentIndent + 1\n }\n\n blockIndent = state.position - state.lineStart\n\n if (indentStatus === 1) {\n if ((allowBlockCollections &&\n (readBlockSequence(state, blockIndent) || readBlockMapping(state, blockIndent, flowIndent))) ||\n readFlowCollection(state, flowIndent)) {\n hasContent = true\n } else {\n const ch = state.input.charCodeAt(state.position)\n\n if (propertyStart !== null && allowBlockStyles && !allowBlockCollections &&\n ch !== 0x7C/* | */ && ch !== 0x3E/* > */ &&\n tryReadBlockMappingFromProperty(\n state,\n propertyStart,\n propertyStart.position - propertyStart.lineStart,\n flowIndent\n )) {\n hasContent = true\n } else if ((allowBlockScalars && readBlockScalar(state, flowIndent)) ||\n readSingleQuotedScalar(state, flowIndent) ||\n readDoubleQuotedScalar(state, flowIndent)) {\n hasContent = true\n } else if (readAlias(state)) {\n hasContent = true\n\n if (state.tag !== null || state.anchor !== null) {\n throwError(state, 'alias node should not have any properties')\n }\n } else if (readPlainScalar(state, flowIndent, CONTEXT_FLOW_IN === nodeContext)) {\n hasContent = true\n\n if (state.tag === null) {\n state.tag = '?'\n }\n }\n\n if (state.anchor !== null) {\n storeAnchor(state, state.anchor, state.result)\n }\n }\n } else if (indentStatus === 0) {\n // Special case: block sequences are allowed to have same indentation level as the parent.\n // http://www.yaml.org/spec/1.2/spec.html#id2799784\n hasContent = allowBlockCollections && readBlockSequence(state, blockIndent)\n }\n }\n\n if (state.tag === null) {\n if (state.anchor !== null) {\n storeAnchor(state, state.anchor, state.result)\n }\n } else if (state.tag === '?') {\n // Implicit resolving is not allowed for non-scalar types, and '?'\n // non-specific tag is only automatically assigned to plain scalars.\n //\n // We only need to check kind conformity in case user explicitly assigns '?'\n // tag, for example like this: \"!<?> [0]\"\n //\n if (state.result !== null && state.kind !== 'scalar') {\n throwError(state, 'unacceptable node kind for !<?> tag; it should be \"scalar\", not \"' + state.kind + '\"')\n }\n\n for (let typeIndex = 0, typeQuantity = state.implicitTypes.length; typeIndex < typeQuantity; typeIndex += 1) {\n type = state.implicitTypes[typeIndex]\n\n if (type.resolve(state.result)) { // `state.result` updated in resolver if matched\n state.result = type.construct(state.result)\n state.tag = type.tag\n if (state.anchor !== null) {\n storeAnchor(state, state.anchor, state.result)\n }\n break\n }\n }\n } else if (state.tag !== '!') {\n if (_hasOwnProperty.call(state.typeMap[state.kind || 'fallback'], state.tag)) {\n type = state.typeMap[state.kind || 'fallback'][state.tag]\n } else {\n // looking for multi type\n type = null\n const typeList = state.typeMap.multi[state.kind || 'fallback']\n\n for (let typeIndex = 0, typeQuantity = typeList.length; typeIndex < typeQuantity; typeIndex += 1) {\n if (state.tag.slice(0, typeList[typeIndex].tag.length) === typeList[typeIndex].tag) {\n type = typeList[typeIndex]\n break\n }\n }\n }\n\n if (!type) {\n throwError(state, 'unknown tag !<' + state.tag + '>')\n }\n\n if (state.result !== null && type.kind !== state.kind) {\n throwError(state, 'unacceptable node kind for !<' + state.tag + '> tag; it should be \"' + type.kind + '\", not \"' + state.kind + '\"')\n }\n\n if (!type.resolve(state.result, state.tag)) { // `state.result` updated in resolver if matched\n throwError(state, 'cannot resolve a node with !<' + state.tag + '> explicit tag')\n } else {\n state.result = type.construct(state.result, state.tag)\n if (state.anchor !== null) {\n storeAnchor(state, state.anchor, state.result)\n }\n }\n }\n\n if (state.listener !== null) {\n state.listener('close', state)\n }\n\n state.depth -= 1\n return state.tag !== null || state.anchor !== null || hasContent\n}\n\nfunction readDocument (state) {\n const documentStart = state.position\n let hasDirectives = false\n let ch\n\n state.version = null\n state.checkLineBreaks = state.legacy\n state.tagMap = Object.create(null)\n state.anchorMap = Object.create(null)\n\n while ((ch = state.input.charCodeAt(state.position)) !== 0) {\n skipSeparationSpace(state, true, -1)\n\n ch = state.input.charCodeAt(state.position)\n\n if (state.lineIndent > 0 || ch !== 0x25/* % */) {\n break\n }\n\n hasDirectives = true\n ch = state.input.charCodeAt(++state.position)\n let _position = state.position\n\n while (ch !== 0 && !isWsOrEol(ch)) {\n ch = state.input.charCodeAt(++state.position)\n }\n\n const directiveName = state.input.slice(_position, state.position)\n const directiveArgs = []\n\n if (directiveName.length < 1) {\n throwError(state, 'directive name must not be less than one character in length')\n }\n\n while (ch !== 0) {\n while (isWhiteSpace(ch)) {\n ch = state.input.charCodeAt(++state.position)\n }\n\n if (ch === 0x23/* # */) {\n do { ch = state.input.charCodeAt(++state.position) }\n while (ch !== 0 && !isEol(ch))\n break\n }\n\n if (isEol(ch)) break\n\n _position = state.position\n\n while (ch !== 0 && !isWsOrEol(ch)) {\n ch = state.input.charCodeAt(++state.position)\n }\n\n directiveArgs.push(state.input.slice(_position, state.position))\n }\n\n if (ch !== 0) readLineBreak(state)\n\n if (_hasOwnProperty.call(directiveHandlers, directiveName)) {\n directiveHandlers[directiveName](state, directiveName, directiveArgs)\n } else {\n throwWarning(state, 'unknown document directive \"' + directiveName + '\"')\n }\n }\n\n skipSeparationSpace(state, true, -1)\n\n if (state.lineIndent === 0 &&\n state.input.charCodeAt(state.position) === 0x2D/* - */ &&\n state.input.charCodeAt(state.position + 1) === 0x2D/* - */ &&\n state.input.charCodeAt(state.position + 2) === 0x2D/* - */) {\n state.position += 3\n skipSeparationSpace(state, true, -1)\n } else if (hasDirectives) {\n throwError(state, 'directives end mark is expected')\n }\n\n composeNode(state, state.lineIndent - 1, CONTEXT_BLOCK_OUT, false, true)\n skipSeparationSpace(state, true, -1)\n\n if (state.checkLineBreaks &&\n PATTERN_NON_ASCII_LINE_BREAKS.test(state.input.slice(documentStart, state.position))) {\n throwWarning(state, 'non-ASCII line breaks are interpreted as content')\n }\n\n state.documents.push(state.result)\n\n if (state.position === state.lineStart && testDocumentSeparator(state)) {\n if (state.input.charCodeAt(state.position) === 0x2E/* . */) {\n state.position += 3\n skipSeparationSpace(state, true, -1)\n }\n return\n }\n\n if (state.position < (state.length - 1)) {\n throwError(state, 'end of the stream or a document separator is expected')\n }\n}\n\nfunction loadDocuments (input, options) {\n input = String(input)\n options = options || {}\n\n if (input.length !== 0) {\n // Add tailing `\\n` if not exists\n if (input.charCodeAt(input.length - 1) !== 0x0A/* LF */ &&\n input.charCodeAt(input.length - 1) !== 0x0D/* CR */) {\n input += '\\n'\n }\n\n // Strip BOM\n if (input.charCodeAt(0) === 0xFEFF) {\n input = input.slice(1)\n }\n }\n\n const state = new State(input, options)\n\n const nullpos = input.indexOf('\\0')\n\n if (nullpos !== -1) {\n state.position = nullpos\n throwError(state, 'null byte is not allowed in input')\n }\n\n // Use 0 as string terminator. That significantly simplifies bounds check.\n state.input += '\\0'\n\n while (state.input.charCodeAt(state.position) === 0x20/* Space */) {\n state.lineIndent += 1\n state.position += 1\n }\n\n while (state.position < (state.length - 1)) {\n readDocument(state)\n }\n\n return state.documents\n}\n\nfunction loadAll (input, iterator, options) {\n if (iterator !== null && typeof iterator === 'object' && typeof options === 'undefined') {\n options = iterator\n iterator = null\n }\n\n const documents = loadDocuments(input, options)\n\n if (typeof iterator !== 'function') {\n return documents\n }\n\n for (let index = 0, length = documents.length; index < length; index += 1) {\n iterator(documents[index])\n }\n}\n\nfunction load (input, options) {\n const documents = loadDocuments(input, options)\n\n if (documents.length === 0) {\n return undefined\n } else if (documents.length === 1) {\n return documents[0]\n }\n throw new YAMLException('expected a single document in the stream, but found more')\n}\n\nmodule.exports.loadAll = loadAll\nmodule.exports.load = load\n","'use strict'\n\nconst common = require('./common')\nconst YAMLException = require('./exception')\nconst DEFAULT_SCHEMA = require('./schema/default')\n\nconst _toString = Object.prototype.toString\nconst _hasOwnProperty = Object.prototype.hasOwnProperty\n\nconst CHAR_BOM = 0xFEFF\nconst CHAR_TAB = 0x09 /* Tab */\nconst CHAR_LINE_FEED = 0x0A /* LF */\nconst CHAR_CARRIAGE_RETURN = 0x0D /* CR */\nconst CHAR_SPACE = 0x20 /* Space */\nconst CHAR_EXCLAMATION = 0x21 /* ! */\nconst CHAR_DOUBLE_QUOTE = 0x22 /* \" */\nconst CHAR_SHARP = 0x23 /* # */\nconst CHAR_PERCENT = 0x25 /* % */\nconst CHAR_AMPERSAND = 0x26 /* & */\nconst CHAR_SINGLE_QUOTE = 0x27 /* ' */\nconst CHAR_ASTERISK = 0x2A /* * */\nconst CHAR_COMMA = 0x2C /* , */\nconst CHAR_MINUS = 0x2D /* - */\nconst CHAR_COLON = 0x3A /* : */\nconst CHAR_EQUALS = 0x3D /* = */\nconst CHAR_GREATER_THAN = 0x3E /* > */\nconst CHAR_QUESTION = 0x3F /* ? */\nconst CHAR_COMMERCIAL_AT = 0x40 /* @ */\nconst CHAR_LEFT_SQUARE_BRACKET = 0x5B /* [ */\nconst CHAR_RIGHT_SQUARE_BRACKET = 0x5D /* ] */\nconst CHAR_GRAVE_ACCENT = 0x60 /* ` */\nconst CHAR_LEFT_CURLY_BRACKET = 0x7B /* { */\nconst CHAR_VERTICAL_LINE = 0x7C /* | */\nconst CHAR_RIGHT_CURLY_BRACKET = 0x7D /* } */\n\nconst ESCAPE_SEQUENCES = {}\n\nESCAPE_SEQUENCES[0x00] = '\\\\0'\nESCAPE_SEQUENCES[0x07] = '\\\\a'\nESCAPE_SEQUENCES[0x08] = '\\\\b'\nESCAPE_SEQUENCES[0x09] = '\\\\t'\nESCAPE_SEQUENCES[0x0A] = '\\\\n'\nESCAPE_SEQUENCES[0x0B] = '\\\\v'\nESCAPE_SEQUENCES[0x0C] = '\\\\f'\nESCAPE_SEQUENCES[0x0D] = '\\\\r'\nESCAPE_SEQUENCES[0x1B] = '\\\\e'\nESCAPE_SEQUENCES[0x22] = '\\\\\"'\nESCAPE_SEQUENCES[0x5C] = '\\\\\\\\'\nESCAPE_SEQUENCES[0x85] = '\\\\N'\nESCAPE_SEQUENCES[0xA0] = '\\\\_'\nESCAPE_SEQUENCES[0x2028] = '\\\\L'\nESCAPE_SEQUENCES[0x2029] = '\\\\P'\n\nconst DEPRECATED_BOOLEANS_SYNTAX = [\n 'y', 'Y', 'yes', 'Yes', 'YES', 'on', 'On', 'ON',\n 'n', 'N', 'no', 'No', 'NO', 'off', 'Off', 'OFF'\n]\n\nconst DEPRECATED_BASE60_SYNTAX = /^[-+]?[0-9_]+(?::[0-9_]+)+(?:\\.[0-9_]*)?$/\n\nfunction compileStyleMap (schema, map) {\n if (map === null) return {}\n\n const result = {}\n const keys = Object.keys(map)\n\n for (let index = 0, length = keys.length; index < length; index += 1) {\n let tag = keys[index]\n let style = String(map[tag])\n\n if (tag.slice(0, 2) === '!!') {\n tag = 'tag:yaml.org,2002:' + tag.slice(2)\n }\n const type = schema.compiledTypeMap['fallback'][tag]\n\n if (type && _hasOwnProperty.call(type.styleAliases, style)) {\n style = type.styleAliases[style]\n }\n\n result[tag] = style\n }\n\n return result\n}\n\nfunction encodeHex (character) {\n let handle\n let length\n\n const string = character.toString(16).toUpperCase()\n\n if (character <= 0xFF) {\n handle = 'x'\n length = 2\n } else if (character <= 0xFFFF) {\n handle = 'u'\n length = 4\n } else if (character <= 0xFFFFFFFF) {\n handle = 'U'\n length = 8\n } else {\n throw new YAMLException('code point within a string may not be greater than 0xFFFFFFFF')\n }\n\n return '\\\\' + handle + common.repeat('0', length - string.length) + string\n}\n\nconst QUOTING_TYPE_SINGLE = 1\nconst QUOTING_TYPE_DOUBLE = 2\n\nfunction State (options) {\n this.schema = options['schema'] || DEFAULT_SCHEMA\n this.indent = Math.max(1, (options['indent'] || 2))\n this.noArrayIndent = options['noArrayIndent'] || false\n this.skipInvalid = options['skipInvalid'] || false\n this.flowLevel = (common.isNothing(options['flowLevel']) ? -1 : options['flowLevel'])\n this.styleMap = compileStyleMap(this.schema, options['styles'] || null)\n this.sortKeys = options['sortKeys'] || false\n this.lineWidth = options['lineWidth'] || 80\n this.noRefs = options['noRefs'] || false\n this.noCompatMode = options['noCompatMode'] || false\n this.condenseFlow = options['condenseFlow'] || false\n this.quotingType = options['quotingType'] === '\"' ? QUOTING_TYPE_DOUBLE : QUOTING_TYPE_SINGLE\n this.forceQuotes = options['forceQuotes'] || false\n this.replacer = typeof options['replacer'] === 'function' ? options['replacer'] : null\n\n this.implicitTypes = this.schema.compiledImplicit\n this.explicitTypes = this.schema.compiledExplicit\n\n this.tag = null\n this.result = ''\n\n this.duplicates = []\n this.usedDuplicates = null\n}\n\n// Indents every line in a string. Empty lines (\\n only) are not indented.\nfunction indentString (string, spaces) {\n const ind = common.repeat(' ', spaces)\n let position = 0\n let result = ''\n const length = string.length\n\n while (position < length) {\n let line\n const next = string.indexOf('\\n', position)\n if (next === -1) {\n line = string.slice(position)\n position = length\n } else {\n line = string.slice(position, next + 1)\n position = next + 1\n }\n\n if (line.length && line !== '\\n') result += ind\n\n result += line\n }\n\n return result\n}\n\nfunction generateNextLine (state, level) {\n return '\\n' + common.repeat(' ', state.indent * level)\n}\n\nfunction testImplicitResolving (state, str) {\n for (let index = 0, length = state.implicitTypes.length; index < length; index += 1) {\n const type = state.implicitTypes[index]\n\n if (type.resolve(str)) {\n return true\n }\n }\n\n return false\n}\n\n// [33] s-white ::= s-space | s-tab\nfunction isWhitespace (c) {\n return c === CHAR_SPACE || c === CHAR_TAB\n}\n\n// Returns true if the character can be printed without escaping.\n// From YAML 1.2: \"any allowed characters known to be non-printable\n// should also be escaped. [However,] This isn’t mandatory\"\n// Derived from nb-char - \\t - #x85 - #xA0 - #x2028 - #x2029.\nfunction isPrintable (c) {\n return (c >= 0x00020 && c <= 0x00007E) ||\n ((c >= 0x000A1 && c <= 0x00D7FF) && c !== 0x2028 && c !== 0x2029) ||\n ((c >= 0x0E000 && c <= 0x00FFFD) && c !== CHAR_BOM) ||\n (c >= 0x10000 && c <= 0x10FFFF)\n}\n\n// [34] ns-char ::= nb-char - s-white\n// [27] nb-char ::= c-printable - b-char - c-byte-order-mark\n// [26] b-char ::= b-line-feed | b-carriage-return\n// Including s-white (for some reason, examples doesn't match specs in this aspect)\n// ns-char ::= c-printable - b-line-feed - b-carriage-return - c-byte-order-mark\nfunction isNsCharOrWhitespace (c) {\n return isPrintable(c) &&\n c !== CHAR_BOM &&\n // - b-char\n c !== CHAR_CARRIAGE_RETURN &&\n c !== CHAR_LINE_FEED\n}\n\n// [127] ns-plain-safe(c) ::= c = flow-out ⇒ ns-plain-safe-out\n// c = flow-in ⇒ ns-plain-safe-in\n// c = block-key ⇒ ns-plain-safe-out\n// c = flow-key ⇒ ns-plain-safe-in\n// [128] ns-plain-safe-out ::= ns-char\n// [129] ns-plain-safe-in ::= ns-char - c-flow-indicator\n// [130] ns-plain-char(c) ::= ( ns-plain-safe(c) - “:” - “#” )\n// | ( /* An ns-char preceding */ “#” )\n// | ( “:” /* Followed by an ns-plain-safe(c) */ )\nfunction isPlainSafe (c, prev, inblock) {\n const cIsNsCharOrWhitespace = isNsCharOrWhitespace(c)\n const cIsNsChar = cIsNsCharOrWhitespace && !isWhitespace(c)\n return (\n (\n // ns-plain-safe\n inblock // c = flow-in\n ? cIsNsCharOrWhitespace\n : cIsNsCharOrWhitespace &&\n // - c-flow-indicator\n c !== CHAR_COMMA &&\n c !== CHAR_LEFT_SQUARE_BRACKET &&\n c !== CHAR_RIGHT_SQUARE_BRACKET &&\n c !== CHAR_LEFT_CURLY_BRACKET &&\n c !== CHAR_RIGHT_CURLY_BRACKET\n ) &&\n // ns-plain-char\n c !== CHAR_SHARP && // false on '#'\n !(prev === CHAR_COLON && !cIsNsChar)\n ) || // false on ': '\n (isNsCharOrWhitespace(prev) && !isWhitespace(prev) && c === CHAR_SHARP) || // change to true on '[^ ]#'\n (prev === CHAR_COLON && cIsNsChar) // change to true on ':[^ ]'\n}\n\n// Simplified test for values allowed as the first character in plain style.\nfunction isPlainSafeFirst (c) {\n // Uses a subset of ns-char - c-indicator\n // where ns-char = nb-char - s-white.\n // No support of ( ( “?” | “:” | “-” ) /* Followed by an ns-plain-safe(c)) */ ) part\n return isPrintable(c) &&\n c !== CHAR_BOM &&\n !isWhitespace(c) && // - s-white\n // - (c-indicator ::=\n // “-” | “?” | “:” | “,” | “[” | “]” | “{” | “}”\n c !== CHAR_MINUS &&\n c !== CHAR_QUESTION &&\n c !== CHAR_COLON &&\n c !== CHAR_COMMA &&\n c !== CHAR_LEFT_SQUARE_BRACKET &&\n c !== CHAR_RIGHT_SQUARE_BRACKET &&\n c !== CHAR_LEFT_CURLY_BRACKET &&\n c !== CHAR_RIGHT_CURLY_BRACKET &&\n // | “#” | “&” | “*” | “!” | “|” | “=” | “>” | “'” | “\"”\n c !== CHAR_SHARP &&\n c !== CHAR_AMPERSAND &&\n c !== CHAR_ASTERISK &&\n c !== CHAR_EXCLAMATION &&\n c !== CHAR_VERTICAL_LINE &&\n c !== CHAR_EQUALS &&\n c !== CHAR_GREATER_THAN &&\n c !== CHAR_SINGLE_QUOTE &&\n c !== CHAR_DOUBLE_QUOTE &&\n // | “%” | “@” | “`”)\n c !== CHAR_PERCENT &&\n c !== CHAR_COMMERCIAL_AT &&\n c !== CHAR_GRAVE_ACCENT\n}\n\n// Simplified test for values allowed as the last character in plain style.\nfunction isPlainSafeLast (c) {\n // just not whitespace or colon, it will be checked to be plain character later\n return !isWhitespace(c) && c !== CHAR_COLON\n}\n\n// Same as 'string'.codePointAt(pos), but works in older browsers.\nfunction codePointAt (string, pos) {\n const first = string.charCodeAt(pos)\n let second\n\n if (first >= 0xD800 && first <= 0xDBFF && pos + 1 < string.length) {\n second = string.charCodeAt(pos + 1)\n if (second >= 0xDC00 && second <= 0xDFFF) {\n // https://mathiasbynens.be/notes/javascript-encoding#surrogate-formulae\n return (first - 0xD800) * 0x400 + second - 0xDC00 + 0x10000\n }\n }\n return first\n}\n\n// Determines whether block indentation indicator is required.\nfunction needIndentIndicator (string) {\n const leadingSpaceRe = /^\\n* /\n return leadingSpaceRe.test(string)\n}\n\nconst STYLE_PLAIN = 1\nconst STYLE_SINGLE = 2\nconst STYLE_LITERAL = 3\nconst STYLE_FOLDED = 4\nconst STYLE_DOUBLE = 5\n\n// Determines which scalar styles are possible and returns the preferred style.\n// lineWidth = -1 => no limit.\n// Pre-conditions: str.length > 0.\n// Post-conditions:\n// STYLE_PLAIN or STYLE_SINGLE => no \\n are in the string.\n// STYLE_LITERAL => no lines are suitable for folding (or lineWidth is -1).\n// STYLE_FOLDED => a line > lineWidth and can be folded (and lineWidth != -1).\nfunction chooseScalarStyle (string, singleLineOnly, indentPerLevel, lineWidth,\n testAmbiguousType, quotingType, forceQuotes, inblock) {\n let i\n let char = 0\n let prevChar = null\n let hasLineBreak = false\n let hasFoldableLine = false // only checked if shouldTrackWidth\n const shouldTrackWidth = lineWidth !== -1\n let previousLineBreak = -1 // count the first line correctly\n let plain = isPlainSafeFirst(codePointAt(string, 0)) &&\n isPlainSafeLast(codePointAt(string, string.length - 1))\n\n if (singleLineOnly || forceQuotes) {\n // Case: no block styles.\n // Check for disallowed characters to rule out plain and single.\n for (i = 0; i < string.length; char >= 0x10000 ? i += 2 : i++) {\n char = codePointAt(string, i)\n if (!isPrintable(char)) {\n return STYLE_DOUBLE\n }\n plain = plain && isPlainSafe(char, prevChar, inblock)\n prevChar = char\n }\n } else {\n // Case: block styles permitted.\n for (i = 0; i < string.length; char >= 0x10000 ? i += 2 : i++) {\n char = codePointAt(string, i)\n if (char === CHAR_LINE_FEED) {\n hasLineBreak = true\n // Check if any line can be folded.\n if (shouldTrackWidth) {\n hasFoldableLine = hasFoldableLine ||\n // Foldable line = too long, and not more-indented.\n (i - previousLineBreak - 1 > lineWidth &&\n string[previousLineBreak + 1] !== ' ')\n previousLineBreak = i\n }\n } else if (!isPrintable(char)) {\n return STYLE_DOUBLE\n }\n plain = plain && isPlainSafe(char, prevChar, inblock)\n prevChar = char\n }\n // in case the end is missing a \\n\n hasFoldableLine = hasFoldableLine || (shouldTrackWidth &&\n (i - previousLineBreak - 1 > lineWidth &&\n string[previousLineBreak + 1] !== ' '))\n }\n // Although every style can represent \\n without escaping, prefer block styles\n // for multiline, since they're more readable and they don't add empty lines.\n // Also prefer folding a super-long line.\n if (!hasLineBreak && !hasFoldableLine) {\n // Strings interpretable as another type have to be quoted;\n // e.g. the string 'true' vs. the boolean true.\n if (plain && !forceQuotes && !testAmbiguousType(string)) {\n return STYLE_PLAIN\n }\n return quotingType === QUOTING_TYPE_DOUBLE ? STYLE_DOUBLE : STYLE_SINGLE\n }\n // Edge case: block indentation indicator can only have one digit.\n if (indentPerLevel > 9 && needIndentIndicator(string)) {\n return STYLE_DOUBLE\n }\n // At this point we know block styles are valid.\n // Prefer literal style unless we want to fold.\n if (!forceQuotes) {\n return hasFoldableLine ? STYLE_FOLDED : STYLE_LITERAL\n }\n return quotingType === QUOTING_TYPE_DOUBLE ? STYLE_DOUBLE : STYLE_SINGLE\n}\n\n// Note: line breaking/folding is implemented for only the folded style.\n// NB. We drop the last trailing newline (if any) of a returned block scalar\n// since the dumper adds its own newline. This always works:\n// • No ending newline => unaffected; already using strip \"-\" chomping.\n// • Ending newline => removed then restored.\n// Importantly, this keeps the \"+\" chomp indicator from gaining an extra line.\nfunction writeScalar (state, string, level, iskey, inblock) {\n state.dump = (function () {\n if (string.length === 0) {\n return state.quotingType === QUOTING_TYPE_DOUBLE ? '\"\"' : \"''\"\n }\n if (!state.noCompatMode) {\n if (DEPRECATED_BOOLEANS_SYNTAX.indexOf(string) !== -1 || DEPRECATED_BASE60_SYNTAX.test(string)) {\n return state.quotingType === QUOTING_TYPE_DOUBLE ? ('\"' + string + '\"') : (\"'\" + string + \"'\")\n }\n }\n\n const indent = state.indent * Math.max(1, level) // no 0-indent scalars\n // As indentation gets deeper, let the width decrease monotonically\n // to the lower bound min(state.lineWidth, 40).\n // Note that this implies\n // state.lineWidth ≤ 40 + state.indent: width is fixed at the lower bound.\n // state.lineWidth > 40 + state.indent: width decreases until the lower bound.\n // This behaves better than a constant minimum width which disallows narrower options,\n // or an indent threshold which causes the width to suddenly increase.\n const lineWidth = (state.lineWidth === -1)\n ? -1\n : Math.max(Math.min(state.lineWidth, 40), state.lineWidth - indent)\n\n // Without knowing if keys are implicit/explicit, assume implicit for safety.\n const singleLineOnly = iskey ||\n // No block styles in flow mode.\n (state.flowLevel > -1 && level >= state.flowLevel)\n function testAmbiguity (string) {\n return testImplicitResolving(state, string)\n }\n\n switch (chooseScalarStyle(string, singleLineOnly, state.indent, lineWidth,\n testAmbiguity, state.quotingType, state.forceQuotes && !iskey, inblock)) {\n case STYLE_PLAIN:\n return string\n case STYLE_SINGLE:\n return \"'\" + string.replace(/'/g, \"''\") + \"'\"\n case STYLE_LITERAL:\n return '|' + blockHeader(string, state.indent) +\n dropEndingNewline(indentString(string, indent))\n case STYLE_FOLDED:\n return '>' + blockHeader(string, state.indent) +\n dropEndingNewline(indentString(foldString(string, lineWidth), indent))\n case STYLE_DOUBLE:\n return '\"' + escapeString(string, lineWidth) + '\"'\n default:\n throw new YAMLException('impossible error: invalid scalar style')\n }\n }())\n}\n\n// Pre-conditions: string is valid for a block scalar, 1 <= indentPerLevel <= 9.\nfunction blockHeader (string, indentPerLevel) {\n const indentIndicator = needIndentIndicator(string) ? String(indentPerLevel) : ''\n\n // note the special case: the string '\\n' counts as a \"trailing\" empty line.\n const clip = string[string.length - 1] === '\\n'\n const keep = clip && (string[string.length - 2] === '\\n' || string === '\\n')\n const chomp = keep ? '+' : (clip ? '' : '-')\n\n return indentIndicator + chomp + '\\n'\n}\n\n// (See the note for writeScalar.)\nfunction dropEndingNewline (string) {\n return string[string.length - 1] === '\\n' ? string.slice(0, -1) : string\n}\n\n// Note: a long line without a suitable break point will exceed the width limit.\n// Pre-conditions: every char in str isPrintable, str.length > 0, width > 0.\nfunction foldString (string, width) {\n // In folded style, $k$ consecutive newlines output as $k+1$ newlines—\n // unless they're before or after a more-indented line, or at the very\n // beginning or end, in which case $k$ maps to $k$.\n // Therefore, parse each chunk as newline(s) followed by a content line.\n const lineRe = /(\\n+)([^\\n]*)/g\n\n // first line (possibly an empty line)\n let result = (function () {\n let nextLF = string.indexOf('\\n')\n nextLF = nextLF !== -1 ? nextLF : string.length\n lineRe.lastIndex = nextLF\n return foldLine(string.slice(0, nextLF), width)\n }())\n // If we haven't reached the first content line yet, don't add an extra \\n.\n let prevMoreIndented = string[0] === '\\n' || string[0] === ' '\n let moreIndented\n\n // rest of the lines\n let match\n while ((match = lineRe.exec(string))) {\n const prefix = match[1]\n const line = match[2]\n\n moreIndented = (line[0] === ' ')\n result += prefix +\n ((!prevMoreIndented && !moreIndented && line !== '') ? '\\n' : '') +\n foldLine(line, width)\n prevMoreIndented = moreIndented\n }\n\n return result\n}\n\n// Greedy line breaking.\n// Picks the longest line under the limit each time,\n// otherwise settles for the shortest line over the limit.\n// NB. More-indented lines *cannot* be folded, as that would add an extra \\n.\nfunction foldLine (line, width) {\n if (line === '' || line[0] === ' ') return line\n\n // Since a more-indented line adds a \\n, breaks can't be followed by a space.\n const breakRe = / [^ ]/g // note: the match index will always be <= length-2.\n let match\n // start is an inclusive index. end, curr, and next are exclusive.\n let start = 0\n let end\n let curr = 0\n let next = 0\n let result = ''\n\n // Invariants: 0 <= start <= length-1.\n // 0 <= curr <= next <= max(0, length-2). curr - start <= width.\n // Inside the loop:\n // A match implies length >= 2, so curr and next are <= length-2.\n while ((match = breakRe.exec(line))) {\n next = match.index\n // maintain invariant: curr - start <= width\n if (next - start > width) {\n end = (curr > start) ? curr : next // derive end <= length-2\n result += '\\n' + line.slice(start, end)\n // skip the space that was output as \\n\n start = end + 1 // derive start <= length-1\n }\n curr = next\n }\n\n // By the invariants, start <= length-1, so there is something left over.\n // It is either the whole string or a part starting from non-whitespace.\n result += '\\n'\n // Insert a break if the remainder is too long and there is a break available.\n if (line.length - start > width && curr > start) {\n result += line.slice(start, curr) + '\\n' + line.slice(curr + 1)\n } else {\n result += line.slice(start)\n }\n\n return result.slice(1) // drop extra \\n joiner\n}\n\n// Escapes a double-quoted string.\nfunction escapeString (string) {\n let result = ''\n let char = 0\n\n for (let i = 0; i < string.length; char >= 0x10000 ? i += 2 : i++) {\n char = codePointAt(string, i)\n const escapeSeq = ESCAPE_SEQUENCES[char]\n\n if (!escapeSeq && isPrintable(char)) {\n result += string[i]\n if (char >= 0x10000) result += string[i + 1]\n } else {\n result += escapeSeq || encodeHex(char)\n }\n }\n\n return result\n}\n\nfunction writeFlowSequence (state, level, object) {\n let _result = ''\n const _tag = state.tag\n\n for (let index = 0, length = object.length; index < length; index += 1) {\n let value = object[index]\n\n if (state.replacer) {\n value = state.replacer.call(object, String(index), value)\n }\n\n // Write only valid elements, put null instead of invalid elements.\n if (writeNode(state, level, value, false, false) ||\n (typeof value === 'undefined' &&\n writeNode(state, level, null, false, false))) {\n if (_result !== '') _result += ',' + (!state.condenseFlow ? ' ' : '')\n _result += state.dump\n }\n }\n\n state.tag = _tag\n state.dump = '[' + _result + ']'\n}\n\nfunction writeBlockSequence (state, level, object, compact) {\n let _result = ''\n const _tag = state.tag\n\n for (let index = 0, length = object.length; index < length; index += 1) {\n let value = object[index]\n\n if (state.replacer) {\n value = state.replacer.call(object, String(index), value)\n }\n\n // Write only valid elements, put null instead of invalid elements.\n if (writeNode(state, level + 1, value, true, true, false, true) ||\n (typeof value === 'undefined' &&\n writeNode(state, level + 1, null, true, true, false, true))) {\n if (!compact || _result !== '') {\n _result += generateNextLine(state, level)\n }\n\n if (state.dump && CHAR_LINE_FEED === state.dump.charCodeAt(0)) {\n _result += '-'\n } else {\n _result += '- '\n }\n\n _result += state.dump\n }\n }\n\n state.tag = _tag\n state.dump = _result || '[]' // Empty sequence if no valid values.\n}\n\nfunction writeFlowMapping (state, level, object) {\n let _result = ''\n const _tag = state.tag\n const objectKeyList = Object.keys(object)\n\n for (let index = 0, length = objectKeyList.length; index < length; index += 1) {\n let pairBuffer = ''\n if (_result !== '') pairBuffer += ', '\n\n if (state.condenseFlow) pairBuffer += '\"'\n\n const objectKey = objectKeyList[index]\n let objectValue = object[objectKey]\n\n if (state.replacer) {\n objectValue = state.replacer.call(object, objectKey, objectValue)\n }\n\n if (!writeNode(state, level, objectKey, false, false)) {\n continue // Skip this pair because of invalid key;\n }\n\n if (state.dump.length > 1024) pairBuffer += '? '\n\n pairBuffer += state.dump + (state.condenseFlow ? '\"' : '') + ':' + (state.condenseFlow ? '' : ' ')\n\n if (!writeNode(state, level, objectValue, false, false)) {\n continue // Skip this pair because of invalid value.\n }\n\n pairBuffer += state.dump\n\n // Both key and value are valid.\n _result += pairBuffer\n }\n\n state.tag = _tag\n state.dump = '{' + _result + '}'\n}\n\nfunction writeBlockMapping (state, level, object, compact) {\n let _result = ''\n const _tag = state.tag\n const objectKeyList = Object.keys(object)\n\n // Allow sorting keys so that the output file is deterministic\n if (state.sortKeys === true) {\n // Default sorting\n objectKeyList.sort()\n } else if (typeof state.sortKeys === 'function') {\n // Custom sort function\n objectKeyList.sort(state.sortKeys)\n } else if (state.sortKeys) {\n // Something is wrong\n throw new YAMLException('sortKeys must be a boolean or a function')\n }\n\n for (let index = 0, length = objectKeyList.length; index < length; index += 1) {\n let pairBuffer = ''\n\n if (!compact || _result !== '') {\n pairBuffer += generateNextLine(state, level)\n }\n\n const objectKey = objectKeyList[index]\n let objectValue = object[objectKey]\n\n if (state.replacer) {\n objectValue = state.replacer.call(object, objectKey, objectValue)\n }\n\n if (!writeNode(state, level + 1, objectKey, true, true, true)) {\n continue // Skip this pair because of invalid key.\n }\n\n const explicitPair = (state.tag !== null && state.tag !== '?') ||\n (state.dump && state.dump.length > 1024)\n\n if (explicitPair) {\n if (state.dump && CHAR_LINE_FEED === state.dump.charCodeAt(0)) {\n pairBuffer += '?'\n } else {\n pairBuffer += '? '\n }\n }\n\n pairBuffer += state.dump\n\n if (explicitPair) {\n pairBuffer += generateNextLine(state, level)\n }\n\n if (!writeNode(state, level + 1, objectValue, true, explicitPair)) {\n continue // Skip this pair because of invalid value.\n }\n\n if (state.dump && CHAR_LINE_FEED === state.dump.charCodeAt(0)) {\n pairBuffer += ':'\n } else {\n pairBuffer += ': '\n }\n\n pairBuffer += state.dump\n\n // Both key and value are valid.\n _result += pairBuffer\n }\n\n state.tag = _tag\n state.dump = _result || '{}' // Empty mapping if no valid pairs.\n}\n\nfunction detectType (state, object, explicit) {\n const typeList = explicit ? state.explicitTypes : state.implicitTypes\n\n for (let index = 0, length = typeList.length; index < length; index += 1) {\n const type = typeList[index]\n\n if ((type.instanceOf || type.predicate) &&\n (!type.instanceOf || ((typeof object === 'object') && (object instanceof type.instanceOf))) &&\n (!type.predicate || type.predicate(object))) {\n if (explicit) {\n if (type.multi && type.representName) {\n state.tag = type.representName(object)\n } else {\n state.tag = type.tag\n }\n } else {\n state.tag = '?'\n }\n\n if (type.represent) {\n const style = state.styleMap[type.tag] || type.defaultStyle\n\n let _result\n if (_toString.call(type.represent) === '[object Function]') {\n _result = type.represent(object, style)\n } else if (_hasOwnProperty.call(type.represent, style)) {\n _result = type.represent[style](object, style)\n } else {\n throw new YAMLException('!<' + type.tag + '> tag resolver accepts not \"' + style + '\" style')\n }\n\n state.dump = _result\n }\n\n return true\n }\n }\n\n return false\n}\n\n// Serializes `object` and writes it to global `result`.\n// Returns true on success, or false on invalid object.\n//\nfunction writeNode (state, level, object, block, compact, iskey, isblockseq) {\n state.tag = null\n state.dump = object\n\n if (!detectType(state, object, false)) {\n detectType(state, object, true)\n }\n\n const type = _toString.call(state.dump)\n const inblock = block\n\n if (block) {\n block = (state.flowLevel < 0 || state.flowLevel > level)\n }\n\n const objectOrArray = type === '[object Object]' || type === '[object Array]'\n let duplicateIndex\n let duplicate\n\n if (objectOrArray) {\n duplicateIndex = state.duplicates.indexOf(object)\n duplicate = duplicateIndex !== -1\n }\n\n if ((state.tag !== null && state.tag !== '?') || duplicate || (state.indent !== 2 && level > 0)) {\n compact = false\n }\n\n if (duplicate && state.usedDuplicates[duplicateIndex]) {\n state.dump = '*ref_' + duplicateIndex\n } else {\n if (objectOrArray && duplicate && !state.usedDuplicates[duplicateIndex]) {\n state.usedDuplicates[duplicateIndex] = true\n }\n if (type === '[object Object]') {\n if (block && (Object.keys(state.dump).length !== 0)) {\n writeBlockMapping(state, level, state.dump, compact)\n if (duplicate) {\n state.dump = '&ref_' + duplicateIndex + state.dump\n }\n } else {\n writeFlowMapping(state, level, state.dump)\n if (duplicate) {\n state.dump = '&ref_' + duplicateIndex + ' ' + state.dump\n }\n }\n } else if (type === '[object Array]') {\n if (block && (state.dump.length !== 0)) {\n if (state.noArrayIndent && !isblockseq && level > 0) {\n writeBlockSequence(state, level - 1, state.dump, compact)\n } else {\n writeBlockSequence(state, level, state.dump, compact)\n }\n if (duplicate) {\n state.dump = '&ref_' + duplicateIndex + state.dump\n }\n } else {\n writeFlowSequence(state, level, state.dump)\n if (duplicate) {\n state.dump = '&ref_' + duplicateIndex + ' ' + state.dump\n }\n }\n } else if (type === '[object String]') {\n if (state.tag !== '?') {\n writeScalar(state, state.dump, level, iskey, inblock)\n }\n } else if (type === '[object Undefined]') {\n return false\n } else {\n if (state.skipInvalid) return false\n throw new YAMLException('unacceptable kind of an object to dump ' + type)\n }\n\n if (state.tag !== null && state.tag !== '?') {\n // Need to encode all characters except those allowed by the spec:\n //\n // [35] ns-dec-digit ::= [#x30-#x39] /* 0-9 */\n // [36] ns-hex-digit ::= ns-dec-digit\n // | [#x41-#x46] /* A-F */ | [#x61-#x66] /* a-f */\n // [37] ns-ascii-letter ::= [#x41-#x5A] /* A-Z */ | [#x61-#x7A] /* a-z */\n // [38] ns-word-char ::= ns-dec-digit | ns-ascii-letter | “-”\n // [39] ns-uri-char ::= “%” ns-hex-digit ns-hex-digit | ns-word-char | “#”\n // | “;” | “/” | “?” | “:” | “@” | “&” | “=” | “+” | “$” | “,”\n // | “_” | “.” | “!” | “~” | “*” | “'” | “(” | “)” | “[” | “]”\n //\n // Also need to encode '!' because it has special meaning (end of tag prefix).\n //\n let tagStr = encodeURI(\n state.tag[0] === '!' ? state.tag.slice(1) : state.tag\n ).replace(/!/g, '%21')\n\n if (state.tag[0] === '!') {\n tagStr = '!' + tagStr\n } else if (tagStr.slice(0, 18) === 'tag:yaml.org,2002:') {\n tagStr = '!!' + tagStr.slice(18)\n } else {\n tagStr = '!<' + tagStr + '>'\n }\n\n state.dump = tagStr + ' ' + state.dump\n }\n }\n\n return true\n}\n\nfunction getDuplicateReferences (object, state) {\n const objects = []\n const duplicatesIndexes = []\n\n inspectNode(object, objects, duplicatesIndexes)\n\n const length = duplicatesIndexes.length\n for (let index = 0; index < length; index += 1) {\n state.duplicates.push(objects[duplicatesIndexes[index]])\n }\n state.usedDuplicates = new Array(length)\n}\n\nfunction inspectNode (object, objects, duplicatesIndexes) {\n if (object !== null && typeof object === 'object') {\n const index = objects.indexOf(object)\n if (index !== -1) {\n if (duplicatesIndexes.indexOf(index) === -1) {\n duplicatesIndexes.push(index)\n }\n } else {\n objects.push(object)\n\n if (Array.isArray(object)) {\n for (let i = 0, length = object.length; i < length; i += 1) {\n inspectNode(object[i], objects, duplicatesIndexes)\n }\n } else {\n const objectKeyList = Object.keys(object)\n\n for (let i = 0, length = objectKeyList.length; i < length; i += 1) {\n inspectNode(object[objectKeyList[i]], objects, duplicatesIndexes)\n }\n }\n }\n }\n}\n\nfunction dump (input, options) {\n options = options || {}\n\n const state = new State(options)\n\n if (!state.noRefs) getDuplicateReferences(input, state)\n\n let value = input\n\n if (state.replacer) {\n value = state.replacer.call({ '': value }, '', value)\n }\n\n if (writeNode(state, 0, value, true, true)) return state.dump + '\\n'\n\n return ''\n}\n\nmodule.exports.dump = dump\n","'use strict'\n\nconst loader = require('./lib/loader')\nconst dumper = require('./lib/dumper')\n\nfunction renamed (from, to) {\n return function () {\n throw new Error('Function yaml.' + from + ' is removed in js-yaml 4. ' +\n 'Use yaml.' + to + ' instead, which is now safe by default.')\n }\n}\n\nmodule.exports.Type = require('./lib/type')\nmodule.exports.Schema = require('./lib/schema')\nmodule.exports.FAILSAFE_SCHEMA = require('./lib/schema/failsafe')\nmodule.exports.JSON_SCHEMA = require('./lib/schema/json')\nmodule.exports.CORE_SCHEMA = require('./lib/schema/core')\nmodule.exports.DEFAULT_SCHEMA = require('./lib/schema/default')\nmodule.exports.load = loader.load\nmodule.exports.loadAll = loader.loadAll\nmodule.exports.dump = dumper.dump\nmodule.exports.YAMLException = require('./lib/exception')\n\n// Re-export all types in case user wants to create custom schema\nmodule.exports.types = {\n binary: require('./lib/type/binary'),\n float: require('./lib/type/float'),\n map: require('./lib/type/map'),\n null: require('./lib/type/null'),\n pairs: require('./lib/type/pairs'),\n set: require('./lib/type/set'),\n timestamp: require('./lib/type/timestamp'),\n bool: require('./lib/type/bool'),\n int: require('./lib/type/int'),\n merge: require('./lib/type/merge'),\n omap: require('./lib/type/omap'),\n seq: require('./lib/type/seq'),\n str: require('./lib/type/str')\n}\n\n// Removed functions from JS-YAML 3.0.x\nmodule.exports.safeLoad = renamed('safeLoad', 'load')\nmodule.exports.safeLoadAll = renamed('safeLoadAll', 'loadAll')\nmodule.exports.safeDump = renamed('safeDump', 'dump')\n","import yaml from '../index.js'\n\nconst {\n Type,\n Schema,\n FAILSAFE_SCHEMA,\n JSON_SCHEMA,\n CORE_SCHEMA,\n DEFAULT_SCHEMA,\n load,\n loadAll,\n dump,\n YAMLException,\n types,\n safeLoad,\n safeLoadAll,\n safeDump\n} = yaml\n\nexport {\n Type,\n Schema,\n FAILSAFE_SCHEMA,\n JSON_SCHEMA,\n CORE_SCHEMA,\n DEFAULT_SCHEMA,\n load,\n loadAll,\n dump,\n YAMLException,\n types,\n safeLoad,\n safeLoadAll,\n safeDump\n}\n\nexport default yaml\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;CAEA,SAAS,UAAW,SAAS;EAC3B,OAAQ,OAAO,YAAY,eAAiB,YAAY;CAC1D;CAEA,SAAS,SAAU,SAAS;EAC1B,OAAQ,OAAO,YAAY,YAAc,YAAY;CACvD;CAEA,SAAS,QAAS,UAAU;EAC1B,IAAI,MAAM,QAAQ,QAAQ,GAAG,OAAO;OAC/B,IAAI,UAAU,QAAQ,GAAG,OAAO,CAAC;EAEtC,OAAO,CAAC,QAAQ;CAClB;CAEA,SAAS,OAAQ,QAAQ,QAAQ;EAC/B,IAAI,QAAQ;GACV,MAAM,aAAa,OAAO,KAAK,MAAM;GAErC,KAAK,IAAI,QAAQ,GAAG,SAAS,WAAW,QAAQ,QAAQ,QAAQ,SAAS,GAAG;IAC1E,MAAM,MAAM,WAAW;IACvB,OAAO,OAAO,OAAO;GACvB;EACF;EAEA,OAAO;CACT;CAEA,SAAS,OAAQ,QAAQ,OAAO;EAC9B,IAAI,SAAS;EAEb,KAAK,IAAI,QAAQ,GAAG,QAAQ,OAAO,SAAS,GAC1C,UAAU;EAGZ,OAAO;CACT;CAEA,SAAS,eAAgB,QAAQ;EAC/B,OAAQ,WAAW,KAAO,OAAO,sBAAsB,IAAI;CAC7D;CAEA,OAAO,QAAQ,YAAY;CAC3B,OAAO,QAAQ,WAAW;CAC1B,OAAO,QAAQ,UAAU;CACzB,OAAO,QAAQ,SAAS;CACxB,OAAO,QAAQ,iBAAiB;CAChC,OAAO,QAAQ,SAAS;;;;;CC7CxB,SAAS,YAAa,WAAW,SAAS;EACxC,IAAI,QAAQ;EACZ,MAAM,UAAU,UAAU,UAAU;EAEpC,IAAI,CAAC,UAAU,MAAM,OAAO;EAE5B,IAAI,UAAU,KAAK,MACjB,SAAS,UAAS,UAAU,KAAK,OAAO;EAG1C,SAAS,OAAO,UAAU,KAAK,OAAO,KAAK,OAAO,UAAU,KAAK,SAAS,KAAK;EAE/E,IAAI,CAAC,WAAW,UAAU,KAAK,SAC7B,SAAS,SAAS,UAAU,KAAK;EAGnC,OAAO,UAAU,MAAM;CACzB;CAEA,SAAS,cAAe,QAAQ,MAAM;EAEpC,MAAM,KAAK,IAAI;EAEf,KAAK,OAAO;EACZ,KAAK,SAAS;EACd,KAAK,OAAO;EACZ,KAAK,UAAU,YAAY,MAAM,KAAK;EAGtC,IAAI,MAAM,mBAER,MAAM,kBAAkB,MAAM,KAAK,WAAW;OAG9C,KAAK,yBAAS,IAAI,MAAM,GAAG,SAAS;CAExC;CAGA,cAAc,YAAY,OAAO,OAAO,MAAM,SAAS;CACvD,cAAc,UAAU,cAAc;CAEtC,cAAc,UAAU,WAAW,SAAS,SAAU,SAAS;EAC7D,OAAO,KAAK,OAAO,OAAO,YAAY,MAAM,OAAO;CACrD;CAEA,OAAO,UAAU;;;;;CChDjB,IAAM,SAAA,eAAA;CAGN,SAAS,QAAS,QAAQ,WAAW,SAAS,UAAU,eAAe;EACrE,IAAI,OAAO;EACX,IAAI,OAAO;EACX,MAAM,gBAAgB,KAAK,MAAM,gBAAgB,CAAC,IAAI;EAEtD,IAAI,WAAW,YAAY,eAAe;GACxC,OAAO;GACP,YAAY,WAAW,gBAAgB,KAAK;EAC9C;EAEA,IAAI,UAAU,WAAW,eAAe;GACtC,OAAO;GACP,UAAU,WAAW,gBAAgB,KAAK;EAC5C;EAEA,OAAO;GACL,KAAK,OAAO,OAAO,MAAM,WAAW,OAAO,EAAE,QAAQ,OAAO,GAAG,IAAI;GACnE,KAAK,WAAW,YAAY,KAAK;EACnC;CACF;CAEA,SAAS,SAAU,QAAQ,KAAK;EAC9B,OAAO,OAAO,OAAO,KAAK,MAAM,OAAO,MAAM,IAAI;CACnD;CAEA,SAAS,YAAa,MAAM,SAAS;EACnC,UAAU,OAAO,OAAO,WAAW,IAAI;EAEvC,IAAI,CAAC,KAAK,QAAQ,OAAO;EAEzB,IAAI,CAAC,QAAQ,WAAW,QAAQ,YAAY;EAC5C,IAAI,OAAO,QAAQ,WAAW,UAAU,QAAQ,SAAS;EACzD,IAAI,OAAO,QAAQ,gBAAgB,UAAU,QAAQ,cAAc;EACnE,IAAI,OAAO,QAAQ,eAAe,UAAU,QAAQ,aAAa;EAEjE,MAAM,KAAK;EACX,MAAM,aAAa,CAAC,CAAC;EACrB,MAAM,WAAW,CAAC;EAClB,IAAI;EACJ,IAAI,cAAc;EAElB,OAAQ,QAAQ,GAAG,KAAK,KAAK,MAAM,GAAI;GACrC,SAAS,KAAK,MAAM,KAAK;GACzB,WAAW,KAAK,MAAM,QAAQ,MAAM,GAAG,MAAM;GAE7C,IAAI,KAAK,YAAY,MAAM,SAAS,cAAc,GAChD,cAAc,WAAW,SAAS;EAEtC;EAEA,IAAI,cAAc,GAAG,cAAc,WAAW,SAAS;EAEvD,IAAI,SAAS;EACb,MAAM,eAAe,KAAK,IAAI,KAAK,OAAO,QAAQ,YAAY,SAAS,MAAM,EAAE,SAAS,EAAE;EAC1F,MAAM,gBAAgB,QAAQ,aAAa,QAAQ,SAAS,eAAe;EAE3E,KAAK,IAAI,IAAI,GAAG,KAAK,QAAQ,aAAa,KAAK;GAC7C,IAAI,cAAc,IAAI,GAAG;GACzB,MAAM,OAAO,QACX,KAAK,QACL,WAAW,cAAc,IACzB,SAAS,cAAc,IACvB,KAAK,YAAY,WAAW,eAAe,WAAW,cAAc,KACpE,aACF;GACA,SAAS,OAAO,OAAO,KAAK,QAAQ,MAAM,IAAI,UAAU,KAAK,OAAO,IAAI,GAAG,SAAS,GAAG,YAAY,IACjG,QAAQ,KAAK,MAAM,OAAO;EAC9B;EAEA,MAAM,OAAO,QAAQ,KAAK,QAAQ,WAAW,cAAc,SAAS,cAAc,KAAK,UAAU,aAAa;EAC9G,UAAU,OAAO,OAAO,KAAK,QAAQ,MAAM,IAAI,UAAU,KAAK,OAAO,GAAG,SAAS,GAAG,YAAY,IAC9F,QAAQ,KAAK,MAAM;EACrB,UAAU,OAAO,OAAO,KAAK,QAAQ,SAAS,eAAe,IAAI,KAAK,GAAG,IAAI;EAE7E,KAAK,IAAI,IAAI,GAAG,KAAK,QAAQ,YAAY,KAAK;GAC5C,IAAI,cAAc,KAAK,SAAS,QAAQ;GACxC,MAAM,OAAO,QACX,KAAK,QACL,WAAW,cAAc,IACzB,SAAS,cAAc,IACvB,KAAK,YAAY,WAAW,eAAe,WAAW,cAAc,KACpE,aACF;GACA,UAAU,OAAO,OAAO,KAAK,QAAQ,MAAM,IAAI,UAAU,KAAK,OAAO,IAAI,GAAG,SAAS,GAAG,YAAY,IAClG,QAAQ,KAAK,MAAM;EACvB;EAEA,OAAO,OAAO,QAAQ,OAAO,EAAE;CACjC;CAEA,OAAO,UAAU;;;;;CC7FjB,IAAM,gBAAA,kBAAA;CAEN,IAAM,2BAA2B;EAC/B;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;CACF;CAEA,IAAM,kBAAkB;EACtB;EACA;EACA;CACF;CAEA,SAAS,oBAAqB,KAAK;EACjC,MAAM,SAAS,CAAC;EAEhB,IAAI,QAAQ,MACV,OAAO,KAAK,GAAG,EAAE,QAAQ,SAAU,OAAO;GACxC,IAAI,OAAO,QAAQ,SAAU,OAAO;IAClC,OAAO,OAAO,KAAK,KAAK;GAC1B,CAAC;EACH,CAAC;EAGH,OAAO;CACT;CAEA,SAAS,KAAM,KAAK,SAAS;EAC3B,UAAU,WAAW,CAAC;EAEtB,OAAO,KAAK,OAAO,EAAE,QAAQ,SAAU,MAAM;GAC3C,IAAI,yBAAyB,QAAQ,IAAI,MAAM,IAC7C,MAAM,IAAI,cAAc,sBAAqB,OAAO,kCAAgC,MAAM,eAAc;EAE5G,CAAC;EAGD,KAAK,UAAU;EACf,KAAK,MAAM;EACX,KAAK,OAAO,QAAQ,WAAW;EAC/B,KAAK,UAAU,QAAQ,cAAc,WAAY;GAAE,OAAO;EAAK;EAC/D,KAAK,YAAY,QAAQ,gBAAgB,SAAU,MAAM;GAAE,OAAO;EAAK;EACvE,KAAK,aAAa,QAAQ,iBAAiB;EAC3C,KAAK,YAAY,QAAQ,gBAAgB;EACzC,KAAK,YAAY,QAAQ,gBAAgB;EACzC,KAAK,gBAAgB,QAAQ,oBAAoB;EACjD,KAAK,eAAe,QAAQ,mBAAmB;EAC/C,KAAK,QAAQ,QAAQ,YAAY;EACjC,KAAK,eAAe,oBAAoB,QAAQ,mBAAmB,IAAI;EAEvE,IAAI,gBAAgB,QAAQ,KAAK,IAAI,MAAM,IACzC,MAAM,IAAI,cAAc,oBAAmB,KAAK,OAAO,2BAAyB,MAAM,eAAc;CAExG;CAEA,OAAO,UAAU;;;;;CC/DjB,IAAM,gBAAA,kBAAA;CACN,IAAM,OAAA,aAAA;CAEN,SAAS,YAAa,QAAQ,MAAM;EAClC,MAAM,SAAS,CAAC;EAEhB,OAAO,MAAM,QAAQ,SAAU,aAAa;GAC1C,IAAI,WAAW,OAAO;GAEtB,OAAO,QAAQ,SAAU,cAAc,eAAe;IACpD,IAAI,aAAa,QAAQ,YAAY,OACjC,aAAa,SAAS,YAAY,QAClC,aAAa,UAAU,YAAY,OACrC,WAAW;GAEf,CAAC;GAED,OAAO,YAAY;EACrB,CAAC;EAED,OAAO;CACT;CAEA,SAAS,aAA4B;EACnC,MAAM,SAAS;GACb,QAAQ,CAAC;GACT,UAAU,CAAC;GACX,SAAS,CAAC;GACV,UAAU,CAAC;GACX,OAAO;IACL,QAAQ,CAAC;IACT,UAAU,CAAC;IACX,SAAS,CAAC;IACV,UAAU,CAAC;GACb;EACF;EACA,SAAS,YAAa,MAAM;GAC1B,IAAI,KAAK,OAAO;IACd,OAAO,MAAM,KAAK,MAAM,KAAK,IAAI;IACjC,OAAO,MAAM,YAAY,KAAK,IAAI;GACpC,OACE,OAAO,KAAK,MAAM,KAAK,OAAO,OAAO,YAAY,KAAK,OAAO;EAEjE;EAEA,KAAK,IAAI,QAAQ,GAAG,SAAS,UAAU,QAAQ,QAAQ,QAAQ,SAAS,GACtE,UAAU,OAAO,QAAQ,WAAW;EAEtC,OAAO;CACT;CAEA,SAAS,OAAQ,YAAY;EAC3B,OAAO,KAAK,OAAO,UAAU;CAC/B;CAEA,OAAO,UAAU,SAAS,SAAS,OAAQ,YAAY;EACrD,IAAI,WAAW,CAAC;EAChB,IAAI,WAAW,CAAC;EAEhB,IAAI,sBAAsB,MAExB,SAAS,KAAK,UAAU;OACnB,IAAI,MAAM,QAAQ,UAAU,GAEjC,WAAW,SAAS,OAAO,UAAU;OAChC,IAAI,eAAe,MAAM,QAAQ,WAAW,QAAQ,KAAK,MAAM,QAAQ,WAAW,QAAQ,IAAI;GAEnG,IAAI,WAAW,UAAU,WAAW,SAAS,OAAO,WAAW,QAAQ;GACvE,IAAI,WAAW,UAAU,WAAW,SAAS,OAAO,WAAW,QAAQ;EACzE,OACE,MAAM,IAAI,cAAc,kHACyC;EAGnE,SAAS,QAAQ,SAAU,MAAM;GAC/B,IAAI,EAAE,gBAAgB,OACpB,MAAM,IAAI,cAAc,oFAAoF;GAG9G,IAAI,KAAK,YAAY,KAAK,aAAa,UACrC,MAAM,IAAI,cAAc,iHAAiH;GAG3I,IAAI,KAAK,OACP,MAAM,IAAI,cAAc,oGAAoG;EAEhI,CAAC;EAED,SAAS,QAAQ,SAAU,MAAM;GAC/B,IAAI,EAAE,gBAAgB,OACpB,MAAM,IAAI,cAAc,oFAAoF;EAEhH,CAAC;EAED,MAAM,SAAS,OAAO,OAAO,OAAO,SAAS;EAE7C,OAAO,YAAY,KAAK,YAAY,CAAC,GAAG,OAAO,QAAQ;EACvD,OAAO,YAAY,KAAK,YAAY,CAAC,GAAG,OAAO,QAAQ;EAEvD,OAAO,mBAAmB,YAAY,QAAQ,UAAU;EACxD,OAAO,mBAAmB,YAAY,QAAQ,UAAU;EACxD,OAAO,kBAAkB,WAAW,OAAO,kBAAkB,OAAO,gBAAgB;EAEpF,OAAO;CACT;CAEA,OAAO,UAAU;;;;;CCxGjB,OAAO,UAAU,KAFX,aAEe,GAAK,yBAAyB;EACjD,MAAM;EACN,WAAW,SAAU,MAAM;GAAE,OAAO,SAAS,OAAO,OAAO;EAAG;CAChE,CAAC;;;;;CCHD,OAAO,UAAU,KAFX,aAEe,GAAK,yBAAyB;EACjD,MAAM;EACN,WAAW,SAAU,MAAM;GAAE,OAAO,SAAS,OAAO,OAAO,CAAC;EAAE;CAChE,CAAC;;;;;CCHD,OAAO,UAAU,KAFX,aAEe,GAAK,yBAAyB;EACjD,MAAM;EACN,WAAW,SAAU,MAAM;GAAE,OAAO,SAAS,OAAO,OAAO,CAAC;EAAE;CAChE,CAAC;;;;;CCAD,OAAO,UAAU,KAFX,eAEe,GAAO,EAC1B,UAAU;;;;CAIV,EACF,CAAC;;;;;CCXD,IAAM,OAAA,aAAA;CAEN,SAAS,gBAAiB,MAAM;EAC9B,IAAI,SAAS,MAAM,OAAO;EAE1B,MAAM,MAAM,KAAK;EAEjB,OAAQ,QAAQ,KAAK,SAAS,OACtB,QAAQ,MAAM,SAAS,UAAU,SAAS,UAAU,SAAS;CACvE;CAEA,SAAS,oBAAqB;EAC5B,OAAO;CACT;CAEA,SAAS,OAAQ,QAAQ;EACvB,OAAO,WAAW;CACpB;CAEA,OAAO,UAAU,IAAI,KAAK,0BAA0B;EAClD,MAAM;EACN,SAAS;EACT,WAAW;EACX,WAAW;EACX,WAAW;GACT,WAAW,WAAY;IAAE,OAAO;GAAI;GACpC,WAAW,WAAY;IAAE,OAAO;GAAO;GACvC,WAAW,WAAY;IAAE,OAAO;GAAO;GACvC,WAAW,WAAY;IAAE,OAAO;GAAO;GACvC,OAAO,WAAY;IAAE,OAAO;GAAG;EACjC;EACA,cAAc;CAChB,CAAC;;;;;CChCD,IAAM,OAAA,aAAA;CAEN,SAAS,mBAAoB,MAAM;EACjC,IAAI,SAAS,MAAM,OAAO;EAE1B,MAAM,MAAM,KAAK;EAEjB,OAAQ,QAAQ,MAAM,SAAS,UAAU,SAAS,UAAU,SAAS,WAC7D,QAAQ,MAAM,SAAS,WAAW,SAAS,WAAW,SAAS;CACzE;CAEA,SAAS,qBAAsB,MAAM;EACnC,OAAO,SAAS,UACT,SAAS,UACT,SAAS;CAClB;CAEA,SAAS,UAAW,QAAQ;EAC1B,OAAO,OAAO,UAAU,SAAS,KAAK,MAAM,MAAM;CACpD;CAEA,OAAO,UAAU,IAAI,KAAK,0BAA0B;EAClD,MAAM;EACN,SAAS;EACT,WAAW;EACX,WAAW;EACX,WAAW;GACT,WAAW,SAAU,QAAQ;IAAE,OAAO,SAAS,SAAS;GAAQ;GAChE,WAAW,SAAU,QAAQ;IAAE,OAAO,SAAS,SAAS;GAAQ;GAChE,WAAW,SAAU,QAAQ;IAAE,OAAO,SAAS,SAAS;GAAQ;EAClE;EACA,cAAc;CAChB,CAAC;;;;;CChCD,IAAM,SAAA,eAAA;CACN,IAAM,OAAA,aAAA;CAEN,SAAS,UAAW,GAAG;EACrB,OAAS,KAAK,MAAiB,KAAK,MAC3B,KAAK,MAAiB,KAAK,MAC3B,KAAK,MAAiB,KAAK;CACtC;CAEA,SAAS,UAAW,GAAG;EACrB,OAAS,KAAK,MAAiB,KAAK;CACtC;CAEA,SAAS,UAAW,GAAG;EACrB,OAAS,KAAK,MAAiB,KAAK;CACtC;CAEA,SAAS,mBAAoB,MAAM;EACjC,IAAI,SAAS,MAAM,OAAO;EAE1B,MAAM,MAAM,KAAK;EACjB,IAAI,QAAQ;EACZ,IAAI,YAAY;EAEhB,IAAI,CAAC,KAAK,OAAO;EAEjB,IAAI,KAAK,KAAK;EAGd,IAAI,OAAO,OAAO,OAAO,KACvB,KAAK,KAAK,EAAE;EAGd,IAAI,OAAO,KAAK;GAEd,IAAI,QAAQ,MAAM,KAAK,OAAO;GAC9B,KAAK,KAAK,EAAE;GAIZ,IAAI,OAAO,KAAK;IAEd;IAEA,OAAO,QAAQ,KAAK,SAAS;KAC3B,KAAK,KAAK;KACV,IAAI,OAAO,OAAO,OAAO,KAAK,OAAO;KACrC,YAAY;IACd;IACA,OAAO,aAAa,OAAO,SAAS,iBAAiB,IAAI,CAAC;GAC5D;GAEA,IAAI,OAAO,KAAK;IAEd;IAEA,OAAO,QAAQ,KAAK,SAAS;KAC3B,IAAI,CAAC,UAAU,KAAK,WAAW,KAAK,CAAC,GAAG,OAAO;KAC/C,YAAY;IACd;IACA,OAAO,aAAa,OAAO,SAAS,iBAAiB,IAAI,CAAC;GAC5D;GAEA,IAAI,OAAO,KAAK;IAEd;IAEA,OAAO,QAAQ,KAAK,SAAS;KAC3B,IAAI,CAAC,UAAU,KAAK,WAAW,KAAK,CAAC,GAAG,OAAO;KAC/C,YAAY;IACd;IACA,OAAO,aAAa,OAAO,SAAS,iBAAiB,IAAI,CAAC;GAC5D;EACF;EAIA,OAAO,QAAQ,KAAK,SAAS;GAC3B,IAAI,CAAC,UAAU,KAAK,WAAW,KAAK,CAAC,GACnC,OAAO;GAET,YAAY;EACd;EAEA,IAAI,CAAC,WAAW,OAAO;EAEvB,OAAO,OAAO,SAAS,iBAAiB,IAAI,CAAC;CAC/C;CAEA,SAAS,iBAAkB,MAAM;EAC/B,IAAI,QAAQ;EACZ,IAAI,OAAO;EAEX,IAAI,KAAK,MAAM;EAEf,IAAI,OAAO,OAAO,OAAO,KAAK;GAC5B,IAAI,OAAO,KAAK,OAAO;GACvB,QAAQ,MAAM,MAAM,CAAC;GACrB,KAAK,MAAM;EACb;EAEA,IAAI,UAAU,KAAK,OAAO;EAE1B,IAAI,OAAO,KAAK;GACd,IAAI,MAAM,OAAO,KAAK,OAAO,OAAO,SAAS,MAAM,MAAM,CAAC,GAAG,CAAC;GAC9D,IAAI,MAAM,OAAO,KAAK,OAAO,OAAO,SAAS,MAAM,MAAM,CAAC,GAAG,EAAE;GAC/D,IAAI,MAAM,OAAO,KAAK,OAAO,OAAO,SAAS,MAAM,MAAM,CAAC,GAAG,CAAC;EAChE;EAEA,OAAO,OAAO,SAAS,OAAO,EAAE;CAClC;CAEA,SAAS,qBAAsB,MAAM;EACnC,OAAO,iBAAiB,IAAI;CAC9B;CAEA,SAAS,UAAW,QAAQ;EAC1B,OAAQ,OAAO,UAAU,SAAS,KAAK,MAAM,MAAO,qBAC5C,SAAS,MAAM,KAAK,CAAC,OAAO,eAAe,MAAM;CAC3D;CAEA,OAAO,UAAU,IAAI,KAAK,yBAAyB;EACjD,MAAM;EACN,SAAS;EACT,WAAW;EACX,WAAW;EACX,WAAW;GACT,QAAQ,SAAU,KAAK;IAAE,OAAO,OAAO,IAAI,OAAO,IAAI,SAAS,CAAC,IAAI,QAAQ,IAAI,SAAS,CAAC,EAAE,MAAM,CAAC;GAAE;GACrG,OAAO,SAAU,KAAK;IAAE,OAAO,OAAO,IAAI,OAAO,IAAI,SAAS,CAAC,IAAI,QAAQ,IAAI,SAAS,CAAC,EAAE,MAAM,CAAC;GAAE;GACpG,SAAS,SAAU,KAAK;IAAE,OAAO,IAAI,SAAS,EAAE;GAAE;GAClD,aAAa,SAAU,KAAK;IAAE,OAAO,OAAO,IAAI,OAAO,IAAI,SAAS,EAAE,EAAE,YAAY,IAAI,QAAQ,IAAI,SAAS,EAAE,EAAE,YAAY,EAAE,MAAM,CAAC;GAAE;EAC1I;EACA,cAAc;EACd,cAAc;GACZ,QAAQ,CAAC,GAAG,KAAK;GACjB,OAAO,CAAC,GAAG,KAAK;GAChB,SAAS,CAAC,IAAI,KAAK;GACnB,aAAa,CAAC,IAAI,KAAK;EACzB;CACF,CAAC;;;;;CC3ID,IAAM,SAAA,eAAA;CACN,IAAM,OAAA,aAAA;CAEN,IAAM,qCAAqB,IAAI,OAE7B,kIAOuB;CAEzB,IAAM,6CAA6B,IAAI,OACrC,kDAIuB;CAEzB,SAAS,iBAAkB,MAAM;EAC/B,IAAI,SAAS,MAAM,OAAO;EAE1B,IAAI,CAAC,mBAAmB,KAAK,IAAI,GAC/B,OAAO;EAGT,IAAI,OAAO,SAAS,WAAW,MAAM,EAAE,CAAC,GACtC,OAAO;EAGT,OAAO,2BAA2B,KAAK,IAAI;CAC7C;CAEA,SAAS,mBAAoB,MAAM;EACjC,IAAI,QAAQ,KAAK,YAAY;EAC7B,MAAM,OAAO,MAAM,OAAO,MAAM,KAAK;EAErC,IAAI,KAAK,QAAQ,MAAM,EAAE,KAAK,GAC5B,QAAQ,MAAM,MAAM,CAAC;EAGvB,IAAI,UAAU,QACZ,OAAQ,SAAS,IAAK,OAAO,oBAAoB,OAAO;OACnD,IAAI,UAAU,QACnB,OAAO;EAET,OAAO,OAAO,WAAW,OAAO,EAAE;CACpC;CAEA,IAAM,yBAAyB;CAE/B,SAAS,mBAAoB,QAAQ,OAAO;EAC1C,IAAI,MAAM,MAAM,GACd,QAAQ,OAAR;GACE,KAAK,aAAa,OAAO;GACzB,KAAK,aAAa,OAAO;GACzB,KAAK,aAAa,OAAO;EAC3B;OACK,IAAI,OAAO,sBAAsB,QACtC,QAAQ,OAAR;GACE,KAAK,aAAa,OAAO;GACzB,KAAK,aAAa,OAAO;GACzB,KAAK,aAAa,OAAO;EAC3B;OACK,IAAI,OAAO,sBAAsB,QACtC,QAAQ,OAAR;GACE,KAAK,aAAa,OAAO;GACzB,KAAK,aAAa,OAAO;GACzB,KAAK,aAAa,OAAO;EAC3B;OACK,IAAI,OAAO,eAAe,MAAM,GACrC,OAAO;EAGT,MAAM,MAAM,OAAO,SAAS,EAAE;EAK9B,OAAO,uBAAuB,KAAK,GAAG,IAAI,IAAI,QAAQ,KAAK,IAAI,IAAI;CACrE;CAEA,SAAS,QAAS,QAAQ;EACxB,OAAQ,OAAO,UAAU,SAAS,KAAK,MAAM,MAAM,sBAC3C,SAAS,MAAM,KAAK,OAAO,eAAe,MAAM;CAC1D;CAEA,OAAO,UAAU,IAAI,KAAK,2BAA2B;EACnD,MAAM;EACN,SAAS;EACT,WAAW;EACX,WAAW;EACX,WAAW;EACX,cAAc;CAChB,CAAC;;;;;CCzFD,OAAO,UAAA,iBAAA,EAAgC,OAAO,EAC5C,UAAU;;;;;CAKV,EACF,CAAC;;;;;CCRD,OAAO,UAAA,aAAA;;;;;CCNP,IAAM,OAAA,aAAA;CAEN,IAAM,mCAAmB,IAAI,OAC3B,oDAEgB;CAElB,IAAM,wCAAwB,IAAI,OAChC,kLASwB;CAE1B,SAAS,qBAAsB,MAAM;EACnC,IAAI,SAAS,MAAM,OAAO;EAC1B,IAAI,iBAAiB,KAAK,IAAI,MAAM,MAAM,OAAO;EACjD,IAAI,sBAAsB,KAAK,IAAI,MAAM,MAAM,OAAO;EACtD,OAAO;CACT;CAEA,SAAS,uBAAwB,MAAM;EACrC,IAAI,WAAW;EACf,IAAI,QAAQ;EAEZ,IAAI,QAAQ,iBAAiB,KAAK,IAAI;EACtC,IAAI,UAAU,MAAM,QAAQ,sBAAsB,KAAK,IAAI;EAE3D,IAAI,UAAU,MAAM,MAAM,IAAI,MAAM,oBAAoB;EAIxD,MAAM,OAAO,CAAE,MAAM;EACrB,MAAM,QAAQ,CAAE,MAAM,KAAM;EAC5B,MAAM,MAAM,CAAE,MAAM;EAEpB,IAAI,CAAC,MAAM,IACT,OAAO,IAAI,KAAK,KAAK,IAAI,MAAM,OAAO,GAAG,CAAC;EAK5C,MAAM,OAAO,CAAE,MAAM;EACrB,MAAM,SAAS,CAAE,MAAM;EACvB,MAAM,SAAS,CAAE,MAAM;EAEvB,IAAI,MAAM,IAAI;GACZ,WAAW,MAAM,GAAG,MAAM,GAAG,CAAC;GAC9B,OAAO,SAAS,SAAS,GACvB,YAAY;GAEd,WAAW,CAAC;EACd;EAIA,IAAI,MAAM,IAAI;GACZ,MAAM,SAAS,CAAE,MAAM;GACvB,MAAM,WAAW,EAAE,MAAM,OAAO;GAChC,SAAS,SAAS,KAAK,YAAY;GACnC,IAAI,MAAM,OAAO,KAAK,QAAQ,CAAC;EACjC;EAEA,MAAM,OAAO,IAAI,KAAK,KAAK,IAAI,MAAM,OAAO,KAAK,MAAM,QAAQ,QAAQ,QAAQ,CAAC;EAEhF,IAAI,OAAO,KAAK,QAAQ,KAAK,QAAQ,IAAI,KAAK;EAE9C,OAAO;CACT;CAEA,SAAS,uBAAwB,QAAqB;EACpD,OAAO,OAAO,YAAY;CAC5B;CAEA,OAAO,UAAU,IAAI,KAAK,+BAA+B;EACvD,MAAM;EACN,SAAS;EACT,WAAW;EACX,YAAY;EACZ,WAAW;CACb,CAAC;;;;;CCrFD,IAAM,OAAA,aAAA;CAEN,SAAS,iBAAkB,MAAM;EAC/B,OAAO,SAAS,QAAQ,SAAS;CACnC;CAEA,OAAO,UAAU,IAAI,KAAK,2BAA2B;EACnD,MAAM;EACN,SAAS;CACX,CAAC;;;;;CCTD,IAAM,OAAA,aAAA;CAGN,IAAM,aAAa;CAEnB,SAAS,kBAAmB,MAAM;EAChC,IAAI,SAAS,MAAM,OAAO;EAE1B,IAAI,SAAS;EACb,MAAM,MAAM,KAAK;EACjB,MAAM,MAAM;EAGZ,KAAK,IAAI,MAAM,GAAG,MAAM,KAAK,OAAO;GAClC,MAAM,OAAO,IAAI,QAAQ,KAAK,OAAO,GAAG,CAAC;GAGzC,IAAI,OAAO,IAAI;GAGf,IAAI,OAAO,GAAG,OAAO;GAErB,UAAU;EACZ;EAGA,OAAQ,SAAS,MAAO;CAC1B;CAEA,SAAS,oBAAqB,MAAM;EAClC,MAAM,QAAQ,KAAK,QAAQ,YAAY,EAAE;EACzC,MAAM,MAAM,MAAM;EAClB,MAAM,MAAM;EACZ,IAAI,OAAO;EACX,MAAM,SAAS,CAAC;EAIhB,KAAK,IAAI,MAAM,GAAG,MAAM,KAAK,OAAO;GAClC,IAAK,MAAM,MAAM,KAAM,KAAK;IAC1B,OAAO,KAAM,QAAQ,KAAM,GAAI;IAC/B,OAAO,KAAM,QAAQ,IAAK,GAAI;IAC9B,OAAO,KAAK,OAAO,GAAI;GACzB;GAEA,OAAQ,QAAQ,IAAK,IAAI,QAAQ,MAAM,OAAO,GAAG,CAAC;EACpD;EAIA,MAAM,WAAY,MAAM,IAAK;EAE7B,IAAI,aAAa,GAAG;GAClB,OAAO,KAAM,QAAQ,KAAM,GAAI;GAC/B,OAAO,KAAM,QAAQ,IAAK,GAAI;GAC9B,OAAO,KAAK,OAAO,GAAI;EACzB,OAAO,IAAI,aAAa,IAAI;GAC1B,OAAO,KAAM,QAAQ,KAAM,GAAI;GAC/B,OAAO,KAAM,QAAQ,IAAK,GAAI;EAChC,OAAO,IAAI,aAAa,IACtB,OAAO,KAAM,QAAQ,IAAK,GAAI;EAGhC,OAAO,IAAI,WAAW,MAAM;CAC9B;CAEA,SAAS,oBAAqB,QAAqB;EACjD,IAAI,SAAS;EACb,IAAI,OAAO;EACX,MAAM,MAAM,OAAO;EACnB,MAAM,MAAM;EAIZ,KAAK,IAAI,MAAM,GAAG,MAAM,KAAK,OAAO;GAClC,IAAK,MAAM,MAAM,KAAM,KAAK;IAC1B,UAAU,IAAK,QAAQ,KAAM;IAC7B,UAAU,IAAK,QAAQ,KAAM;IAC7B,UAAU,IAAK,QAAQ,IAAK;IAC5B,UAAU,IAAI,OAAO;GACvB;GAEA,QAAQ,QAAQ,KAAK,OAAO;EAC9B;EAIA,MAAM,OAAO,MAAM;EAEnB,IAAI,SAAS,GAAG;GACd,UAAU,IAAK,QAAQ,KAAM;GAC7B,UAAU,IAAK,QAAQ,KAAM;GAC7B,UAAU,IAAK,QAAQ,IAAK;GAC5B,UAAU,IAAI,OAAO;EACvB,OAAO,IAAI,SAAS,GAAG;GACrB,UAAU,IAAK,QAAQ,KAAM;GAC7B,UAAU,IAAK,QAAQ,IAAK;GAC5B,UAAU,IAAK,QAAQ,IAAK;GAC5B,UAAU,IAAI;EAChB,OAAO,IAAI,SAAS,GAAG;GACrB,UAAU,IAAK,QAAQ,IAAK;GAC5B,UAAU,IAAK,QAAQ,IAAK;GAC5B,UAAU,IAAI;GACd,UAAU,IAAI;EAChB;EAEA,OAAO;CACT;CAEA,SAAS,SAAU,KAAK;EACtB,OAAO,OAAO,UAAU,SAAS,KAAK,GAAG,MAAM;CACjD;CAEA,OAAO,UAAU,IAAI,KAAK,4BAA4B;EACpD,MAAM;EACN,SAAS;EACT,WAAW;EACX,WAAW;EACX,WAAW;CACb,CAAC;;;;;CCvHD,IAAM,OAAA,aAAA;CAEN,IAAM,kBAAkB,OAAO,UAAU;CACzC,IAAM,YAAY,OAAO,UAAU;CAEnC,SAAS,gBAAiB,MAAM;EAC9B,IAAI,SAAS,MAAM,OAAO;EAE1B,MAAM,aAAa,CAAC;EACpB,MAAM,SAAS;EAEf,KAAK,IAAI,QAAQ,GAAG,SAAS,OAAO,QAAQ,QAAQ,QAAQ,SAAS,GAAG;GACtE,MAAM,OAAO,OAAO;GACpB,IAAI,aAAa;GAEjB,IAAI,UAAU,KAAK,IAAI,MAAM,mBAAmB,OAAO;GAEvD,IAAI;GACJ,KAAK,WAAW,MACd,IAAI,gBAAgB,KAAK,MAAM,OAAO,GACpC,IAAI,CAAC,YAAY,aAAa;QACzB,OAAO;GAIhB,IAAI,CAAC,YAAY,OAAO;GAExB,IAAI,WAAW,QAAQ,OAAO,MAAM,IAAI,WAAW,KAAK,OAAO;QAC1D,OAAO;EACd;EAEA,OAAO;CACT;CAEA,SAAS,kBAAmB,MAAM;EAChC,OAAO,SAAS,OAAO,OAAO,CAAC;CACjC;CAEA,OAAO,UAAU,IAAI,KAAK,0BAA0B;EAClD,MAAM;EACN,SAAS;EACT,WAAW;CACb,CAAC;;;;;CC1CD,IAAM,OAAA,aAAA;CAEN,IAAM,YAAY,OAAO,UAAU;CAEnC,SAAS,iBAAkB,MAAM;EAC/B,IAAI,SAAS,MAAM,OAAO;EAE1B,MAAM,SAAS;EAEf,MAAM,SAAS,IAAI,MAAM,OAAO,MAAM;EAEtC,KAAK,IAAI,QAAQ,GAAG,SAAS,OAAO,QAAQ,QAAQ,QAAQ,SAAS,GAAG;GACtE,MAAM,OAAO,OAAO;GAEpB,IAAI,UAAU,KAAK,IAAI,MAAM,mBAAmB,OAAO;GAEvD,MAAM,OAAO,OAAO,KAAK,IAAI;GAE7B,IAAI,KAAK,WAAW,GAAG,OAAO;GAE9B,OAAO,SAAS,CAAC,KAAK,IAAI,KAAK,KAAK,GAAG;EACzC;EAEA,OAAO;CACT;CAEA,SAAS,mBAAoB,MAAM;EACjC,IAAI,SAAS,MAAM,OAAO,CAAC;EAE3B,MAAM,SAAS;EACf,MAAM,SAAS,IAAI,MAAM,OAAO,MAAM;EAEtC,KAAK,IAAI,QAAQ,GAAG,SAAS,OAAO,QAAQ,QAAQ,QAAQ,SAAS,GAAG;GACtE,MAAM,OAAO,OAAO;GAEpB,MAAM,OAAO,OAAO,KAAK,IAAI;GAE7B,OAAO,SAAS,CAAC,KAAK,IAAI,KAAK,KAAK,GAAG;EACzC;EAEA,OAAO;CACT;CAEA,OAAO,UAAU,IAAI,KAAK,2BAA2B;EACnD,MAAM;EACN,SAAS;EACT,WAAW;CACb,CAAC;;;;;CC/CD,IAAM,OAAA,aAAA;CAEN,IAAM,kBAAkB,OAAO,UAAU;CAEzC,SAAS,eAAgB,MAAM;EAC7B,IAAI,SAAS,MAAM,OAAO;EAE1B,MAAM,SAAS;EAEf,KAAK,MAAM,OAAO,QAChB,IAAI,gBAAgB,KAAK,QAAQ,GAAG;OAC9B,OAAO,SAAS,MAAM,OAAO;EAAA;EAIrC,OAAO;CACT;CAEA,SAAS,iBAAkB,MAAM;EAC/B,OAAO,SAAS,OAAO,OAAO,CAAC;CACjC;CAEA,OAAO,UAAU,IAAI,KAAK,yBAAyB;EACjD,MAAM;EACN,SAAS;EACT,WAAW;CACb,CAAC;;;;;CCpBD,OAAO,UAAA,aAAA,EAA4B,OAAO;EACxC,UAAU,CAAA,kBAAA,GAAA,cAAA,CAGV;EACA,UAAU;;;;;EAKV;CACF,CAAC;;;;;CCjBD,IAAM,SAAA,eAAA;CACN,IAAM,gBAAA,kBAAA;CACN,IAAM,cAAA,gBAAA;CACN,IAAM,iBAAA,gBAAA;CAEN,IAAM,kBAAkB,OAAO,UAAU;CAEzC,IAAM,kBAAkB;CACxB,IAAM,mBAAmB;CACzB,IAAM,mBAAmB;CACzB,IAAM,oBAAoB;CAE1B,IAAM,gBAAgB;CACtB,IAAM,iBAAiB;CACvB,IAAM,gBAAgB;CAGtB,IAAM,wBAAwB;CAC9B,IAAM,gCAAgC;CAEtC,IAAM,0BAA0B;CAEhC,IAAM,qBAAqB;CAE3B,IAAM,kBAAkB;CAExB,SAAS,OAAQ,KAAK;EAAE,OAAO,OAAO,UAAU,SAAS,KAAK,GAAG;CAAE;CAEnE,SAAS,MAAO,GAAG;EACjB,OAAQ,MAAM,MAAkB,MAAM;CACxC;CAEA,SAAS,aAAc,GAAG;EACxB,OAAQ,MAAM,KAAmB,MAAM;CACzC;CAEA,SAAS,UAAW,GAAG;EACrB,OAAQ,MAAM,KACN,MAAM,MACN,MAAM,MACN,MAAM;CAChB;CAEA,SAAS,gBAAiB,GAAG;EAC3B,OAAO,MAAM,MACN,MAAM,MACN,MAAM,MACN,MAAM,OACN,MAAM;CACf;CAEA,SAAS,YAAa,GAAG;EACvB,IAAK,KAAK,MAAiB,KAAK,IAC9B,OAAO,IAAI;EAGb,MAAM,KAAK,IAAI;EAEf,IAAK,MAAM,MAAiB,MAAM,KAChC,OAAO,KAAK,KAAO;EAGrB,OAAO;CACT;CAEA,SAAS,cAAe,GAAG;EACzB,IAAI,MAAM,KAAe,OAAO;EAChC,IAAI,MAAM,KAAe,OAAO;EAChC,IAAI,MAAM,IAAe,OAAO;EAChC,OAAO;CACT;CAEA,SAAS,gBAAiB,GAAG;EAC3B,IAAK,KAAK,MAAiB,KAAK,IAC9B,OAAO,IAAI;EAGb,OAAO;CACT;CAEA,SAAS,qBAAsB,GAAG;EAChC,QAAQ,GAAR;GACE,KAAK,IAAa,OAAO;GACzB,KAAK,IAAa,OAAO;GACzB,KAAK,IAAa,OAAO;GACzB,KAAK,KAAa,OAAO;GACzB,KAAK,GAAe,OAAO;GAC3B,KAAK,KAAa,OAAO;GACzB,KAAK,KAAa,OAAO;GACzB,KAAK,KAAa,OAAO;GACzB,KAAK,KAAa,OAAO;GACzB,KAAK,KAAa,OAAO;GACzB,KAAK,IAAiB,OAAO;GAC7B,KAAK,IAAa,OAAO;GACzB,KAAK,IAAa,OAAO;GACzB,KAAK,IAAa,OAAO;GACzB,KAAK,IAAa,OAAO;GACzB,KAAK,IAAa,OAAO;GACzB,KAAK,IAAa,OAAO;GACzB,KAAK,IAAa,OAAO;GACzB,SAAS,OAAO;EAClB;CACF;CAEA,SAAS,kBAAmB,GAAG;EAC7B,IAAI,KAAK,OACP,OAAO,OAAO,aAAa,CAAC;EAI9B,OAAO,OAAO,cACV,IAAI,SAAa,MAAM,QACvB,IAAI,QAAY,QAAU,KAC9B;CACF;CAIA,SAAS,YAAa,QAAQ,KAAK,OAAO;EAExC,IAAI,QAAQ,aACV,OAAO,eAAe,QAAQ,KAAK;GACjC,cAAc;GACd,YAAY;GACZ,UAAU;GACH;EACT,CAAC;OAED,OAAO,OAAO;CAElB;CAEA,IAAM,oBAAoB,IAAI,MAAM,GAAG;CACvC,IAAM,kBAAkB,IAAI,MAAM,GAAG;CACrC,KAAK,IAAI,IAAI,GAAG,IAAI,KAAK,KAAK;EAC5B,kBAAkB,KAAK,qBAAqB,CAAC,IAAI,IAAI;EACrD,gBAAgB,KAAK,qBAAqB,CAAC;CAC7C;CAEA,SAAS,MAAO,OAAO,SAAS;EAC9B,KAAK,QAAQ;EAEb,KAAK,WAAW,QAAQ,eAAe;EACvC,KAAK,SAAS,QAAQ,aAAa;EACnC,KAAK,YAAY,QAAQ,gBAAgB;EAGzC,KAAK,SAAS,QAAQ,aAAa;EAEnC,KAAK,OAAO,QAAQ,WAAW;EAC/B,KAAK,WAAW,QAAQ,eAAe;EACvC,KAAK,WAAW,OAAO,QAAQ,gBAAgB,WAAW,QAAQ,cAAc;EAChF,KAAK,oBAAoB,OAAO,QAAQ,yBAAyB,WAAW,QAAQ,uBAAuB;EAE3G,KAAK,gBAAgB,KAAK,OAAO;EACjC,KAAK,UAAU,KAAK,OAAO;EAE3B,KAAK,SAAS,MAAM;EACpB,KAAK,WAAW;EAChB,KAAK,OAAO;EACZ,KAAK,YAAY;EACjB,KAAK,aAAa;EAClB,KAAK,QAAQ;EAIb,KAAK,iBAAiB;EAEtB,KAAK,YAAY,CAAC;EAClB,KAAK,wBAAwB,CAAC;CAWhC;CAEA,SAAS,cAAe,OAAO,SAAS;EACtC,MAAM,OAAO;GACX,MAAM,MAAM;GACZ,QAAQ,MAAM,MAAM,MAAM,GAAG,EAAE;GAC/B,UAAU,MAAM;GAChB,MAAM,MAAM;GACZ,QAAQ,MAAM,WAAW,MAAM;EACjC;EAEA,KAAK,UAAU,YAAY,IAAI;EAE/B,OAAO,IAAI,cAAc,SAAS,IAAI;CACxC;CAEA,SAAS,WAAY,OAAO,SAAS;EACnC,MAAM,cAAc,OAAO,OAAO;CACpC;CAEA,SAAS,aAAc,OAAO,SAAS;EACrC,IAAI,MAAM,WACR,MAAM,UAAU,KAAK,MAAM,cAAc,OAAO,OAAO,CAAC;CAE5D;CAEA,SAAS,YAAa,OAAO,MAAM,OAAO;EACxC,MAAM,eAAe,MAAM;EAE3B,IAAI,aAAa,WAAW,GAAG;GAC7B,MAAM,cAAc,aAAa,aAAa,SAAS;GAEvD,IAAI,CAAC,gBAAgB,KAAK,aAAa,IAAI,GACzC,YAAY,QAAQ;IAClB,SAAS,gBAAgB,KAAK,MAAM,WAAW,IAAI;IACnD,OAAO,MAAM,UAAU;GACzB;EAEJ;EAEA,MAAM,UAAU,QAAQ;CAC1B;CAEA,SAAS,uBAAwB,OAAO;EACtC,MAAM,sBAAsB,KAAK,OAAO,OAAO,IAAI,CAAC;CACtD;CAEA,SAAS,wBAAyB,OAAO;EACvC,MAAM,cAAc,MAAM,sBAAsB,IAAI;EACpD,MAAM,eAAe,MAAM;EAE3B,IAAI,aAAa,WAAW,GAAG;EAE/B,MAAM,SAAS,aAAa,aAAa,SAAS;EAClD,MAAM,QAAQ,OAAO,KAAK,WAAW;EAErC,KAAK,IAAI,QAAQ,GAAG,SAAS,MAAM,QAAQ,QAAQ,QAAQ,SAAS,GAAG;GACrE,MAAM,OAAO,MAAM;GAEnB,IAAI,CAAC,gBAAgB,KAAK,QAAQ,IAAI,GACpC,OAAO,QAAQ,YAAY;EAE/B;CACF;CAEA,SAAS,0BAA2B,OAAO;EACzC,MAAM,cAAc,MAAM,sBAAsB,IAAI;EACpD,MAAM,QAAQ,OAAO,KAAK,WAAW;EAErC,KAAK,IAAI,QAAQ,MAAM,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG;GACzD,MAAM,QAAQ,YAAY,MAAM;GAEhC,IAAI,MAAM,SACR,MAAM,UAAU,MAAM,UAAU,MAAM;QAEtC,OAAO,MAAM,UAAU,MAAM;EAEjC;CACF;CAEA,SAAS,cAAe,OAAO;EAC7B,OAAO;GACL,UAAU,MAAM;GAChB,MAAM,MAAM;GACZ,WAAW,MAAM;GACjB,YAAY,MAAM;GAClB,gBAAgB,MAAM;GACtB,KAAK,MAAM;GACX,QAAQ,MAAM;GACd,MAAM,MAAM;GACZ,QAAQ,MAAM;EAChB;CACF;CAEA,SAAS,aAAc,OAAO,UAAU;EACtC,MAAM,WAAW,SAAS;EAC1B,MAAM,OAAO,SAAS;EACtB,MAAM,YAAY,SAAS;EAC3B,MAAM,aAAa,SAAS;EAC5B,MAAM,iBAAiB,SAAS;EAChC,MAAM,MAAM,SAAS;EACrB,MAAM,SAAS,SAAS;EACxB,MAAM,OAAO,SAAS;EACtB,MAAM,SAAS,SAAS;CAC1B;CAEA,IAAM,oBAAoB;EAExB,MAAM,SAAS,oBAAqB,OAAO,MAAM,MAAM;GACrD,IAAI,MAAM,YAAY,MACpB,WAAW,OAAO,gCAAgC;GAGpD,IAAI,KAAK,WAAW,GAClB,WAAW,OAAO,6CAA6C;GAGjE,MAAM,QAAQ,uBAAuB,KAAK,KAAK,EAAE;GAEjD,IAAI,UAAU,MACZ,WAAW,OAAO,2CAA2C;GAG/D,MAAM,QAAQ,SAAS,MAAM,IAAI,EAAE;GACnC,MAAM,QAAQ,SAAS,MAAM,IAAI,EAAE;GAEnC,IAAI,UAAU,GACZ,WAAW,OAAO,2CAA2C;GAG/D,MAAM,UAAU,KAAK;GACrB,MAAM,kBAAmB,QAAQ;GAEjC,IAAI,UAAU,KAAK,UAAU,GAC3B,aAAa,OAAO,0CAA0C;EAElE;EAEA,KAAK,SAAS,mBAAoB,OAAO,MAAM,MAAM;GACnD,IAAI;GAEJ,IAAI,KAAK,WAAW,GAClB,WAAW,OAAO,6CAA6C;GAGjE,MAAM,SAAS,KAAK;GACpB,SAAS,KAAK;GAEd,IAAI,CAAC,mBAAmB,KAAK,MAAM,GACjC,WAAW,OAAO,6DAA6D;GAGjF,IAAI,gBAAgB,KAAK,MAAM,QAAQ,MAAM,GAC3C,WAAW,OAAO,iDAAgD,SAAS,eAAc;GAG3F,IAAI,CAAC,gBAAgB,KAAK,MAAM,GAC9B,WAAW,OAAO,8DAA8D;GAGlF,IAAI;IACF,SAAS,mBAAmB,MAAM;GACpC,SAAS,KAAK;IACZ,WAAW,OAAO,8BAA8B,MAAM;GACxD;GAEA,MAAM,OAAO,UAAU;EACzB;CACF;CAEA,SAAS,eAAgB,OAAO,OAAO,KAAK,WAAW;EACrD,IAAI,QAAQ,KAAK;GACf,MAAM,UAAU,MAAM,MAAM,MAAM,OAAO,GAAG;GAE5C,IAAI,WACF,KAAK,IAAI,YAAY,GAAG,UAAU,QAAQ,QAAQ,YAAY,SAAS,aAAa,GAAG;IACrF,MAAM,aAAa,QAAQ,WAAW,SAAS;IAC/C,IAAI,EAAE,eAAe,KACd,cAAc,MAAQ,cAAc,UACzC,WAAW,OAAO,+BAA+B;GAErD;QACK,IAAI,sBAAsB,KAAK,OAAO,GAC3C,WAAW,OAAO,8CAA8C;GAGlE,MAAM,UAAU;EAClB;CACF;CAEA,SAAS,cAAe,OAAO,aAAa,QAAQ,iBAAiB;EACnE,IAAI,CAAC,OAAO,SAAS,MAAM,GACzB,WAAW,OAAO,mEAAmE;EAGvF,MAAM,aAAa,OAAO,KAAK,MAAM;EAErC,KAAK,IAAI,QAAQ,GAAG,WAAW,WAAW,QAAQ,QAAQ,UAAU,SAAS,GAAG;GAC9E,MAAM,MAAM,WAAW;GAEvB,IAAI,CAAC,gBAAgB,KAAK,aAAa,GAAG,GAAG;IAC3C,YAAY,aAAa,KAAK,OAAO,IAAI;IACzC,gBAAgB,OAAO;GACzB;EACF;CACF;CAEA,SAAS,iBAAkB,OAAO,SAAS,iBAAiB,QAAQ,SAAS,WAC3E,WAAW,gBAAgB,UAAU;EAIrC,IAAI,MAAM,QAAQ,OAAO,GAAG;GAC1B,UAAU,MAAM,UAAU,MAAM,KAAK,OAAO;GAE5C,KAAK,IAAI,QAAQ,GAAG,WAAW,QAAQ,QAAQ,QAAQ,UAAU,SAAS,GAAG;IAC3E,IAAI,MAAM,QAAQ,QAAQ,MAAM,GAC9B,WAAW,OAAO,6CAA6C;IAGjE,IAAI,OAAO,YAAY,YAAY,OAAO,QAAQ,MAAM,MAAM,mBAC5D,QAAQ,SAAS;GAErB;EACF;EAKA,IAAI,OAAO,YAAY,YAAY,OAAO,OAAO,MAAM,mBACrD,UAAU;EAGZ,UAAU,OAAO,OAAO;EAExB,IAAI,YAAY,MACd,UAAU,CAAC;EAGb,IAAI,WAAW,2BACb,IAAI,MAAM,QAAQ,SAAS,GAAG;GAC5B,IAAI,UAAU,SAAS,MAAM,mBAC3B,WAAW,OAAO,uDAAuD,MAAM,oBAAoB,GAAG;GAExG,MAAM,uBAAO,IAAI,IAAI;GACrB,KAAK,IAAI,QAAQ,GAAG,WAAW,UAAU,QAAQ,QAAQ,UAAU,SAAS,GAAG;IAC7E,MAAM,MAAM,UAAU;IAGtB,IAAI,KAAK,IAAI,GAAG,GAAG;IACnB,KAAK,IAAI,GAAG;IACZ,cAAc,OAAO,SAAS,KAAK,eAAe;GACpD;EACF,OACE,cAAc,OAAO,SAAS,WAAW,eAAe;OAErD;GACL,IAAI,CAAC,MAAM,QACP,CAAC,gBAAgB,KAAK,iBAAiB,OAAO,KAC9C,gBAAgB,KAAK,SAAS,OAAO,GAAG;IAC1C,MAAM,OAAO,aAAa,MAAM;IAChC,MAAM,YAAY,kBAAkB,MAAM;IAC1C,MAAM,WAAW,YAAY,MAAM;IACnC,WAAW,OAAO,wBAAwB;GAC5C;GAEA,YAAY,SAAS,SAAS,SAAS;GACvC,OAAO,gBAAgB;EACzB;EAEA,OAAO;CACT;CAEA,SAAS,cAAe,OAAO;EAC7B,MAAM,KAAK,MAAM,MAAM,WAAW,MAAM,QAAQ;EAEhD,IAAI,OAAO,IACT,MAAM;OACD,IAAI,OAAO,IAAc;GAC9B,MAAM;GACN,IAAI,MAAM,MAAM,WAAW,MAAM,QAAQ,MAAM,IAC7C,MAAM;EAEV,OACE,WAAW,OAAO,0BAA0B;EAG9C,MAAM,QAAQ;EACd,MAAM,YAAY,MAAM;EACxB,MAAM,iBAAiB;CACzB;CAEA,SAAS,oBAAqB,OAAO,eAAe,aAAa;EAC/D,IAAI,aAAa;EACjB,IAAI,KAAK,MAAM,MAAM,WAAW,MAAM,QAAQ;EAE9C,OAAO,OAAO,GAAG;GACf,OAAO,aAAa,EAAE,GAAG;IACvB,IAAI,OAAO,KAAiB,MAAM,mBAAmB,IACnD,MAAM,iBAAiB,MAAM;IAE/B,KAAK,MAAM,MAAM,WAAW,EAAE,MAAM,QAAQ;GAC9C;GAEA,IAAI,iBAAiB,OAAO,IAC1B;IACE,KAAK,MAAM,MAAM,WAAW,EAAE,MAAM,QAAQ;UACrC,OAAO,MAAgB,OAAO,MAAgB,OAAO;GAGhE,IAAI,MAAM,EAAE,GAAG;IACb,cAAc,KAAK;IAEnB,KAAK,MAAM,MAAM,WAAW,MAAM,QAAQ;IAC1C;IACA,MAAM,aAAa;IAEnB,OAAO,OAAO,IAAiB;KAC7B,MAAM;KACN,KAAK,MAAM,MAAM,WAAW,EAAE,MAAM,QAAQ;IAC9C;GACF,OACE;EAEJ;EAEA,IAAI,gBAAgB,MAAM,eAAe,KAAK,MAAM,aAAa,aAC/D,aAAa,OAAO,uBAAuB;EAG7C,OAAO;CACT;CAEA,SAAS,sBAAuB,OAAO;EACrC,IAAI,YAAY,MAAM;EACtB,IAAI,KAAK,MAAM,MAAM,WAAW,SAAS;EAIzC,KAAK,OAAO,MAAe,OAAO,OAC9B,OAAO,MAAM,MAAM,WAAW,YAAY,CAAC,KAC3C,OAAO,MAAM,MAAM,WAAW,YAAY,CAAC,GAAG;GAChD,aAAa;GAEb,KAAK,MAAM,MAAM,WAAW,SAAS;GAErC,IAAI,OAAO,KAAK,UAAU,EAAE,GAC1B,OAAO;EAEX;EAEA,OAAO;CACT;CAEA,SAAS,iBAAkB,OAAO,OAAO;EACvC,IAAI,UAAU,GACZ,MAAM,UAAU;OACX,IAAI,QAAQ,GACjB,MAAM,UAAU,OAAO,OAAO,MAAM,QAAQ,CAAC;CAEjD;CAEA,SAAS,gBAAiB,OAAO,YAAY,sBAAsB;EACjE,IAAI;EACJ,IAAI;EACJ,IAAI;EACJ,IAAI;EACJ,IAAI;EACJ,IAAI;EACJ,MAAM,QAAQ,MAAM;EACpB,MAAM,UAAU,MAAM;EAEtB,IAAI,KAAK,MAAM,MAAM,WAAW,MAAM,QAAQ;EAE9C,IAAI,UAAU,EAAE,KACZ,gBAAgB,EAAE,KAClB,OAAO,MACP,OAAO,MACP,OAAO,MACP,OAAO,MACP,OAAO,OACP,OAAO,MACP,OAAO,MACP,OAAO,MACP,OAAO,MACP,OAAO,MACP,OAAO,IACT,OAAO;EAGT,IAAI,OAAO,MAAe,OAAO,IAAa;GAC5C,MAAM,YAAY,MAAM,MAAM,WAAW,MAAM,WAAW,CAAC;GAE3D,IAAI,UAAU,SAAS,KAClB,wBAAwB,gBAAgB,SAAS,GACpD,OAAO;EAEX;EAEA,MAAM,OAAO;EACb,MAAM,SAAS;EACf,eAAe,aAAa,MAAM;EAClC,oBAAoB;EAEpB,OAAO,OAAO,GAAG;GACf,IAAI,OAAO,IAAa;IACtB,MAAM,YAAY,MAAM,MAAM,WAAW,MAAM,WAAW,CAAC;IAE3D,IAAI,UAAU,SAAS,KAClB,wBAAwB,gBAAgB,SAAS,GACpD;GAEJ,OAAO,IAAI,OAAO;QAGZ,UAFc,MAAM,MAAM,WAAW,MAAM,WAAW,CAEpC,CAAC,GACrB;GAAA,OAEG,IAAK,MAAM,aAAa,MAAM,aAAa,sBAAsB,KAAK,KACjE,wBAAwB,gBAAgB,EAAE,GACpD;QACK,IAAI,MAAM,EAAE,GAAG;IACpB,QAAQ,MAAM;IACd,aAAa,MAAM;IACnB,cAAc,MAAM;IACpB,oBAAoB,OAAO,OAAO,EAAE;IAEpC,IAAI,MAAM,cAAc,YAAY;KAClC,oBAAoB;KACpB,KAAK,MAAM,MAAM,WAAW,MAAM,QAAQ;KAC1C;IACF,OAAO;KACL,MAAM,WAAW;KACjB,MAAM,OAAO;KACb,MAAM,YAAY;KAClB,MAAM,aAAa;KACnB;IACF;GACF;GAEA,IAAI,mBAAmB;IACrB,eAAe,OAAO,cAAc,YAAY,KAAK;IACrD,iBAAiB,OAAO,MAAM,OAAO,KAAK;IAC1C,eAAe,aAAa,MAAM;IAClC,oBAAoB;GACtB;GAEA,IAAI,CAAC,aAAa,EAAE,GAClB,aAAa,MAAM,WAAW;GAGhC,KAAK,MAAM,MAAM,WAAW,EAAE,MAAM,QAAQ;EAC9C;EAEA,eAAe,OAAO,cAAc,YAAY,KAAK;EAErD,IAAI,MAAM,QACR,OAAO;EAGT,MAAM,OAAO;EACb,MAAM,SAAS;EACf,OAAO;CACT;CAEA,SAAS,uBAAwB,OAAO,YAAY;EAClD,IAAI;EACJ,IAAI;EAEJ,IAAI,KAAK,MAAM,MAAM,WAAW,MAAM,QAAQ;EAE9C,IAAI,OAAO,IACT,OAAO;EAGT,MAAM,OAAO;EACb,MAAM,SAAS;EACf,MAAM;EACN,eAAe,aAAa,MAAM;EAElC,QAAQ,KAAK,MAAM,MAAM,WAAW,MAAM,QAAQ,OAAO,GACvD,IAAI,OAAO,IAAa;GACtB,eAAe,OAAO,cAAc,MAAM,UAAU,IAAI;GACxD,KAAK,MAAM,MAAM,WAAW,EAAE,MAAM,QAAQ;GAE5C,IAAI,OAAO,IAAa;IACtB,eAAe,MAAM;IACrB,MAAM;IACN,aAAa,MAAM;GACrB,OACE,OAAO;EAEX,OAAO,IAAI,MAAM,EAAE,GAAG;GACpB,eAAe,OAAO,cAAc,YAAY,IAAI;GACpD,iBAAiB,OAAO,oBAAoB,OAAO,OAAO,UAAU,CAAC;GACrE,eAAe,aAAa,MAAM;EACpC,OAAO,IAAI,MAAM,aAAa,MAAM,aAAa,sBAAsB,KAAK,GAC1E,WAAW,OAAO,8DAA8D;OAC3E;GACL,MAAM;GACN,IAAI,CAAC,aAAa,EAAE,GAClB,aAAa,MAAM;EAEvB;EAGF,WAAW,OAAO,4DAA4D;CAChF;CAEA,SAAS,uBAAwB,OAAO,YAAY;EAClD,IAAI;EACJ,IAAI;EACJ,IAAI;EAEJ,IAAI,KAAK,MAAM,MAAM,WAAW,MAAM,QAAQ;EAE9C,IAAI,OAAO,IACT,OAAO;EAGT,MAAM,OAAO;EACb,MAAM,SAAS;EACf,MAAM;EACN,eAAe,aAAa,MAAM;EAElC,QAAQ,KAAK,MAAM,MAAM,WAAW,MAAM,QAAQ,OAAO,GACvD,IAAI,OAAO,IAAa;GACtB,eAAe,OAAO,cAAc,MAAM,UAAU,IAAI;GACxD,MAAM;GACN,OAAO;EACT,OAAO,IAAI,OAAO,IAAa;GAC7B,eAAe,OAAO,cAAc,MAAM,UAAU,IAAI;GACxD,KAAK,MAAM,MAAM,WAAW,EAAE,MAAM,QAAQ;GAE5C,IAAI,MAAM,EAAE,GACV,oBAAoB,OAAO,OAAO,UAAU;QAGvC,IAAI,KAAK,OAAO,kBAAkB,KAAK;IAC5C,MAAM,UAAU,gBAAgB;IAChC,MAAM;GACR,OAAO,KAAK,MAAM,cAAc,EAAE,KAAK,GAAG;IACxC,IAAI,YAAY;IAChB,IAAI,YAAY;IAEhB,OAAO,YAAY,GAAG,aAAa;KACjC,KAAK,MAAM,MAAM,WAAW,EAAE,MAAM,QAAQ;KAE5C,KAAK,MAAM,YAAY,EAAE,MAAM,GAC7B,aAAa,aAAa,KAAK;UAE/B,WAAW,OAAO,gCAAgC;IAEtD;IAEA,MAAM,UAAU,kBAAkB,SAAS;IAE3C,MAAM;GACR,OACE,WAAW,OAAO,yBAAyB;GAG7C,eAAe,aAAa,MAAM;EACpC,OAAO,IAAI,MAAM,EAAE,GAAG;GACpB,eAAe,OAAO,cAAc,YAAY,IAAI;GACpD,iBAAiB,OAAO,oBAAoB,OAAO,OAAO,UAAU,CAAC;GACrE,eAAe,aAAa,MAAM;EACpC,OAAO,IAAI,MAAM,aAAa,MAAM,aAAa,sBAAsB,KAAK,GAC1E,WAAW,OAAO,8DAA8D;OAC3E;GACL,MAAM;GACN,IAAI,CAAC,aAAa,EAAE,GAClB,aAAa,MAAM;EAEvB;EAGF,WAAW,OAAO,4DAA4D;CAChF;CAEA,SAAS,mBAAoB,OAAO,YAAY;EAC9C,IAAI,WAAW;EACf,IAAI;EACJ,IAAI;EACJ,IAAI;EACJ,MAAM,OAAO,MAAM;EACnB,IAAI;EACJ,MAAM,UAAU,MAAM;EACtB,IAAI;EACJ,IAAI;EACJ,IAAI;EACJ,IAAI;EACJ,MAAM,kBAAkB,OAAO,OAAO,IAAI;EAC1C,IAAI;EACJ,IAAI;EACJ,IAAI;EAEJ,IAAI,KAAK,MAAM,MAAM,WAAW,MAAM,QAAQ;EAE9C,IAAI,OAAO,IAAa;GACtB,aAAa;GACb,YAAY;GACZ,UAAU,CAAC;EACb,OAAO,IAAI,OAAO,KAAa;GAC7B,aAAa;GACb,YAAY;GACZ,UAAU,CAAC;EACb,OACE,OAAO;EAGT,IAAI,MAAM,WAAW,MACnB,YAAY,OAAO,MAAM,QAAQ,OAAO;EAG1C,KAAK,MAAM,MAAM,WAAW,EAAE,MAAM,QAAQ;EAE5C,OAAO,OAAO,GAAG;GACf,oBAAoB,OAAO,MAAM,UAAU;GAE3C,KAAK,MAAM,MAAM,WAAW,MAAM,QAAQ;GAE1C,IAAI,OAAO,YAAY;IACrB,MAAM;IACN,MAAM,MAAM;IACZ,MAAM,SAAS;IACf,MAAM,OAAO,YAAY,YAAY;IACrC,MAAM,SAAS;IACf,OAAO;GACT,OAAO,IAAI,CAAC,UACV,WAAW,OAAO,8CAA8C;QAC3D,IAAI,OAAO,IAEhB,WAAW,OAAO,0CAA0C;GAG9D,SAAS,UAAU,YAAY;GAC/B,SAAS,iBAAiB;GAE1B,IAAI,OAAO;QAGL,UAFc,MAAM,MAAM,WAAW,MAAM,WAAW,CAEpC,CAAC,GAAG;KACxB,SAAS,iBAAiB;KAC1B,MAAM;KACN,oBAAoB,OAAO,MAAM,UAAU;IAC7C;;GAGF,QAAQ,MAAM;GACd,aAAa,MAAM;GACnB,OAAO,MAAM;GACb,YAAY,OAAO,YAAY,iBAAiB,OAAO,IAAI;GAC3D,SAAS,MAAM;GACf,UAAU,MAAM;GAChB,oBAAoB,OAAO,MAAM,UAAU;GAE3C,KAAK,MAAM,MAAM,WAAW,MAAM,QAAQ;GAE1C,KAAK,kBAAkB,MAAM,SAAS,UAAU,OAAO,IAAa;IAClE,SAAS;IACT,KAAK,MAAM,MAAM,WAAW,EAAE,MAAM,QAAQ;IAC5C,oBAAoB,OAAO,MAAM,UAAU;IAC3C,YAAY,OAAO,YAAY,iBAAiB,OAAO,IAAI;IAC3D,YAAY,MAAM;GACpB;GAEA,IAAI,WACF,iBAAiB,OAAO,SAAS,iBAAiB,QAAQ,SAAS,WAAW,OAAO,YAAY,IAAI;QAChG,IAAI,QACT,QAAQ,KAAK,iBAAiB,OAAO,MAAM,iBAAiB,QAAQ,SAAS,WAAW,OAAO,YAAY,IAAI,CAAC;QAEhH,QAAQ,KAAK,OAAO;GAGtB,oBAAoB,OAAO,MAAM,UAAU;GAE3C,KAAK,MAAM,MAAM,WAAW,MAAM,QAAQ;GAE1C,IAAI,OAAO,IAAa;IACtB,WAAW;IACX,KAAK,MAAM,MAAM,WAAW,EAAE,MAAM,QAAQ;GAC9C,OACE,WAAW;EAEf;EAEA,WAAW,OAAO,uDAAuD;CAC3E;CAEA,SAAS,gBAAiB,OAAO,YAAY;EAC3C,IAAI;EACJ,IAAI,WAAW;EACf,IAAI,iBAAiB;EACrB,IAAI,iBAAiB;EACrB,IAAI,aAAa;EACjB,IAAI,aAAa;EACjB,IAAI,iBAAiB;EACrB,IAAI;EAEJ,IAAI,KAAK,MAAM,MAAM,WAAW,MAAM,QAAQ;EAE9C,IAAI,OAAO,KACT,UAAU;OACL,IAAI,OAAO,IAChB,UAAU;OAEV,OAAO;EAGT,MAAM,OAAO;EACb,MAAM,SAAS;EAEf,OAAO,OAAO,GAAG;GACf,KAAK,MAAM,MAAM,WAAW,EAAE,MAAM,QAAQ;GAE5C,IAAI,OAAO,MAAe,OAAO,IAC/B,IAAI,kBAAkB,UACpB,WAAY,OAAO,KAAe,gBAAgB;QAElD,WAAW,OAAO,sCAAsC;QAErD,KAAK,MAAM,gBAAgB,EAAE,MAAM,GACxC,IAAI,QAAQ,GACV,WAAW,OAAO,8EAA8E;QAC3F,IAAI,CAAC,gBAAgB;IAC1B,aAAa,aAAa,MAAM;IAChC,iBAAiB;GACnB,OACE,WAAW,OAAO,2CAA2C;QAG/D;EAEJ;EAEA,IAAI,aAAa,EAAE,GAAG;GACpB;IAAK,KAAK,MAAM,MAAM,WAAW,EAAE,MAAM,QAAQ;UAC1C,aAAa,EAAE;GAEtB,IAAI,OAAO,IACT;IAAK,KAAK,MAAM,MAAM,WAAW,EAAE,MAAM,QAAQ;UAC1C,CAAC,MAAM,EAAE,KAAM,OAAO;EAEjC;EAEA,OAAO,OAAO,GAAG;GACf,cAAc,KAAK;GACnB,MAAM,aAAa;GAEnB,KAAK,MAAM,MAAM,WAAW,MAAM,QAAQ;GAG1C,QAAQ,CAAC,kBAAkB,MAAM,aAAa,eACtC,OAAO,IAAkB;IAC/B,MAAM;IACN,KAAK,MAAM,MAAM,WAAW,EAAE,MAAM,QAAQ;GAC9C;GAEA,IAAI,CAAC,kBAAkB,MAAM,aAAa,YACxC,aAAa,MAAM;GAGrB,IAAI,MAAM,EAAE,GAAG;IACb;IACA;GACF;GAEA,IAAI,CAAC,kBAAkB,eAAe,GACpC,WAAW,OAAO,sCAAsC;GAI1D,IAAI,MAAM,aAAa,YAAY;IAEjC,IAAI,aAAa,eACf,MAAM,UAAU,OAAO,OAAO,MAAM,iBAAiB,IAAI,aAAa,UAAU;SAC3E,IAAI,aAAa;SAClB,gBACF,MAAM,UAAU;IAAA;IAKpB;GACF;GAGA,IAAI,SAEF,IAAI,aAAa,EAAE,GAAG;IACpB,iBAAiB;IAEjB,MAAM,UAAU,OAAO,OAAO,MAAM,iBAAiB,IAAI,aAAa,UAAU;GAGlF,OAAO,IAAI,gBAAgB;IACzB,iBAAiB;IACjB,MAAM,UAAU,OAAO,OAAO,MAAM,aAAa,CAAC;GAGpD,OAAO,IAAI,eAAe;QACpB,gBACF,MAAM,UAAU;GAAA,OAKlB,MAAM,UAAU,OAAO,OAAO,MAAM,UAAU;QAMhD,MAAM,UAAU,OAAO,OAAO,MAAM,iBAAiB,IAAI,aAAa,UAAU;GAGlF,iBAAiB;GACjB,iBAAiB;GACjB,aAAa;GACb,MAAM,eAAe,MAAM;GAE3B,OAAO,CAAC,MAAM,EAAE,KAAM,OAAO,GAC3B,KAAK,MAAM,MAAM,WAAW,EAAE,MAAM,QAAQ;GAG9C,eAAe,OAAO,cAAc,MAAM,UAAU,KAAK;EAC3D;EAEA,OAAO;CACT;CAEA,SAAS,kBAAmB,OAAO,YAAY;EAC7C,MAAM,OAAO,MAAM;EACnB,MAAM,UAAU,MAAM;EACtB,MAAM,UAAU,CAAC;EACjB,IAAI,WAAW;EAIf,IAAI,MAAM,mBAAmB,IAAI,OAAO;EAExC,IAAI,MAAM,WAAW,MACnB,YAAY,OAAO,MAAM,QAAQ,OAAO;EAG1C,IAAI,KAAK,MAAM,MAAM,WAAW,MAAM,QAAQ;EAE9C,OAAO,OAAO,GAAG;GACf,IAAI,MAAM,mBAAmB,IAAI;IAC/B,MAAM,WAAW,MAAM;IACvB,WAAW,OAAO,gDAAgD;GACpE;GAEA,IAAI,OAAO,IACT;GAKF,IAAI,CAAC,UAFa,MAAM,MAAM,WAAW,MAAM,WAAW,CAEnC,CAAC,GACtB;GAGF,WAAW;GACX,MAAM;GAEN,IAAI,oBAAoB,OAAO,MAAM,EAAE;QACjC,MAAM,cAAc,YAAY;KAClC,QAAQ,KAAK,IAAI;KACjB,KAAK,MAAM,MAAM,WAAW,MAAM,QAAQ;KAC1C;IACF;;GAGF,MAAM,QAAQ,MAAM;GACpB,YAAY,OAAO,YAAY,kBAAkB,OAAO,IAAI;GAC5D,QAAQ,KAAK,MAAM,MAAM;GACzB,oBAAoB,OAAO,MAAM,EAAE;GAEnC,KAAK,MAAM,MAAM,WAAW,MAAM,QAAQ;GAE1C,KAAK,MAAM,SAAS,SAAS,MAAM,aAAa,eAAgB,OAAO,GACrE,WAAW,OAAO,qCAAqC;QAClD,IAAI,MAAM,aAAa,YAC5B;EAEJ;EAEA,IAAI,UAAU;GACZ,MAAM,MAAM;GACZ,MAAM,SAAS;GACf,MAAM,OAAO;GACb,MAAM,SAAS;GACf,OAAO;EACT;EACA,OAAO;CACT;CAEA,SAAS,iBAAkB,OAAO,YAAY,YAAY;EACxD,IAAI;EACJ,IAAI;EACJ,IAAI;EACJ,IAAI;EACJ,MAAM,OAAO,MAAM;EACnB,MAAM,UAAU,MAAM;EACtB,MAAM,UAAU,CAAC;EACjB,MAAM,kBAAkB,OAAO,OAAO,IAAI;EAC1C,IAAI,SAAS;EACb,IAAI,UAAU;EACd,IAAI,YAAY;EAChB,IAAI,gBAAgB;EACpB,IAAI,WAAW;EAIf,IAAI,MAAM,mBAAmB,IAAI,OAAO;EAExC,IAAI,MAAM,WAAW,MACnB,YAAY,OAAO,MAAM,QAAQ,OAAO;EAG1C,IAAI,KAAK,MAAM,MAAM,WAAW,MAAM,QAAQ;EAE9C,OAAO,OAAO,GAAG;GACf,IAAI,CAAC,iBAAiB,MAAM,mBAAmB,IAAI;IACjD,MAAM,WAAW,MAAM;IACvB,WAAW,OAAO,gDAAgD;GACpE;GAEA,MAAM,YAAY,MAAM,MAAM,WAAW,MAAM,WAAW,CAAC;GAC3D,MAAM,QAAQ,MAAM;GAMpB,KAAK,OAAO,MAAe,OAAO,OAAgB,UAAU,SAAS,GAAG;IACtE,IAAI,OAAO,IAAa;KACtB,IAAI,eAAe;MACjB,iBAAiB,OAAO,SAAS,iBAAiB,QAAQ,SAAS,MAAM,UAAU,eAAe,OAAO;MACzG,SAAS,UAAU,YAAY;KACjC;KAEA,WAAW;KACX,gBAAgB;KAChB,eAAe;IACjB,OAAO,IAAI,eAAe;KAExB,gBAAgB;KAChB,eAAe;IACjB,OACE,WAAW,OAAO,mGAAmG;IAGvH,MAAM,YAAY;IAClB,KAAK;GAKP,OAAO;IACL,WAAW,MAAM;IACjB,gBAAgB,MAAM;IACtB,UAAU,MAAM;IAEhB,IAAI,CAAC,YAAY,OAAO,YAAY,kBAAkB,OAAO,IAAI,GAG/D;IAGF,IAAI,MAAM,SAAS,OAAO;KACxB,KAAK,MAAM,MAAM,WAAW,MAAM,QAAQ;KAE1C,OAAO,aAAa,EAAE,GACpB,KAAK,MAAM,MAAM,WAAW,EAAE,MAAM,QAAQ;KAG9C,IAAI,OAAO,IAAa;MACtB,KAAK,MAAM,MAAM,WAAW,EAAE,MAAM,QAAQ;MAE5C,IAAI,CAAC,UAAU,EAAE,GACf,WAAW,OAAO,yFAAyF;MAG7G,IAAI,eAAe;OACjB,iBAAiB,OAAO,SAAS,iBAAiB,QAAQ,SAAS,MAAM,UAAU,eAAe,OAAO;OACzG,SAAS,UAAU,YAAY;MACjC;MAEA,WAAW;MACX,gBAAgB;MAChB,eAAe;MACf,SAAS,MAAM;MACf,UAAU,MAAM;KAClB,OAAO,IAAI,UACT,WAAW,OAAO,0DAA0D;UACvE;MACL,MAAM,MAAM;MACZ,MAAM,SAAS;MACf,OAAO;KACT;IACF,OAAO,IAAI,UACT,WAAW,OAAO,gFAAgF;SAC7F;KACL,MAAM,MAAM;KACZ,MAAM,SAAS;KACf,OAAO;IACT;GACF;GAKA,IAAI,MAAM,SAAS,SAAS,MAAM,aAAa,YAAY;IACzD,IAAI,eAAe;KACjB,WAAW,MAAM;KACjB,gBAAgB,MAAM;KACtB,UAAU,MAAM;IAClB;IAEA,IAAI,YAAY,OAAO,YAAY,mBAAmB,MAAM,YAAY,GACtE,IAAI,eACF,UAAU,MAAM;SAEhB,YAAY,MAAM;IAItB,IAAI,CAAC,eAAe;KAClB,iBAAiB,OAAO,SAAS,iBAAiB,QAAQ,SAAS,WAAW,UAAU,eAAe,OAAO;KAC9G,SAAS,UAAU,YAAY;IACjC;IAEA,oBAAoB,OAAO,MAAM,EAAE;IACnC,KAAK,MAAM,MAAM,WAAW,MAAM,QAAQ;GAC5C;GAEA,KAAK,MAAM,SAAS,SAAS,MAAM,aAAa,eAAgB,OAAO,GACrE,WAAW,OAAO,oCAAoC;QACjD,IAAI,MAAM,aAAa,YAC5B;EAEJ;EAOA,IAAI,eACF,iBAAiB,OAAO,SAAS,iBAAiB,QAAQ,SAAS,MAAM,UAAU,eAAe,OAAO;EAI3G,IAAI,UAAU;GACZ,MAAM,MAAM;GACZ,MAAM,SAAS;GACf,MAAM,OAAO;GACb,MAAM,SAAS;EACjB;EAEA,OAAO;CACT;CAEA,SAAS,gBAAiB,OAAO;EAC/B,IAAI,aAAa;EACjB,IAAI,UAAU;EACd,IAAI;EACJ,IAAI;EAEJ,IAAI,KAAK,MAAM,MAAM,WAAW,MAAM,QAAQ;EAE9C,IAAI,OAAO,IAAa,OAAO;EAE/B,IAAI,MAAM,QAAQ,MAChB,WAAW,OAAO,+BAA+B;EAGnD,KAAK,MAAM,MAAM,WAAW,EAAE,MAAM,QAAQ;EAE5C,IAAI,OAAO,IAAa;GACtB,aAAa;GACb,KAAK,MAAM,MAAM,WAAW,EAAE,MAAM,QAAQ;EAC9C,OAAO,IAAI,OAAO,IAAa;GAC7B,UAAU;GACV,YAAY;GACZ,KAAK,MAAM,MAAM,WAAW,EAAE,MAAM,QAAQ;EAC9C,OACE,YAAY;EAGd,IAAI,YAAY,MAAM;EAEtB,IAAI,YAAY;GACd;IAAK,KAAK,MAAM,MAAM,WAAW,EAAE,MAAM,QAAQ;UAC1C,OAAO,KAAK,OAAO;GAE1B,IAAI,MAAM,WAAW,MAAM,QAAQ;IACjC,UAAU,MAAM,MAAM,MAAM,WAAW,MAAM,QAAQ;IACrD,KAAK,MAAM,MAAM,WAAW,EAAE,MAAM,QAAQ;GAC9C,OACE,WAAW,OAAO,oDAAoD;EAE1E,OAAO;GACL,OAAO,OAAO,KAAK,CAAC,UAAU,EAAE,GAAG;IACjC,IAAI,OAAO,IACT,IAAI,CAAC,SAAS;KACZ,YAAY,MAAM,MAAM,MAAM,YAAY,GAAG,MAAM,WAAW,CAAC;KAE/D,IAAI,CAAC,mBAAmB,KAAK,SAAS,GACpC,WAAW,OAAO,iDAAiD;KAGrE,UAAU;KACV,YAAY,MAAM,WAAW;IAC/B,OACE,WAAW,OAAO,6CAA6C;IAInE,KAAK,MAAM,MAAM,WAAW,EAAE,MAAM,QAAQ;GAC9C;GAEA,UAAU,MAAM,MAAM,MAAM,WAAW,MAAM,QAAQ;GAErD,IAAI,wBAAwB,KAAK,OAAO,GACtC,WAAW,OAAO,qDAAqD;EAE3E;EAEA,IAAI,WAAW,CAAC,gBAAgB,KAAK,OAAO,GAC1C,WAAW,OAAO,8CAA8C,OAAO;EAGzE,IAAI;GACF,UAAU,mBAAmB,OAAO;EACtC,SAAS,KAAK;GACZ,WAAW,OAAO,4BAA4B,OAAO;EACvD;EAEA,IAAI,YACF,MAAM,MAAM;OACP,IAAI,gBAAgB,KAAK,MAAM,QAAQ,SAAS,GACrD,MAAM,MAAM,MAAM,OAAO,aAAa;OACjC,IAAI,cAAc,KACvB,MAAM,MAAM,MAAM;OACb,IAAI,cAAc,MACvB,MAAM,MAAM,uBAAuB;OAEnC,WAAW,OAAO,6BAA4B,YAAY,IAAG;EAG/D,OAAO;CACT;CAEA,SAAS,mBAAoB,OAAO;EAClC,IAAI,KAAK,MAAM,MAAM,WAAW,MAAM,QAAQ;EAE9C,IAAI,OAAO,IAAa,OAAO;EAE/B,IAAI,MAAM,WAAW,MACnB,WAAW,OAAO,mCAAmC;EAGvD,KAAK,MAAM,MAAM,WAAW,EAAE,MAAM,QAAQ;EAC5C,MAAM,YAAY,MAAM;EAExB,OAAO,OAAO,KAAK,CAAC,UAAU,EAAE,KAAK,CAAC,gBAAgB,EAAE,GACtD,KAAK,MAAM,MAAM,WAAW,EAAE,MAAM,QAAQ;EAG9C,IAAI,MAAM,aAAa,WACrB,WAAW,OAAO,4DAA4D;EAGhF,MAAM,SAAS,MAAM,MAAM,MAAM,WAAW,MAAM,QAAQ;EAC1D,OAAO;CACT;CAEA,SAAS,UAAW,OAAO;EACzB,IAAI,KAAK,MAAM,MAAM,WAAW,MAAM,QAAQ;EAE9C,IAAI,OAAO,IAAa,OAAO;EAE/B,KAAK,MAAM,MAAM,WAAW,EAAE,MAAM,QAAQ;EAC5C,MAAM,YAAY,MAAM;EAExB,OAAO,OAAO,KAAK,CAAC,UAAU,EAAE,KAAK,CAAC,gBAAgB,EAAE,GACtD,KAAK,MAAM,MAAM,WAAW,EAAE,MAAM,QAAQ;EAG9C,IAAI,MAAM,aAAa,WACrB,WAAW,OAAO,2DAA2D;EAG/E,MAAM,QAAQ,MAAM,MAAM,MAAM,WAAW,MAAM,QAAQ;EAEzD,IAAI,CAAC,gBAAgB,KAAK,MAAM,WAAW,KAAK,GAC9C,WAAW,OAAO,0BAAyB,QAAQ,IAAG;EAGxD,MAAM,SAAS,MAAM,UAAU;EAC/B,oBAAoB,OAAO,MAAM,EAAE;EACnC,OAAO;CACT;CAEA,SAAS,gCAAiC,OAAO,eAAe,YAAY,YAAY;EACtF,MAAM,gBAAgB,cAAc,KAAK;EAEzC,uBAAuB,KAAK;EAC5B,aAAa,OAAO,aAAa;EAIjC,MAAM,MAAM;EACZ,MAAM,SAAS;EACf,MAAM,OAAO;EACb,MAAM,SAAS;EAEf,IAAI,iBAAiB,OAAO,YAAY,UAAU,KAAK,MAAM,SAAS,WAAW;GAC/E,wBAAwB,KAAK;GAC7B,OAAO;EACT;EAEA,0BAA0B,KAAK;EAC/B,aAAa,OAAO,aAAa;EACjC,OAAO;CACT;CAEA,SAAS,YAAa,OAAO,cAAc,aAAa,aAAa,cAAc;EACjF,IAAI;EACJ,IAAI;EACJ,IAAI,eAAe;EACnB,IAAI,YAAY;EAChB,IAAI,aAAa;EACjB,IAAI,gBAAgB;EACpB,IAAI;EACJ,IAAI;EACJ,IAAI;EAEJ,IAAI,MAAM,SAAS,MAAM,UACvB,WAAW,OAAO,gCAAgC,MAAM,WAAW,GAAG;EAGxE,MAAM,SAAS;EAEf,IAAI,MAAM,aAAa,MACrB,MAAM,SAAS,QAAQ,KAAK;EAG9B,MAAM,MAAM;EACZ,MAAM,SAAS;EACf,MAAM,OAAO;EACb,MAAM,SAAS;EAEf,MAAM,mBAAmB,oBAAoB,wBAC3C,sBAAsB,eACtB,qBAAqB;EAEvB,IAAI;OACE,oBAAoB,OAAO,MAAM,EAAE,GAAG;IACxC,YAAY;IAEZ,IAAI,MAAM,aAAa,cACrB,eAAe;SACV,IAAI,MAAM,eAAe,cAC9B,eAAe;SACV,IAAI,MAAM,aAAa,cAC5B,eAAe;GAEnB;;EAGF,IAAI,iBAAiB,GACnB,OAAO,MAAM;GACX,MAAM,KAAK,MAAM,MAAM,WAAW,MAAM,QAAQ;GAChD,MAAM,gBAAgB,cAAc,KAAK;GAIzC,IAAI,cACE,OAAO,MAAe,MAAM,QAAQ,QACpC,OAAO,MAAe,MAAM,WAAW,OAC3C;GAGF,IAAI,CAAC,gBAAgB,KAAK,KAAK,CAAC,mBAAmB,KAAK,GACtD;GAGF,IAAI,kBAAkB,MACpB,gBAAgB;GAGlB,IAAI,oBAAoB,OAAO,MAAM,EAAE,GAAG;IACxC,YAAY;IACZ,wBAAwB;IAExB,IAAI,MAAM,aAAa,cACrB,eAAe;SACV,IAAI,MAAM,eAAe,cAC9B,eAAe;SACV,IAAI,MAAM,aAAa,cAC5B,eAAe;GAEnB,OACE,wBAAwB;EAE5B;EAGF,IAAI,uBACF,wBAAwB,aAAa;EAGvC,IAAI,iBAAiB,KAAK,sBAAsB,aAAa;GAC3D,IAAI,oBAAoB,eAAe,qBAAqB,aAC1D,aAAa;QAEb,aAAa,eAAe;GAG9B,cAAc,MAAM,WAAW,MAAM;GAErC,IAAI,iBAAiB,GACnB,IAAK,0BACA,kBAAkB,OAAO,WAAW,KAAK,iBAAiB,OAAO,aAAa,UAAU,MACzF,mBAAmB,OAAO,UAAU,GACtC,aAAa;QACR;IACL,MAAM,KAAK,MAAM,MAAM,WAAW,MAAM,QAAQ;IAEhD,IAAI,kBAAkB,QAAQ,oBAAoB,CAAC,yBAC/C,OAAO,OAAe,OAAO,MAC7B,gCACE,OACA,eACA,cAAc,WAAW,cAAc,WACvC,UACF,GACF,aAAa;SACR,IAAK,qBAAqB,gBAAgB,OAAO,UAAU,KAC9D,uBAAuB,OAAO,UAAU,KACxC,uBAAuB,OAAO,UAAU,GAC1C,aAAa;SACR,IAAI,UAAU,KAAK,GAAG;KAC3B,aAAa;KAEb,IAAI,MAAM,QAAQ,QAAQ,MAAM,WAAW,MACzC,WAAW,OAAO,2CAA2C;IAEjE,OAAO,IAAI,gBAAgB,OAAO,YAAY,oBAAoB,WAAW,GAAG;KAC9E,aAAa;KAEb,IAAI,MAAM,QAAQ,MAChB,MAAM,MAAM;IAEhB;IAEA,IAAI,MAAM,WAAW,MACnB,YAAY,OAAO,MAAM,QAAQ,MAAM,MAAM;GAEjD;QACK,IAAI,iBAAiB,GAG1B,aAAa,yBAAyB,kBAAkB,OAAO,WAAW;EAE9E;EAEA,IAAI,MAAM,QAAQ;OACZ,MAAM,WAAW,MACnB,YAAY,OAAO,MAAM,QAAQ,MAAM,MAAM;EAAA,OAE1C,IAAI,MAAM,QAAQ,KAAK;GAO5B,IAAI,MAAM,WAAW,QAAQ,MAAM,SAAS,UAC1C,WAAW,OAAO,yEAAsE,MAAM,OAAO,IAAG;GAG1G,KAAK,IAAI,YAAY,GAAG,eAAe,MAAM,cAAc,QAAQ,YAAY,cAAc,aAAa,GAAG;IAC3G,OAAO,MAAM,cAAc;IAE3B,IAAI,KAAK,QAAQ,MAAM,MAAM,GAAG;KAC9B,MAAM,SAAS,KAAK,UAAU,MAAM,MAAM;KAC1C,MAAM,MAAM,KAAK;KACjB,IAAI,MAAM,WAAW,MACnB,YAAY,OAAO,MAAM,QAAQ,MAAM,MAAM;KAE/C;IACF;GACF;EACF,OAAO,IAAI,MAAM,QAAQ,KAAK;GAC5B,IAAI,gBAAgB,KAAK,MAAM,QAAQ,MAAM,QAAQ,aAAa,MAAM,GAAG,GACzE,OAAO,MAAM,QAAQ,MAAM,QAAQ,YAAY,MAAM;QAChD;IAEL,OAAO;IACP,MAAM,WAAW,MAAM,QAAQ,MAAM,MAAM,QAAQ;IAEnD,KAAK,IAAI,YAAY,GAAG,eAAe,SAAS,QAAQ,YAAY,cAAc,aAAa,GAC7F,IAAI,MAAM,IAAI,MAAM,GAAG,SAAS,WAAW,IAAI,MAAM,MAAM,SAAS,WAAW,KAAK;KAClF,OAAO,SAAS;KAChB;IACF;GAEJ;GAEA,IAAI,CAAC,MACH,WAAW,OAAO,mBAAmB,MAAM,MAAM,GAAG;GAGtD,IAAI,MAAM,WAAW,QAAQ,KAAK,SAAS,MAAM,MAC/C,WAAW,OAAO,kCAAkC,MAAM,MAAM,2BAA0B,KAAK,OAAO,eAAa,MAAM,OAAO,IAAG;GAGrI,IAAI,CAAC,KAAK,QAAQ,MAAM,QAAQ,MAAM,GAAG,GACvC,WAAW,OAAO,kCAAkC,MAAM,MAAM,gBAAgB;QAC3E;IACL,MAAM,SAAS,KAAK,UAAU,MAAM,QAAQ,MAAM,GAAG;IACrD,IAAI,MAAM,WAAW,MACnB,YAAY,OAAO,MAAM,QAAQ,MAAM,MAAM;GAEjD;EACF;EAEA,IAAI,MAAM,aAAa,MACrB,MAAM,SAAS,SAAS,KAAK;EAG/B,MAAM,SAAS;EACf,OAAO,MAAM,QAAQ,QAAQ,MAAM,WAAW,QAAQ;CACxD;CAEA,SAAS,aAAc,OAAO;EAC5B,MAAM,gBAAgB,MAAM;EAC5B,IAAI,gBAAgB;EACpB,IAAI;EAEJ,MAAM,UAAU;EAChB,MAAM,kBAAkB,MAAM;EAC9B,MAAM,SAAS,OAAO,OAAO,IAAI;EACjC,MAAM,YAAY,OAAO,OAAO,IAAI;EAEpC,QAAQ,KAAK,MAAM,MAAM,WAAW,MAAM,QAAQ,OAAO,GAAG;GAC1D,oBAAoB,OAAO,MAAM,EAAE;GAEnC,KAAK,MAAM,MAAM,WAAW,MAAM,QAAQ;GAE1C,IAAI,MAAM,aAAa,KAAK,OAAO,IACjC;GAGF,gBAAgB;GAChB,KAAK,MAAM,MAAM,WAAW,EAAE,MAAM,QAAQ;GAC5C,IAAI,YAAY,MAAM;GAEtB,OAAO,OAAO,KAAK,CAAC,UAAU,EAAE,GAC9B,KAAK,MAAM,MAAM,WAAW,EAAE,MAAM,QAAQ;GAG9C,MAAM,gBAAgB,MAAM,MAAM,MAAM,WAAW,MAAM,QAAQ;GACjE,MAAM,gBAAgB,CAAC;GAEvB,IAAI,cAAc,SAAS,GACzB,WAAW,OAAO,8DAA8D;GAGlF,OAAO,OAAO,GAAG;IACf,OAAO,aAAa,EAAE,GACpB,KAAK,MAAM,MAAM,WAAW,EAAE,MAAM,QAAQ;IAG9C,IAAI,OAAO,IAAa;KACtB;MAAK,KAAK,MAAM,MAAM,WAAW,EAAE,MAAM,QAAQ;YAC1C,OAAO,KAAK,CAAC,MAAM,EAAE;KAC5B;IACF;IAEA,IAAI,MAAM,EAAE,GAAG;IAEf,YAAY,MAAM;IAElB,OAAO,OAAO,KAAK,CAAC,UAAU,EAAE,GAC9B,KAAK,MAAM,MAAM,WAAW,EAAE,MAAM,QAAQ;IAG9C,cAAc,KAAK,MAAM,MAAM,MAAM,WAAW,MAAM,QAAQ,CAAC;GACjE;GAEA,IAAI,OAAO,GAAG,cAAc,KAAK;GAEjC,IAAI,gBAAgB,KAAK,mBAAmB,aAAa,GACvD,kBAAkB,eAAe,OAAO,eAAe,aAAa;QAEpE,aAAa,OAAO,kCAAiC,gBAAgB,IAAG;EAE5E;EAEA,oBAAoB,OAAO,MAAM,EAAE;EAEnC,IAAI,MAAM,eAAe,KACrB,MAAM,MAAM,WAAW,MAAM,QAAQ,MAAM,MAC3C,MAAM,MAAM,WAAW,MAAM,WAAW,CAAC,MAAM,MAC/C,MAAM,MAAM,WAAW,MAAM,WAAW,CAAC,MAAM,IAAa;GAC9D,MAAM,YAAY;GAClB,oBAAoB,OAAO,MAAM,EAAE;EACrC,OAAO,IAAI,eACT,WAAW,OAAO,iCAAiC;EAGrD,YAAY,OAAO,MAAM,aAAa,GAAG,mBAAmB,OAAO,IAAI;EACvE,oBAAoB,OAAO,MAAM,EAAE;EAEnC,IAAI,MAAM,mBACN,8BAA8B,KAAK,MAAM,MAAM,MAAM,eAAe,MAAM,QAAQ,CAAC,GACrF,aAAa,OAAO,kDAAkD;EAGxE,MAAM,UAAU,KAAK,MAAM,MAAM;EAEjC,IAAI,MAAM,aAAa,MAAM,aAAa,sBAAsB,KAAK,GAAG;GACtE,IAAI,MAAM,MAAM,WAAW,MAAM,QAAQ,MAAM,IAAa;IAC1D,MAAM,YAAY;IAClB,oBAAoB,OAAO,MAAM,EAAE;GACrC;GACA;EACF;EAEA,IAAI,MAAM,WAAY,MAAM,SAAS,GACnC,WAAW,OAAO,uDAAuD;CAE7E;CAEA,SAAS,cAAe,OAAO,SAAS;EACtC,QAAQ,OAAO,KAAK;EACpB,UAAU,WAAW,CAAC;EAEtB,IAAI,MAAM,WAAW,GAAG;GAEtB,IAAI,MAAM,WAAW,MAAM,SAAS,CAAC,MAAM,MACvC,MAAM,WAAW,MAAM,SAAS,CAAC,MAAM,IACzC,SAAS;GAIX,IAAI,MAAM,WAAW,CAAC,MAAM,OAC1B,QAAQ,MAAM,MAAM,CAAC;EAEzB;EAEA,MAAM,QAAQ,IAAI,MAAM,OAAO,OAAO;EAEtC,MAAM,UAAU,MAAM,QAAQ,IAAI;EAElC,IAAI,YAAY,IAAI;GAClB,MAAM,WAAW;GACjB,WAAW,OAAO,mCAAmC;EACvD;EAGA,MAAM,SAAS;EAEf,OAAO,MAAM,MAAM,WAAW,MAAM,QAAQ,MAAM,IAAiB;GACjE,MAAM,cAAc;GACpB,MAAM,YAAY;EACpB;EAEA,OAAO,MAAM,WAAY,MAAM,SAAS,GACtC,aAAa,KAAK;EAGpB,OAAO,MAAM;CACf;CAEA,SAAS,QAAS,OAAO,UAAU,SAAS;EAC1C,IAAI,aAAa,QAAQ,OAAO,aAAa,YAAY,OAAO,YAAY,aAAa;GACvF,UAAU;GACV,WAAW;EACb;EAEA,MAAM,YAAY,cAAc,OAAO,OAAO;EAE9C,IAAI,OAAO,aAAa,YACtB,OAAO;EAGT,KAAK,IAAI,QAAQ,GAAG,SAAS,UAAU,QAAQ,QAAQ,QAAQ,SAAS,GACtE,SAAS,UAAU,MAAM;CAE7B;CAEA,SAAS,KAAM,OAAO,SAAS;EAC7B,MAAM,YAAY,cAAc,OAAO,OAAO;EAE9C,IAAI,UAAU,WAAW,GACvB;OACK,IAAI,UAAU,WAAW,GAC9B,OAAO,UAAU;EAEnB,MAAM,IAAI,cAAc,0DAA0D;CACpF;CAEA,OAAO,QAAQ,UAAU;CACzB,OAAO,QAAQ,OAAO;;;;;CC/vDtB,IAAM,SAAA,eAAA;CACN,IAAM,gBAAA,kBAAA;CACN,IAAM,iBAAA,gBAAA;CAEN,IAAM,YAAY,OAAO,UAAU;CACnC,IAAM,kBAAkB,OAAO,UAAU;CAEzC,IAAM,WAAW;CACjB,IAAM,WAAW;CACjB,IAAM,iBAAiB;CACvB,IAAM,uBAAuB;CAC7B,IAAM,aAAa;CACnB,IAAM,mBAAmB;CACzB,IAAM,oBAAoB;CAC1B,IAAM,aAAa;CACnB,IAAM,eAAe;CACrB,IAAM,iBAAiB;CACvB,IAAM,oBAAoB;CAC1B,IAAM,gBAAgB;CACtB,IAAM,aAAa;CACnB,IAAM,aAAa;CACnB,IAAM,aAAa;CACnB,IAAM,cAAc;CACpB,IAAM,oBAAoB;CAC1B,IAAM,gBAAgB;CACtB,IAAM,qBAAqB;CAC3B,IAAM,2BAA2B;CACjC,IAAM,4BAA4B;CAClC,IAAM,oBAAoB;CAC1B,IAAM,0BAA0B;CAChC,IAAM,qBAAqB;CAC3B,IAAM,2BAA2B;CAEjC,IAAM,mBAAmB,CAAC;CAE1B,iBAAiB,KAAQ;CACzB,iBAAiB,KAAQ;CACzB,iBAAiB,KAAQ;CACzB,iBAAiB,KAAQ;CACzB,iBAAiB,MAAQ;CACzB,iBAAiB,MAAQ;CACzB,iBAAiB,MAAQ;CACzB,iBAAiB,MAAQ;CACzB,iBAAiB,MAAQ;CACzB,iBAAiB,MAAQ;CACzB,iBAAiB,MAAQ;CACzB,iBAAiB,OAAQ;CACzB,iBAAiB,OAAQ;CACzB,iBAAiB,QAAU;CAC3B,iBAAiB,QAAU;CAE3B,IAAM,6BAA6B;EACjC;EAAK;EAAK;EAAO;EAAO;EAAO;EAAM;EAAM;EAC3C;EAAK;EAAK;EAAM;EAAM;EAAM;EAAO;EAAO;CAC5C;CAEA,IAAM,2BAA2B;CAEjC,SAAS,gBAAiB,QAAQ,KAAK;EACrC,IAAI,QAAQ,MAAM,OAAO,CAAC;EAE1B,MAAM,SAAS,CAAC;EAChB,MAAM,OAAO,OAAO,KAAK,GAAG;EAE5B,KAAK,IAAI,QAAQ,GAAG,SAAS,KAAK,QAAQ,QAAQ,QAAQ,SAAS,GAAG;GACpE,IAAI,MAAM,KAAK;GACf,IAAI,QAAQ,OAAO,IAAI,IAAI;GAE3B,IAAI,IAAI,MAAM,GAAG,CAAC,MAAM,MACtB,MAAM,uBAAuB,IAAI,MAAM,CAAC;GAE1C,MAAM,OAAO,OAAO,gBAAgB,YAAY;GAEhD,IAAI,QAAQ,gBAAgB,KAAK,KAAK,cAAc,KAAK,GACvD,QAAQ,KAAK,aAAa;GAG5B,OAAO,OAAO;EAChB;EAEA,OAAO;CACT;CAEA,SAAS,UAAW,WAAW;EAC7B,IAAI;EACJ,IAAI;EAEJ,MAAM,SAAS,UAAU,SAAS,EAAE,EAAE,YAAY;EAElD,IAAI,aAAa,KAAM;GACrB,SAAS;GACT,SAAS;EACX,OAAO,IAAI,aAAa,OAAQ;GAC9B,SAAS;GACT,SAAS;EACX,OAAO,IAAI,aAAa,YAAY;GAClC,SAAS;GACT,SAAS;EACX,OACE,MAAM,IAAI,cAAc,+DAA+D;EAGzF,OAAO,OAAO,SAAS,OAAO,OAAO,KAAK,SAAS,OAAO,MAAM,IAAI;CACtE;CAEA,IAAM,sBAAsB;CAC5B,IAAM,sBAAsB;CAE5B,SAAS,MAAO,SAAS;EACvB,KAAK,SAAS,QAAQ,aAAa;EACnC,KAAK,SAAS,KAAK,IAAI,GAAI,QAAQ,aAAa,CAAE;EAClD,KAAK,gBAAgB,QAAQ,oBAAoB;EACjD,KAAK,cAAc,QAAQ,kBAAkB;EAC7C,KAAK,YAAa,OAAO,UAAU,QAAQ,YAAY,IAAI,KAAK,QAAQ;EACxE,KAAK,WAAW,gBAAgB,KAAK,QAAQ,QAAQ,aAAa,IAAI;EACtE,KAAK,WAAW,QAAQ,eAAe;EACvC,KAAK,YAAY,QAAQ,gBAAgB;EACzC,KAAK,SAAS,QAAQ,aAAa;EACnC,KAAK,eAAe,QAAQ,mBAAmB;EAC/C,KAAK,eAAe,QAAQ,mBAAmB;EAC/C,KAAK,cAAc,QAAQ,mBAAmB,OAAM,sBAAsB;EAC1E,KAAK,cAAc,QAAQ,kBAAkB;EAC7C,KAAK,WAAW,OAAO,QAAQ,gBAAgB,aAAa,QAAQ,cAAc;EAElF,KAAK,gBAAgB,KAAK,OAAO;EACjC,KAAK,gBAAgB,KAAK,OAAO;EAEjC,KAAK,MAAM;EACX,KAAK,SAAS;EAEd,KAAK,aAAa,CAAC;EACnB,KAAK,iBAAiB;CACxB;CAGA,SAAS,aAAc,QAAQ,QAAQ;EACrC,MAAM,MAAM,OAAO,OAAO,KAAK,MAAM;EACrC,IAAI,WAAW;EACf,IAAI,SAAS;EACb,MAAM,SAAS,OAAO;EAEtB,OAAO,WAAW,QAAQ;GACxB,IAAI;GACJ,MAAM,OAAO,OAAO,QAAQ,MAAM,QAAQ;GAC1C,IAAI,SAAS,IAAI;IACf,OAAO,OAAO,MAAM,QAAQ;IAC5B,WAAW;GACb,OAAO;IACL,OAAO,OAAO,MAAM,UAAU,OAAO,CAAC;IACtC,WAAW,OAAO;GACpB;GAEA,IAAI,KAAK,UAAU,SAAS,MAAM,UAAU;GAE5C,UAAU;EACZ;EAEA,OAAO;CACT;CAEA,SAAS,iBAAkB,OAAO,OAAO;EACvC,OAAO,OAAO,OAAO,OAAO,KAAK,MAAM,SAAS,KAAK;CACvD;CAEA,SAAS,sBAAuB,OAAO,KAAK;EAC1C,KAAK,IAAI,QAAQ,GAAG,SAAS,MAAM,cAAc,QAAQ,QAAQ,QAAQ,SAAS,GAGhF,IAFa,MAAM,cAAc,OAExB,QAAQ,GAAG,GAClB,OAAO;EAIX,OAAO;CACT;CAGA,SAAS,aAAc,GAAG;EACxB,OAAO,MAAM,cAAc,MAAM;CACnC;CAMA,SAAS,YAAa,GAAG;EACvB,OAAQ,KAAK,MAAW,KAAK,OACzB,KAAK,OAAW,KAAK,SAAa,MAAM,QAAU,MAAM,QACxD,KAAK,SAAW,KAAK,SAAa,MAAM,YACzC,KAAK,SAAW,KAAK;CAC1B;CAOA,SAAS,qBAAsB,GAAG;EAChC,OAAO,YAAY,CAAC,KAClB,MAAM,YAEN,MAAM,wBACN,MAAM;CACV;CAWA,SAAS,YAAa,GAAG,MAAM,SAAS;EACtC,MAAM,wBAAwB,qBAAqB,CAAC;EACpD,MAAM,YAAY,yBAAyB,CAAC,aAAa,CAAC;EAC1D,QAGI,UACI,wBACA,yBAEA,MAAM,cACN,MAAM,4BACN,MAAM,6BACN,MAAM,2BACN,MAAM,6BAGZ,MAAM,cACN,EAAE,SAAS,cAAc,CAAC,cAE3B,qBAAqB,IAAI,KAAK,CAAC,aAAa,IAAI,KAAK,MAAM,cAC3D,SAAS,cAAc;CAC1B;CAGA,SAAS,iBAAkB,GAAG;EAI5B,OAAO,YAAY,CAAC,KAClB,MAAM,YACN,CAAC,aAAa,CAAC,KAGf,MAAM,cACN,MAAM,iBACN,MAAM,cACN,MAAM,cACN,MAAM,4BACN,MAAM,6BACN,MAAM,2BACN,MAAM,4BAEN,MAAM,cACN,MAAM,kBACN,MAAM,iBACN,MAAM,oBACN,MAAM,sBACN,MAAM,eACN,MAAM,qBACN,MAAM,qBACN,MAAM,qBAEN,MAAM,gBACN,MAAM,sBACN,MAAM;CACV;CAGA,SAAS,gBAAiB,GAAG;EAE3B,OAAO,CAAC,aAAa,CAAC,KAAK,MAAM;CACnC;CAGA,SAAS,YAAa,QAAQ,KAAK;EACjC,MAAM,QAAQ,OAAO,WAAW,GAAG;EACnC,IAAI;EAEJ,IAAI,SAAS,SAAU,SAAS,SAAU,MAAM,IAAI,OAAO,QAAQ;GACjE,SAAS,OAAO,WAAW,MAAM,CAAC;GAClC,IAAI,UAAU,SAAU,UAAU,OAEhC,QAAQ,QAAQ,SAAU,OAAQ,SAAS,QAAS;EAExD;EACA,OAAO;CACT;CAGA,SAAS,oBAAqB,QAAQ;EAEpC,OAAO,QAAe,KAAK,MAAM;CACnC;CAEA,IAAM,cAAc;CACpB,IAAM,eAAe;CACrB,IAAM,gBAAgB;CACtB,IAAM,eAAe;CACrB,IAAM,eAAe;CASrB,SAAS,kBAAmB,QAAQ,gBAAgB,gBAAgB,WAClE,mBAAmB,aAAa,aAAa,SAAS;EACtD,IAAI;EACJ,IAAI,OAAO;EACX,IAAI,WAAW;EACf,IAAI,eAAe;EACnB,IAAI,kBAAkB;EACtB,MAAM,mBAAmB,cAAc;EACvC,IAAI,oBAAoB;EACxB,IAAI,QAAQ,iBAAiB,YAAY,QAAQ,CAAC,CAAC,KACjD,gBAAgB,YAAY,QAAQ,OAAO,SAAS,CAAC,CAAC;EAExD,IAAI,kBAAkB,aAGpB,KAAK,IAAI,GAAG,IAAI,OAAO,QAAQ,QAAQ,QAAU,KAAK,IAAI,KAAK;GAC7D,OAAO,YAAY,QAAQ,CAAC;GAC5B,IAAI,CAAC,YAAY,IAAI,GACnB,OAAO;GAET,QAAQ,SAAS,YAAY,MAAM,UAAU,OAAO;GACpD,WAAW;EACb;OACK;GAEL,KAAK,IAAI,GAAG,IAAI,OAAO,QAAQ,QAAQ,QAAU,KAAK,IAAI,KAAK;IAC7D,OAAO,YAAY,QAAQ,CAAC;IAC5B,IAAI,SAAS,gBAAgB;KAC3B,eAAe;KAEf,IAAI,kBAAkB;MACpB,kBAAkB,mBAEf,IAAI,oBAAoB,IAAI,aAC5B,OAAO,oBAAoB,OAAO;MACrC,oBAAoB;KACtB;IACF,OAAO,IAAI,CAAC,YAAY,IAAI,GAC1B,OAAO;IAET,QAAQ,SAAS,YAAY,MAAM,UAAU,OAAO;IACpD,WAAW;GACb;GAEA,kBAAkB,mBAAoB,oBACnC,IAAI,oBAAoB,IAAI,aAC5B,OAAO,oBAAoB,OAAO;EACvC;EAIA,IAAI,CAAC,gBAAgB,CAAC,iBAAiB;GAGrC,IAAI,SAAS,CAAC,eAAe,CAAC,kBAAkB,MAAM,GACpD,OAAO;GAET,OAAO,gBAAgB,sBAAsB,eAAe;EAC9D;EAEA,IAAI,iBAAiB,KAAK,oBAAoB,MAAM,GAClD,OAAO;EAIT,IAAI,CAAC,aACH,OAAO,kBAAkB,eAAe;EAE1C,OAAO,gBAAgB,sBAAsB,eAAe;CAC9D;CAQA,SAAS,YAAa,OAAO,QAAQ,OAAO,OAAO,SAAS;EAC1D,MAAM,OAAQ,WAAY;GACxB,IAAI,OAAO,WAAW,GACpB,OAAO,MAAM,gBAAgB,sBAAsB,SAAO;GAE5D,IAAI,CAAC,MAAM;QACL,2BAA2B,QAAQ,MAAM,MAAM,MAAM,yBAAyB,KAAK,MAAM,GAC3F,OAAO,MAAM,gBAAgB,sBAAuB,OAAM,SAAS,OAAQ,MAAM,SAAS;GAAA;GAI9F,MAAM,SAAS,MAAM,SAAS,KAAK,IAAI,GAAG,KAAK;GAQ/C,MAAM,YAAa,MAAM,cAAc,KACnC,KACA,KAAK,IAAI,KAAK,IAAI,MAAM,WAAW,EAAE,GAAG,MAAM,YAAY,MAAM;GAGpE,MAAM,iBAAiB,SAEpB,MAAM,YAAY,MAAM,SAAS,MAAM;GAC1C,SAAS,cAAe,QAAQ;IAC9B,OAAO,sBAAsB,OAAO,MAAM;GAC5C;GAEA,QAAQ,kBAAkB,QAAQ,gBAAgB,MAAM,QAAQ,WAC9D,eAAe,MAAM,aAAa,MAAM,eAAe,CAAC,OAAO,OAAO,GADxE;IAEE,KAAK,aACH,OAAO;IACT,KAAK,cACH,OAAO,MAAM,OAAO,QAAQ,MAAM,IAAI,IAAI;IAC5C,KAAK,eACH,OAAO,MAAM,YAAY,QAAQ,MAAM,MAAM,IAC3C,kBAAkB,aAAa,QAAQ,MAAM,CAAC;IAClD,KAAK,cACH,OAAO,MAAM,YAAY,QAAQ,MAAM,MAAM,IAC3C,kBAAkB,aAAa,WAAW,QAAQ,SAAS,GAAG,MAAM,CAAC;IACzE,KAAK,cACH,OAAO,OAAM,aAAa,QAAQ,SAAS,IAAI;IACjD,SACE,MAAM,IAAI,cAAc,wCAAwC;GACpE;EACF,EAAE;CACJ;CAGA,SAAS,YAAa,QAAQ,gBAAgB;EAC5C,MAAM,kBAAkB,oBAAoB,MAAM,IAAI,OAAO,cAAc,IAAI;EAG/E,MAAM,OAAO,OAAO,OAAO,SAAS,OAAO;EAI3C,OAAO,mBAHM,SAAS,OAAO,OAAO,SAAS,OAAO,QAAQ,WAAW,QAClD,MAAO,OAAO,KAAK,OAEP;CACnC;CAGA,SAAS,kBAAmB,QAAQ;EAClC,OAAO,OAAO,OAAO,SAAS,OAAO,OAAO,OAAO,MAAM,GAAG,EAAE,IAAI;CACpE;CAIA,SAAS,WAAY,QAAQ,OAAO;EAKlC,MAAM,SAAS;EAGf,IAAI,SAAU,WAAY;GACxB,IAAI,SAAS,OAAO,QAAQ,IAAI;GAChC,SAAS,WAAW,KAAK,SAAS,OAAO;GACzC,OAAO,YAAY;GACnB,OAAO,SAAS,OAAO,MAAM,GAAG,MAAM,GAAG,KAAK;EAChD,EAAE;EAEF,IAAI,mBAAmB,OAAO,OAAO,QAAQ,OAAO,OAAO;EAC3D,IAAI;EAGJ,IAAI;EACJ,OAAQ,QAAQ,OAAO,KAAK,MAAM,GAAI;GACpC,MAAM,SAAS,MAAM;GACrB,MAAM,OAAO,MAAM;GAEnB,eAAgB,KAAK,OAAO;GAC5B,UAAU,UACN,CAAC,oBAAoB,CAAC,gBAAgB,SAAS,KAAM,OAAO,MAC9D,SAAS,MAAM,KAAK;GACtB,mBAAmB;EACrB;EAEA,OAAO;CACT;CAMA,SAAS,SAAU,MAAM,OAAO;EAC9B,IAAI,SAAS,MAAM,KAAK,OAAO,KAAK,OAAO;EAG3C,MAAM,UAAU;EAChB,IAAI;EAEJ,IAAI,QAAQ;EACZ,IAAI;EACJ,IAAI,OAAO;EACX,IAAI,OAAO;EACX,IAAI,SAAS;EAMb,OAAQ,QAAQ,QAAQ,KAAK,IAAI,GAAI;GACnC,OAAO,MAAM;GAEb,IAAI,OAAO,QAAQ,OAAO;IACxB,MAAO,OAAO,QAAS,OAAO;IAC9B,UAAU,OAAO,KAAK,MAAM,OAAO,GAAG;IAEtC,QAAQ,MAAM;GAChB;GACA,OAAO;EACT;EAIA,UAAU;EAEV,IAAI,KAAK,SAAS,QAAQ,SAAS,OAAO,OACxC,UAAU,KAAK,MAAM,OAAO,IAAI,IAAI,OAAO,KAAK,MAAM,OAAO,CAAC;OAE9D,UAAU,KAAK,MAAM,KAAK;EAG5B,OAAO,OAAO,MAAM,CAAC;CACvB;CAGA,SAAS,aAAc,QAAQ;EAC7B,IAAI,SAAS;EACb,IAAI,OAAO;EAEX,KAAK,IAAI,IAAI,GAAG,IAAI,OAAO,QAAQ,QAAQ,QAAU,KAAK,IAAI,KAAK;GACjE,OAAO,YAAY,QAAQ,CAAC;GAC5B,MAAM,YAAY,iBAAiB;GAEnC,IAAI,CAAC,aAAa,YAAY,IAAI,GAAG;IACnC,UAAU,OAAO;IACjB,IAAI,QAAQ,OAAS,UAAU,OAAO,IAAI;GAC5C,OACE,UAAU,aAAa,UAAU,IAAI;EAEzC;EAEA,OAAO;CACT;CAEA,SAAS,kBAAmB,OAAO,OAAO,QAAQ;EAChD,IAAI,UAAU;EACd,MAAM,OAAO,MAAM;EAEnB,KAAK,IAAI,QAAQ,GAAG,SAAS,OAAO,QAAQ,QAAQ,QAAQ,SAAS,GAAG;GACtE,IAAI,QAAQ,OAAO;GAEnB,IAAI,MAAM,UACR,QAAQ,MAAM,SAAS,KAAK,QAAQ,OAAO,KAAK,GAAG,KAAK;GAI1D,IAAI,UAAU,OAAO,OAAO,OAAO,OAAO,KAAK,KAC1C,OAAO,UAAU,eACjB,UAAU,OAAO,OAAO,MAAM,OAAO,KAAK,GAAI;IACjD,IAAI,YAAY,IAAI,WAAW,OAAO,CAAC,MAAM,eAAe,MAAM;IAClE,WAAW,MAAM;GACnB;EACF;EAEA,MAAM,MAAM;EACZ,MAAM,OAAO,MAAM,UAAU;CAC/B;CAEA,SAAS,mBAAoB,OAAO,OAAO,QAAQ,SAAS;EAC1D,IAAI,UAAU;EACd,MAAM,OAAO,MAAM;EAEnB,KAAK,IAAI,QAAQ,GAAG,SAAS,OAAO,QAAQ,QAAQ,QAAQ,SAAS,GAAG;GACtE,IAAI,QAAQ,OAAO;GAEnB,IAAI,MAAM,UACR,QAAQ,MAAM,SAAS,KAAK,QAAQ,OAAO,KAAK,GAAG,KAAK;GAI1D,IAAI,UAAU,OAAO,QAAQ,GAAG,OAAO,MAAM,MAAM,OAAO,IAAI,KACzD,OAAO,UAAU,eACjB,UAAU,OAAO,QAAQ,GAAG,MAAM,MAAM,MAAM,OAAO,IAAI,GAAI;IAChE,IAAI,CAAC,WAAW,YAAY,IAC1B,WAAW,iBAAiB,OAAO,KAAK;IAG1C,IAAI,MAAM,QAAQ,mBAAmB,MAAM,KAAK,WAAW,CAAC,GAC1D,WAAW;SAEX,WAAW;IAGb,WAAW,MAAM;GACnB;EACF;EAEA,MAAM,MAAM;EACZ,MAAM,OAAO,WAAW;CAC1B;CAEA,SAAS,iBAAkB,OAAO,OAAO,QAAQ;EAC/C,IAAI,UAAU;EACd,MAAM,OAAO,MAAM;EACnB,MAAM,gBAAgB,OAAO,KAAK,MAAM;EAExC,KAAK,IAAI,QAAQ,GAAG,SAAS,cAAc,QAAQ,QAAQ,QAAQ,SAAS,GAAG;GAC7E,IAAI,aAAa;GACjB,IAAI,YAAY,IAAI,cAAc;GAElC,IAAI,MAAM,cAAc,cAAc;GAEtC,MAAM,YAAY,cAAc;GAChC,IAAI,cAAc,OAAO;GAEzB,IAAI,MAAM,UACR,cAAc,MAAM,SAAS,KAAK,QAAQ,WAAW,WAAW;GAGlE,IAAI,CAAC,UAAU,OAAO,OAAO,WAAW,OAAO,KAAK,GAClD;GAGF,IAAI,MAAM,KAAK,SAAS,MAAM,cAAc;GAE5C,cAAc,MAAM,QAAQ,MAAM,eAAe,OAAM,MAAM,OAAO,MAAM,eAAe,KAAK;GAE9F,IAAI,CAAC,UAAU,OAAO,OAAO,aAAa,OAAO,KAAK,GACpD;GAGF,cAAc,MAAM;GAGpB,WAAW;EACb;EAEA,MAAM,MAAM;EACZ,MAAM,OAAO,MAAM,UAAU;CAC/B;CAEA,SAAS,kBAAmB,OAAO,OAAO,QAAQ,SAAS;EACzD,IAAI,UAAU;EACd,MAAM,OAAO,MAAM;EACnB,MAAM,gBAAgB,OAAO,KAAK,MAAM;EAGxC,IAAI,MAAM,aAAa,MAErB,cAAc,KAAK;OACd,IAAI,OAAO,MAAM,aAAa,YAEnC,cAAc,KAAK,MAAM,QAAQ;OAC5B,IAAI,MAAM,UAEf,MAAM,IAAI,cAAc,0CAA0C;EAGpE,KAAK,IAAI,QAAQ,GAAG,SAAS,cAAc,QAAQ,QAAQ,QAAQ,SAAS,GAAG;GAC7E,IAAI,aAAa;GAEjB,IAAI,CAAC,WAAW,YAAY,IAC1B,cAAc,iBAAiB,OAAO,KAAK;GAG7C,MAAM,YAAY,cAAc;GAChC,IAAI,cAAc,OAAO;GAEzB,IAAI,MAAM,UACR,cAAc,MAAM,SAAS,KAAK,QAAQ,WAAW,WAAW;GAGlE,IAAI,CAAC,UAAU,OAAO,QAAQ,GAAG,WAAW,MAAM,MAAM,IAAI,GAC1D;GAGF,MAAM,eAAgB,MAAM,QAAQ,QAAQ,MAAM,QAAQ,OAC1C,MAAM,QAAQ,MAAM,KAAK,SAAS;GAElD,IAAI,cACF,IAAI,MAAM,QAAQ,mBAAmB,MAAM,KAAK,WAAW,CAAC,GAC1D,cAAc;QAEd,cAAc;GAIlB,cAAc,MAAM;GAEpB,IAAI,cACF,cAAc,iBAAiB,OAAO,KAAK;GAG7C,IAAI,CAAC,UAAU,OAAO,QAAQ,GAAG,aAAa,MAAM,YAAY,GAC9D;GAGF,IAAI,MAAM,QAAQ,mBAAmB,MAAM,KAAK,WAAW,CAAC,GAC1D,cAAc;QAEd,cAAc;GAGhB,cAAc,MAAM;GAGpB,WAAW;EACb;EAEA,MAAM,MAAM;EACZ,MAAM,OAAO,WAAW;CAC1B;CAEA,SAAS,WAAY,OAAO,QAAQ,UAAU;EAC5C,MAAM,WAAW,WAAW,MAAM,gBAAgB,MAAM;EAExD,KAAK,IAAI,QAAQ,GAAG,SAAS,SAAS,QAAQ,QAAQ,QAAQ,SAAS,GAAG;GACxE,MAAM,OAAO,SAAS;GAEtB,KAAK,KAAK,cAAc,KAAK,eACxB,CAAC,KAAK,cAAgB,OAAO,WAAW,YAAc,kBAAkB,KAAK,gBAC7E,CAAC,KAAK,aAAa,KAAK,UAAU,MAAM,IAAI;IAC/C,IAAI,UACF,IAAI,KAAK,SAAS,KAAK,eACrB,MAAM,MAAM,KAAK,cAAc,MAAM;SAErC,MAAM,MAAM,KAAK;SAGnB,MAAM,MAAM;IAGd,IAAI,KAAK,WAAW;KAClB,MAAM,QAAQ,MAAM,SAAS,KAAK,QAAQ,KAAK;KAE/C,IAAI;KACJ,IAAI,UAAU,KAAK,KAAK,SAAS,MAAM,qBACrC,UAAU,KAAK,UAAU,QAAQ,KAAK;UACjC,IAAI,gBAAgB,KAAK,KAAK,WAAW,KAAK,GACnD,UAAU,KAAK,UAAU,OAAO,QAAQ,KAAK;UAE7C,MAAM,IAAI,cAAc,OAAO,KAAK,MAAM,kCAAiC,QAAQ,UAAS;KAG9F,MAAM,OAAO;IACf;IAEA,OAAO;GACT;EACF;EAEA,OAAO;CACT;CAKA,SAAS,UAAW,OAAO,OAAO,QAAQ,OAAO,SAAS,OAAO,YAAY;EAC3E,MAAM,MAAM;EACZ,MAAM,OAAO;EAEb,IAAI,CAAC,WAAW,OAAO,QAAQ,KAAK,GAClC,WAAW,OAAO,QAAQ,IAAI;EAGhC,MAAM,OAAO,UAAU,KAAK,MAAM,IAAI;EACtC,MAAM,UAAU;EAEhB,IAAI,OACF,QAAS,MAAM,YAAY,KAAK,MAAM,YAAY;EAGpD,MAAM,gBAAgB,SAAS,qBAAqB,SAAS;EAC7D,IAAI;EACJ,IAAI;EAEJ,IAAI,eAAe;GACjB,iBAAiB,MAAM,WAAW,QAAQ,MAAM;GAChD,YAAY,mBAAmB;EACjC;EAEA,IAAK,MAAM,QAAQ,QAAQ,MAAM,QAAQ,OAAQ,aAAc,MAAM,WAAW,KAAK,QAAQ,GAC3F,UAAU;EAGZ,IAAI,aAAa,MAAM,eAAe,iBACpC,MAAM,OAAO,UAAU;OAClB;GACL,IAAI,iBAAiB,aAAa,CAAC,MAAM,eAAe,iBACtD,MAAM,eAAe,kBAAkB;GAEzC,IAAI,SAAS,mBACX,IAAI,SAAU,OAAO,KAAK,MAAM,IAAI,EAAE,WAAW,GAAI;IACnD,kBAAkB,OAAO,OAAO,MAAM,MAAM,OAAO;IACnD,IAAI,WACF,MAAM,OAAO,UAAU,iBAAiB,MAAM;GAElD,OAAO;IACL,iBAAiB,OAAO,OAAO,MAAM,IAAI;IACzC,IAAI,WACF,MAAM,OAAO,UAAU,iBAAiB,MAAM,MAAM;GAExD;QACK,IAAI,SAAS,kBAClB,IAAI,SAAU,MAAM,KAAK,WAAW,GAAI;IACtC,IAAI,MAAM,iBAAiB,CAAC,cAAc,QAAQ,GAChD,mBAAmB,OAAO,QAAQ,GAAG,MAAM,MAAM,OAAO;SAExD,mBAAmB,OAAO,OAAO,MAAM,MAAM,OAAO;IAEtD,IAAI,WACF,MAAM,OAAO,UAAU,iBAAiB,MAAM;GAElD,OAAO;IACL,kBAAkB,OAAO,OAAO,MAAM,IAAI;IAC1C,IAAI,WACF,MAAM,OAAO,UAAU,iBAAiB,MAAM,MAAM;GAExD;QACK,IAAI,SAAS;QACd,MAAM,QAAQ,KAChB,YAAY,OAAO,MAAM,MAAM,OAAO,OAAO,OAAO;GAAA,OAEjD,IAAI,SAAS,sBAClB,OAAO;QACF;IACL,IAAI,MAAM,aAAa,OAAO;IAC9B,MAAM,IAAI,cAAc,4CAA4C,IAAI;GAC1E;GAEA,IAAI,MAAM,QAAQ,QAAQ,MAAM,QAAQ,KAAK;IAc3C,IAAI,SAAS,UACX,MAAM,IAAI,OAAO,MAAM,MAAM,IAAI,MAAM,CAAC,IAAI,MAAM,GACpD,EAAE,QAAQ,MAAM,KAAK;IAErB,IAAI,MAAM,IAAI,OAAO,KACnB,SAAS,MAAM;SACV,IAAI,OAAO,MAAM,GAAG,EAAE,MAAM,sBACjC,SAAS,OAAO,OAAO,MAAM,EAAE;SAE/B,SAAS,OAAO,SAAS;IAG3B,MAAM,OAAO,SAAS,MAAM,MAAM;GACpC;EACF;EAEA,OAAO;CACT;CAEA,SAAS,uBAAwB,QAAQ,OAAO;EAC9C,MAAM,UAAU,CAAC;EACjB,MAAM,oBAAoB,CAAC;EAE3B,YAAY,QAAQ,SAAS,iBAAiB;EAE9C,MAAM,SAAS,kBAAkB;EACjC,KAAK,IAAI,QAAQ,GAAG,QAAQ,QAAQ,SAAS,GAC3C,MAAM,WAAW,KAAK,QAAQ,kBAAkB,OAAO;EAEzD,MAAM,iBAAiB,IAAI,MAAM,MAAM;CACzC;CAEA,SAAS,YAAa,QAAQ,SAAS,mBAAmB;EACxD,IAAI,WAAW,QAAQ,OAAO,WAAW,UAAU;GACjD,MAAM,QAAQ,QAAQ,QAAQ,MAAM;GACpC,IAAI,UAAU;QACR,kBAAkB,QAAQ,KAAK,MAAM,IACvC,kBAAkB,KAAK,KAAK;GAAA,OAEzB;IACL,QAAQ,KAAK,MAAM;IAEnB,IAAI,MAAM,QAAQ,MAAM,GACtB,KAAK,IAAI,IAAI,GAAG,SAAS,OAAO,QAAQ,IAAI,QAAQ,KAAK,GACvD,YAAY,OAAO,IAAI,SAAS,iBAAiB;SAE9C;KACL,MAAM,gBAAgB,OAAO,KAAK,MAAM;KAExC,KAAK,IAAI,IAAI,GAAG,SAAS,cAAc,QAAQ,IAAI,QAAQ,KAAK,GAC9D,YAAY,OAAO,cAAc,KAAK,SAAS,iBAAiB;IAEpE;GACF;EACF;CACF;CAEA,SAAS,KAAM,OAAO,SAAS;EAC7B,UAAU,WAAW,CAAC;EAEtB,MAAM,QAAQ,IAAI,MAAM,OAAO;EAE/B,IAAI,CAAC,MAAM,QAAQ,uBAAuB,OAAO,KAAK;EAEtD,IAAI,QAAQ;EAEZ,IAAI,MAAM,UACR,QAAQ,MAAM,SAAS,KAAK,EAAE,IAAI,MAAM,GAAG,IAAI,KAAK;EAGtD,IAAI,UAAU,OAAO,GAAG,OAAO,MAAM,IAAI,GAAG,OAAO,MAAM,OAAO;EAEhE,OAAO;CACT;CAEA,OAAO,QAAQ,OAAO;;;;;CCt6BtB,IAAM,SAAA,eAAA;CACN,IAAM,SAAA,eAAA;CAEN,SAAS,QAAS,MAAM,IAAI;EAC1B,OAAO,WAAY;GACjB,MAAM,IAAI,MAAM,mBAAmB,OAAO,wCAC1B,KAAK,yCAAyC;EAChE;CACF;CAEA,OAAO,QAAQ,OAAA,aAAA;CACf,OAAO,QAAQ,SAAA,eAAA;CACf,OAAO,QAAQ,kBAAA,iBAAA;CACf,OAAO,QAAQ,cAAA,aAAA;CACf,OAAO,QAAQ,cAAA,aAAA;CACf,OAAO,QAAQ,iBAAA,gBAAA;CACf,OAAO,QAAQ,OAAO,OAAO;CAC7B,OAAO,QAAQ,UAAU,OAAO;CAChC,OAAO,QAAQ,OAAO,OAAO;CAC7B,OAAO,QAAQ,gBAAA,kBAAA;CAGf,OAAO,QAAQ,QAAQ;EACrB,QAAA,eAAA;EACA,OAAA,cAAA;EACA,KAAA,YAAA;EACA,MAAA,aAAA;EACA,OAAA,cAAA;EACA,KAAA,YAAA;EACA,WAAA,kBAAA;EACA,MAAA,aAAA;EACA,KAAA,YAAA;EACA,OAAA,cAAA;EACA,MAAA,aAAA;EACA,KAAA,YAAA;EACA,KAAA,YAAA;CACF;CAGA,OAAO,QAAQ,WAAW,QAAQ,YAAY,MAAM;CACpD,OAAO,QAAQ,cAAc,QAAQ,eAAe,SAAS;CAC7D,OAAO,QAAQ,WAAW,QAAQ,YAAY,MAAM;;ACzCpD,IAAM,EACJ,MACA,QACA,iBACA,aACA,aACA,gBACA,MACA,SACA,MACA,eACA,OACA,UACA,aACA,aACEA,eAAAA;AAmBJ,IAAA,+BAAeA,eAAAA"}
|
|
1
|
+
{"version":3,"file":"js-yaml.mjs","sources":["../lib/common.js","../lib/exception.js","../lib/snippet.js","../lib/type.js","../lib/schema.js","../lib/type/str.js","../lib/type/seq.js","../lib/type/map.js","../lib/schema/failsafe.js","../lib/type/null.js","../lib/type/bool.js","../lib/type/int.js","../lib/type/float.js","../lib/schema/json.js","../lib/schema/core.js","../lib/type/timestamp.js","../lib/type/merge.js","../lib/type/binary.js","../lib/type/omap.js","../lib/type/pairs.js","../lib/type/set.js","../lib/schema/default.js","../lib/loader.js","../lib/dumper.js","../index.js","../lib/index_vite_proxy.tmp.mjs"],"sourcesContent":["'use strict'\n\nfunction isNothing (subject) {\n return (typeof subject === 'undefined') || (subject === null)\n}\n\nfunction isObject (subject) {\n return (typeof subject === 'object') && (subject !== null)\n}\n\nfunction toArray (sequence) {\n if (Array.isArray(sequence)) return sequence\n else if (isNothing(sequence)) return []\n\n return [sequence]\n}\n\nfunction extend (target, source) {\n if (source) {\n const sourceKeys = Object.keys(source)\n\n for (let index = 0, length = sourceKeys.length; index < length; index += 1) {\n const key = sourceKeys[index]\n target[key] = source[key]\n }\n }\n\n return target\n}\n\nfunction repeat (string, count) {\n let result = ''\n\n for (let cycle = 0; cycle < count; cycle += 1) {\n result += string\n }\n\n return result\n}\n\nfunction isNegativeZero (number) {\n return (number === 0) && (Number.NEGATIVE_INFINITY === 1 / number)\n}\n\nmodule.exports.isNothing = isNothing\nmodule.exports.isObject = isObject\nmodule.exports.toArray = toArray\nmodule.exports.repeat = repeat\nmodule.exports.isNegativeZero = isNegativeZero\nmodule.exports.extend = extend\n","// YAML error class. http://stackoverflow.com/questions/8458984\n//\n'use strict'\n\nfunction formatError (exception, compact) {\n let where = ''\n const message = exception.reason || '(unknown reason)'\n\n if (!exception.mark) return message\n\n if (exception.mark.name) {\n where += 'in \"' + exception.mark.name + '\" '\n }\n\n where += '(' + (exception.mark.line + 1) + ':' + (exception.mark.column + 1) + ')'\n\n if (!compact && exception.mark.snippet) {\n where += '\\n\\n' + exception.mark.snippet\n }\n\n return message + ' ' + where\n}\n\nfunction YAMLException (reason, mark) {\n // Super constructor\n Error.call(this)\n\n this.name = 'YAMLException'\n this.reason = reason\n this.mark = mark\n this.message = formatError(this, false)\n\n // Include stack trace in error object\n if (Error.captureStackTrace) {\n // Chrome and NodeJS\n Error.captureStackTrace(this, this.constructor)\n } else {\n // FF, IE 10+ and Safari 6+. Fallback for others\n this.stack = (new Error()).stack || ''\n }\n}\n\n// Inherit from Error\nYAMLException.prototype = Object.create(Error.prototype)\nYAMLException.prototype.constructor = YAMLException\n\nYAMLException.prototype.toString = function toString (compact) {\n return this.name + ': ' + formatError(this, compact)\n}\n\nmodule.exports = YAMLException\n","'use strict'\n\nconst common = require('./common')\n\n// get snippet for a single line, respecting maxLength\nfunction getLine (buffer, lineStart, lineEnd, position, maxLineLength) {\n let head = ''\n let tail = ''\n const maxHalfLength = Math.floor(maxLineLength / 2) - 1\n\n if (position - lineStart > maxHalfLength) {\n head = ' ... '\n lineStart = position - maxHalfLength + head.length\n }\n\n if (lineEnd - position > maxHalfLength) {\n tail = ' ...'\n lineEnd = position + maxHalfLength - tail.length\n }\n\n return {\n str: head + buffer.slice(lineStart, lineEnd).replace(/\\t/g, '→') + tail,\n pos: position - lineStart + head.length // relative position\n }\n}\n\nfunction padStart (string, max) {\n return common.repeat(' ', max - string.length) + string\n}\n\nfunction makeSnippet (mark, options) {\n options = Object.create(options || null)\n\n if (!mark.buffer) return null\n\n if (!options.maxLength) options.maxLength = 79\n if (typeof options.indent !== 'number') options.indent = 1\n if (typeof options.linesBefore !== 'number') options.linesBefore = 3\n if (typeof options.linesAfter !== 'number') options.linesAfter = 2\n\n const re = /\\r?\\n|\\r|\\0/g\n const lineStarts = [0]\n const lineEnds = []\n let match\n let foundLineNo = -1\n\n while ((match = re.exec(mark.buffer))) {\n lineEnds.push(match.index)\n lineStarts.push(match.index + match[0].length)\n\n if (mark.position <= match.index && foundLineNo < 0) {\n foundLineNo = lineStarts.length - 2\n }\n }\n\n if (foundLineNo < 0) foundLineNo = lineStarts.length - 1\n\n let result = ''\n const lineNoLength = Math.min(mark.line + options.linesAfter, lineEnds.length).toString().length\n const maxLineLength = options.maxLength - (options.indent + lineNoLength + 3)\n\n for (let i = 1; i <= options.linesBefore; i++) {\n if (foundLineNo - i < 0) break\n const line = getLine(\n mark.buffer,\n lineStarts[foundLineNo - i],\n lineEnds[foundLineNo - i],\n mark.position - (lineStarts[foundLineNo] - lineStarts[foundLineNo - i]),\n maxLineLength\n )\n result = common.repeat(' ', options.indent) + padStart((mark.line - i + 1).toString(), lineNoLength) +\n ' | ' + line.str + '\\n' + result\n }\n\n const line = getLine(mark.buffer, lineStarts[foundLineNo], lineEnds[foundLineNo], mark.position, maxLineLength)\n result += common.repeat(' ', options.indent) + padStart((mark.line + 1).toString(), lineNoLength) +\n ' | ' + line.str + '\\n'\n result += common.repeat('-', options.indent + lineNoLength + 3 + line.pos) + '^' + '\\n'\n\n for (let i = 1; i <= options.linesAfter; i++) {\n if (foundLineNo + i >= lineEnds.length) break\n const line = getLine(\n mark.buffer,\n lineStarts[foundLineNo + i],\n lineEnds[foundLineNo + i],\n mark.position - (lineStarts[foundLineNo] - lineStarts[foundLineNo + i]),\n maxLineLength\n )\n result += common.repeat(' ', options.indent) + padStart((mark.line + i + 1).toString(), lineNoLength) +\n ' | ' + line.str + '\\n'\n }\n\n return result.replace(/\\n$/, '')\n}\n\nmodule.exports = makeSnippet\n","'use strict'\n\nconst YAMLException = require('./exception')\n\nconst TYPE_CONSTRUCTOR_OPTIONS = [\n 'kind',\n 'multi',\n 'resolve',\n 'construct',\n 'instanceOf',\n 'predicate',\n 'represent',\n 'representName',\n 'defaultStyle',\n 'styleAliases'\n]\n\nconst YAML_NODE_KINDS = [\n 'scalar',\n 'sequence',\n 'mapping'\n]\n\nfunction compileStyleAliases (map) {\n const result = {}\n\n if (map !== null) {\n Object.keys(map).forEach(function (style) {\n map[style].forEach(function (alias) {\n result[String(alias)] = style\n })\n })\n }\n\n return result\n}\n\nfunction Type (tag, options) {\n options = options || {}\n\n Object.keys(options).forEach(function (name) {\n if (TYPE_CONSTRUCTOR_OPTIONS.indexOf(name) === -1) {\n throw new YAMLException('Unknown option \"' + name + '\" is met in definition of \"' + tag + '\" YAML type.')\n }\n })\n\n // TODO: Add tag format check.\n this.options = options // keep original options in case user wants to extend this type later\n this.tag = tag\n this.kind = options['kind'] || null\n this.resolve = options['resolve'] || function () { return true }\n this.construct = options['construct'] || function (data) { return data }\n this.instanceOf = options['instanceOf'] || null\n this.predicate = options['predicate'] || null\n this.represent = options['represent'] || null\n this.representName = options['representName'] || null\n this.defaultStyle = options['defaultStyle'] || null\n this.multi = options['multi'] || false\n this.styleAliases = compileStyleAliases(options['styleAliases'] || null)\n\n if (YAML_NODE_KINDS.indexOf(this.kind) === -1) {\n throw new YAMLException('Unknown kind \"' + this.kind + '\" is specified for \"' + tag + '\" YAML type.')\n }\n}\n\nmodule.exports = Type\n","'use strict'\n\nconst YAMLException = require('./exception')\nconst Type = require('./type')\n\nfunction compileList (schema, name) {\n const result = []\n\n schema[name].forEach(function (currentType) {\n let newIndex = result.length\n\n result.forEach(function (previousType, previousIndex) {\n if (previousType.tag === currentType.tag &&\n previousType.kind === currentType.kind &&\n previousType.multi === currentType.multi) {\n newIndex = previousIndex\n }\n })\n\n result[newIndex] = currentType\n })\n\n return result\n}\n\nfunction compileMap (/* lists... */) {\n const result = {\n scalar: {},\n sequence: {},\n mapping: {},\n fallback: {},\n multi: {\n scalar: [],\n sequence: [],\n mapping: [],\n fallback: []\n }\n }\n function collectType (type) {\n if (type.multi) {\n result.multi[type.kind].push(type)\n result.multi['fallback'].push(type)\n } else {\n result[type.kind][type.tag] = result['fallback'][type.tag] = type\n }\n }\n\n for (let index = 0, length = arguments.length; index < length; index += 1) {\n arguments[index].forEach(collectType)\n }\n return result\n}\n\nfunction Schema (definition) {\n return this.extend(definition)\n}\n\nSchema.prototype.extend = function extend (definition) {\n let implicit = []\n let explicit = []\n\n if (definition instanceof Type) {\n // Schema.extend(type)\n explicit.push(definition)\n } else if (Array.isArray(definition)) {\n // Schema.extend([ type1, type2, ... ])\n explicit = explicit.concat(definition)\n } else if (definition && (Array.isArray(definition.implicit) || Array.isArray(definition.explicit))) {\n // Schema.extend({ explicit: [ type1, type2, ... ], implicit: [ type1, type2, ... ] })\n if (definition.implicit) implicit = implicit.concat(definition.implicit)\n if (definition.explicit) explicit = explicit.concat(definition.explicit)\n } else {\n throw new YAMLException('Schema.extend argument should be a Type, [ Type ], ' +\n 'or a schema definition ({ implicit: [...], explicit: [...] })')\n }\n\n implicit.forEach(function (type) {\n if (!(type instanceof Type)) {\n throw new YAMLException('Specified list of YAML types (or a single Type object) contains a non-Type object.')\n }\n\n if (type.loadKind && type.loadKind !== 'scalar') {\n throw new YAMLException('There is a non-scalar type in the implicit list of a schema. Implicit resolving of such types is not supported.')\n }\n\n if (type.multi) {\n throw new YAMLException('There is a multi type in the implicit list of a schema. Multi tags can only be listed as explicit.')\n }\n })\n\n explicit.forEach(function (type) {\n if (!(type instanceof Type)) {\n throw new YAMLException('Specified list of YAML types (or a single Type object) contains a non-Type object.')\n }\n })\n\n const result = Object.create(Schema.prototype)\n\n result.implicit = (this.implicit || []).concat(implicit)\n result.explicit = (this.explicit || []).concat(explicit)\n\n result.compiledImplicit = compileList(result, 'implicit')\n result.compiledExplicit = compileList(result, 'explicit')\n result.compiledTypeMap = compileMap(result.compiledImplicit, result.compiledExplicit)\n\n return result\n}\n\nmodule.exports = Schema\n","'use strict'\n\nconst Type = require('../type')\n\nmodule.exports = new Type('tag:yaml.org,2002:str', {\n kind: 'scalar',\n construct: function (data) { return data !== null ? data : '' }\n})\n","'use strict'\n\nconst Type = require('../type')\n\nmodule.exports = new Type('tag:yaml.org,2002:seq', {\n kind: 'sequence',\n construct: function (data) { return data !== null ? data : [] }\n})\n","'use strict'\n\nconst Type = require('../type')\n\nmodule.exports = new Type('tag:yaml.org,2002:map', {\n kind: 'mapping',\n construct: function (data) { return data !== null ? data : {} }\n})\n","// Standard YAML's Failsafe schema.\n// http://www.yaml.org/spec/1.2/spec.html#id2802346\n\n'use strict'\n\nconst Schema = require('../schema')\n\nmodule.exports = new Schema({\n explicit: [\n require('../type/str'),\n require('../type/seq'),\n require('../type/map')\n ]\n})\n","'use strict'\n\nconst Type = require('../type')\n\nfunction resolveYamlNull (data) {\n if (data === null) return true\n\n const max = data.length\n\n return (max === 1 && data === '~') ||\n (max === 4 && (data === 'null' || data === 'Null' || data === 'NULL'))\n}\n\nfunction constructYamlNull () {\n return null\n}\n\nfunction isNull (object) {\n return object === null\n}\n\nmodule.exports = new Type('tag:yaml.org,2002:null', {\n kind: 'scalar',\n resolve: resolveYamlNull,\n construct: constructYamlNull,\n predicate: isNull,\n represent: {\n canonical: function () { return '~' },\n lowercase: function () { return 'null' },\n uppercase: function () { return 'NULL' },\n camelcase: function () { return 'Null' },\n empty: function () { return '' }\n },\n defaultStyle: 'lowercase'\n})\n","'use strict'\n\nconst Type = require('../type')\n\nfunction resolveYamlBoolean (data) {\n if (data === null) return false\n\n const max = data.length\n\n return (max === 4 && (data === 'true' || data === 'True' || data === 'TRUE')) ||\n (max === 5 && (data === 'false' || data === 'False' || data === 'FALSE'))\n}\n\nfunction constructYamlBoolean (data) {\n return data === 'true' ||\n data === 'True' ||\n data === 'TRUE'\n}\n\nfunction isBoolean (object) {\n return Object.prototype.toString.call(object) === '[object Boolean]'\n}\n\nmodule.exports = new Type('tag:yaml.org,2002:bool', {\n kind: 'scalar',\n resolve: resolveYamlBoolean,\n construct: constructYamlBoolean,\n predicate: isBoolean,\n represent: {\n lowercase: function (object) { return object ? 'true' : 'false' },\n uppercase: function (object) { return object ? 'TRUE' : 'FALSE' },\n camelcase: function (object) { return object ? 'True' : 'False' }\n },\n defaultStyle: 'lowercase'\n})\n","'use strict'\n\nconst common = require('../common')\nconst Type = require('../type')\n\nfunction isHexCode (c) {\n return ((c >= 0x30/* 0 */) && (c <= 0x39/* 9 */)) ||\n ((c >= 0x41/* A */) && (c <= 0x46/* F */)) ||\n ((c >= 0x61/* a */) && (c <= 0x66/* f */))\n}\n\nfunction isOctCode (c) {\n return ((c >= 0x30/* 0 */) && (c <= 0x37/* 7 */))\n}\n\nfunction isDecCode (c) {\n return ((c >= 0x30/* 0 */) && (c <= 0x39/* 9 */))\n}\n\nfunction resolveYamlInteger (data) {\n if (data === null) return false\n\n const max = data.length\n let index = 0\n let hasDigits = false\n\n if (!max) return false\n\n let ch = data[index]\n\n // sign\n if (ch === '-' || ch === '+') {\n ch = data[++index]\n }\n\n if (ch === '0') {\n // 0\n if (index + 1 === max) return true\n ch = data[++index]\n\n // base 2, base 8, base 16\n\n if (ch === 'b') {\n // base 2\n index++\n\n for (; index < max; index++) {\n ch = data[index]\n if (ch !== '0' && ch !== '1') return false\n hasDigits = true\n }\n return hasDigits && isFinite(parseYamlInteger(data))\n }\n\n if (ch === 'x') {\n // base 16\n index++\n\n for (; index < max; index++) {\n if (!isHexCode(data.charCodeAt(index))) return false\n hasDigits = true\n }\n return hasDigits && isFinite(parseYamlInteger(data))\n }\n\n if (ch === 'o') {\n // base 8\n index++\n\n for (; index < max; index++) {\n if (!isOctCode(data.charCodeAt(index))) return false\n hasDigits = true\n }\n return hasDigits && isFinite(parseYamlInteger(data))\n }\n }\n\n // base 10 (except 0)\n\n for (; index < max; index++) {\n if (!isDecCode(data.charCodeAt(index))) {\n return false\n }\n hasDigits = true\n }\n\n if (!hasDigits) return false\n\n return isFinite(parseYamlInteger(data))\n}\n\nfunction parseYamlInteger (data) {\n let value = data\n let sign = 1\n\n let ch = value[0]\n\n if (ch === '-' || ch === '+') {\n if (ch === '-') sign = -1\n value = value.slice(1)\n ch = value[0]\n }\n\n if (value === '0') return 0\n\n if (ch === '0') {\n if (value[1] === 'b') return sign * parseInt(value.slice(2), 2)\n if (value[1] === 'x') return sign * parseInt(value.slice(2), 16)\n if (value[1] === 'o') return sign * parseInt(value.slice(2), 8)\n }\n\n return sign * parseInt(value, 10)\n}\n\nfunction constructYamlInteger (data) {\n return parseYamlInteger(data)\n}\n\nfunction isInteger (object) {\n return (Object.prototype.toString.call(object)) === '[object Number]' &&\n (object % 1 === 0 && !common.isNegativeZero(object))\n}\n\nmodule.exports = new Type('tag:yaml.org,2002:int', {\n kind: 'scalar',\n resolve: resolveYamlInteger,\n construct: constructYamlInteger,\n predicate: isInteger,\n represent: {\n binary: function (obj) { return obj >= 0 ? '0b' + obj.toString(2) : '-0b' + obj.toString(2).slice(1) },\n octal: function (obj) { return obj >= 0 ? '0o' + obj.toString(8) : '-0o' + obj.toString(8).slice(1) },\n decimal: function (obj) { return obj.toString(10) },\n hexadecimal: function (obj) { return obj >= 0 ? '0x' + obj.toString(16).toUpperCase() : '-0x' + obj.toString(16).toUpperCase().slice(1) }\n },\n defaultStyle: 'decimal',\n styleAliases: {\n binary: [2, 'bin'],\n octal: [8, 'oct'],\n decimal: [10, 'dec'],\n hexadecimal: [16, 'hex']\n }\n})\n","'use strict'\n\nconst common = require('../common')\nconst Type = require('../type')\n\nconst YAML_FLOAT_PATTERN = new RegExp(\n // 2.5e4, 2.5 and integers\n '^(?:[-+]?(?:[0-9]+)(?:\\\\.[0-9]*)?(?:[eE][-+]?[0-9]+)?' +\n // .2e4, .2\n // special case, seems not from spec\n '|\\\\.[0-9]+(?:[eE][-+]?[0-9]+)?' +\n // .inf\n '|[-+]?\\\\.(?:inf|Inf|INF)' +\n // .nan\n '|\\\\.(?:nan|NaN|NAN))$')\n\nconst YAML_FLOAT_SPECIAL_PATTERN = new RegExp(\n '^(?:' +\n // .inf\n '[-+]?\\\\.(?:inf|Inf|INF)' +\n // .nan\n '|\\\\.(?:nan|NaN|NAN))$')\n\nfunction resolveYamlFloat (data) {\n if (data === null) return false\n\n if (!YAML_FLOAT_PATTERN.test(data)) {\n return false\n }\n\n if (isFinite(parseFloat(data, 10))) {\n return true\n }\n\n return YAML_FLOAT_SPECIAL_PATTERN.test(data)\n}\n\nfunction constructYamlFloat (data) {\n let value = data.toLowerCase()\n const sign = value[0] === '-' ? -1 : 1\n\n if ('+-'.indexOf(value[0]) >= 0) {\n value = value.slice(1)\n }\n\n if (value === '.inf') {\n return (sign === 1) ? Number.POSITIVE_INFINITY : Number.NEGATIVE_INFINITY\n } else if (value === '.nan') {\n return NaN\n }\n return sign * parseFloat(value, 10)\n}\n\nconst SCIENTIFIC_WITHOUT_DOT = /^[-+]?[0-9]+e/\n\nfunction representYamlFloat (object, style) {\n if (isNaN(object)) {\n switch (style) {\n case 'lowercase': return '.nan'\n case 'uppercase': return '.NAN'\n case 'camelcase': return '.NaN'\n }\n } else if (Number.POSITIVE_INFINITY === object) {\n switch (style) {\n case 'lowercase': return '.inf'\n case 'uppercase': return '.INF'\n case 'camelcase': return '.Inf'\n }\n } else if (Number.NEGATIVE_INFINITY === object) {\n switch (style) {\n case 'lowercase': return '-.inf'\n case 'uppercase': return '-.INF'\n case 'camelcase': return '-.Inf'\n }\n } else if (common.isNegativeZero(object)) {\n return '-0.0'\n }\n\n const res = object.toString(10)\n\n // JS stringifier can build scientific format without dots: 5e-100,\n // while YAML requres dot: 5.e-100. Fix it with simple hack\n\n return SCIENTIFIC_WITHOUT_DOT.test(res) ? res.replace('e', '.e') : res\n}\n\nfunction isFloat (object) {\n return (Object.prototype.toString.call(object) === '[object Number]') &&\n (object % 1 !== 0 || common.isNegativeZero(object))\n}\n\nmodule.exports = new Type('tag:yaml.org,2002:float', {\n kind: 'scalar',\n resolve: resolveYamlFloat,\n construct: constructYamlFloat,\n predicate: isFloat,\n represent: representYamlFloat,\n defaultStyle: 'lowercase'\n})\n","// Standard YAML's JSON schema.\n// http://www.yaml.org/spec/1.2/spec.html#id2803231\n//\n// NOTE: JS-YAML does not support schema-specific tag resolution restrictions.\n// So, this schema is not such strict as defined in the YAML specification.\n// It allows numbers in binary notaion, use `Null` and `NULL` as `null`, etc.\n\n'use strict'\n\nmodule.exports = require('./failsafe').extend({\n implicit: [\n require('../type/null'),\n require('../type/bool'),\n require('../type/int'),\n require('../type/float')\n ]\n})\n","// Standard YAML's Core schema.\n// http://www.yaml.org/spec/1.2/spec.html#id2804923\n//\n// NOTE: JS-YAML does not support schema-specific tag resolution restrictions.\n// So, Core schema has no distinctions from JSON schema is JS-YAML.\n\n'use strict'\n\nmodule.exports = require('./json')\n","'use strict'\n\nconst Type = require('../type')\n\nconst YAML_DATE_REGEXP = new RegExp(\n '^([0-9][0-9][0-9][0-9])' + // [1] year\n '-([0-9][0-9])' + // [2] month\n '-([0-9][0-9])$') // [3] day\n\nconst YAML_TIMESTAMP_REGEXP = new RegExp(\n '^([0-9][0-9][0-9][0-9])' + // [1] year\n '-([0-9][0-9]?)' + // [2] month\n '-([0-9][0-9]?)' + // [3] day\n '(?:[Tt]|[ \\\\t]+)' + // ...\n '([0-9][0-9]?)' + // [4] hour\n ':([0-9][0-9])' + // [5] minute\n ':([0-9][0-9])' + // [6] second\n '(?:\\\\.([0-9]*))?' + // [7] fraction\n '(?:[ \\\\t]*(Z|([-+])([0-9][0-9]?)' + // [8] tz [9] tz_sign [10] tzHour\n '(?::([0-9][0-9]))?))?$') // [11] tzMinute\n\nfunction resolveYamlTimestamp (data) {\n if (data === null) return false\n if (YAML_DATE_REGEXP.exec(data) !== null) return true\n if (YAML_TIMESTAMP_REGEXP.exec(data) !== null) return true\n return false\n}\n\nfunction constructYamlTimestamp (data) {\n let fraction = 0\n let delta = null\n\n let match = YAML_DATE_REGEXP.exec(data)\n if (match === null) match = YAML_TIMESTAMP_REGEXP.exec(data)\n\n if (match === null) throw new Error('Date resolve error')\n\n // match: [1] year [2] month [3] day\n\n const year = +(match[1])\n const month = +(match[2]) - 1 // JS month starts with 0\n const day = +(match[3])\n\n if (!match[4]) { // no hour\n return new Date(Date.UTC(year, month, day))\n }\n\n // match: [4] hour [5] minute [6] second [7] fraction\n\n const hour = +(match[4])\n const minute = +(match[5])\n const second = +(match[6])\n\n if (match[7]) {\n fraction = match[7].slice(0, 3)\n while (fraction.length < 3) { // milli-seconds\n fraction += '0'\n }\n fraction = +fraction\n }\n\n // match: [8] tz [9] tz_sign [10] tzHour [11] tzMinute\n\n if (match[9]) {\n const tzHour = +(match[10])\n const tzMinute = +(match[11] || 0)\n delta = (tzHour * 60 + tzMinute) * 60000 // delta in mili-seconds\n if (match[9] === '-') delta = -delta\n }\n\n const date = new Date(Date.UTC(year, month, day, hour, minute, second, fraction))\n\n if (delta) date.setTime(date.getTime() - delta)\n\n return date\n}\n\nfunction representYamlTimestamp (object /*, style */) {\n return object.toISOString()\n}\n\nmodule.exports = new Type('tag:yaml.org,2002:timestamp', {\n kind: 'scalar',\n resolve: resolveYamlTimestamp,\n construct: constructYamlTimestamp,\n instanceOf: Date,\n represent: representYamlTimestamp\n})\n","'use strict'\n\nconst Type = require('../type')\n\nfunction resolveYamlMerge (data) {\n return data === '<<' || data === null\n}\n\nmodule.exports = new Type('tag:yaml.org,2002:merge', {\n kind: 'scalar',\n resolve: resolveYamlMerge\n})\n","'use strict'\n\nconst Type = require('../type')\n\n// [ 64, 65, 66 ] -> [ padding, CR, LF ]\nconst BASE64_MAP = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\\n\\r'\n\nfunction resolveYamlBinary (data) {\n if (data === null) return false\n\n let bitlen = 0\n const max = data.length\n const map = BASE64_MAP\n\n // Convert one by one.\n for (let idx = 0; idx < max; idx++) {\n const code = map.indexOf(data.charAt(idx))\n\n // Skip CR/LF\n if (code > 64) continue\n\n // Fail on illegal characters\n if (code < 0) return false\n\n bitlen += 6\n }\n\n // If there are any bits left, source was corrupted\n return (bitlen % 8) === 0\n}\n\nfunction constructYamlBinary (data) {\n const input = data.replace(/[\\r\\n=]/g, '') // remove CR/LF & padding to simplify scan\n const max = input.length\n const map = BASE64_MAP\n let bits = 0\n const result = []\n\n // Collect by 6*4 bits (3 bytes)\n\n for (let idx = 0; idx < max; idx++) {\n if ((idx % 4 === 0) && idx) {\n result.push((bits >> 16) & 0xFF)\n result.push((bits >> 8) & 0xFF)\n result.push(bits & 0xFF)\n }\n\n bits = (bits << 6) | map.indexOf(input.charAt(idx))\n }\n\n // Dump tail\n\n const tailbits = (max % 4) * 6\n\n if (tailbits === 0) {\n result.push((bits >> 16) & 0xFF)\n result.push((bits >> 8) & 0xFF)\n result.push(bits & 0xFF)\n } else if (tailbits === 18) {\n result.push((bits >> 10) & 0xFF)\n result.push((bits >> 2) & 0xFF)\n } else if (tailbits === 12) {\n result.push((bits >> 4) & 0xFF)\n }\n\n return new Uint8Array(result)\n}\n\nfunction representYamlBinary (object /*, style */) {\n let result = ''\n let bits = 0\n const max = object.length\n const map = BASE64_MAP\n\n // Convert every three bytes to 4 ASCII characters.\n\n for (let idx = 0; idx < max; idx++) {\n if ((idx % 3 === 0) && idx) {\n result += map[(bits >> 18) & 0x3F]\n result += map[(bits >> 12) & 0x3F]\n result += map[(bits >> 6) & 0x3F]\n result += map[bits & 0x3F]\n }\n\n bits = (bits << 8) + object[idx]\n }\n\n // Dump tail\n\n const tail = max % 3\n\n if (tail === 0) {\n result += map[(bits >> 18) & 0x3F]\n result += map[(bits >> 12) & 0x3F]\n result += map[(bits >> 6) & 0x3F]\n result += map[bits & 0x3F]\n } else if (tail === 2) {\n result += map[(bits >> 10) & 0x3F]\n result += map[(bits >> 4) & 0x3F]\n result += map[(bits << 2) & 0x3F]\n result += map[64]\n } else if (tail === 1) {\n result += map[(bits >> 2) & 0x3F]\n result += map[(bits << 4) & 0x3F]\n result += map[64]\n result += map[64]\n }\n\n return result\n}\n\nfunction isBinary (obj) {\n return Object.prototype.toString.call(obj) === '[object Uint8Array]'\n}\n\nmodule.exports = new Type('tag:yaml.org,2002:binary', {\n kind: 'scalar',\n resolve: resolveYamlBinary,\n construct: constructYamlBinary,\n predicate: isBinary,\n represent: representYamlBinary\n})\n","'use strict'\n\nconst Type = require('../type')\n\nconst _hasOwnProperty = Object.prototype.hasOwnProperty\nconst _toString = Object.prototype.toString\n\nfunction resolveYamlOmap (data) {\n if (data === null) return true\n\n const objectKeys = []\n const object = data\n\n for (let index = 0, length = object.length; index < length; index += 1) {\n const pair = object[index]\n let pairHasKey = false\n\n if (_toString.call(pair) !== '[object Object]') return false\n\n let pairKey\n for (pairKey in pair) {\n if (_hasOwnProperty.call(pair, pairKey)) {\n if (!pairHasKey) pairHasKey = true\n else return false\n }\n }\n\n if (!pairHasKey) return false\n\n if (objectKeys.indexOf(pairKey) === -1) objectKeys.push(pairKey)\n else return false\n }\n\n return true\n}\n\nfunction constructYamlOmap (data) {\n return data !== null ? data : []\n}\n\nmodule.exports = new Type('tag:yaml.org,2002:omap', {\n kind: 'sequence',\n resolve: resolveYamlOmap,\n construct: constructYamlOmap\n})\n","'use strict'\n\nconst Type = require('../type')\n\nconst _toString = Object.prototype.toString\n\nfunction resolveYamlPairs (data) {\n if (data === null) return true\n\n const object = data\n\n const result = new Array(object.length)\n\n for (let index = 0, length = object.length; index < length; index += 1) {\n const pair = object[index]\n\n if (_toString.call(pair) !== '[object Object]') return false\n\n const keys = Object.keys(pair)\n\n if (keys.length !== 1) return false\n\n result[index] = [keys[0], pair[keys[0]]]\n }\n\n return true\n}\n\nfunction constructYamlPairs (data) {\n if (data === null) return []\n\n const object = data\n const result = new Array(object.length)\n\n for (let index = 0, length = object.length; index < length; index += 1) {\n const pair = object[index]\n\n const keys = Object.keys(pair)\n\n result[index] = [keys[0], pair[keys[0]]]\n }\n\n return result\n}\n\nmodule.exports = new Type('tag:yaml.org,2002:pairs', {\n kind: 'sequence',\n resolve: resolveYamlPairs,\n construct: constructYamlPairs\n})\n","'use strict'\n\nconst Type = require('../type')\n\nconst _hasOwnProperty = Object.prototype.hasOwnProperty\n\nfunction resolveYamlSet (data) {\n if (data === null) return true\n\n const object = data\n\n for (const key in object) {\n if (_hasOwnProperty.call(object, key)) {\n if (object[key] !== null) return false\n }\n }\n\n return true\n}\n\nfunction constructYamlSet (data) {\n return data !== null ? data : {}\n}\n\nmodule.exports = new Type('tag:yaml.org,2002:set', {\n kind: 'mapping',\n resolve: resolveYamlSet,\n construct: constructYamlSet\n})\n","// JS-YAML's default schema for `safeLoad` function.\n// It is not described in the YAML specification.\n//\n// This schema is based on standard YAML's Core schema and includes most of\n// extra types described at YAML tag repository. (http://yaml.org/type/)\n\n'use strict'\n\nmodule.exports = require('./core').extend({\n implicit: [\n require('../type/timestamp'),\n require('../type/merge')\n ],\n explicit: [\n require('../type/binary'),\n require('../type/omap'),\n require('../type/pairs'),\n require('../type/set')\n ]\n})\n","'use strict'\n\nconst common = require('./common')\nconst YAMLException = require('./exception')\nconst makeSnippet = require('./snippet')\nconst DEFAULT_SCHEMA = require('./schema/default')\n\nconst _hasOwnProperty = Object.prototype.hasOwnProperty\n\nconst CONTEXT_FLOW_IN = 1\nconst CONTEXT_FLOW_OUT = 2\nconst CONTEXT_BLOCK_IN = 3\nconst CONTEXT_BLOCK_OUT = 4\n\nconst CHOMPING_CLIP = 1\nconst CHOMPING_STRIP = 2\nconst CHOMPING_KEEP = 3\n\n// eslint-disable-next-line no-control-regex\nconst PATTERN_NON_PRINTABLE = /[\\x00-\\x08\\x0B\\x0C\\x0E-\\x1F\\x7F-\\x84\\x86-\\x9F\\uFFFE\\uFFFF]|[\\uD800-\\uDBFF](?![\\uDC00-\\uDFFF])|(?:[^\\uD800-\\uDBFF]|^)[\\uDC00-\\uDFFF]/\nconst PATTERN_NON_ASCII_LINE_BREAKS = /[\\x85\\u2028\\u2029]/\n// eslint-disable-next-line no-useless-escape\nconst PATTERN_FLOW_INDICATORS = /[,\\[\\]{}]/\n// eslint-disable-next-line no-useless-escape\nconst PATTERN_TAG_HANDLE = /^(?:!|!!|![0-9A-Za-z-]+!)$/\n// eslint-disable-next-line no-useless-escape\nconst PATTERN_TAG_URI = /^(?:!|[^,\\[\\]{}])(?:%[0-9a-f]{2}|[0-9a-z\\-#;/?:@&=+$,_.!~*'()\\[\\]])*$/i\n\nfunction _class (obj) { return Object.prototype.toString.call(obj) }\n\nfunction isEol (c) {\n return (c === 0x0A/* LF */) || (c === 0x0D/* CR */)\n}\n\nfunction isWhiteSpace (c) {\n return (c === 0x09/* Tab */) || (c === 0x20/* Space */)\n}\n\nfunction isWsOrEol (c) {\n return (c === 0x09/* Tab */) ||\n (c === 0x20/* Space */) ||\n (c === 0x0A/* LF */) ||\n (c === 0x0D/* CR */)\n}\n\nfunction isFlowIndicator (c) {\n return c === 0x2C/* , */ ||\n c === 0x5B/* [ */ ||\n c === 0x5D/* ] */ ||\n c === 0x7B/* { */ ||\n c === 0x7D/* } */\n}\n\nfunction fromHexCode (c) {\n if ((c >= 0x30/* 0 */) && (c <= 0x39/* 9 */)) {\n return c - 0x30\n }\n\n const lc = c | 0x20\n\n if ((lc >= 0x61/* a */) && (lc <= 0x66/* f */)) {\n return lc - 0x61 + 10\n }\n\n return -1\n}\n\nfunction escapedHexLen (c) {\n if (c === 0x78/* x */) { return 2 }\n if (c === 0x75/* u */) { return 4 }\n if (c === 0x55/* U */) { return 8 }\n return 0\n}\n\nfunction fromDecimalCode (c) {\n if ((c >= 0x30/* 0 */) && (c <= 0x39/* 9 */)) {\n return c - 0x30\n }\n\n return -1\n}\n\nfunction simpleEscapeSequence (c) {\n switch (c) {\n case 0x30/* 0 */: return '\\x00'\n case 0x61/* a */: return '\\x07'\n case 0x62/* b */: return '\\x08'\n case 0x74/* t */: return '\\x09'\n case 0x09/* Tab */: return '\\x09'\n case 0x6E/* n */: return '\\x0A'\n case 0x76/* v */: return '\\x0B'\n case 0x66/* f */: return '\\x0C'\n case 0x72/* r */: return '\\x0D'\n case 0x65/* e */: return '\\x1B'\n case 0x20/* Space */: return ' '\n case 0x22/* \" */: return '\\x22'\n case 0x2F/* / */: return '/'\n case 0x5C/* \\ */: return '\\x5C'\n case 0x4E/* N */: return '\\x85'\n case 0x5F/* _ */: return '\\xA0'\n case 0x4C/* L */: return '\\u2028'\n case 0x50/* P */: return '\\u2029'\n default: return ''\n }\n}\n\nfunction charFromCodepoint (c) {\n if (c <= 0xFFFF) {\n return String.fromCharCode(c)\n }\n // Encode UTF-16 surrogate pair\n // https://en.wikipedia.org/wiki/UTF-16#Code_points_U.2B010000_to_U.2B10FFFF\n return String.fromCharCode(\n ((c - 0x010000) >> 10) + 0xD800,\n ((c - 0x010000) & 0x03FF) + 0xDC00\n )\n}\n\n// set a property of a literal object, while protecting against prototype pollution,\n// see https://github.com/nodeca/js-yaml/issues/164 for more details\nfunction setProperty (object, key, value) {\n // used for this specific key only because Object.defineProperty is slow\n if (key === '__proto__') {\n Object.defineProperty(object, key, {\n configurable: true,\n enumerable: true,\n writable: true,\n value: value\n })\n } else {\n object[key] = value\n }\n}\n\nconst simpleEscapeCheck = new Array(256) // integer, for fast access\nconst simpleEscapeMap = new Array(256)\nfor (let i = 0; i < 256; i++) {\n simpleEscapeCheck[i] = simpleEscapeSequence(i) ? 1 : 0\n simpleEscapeMap[i] = simpleEscapeSequence(i)\n}\n\nfunction State (input, options) {\n this.input = input\n\n this.filename = options['filename'] || null\n this.schema = options['schema'] || DEFAULT_SCHEMA\n this.onWarning = options['onWarning'] || null\n // (Hidden) Remove? makes the loader to expect YAML 1.1 documents\n // if such documents have no explicit %YAML directive\n this.legacy = options['legacy'] || false\n\n this.json = options['json'] || false\n this.listener = options['listener'] || null\n this.maxDepth = typeof options['maxDepth'] === 'number' ? options['maxDepth'] : 100\n this.maxTotalMergeKeys = typeof options['maxTotalMergeKeys'] === 'number' ? options['maxTotalMergeKeys'] : 10000\n\n this.implicitTypes = this.schema.compiledImplicit\n this.typeMap = this.schema.compiledTypeMap\n\n this.length = input.length\n this.position = 0\n this.line = 0\n this.lineStart = 0\n this.lineIndent = 0\n this.depth = 0\n this.totalMergeKeys = 0\n\n // position of first leading tab in the current line,\n // used to make sure there are no tabs in the indentation\n this.firstTabInLine = -1\n\n this.documents = []\n this.anchorMapTransactions = []\n\n /*\n this.version;\n this.checkLineBreaks;\n this.tagMap;\n this.anchorMap;\n this.tag;\n this.anchor;\n this.kind;\n this.result; */\n}\n\nfunction generateError (state, message) {\n const mark = {\n name: state.filename,\n buffer: state.input.slice(0, -1), // omit trailing \\0\n position: state.position,\n line: state.line,\n column: state.position - state.lineStart\n }\n\n mark.snippet = makeSnippet(mark)\n\n return new YAMLException(message, mark)\n}\n\nfunction throwError (state, message) {\n throw generateError(state, message)\n}\n\nfunction throwWarning (state, message) {\n if (state.onWarning) {\n state.onWarning.call(null, generateError(state, message))\n }\n}\n\nfunction storeAnchor (state, name, value) {\n const transactions = state.anchorMapTransactions\n\n if (transactions.length !== 0) {\n const transaction = transactions[transactions.length - 1]\n\n if (!_hasOwnProperty.call(transaction, name)) {\n transaction[name] = {\n existed: _hasOwnProperty.call(state.anchorMap, name),\n value: state.anchorMap[name]\n }\n }\n }\n\n state.anchorMap[name] = value\n}\n\nfunction beginAnchorTransaction (state) {\n state.anchorMapTransactions.push(Object.create(null))\n}\n\nfunction commitAnchorTransaction (state) {\n const transaction = state.anchorMapTransactions.pop()\n const transactions = state.anchorMapTransactions\n\n if (transactions.length === 0) return\n\n const parent = transactions[transactions.length - 1]\n const names = Object.keys(transaction)\n\n for (let index = 0, length = names.length; index < length; index += 1) {\n const name = names[index]\n\n if (!_hasOwnProperty.call(parent, name)) {\n parent[name] = transaction[name]\n }\n }\n}\n\nfunction rollbackAnchorTransaction (state) {\n const transaction = state.anchorMapTransactions.pop()\n const names = Object.keys(transaction)\n\n for (let index = names.length - 1; index >= 0; index -= 1) {\n const entry = transaction[names[index]]\n\n if (entry.existed) {\n state.anchorMap[names[index]] = entry.value\n } else {\n delete state.anchorMap[names[index]]\n }\n }\n}\n\nfunction snapshotState (state) {\n return {\n position: state.position,\n line: state.line,\n lineStart: state.lineStart,\n lineIndent: state.lineIndent,\n firstTabInLine: state.firstTabInLine,\n tag: state.tag,\n anchor: state.anchor,\n kind: state.kind,\n result: state.result\n }\n}\n\nfunction restoreState (state, snapshot) {\n state.position = snapshot.position\n state.line = snapshot.line\n state.lineStart = snapshot.lineStart\n state.lineIndent = snapshot.lineIndent\n state.firstTabInLine = snapshot.firstTabInLine\n state.tag = snapshot.tag\n state.anchor = snapshot.anchor\n state.kind = snapshot.kind\n state.result = snapshot.result\n}\n\nconst directiveHandlers = {\n\n YAML: function handleYamlDirective (state, name, args) {\n if (state.version !== null) {\n throwError(state, 'duplication of %YAML directive')\n }\n\n if (args.length !== 1) {\n throwError(state, 'YAML directive accepts exactly one argument')\n }\n\n const match = /^([0-9]+)\\.([0-9]+)$/.exec(args[0])\n\n if (match === null) {\n throwError(state, 'ill-formed argument of the YAML directive')\n }\n\n const major = parseInt(match[1], 10)\n const minor = parseInt(match[2], 10)\n\n if (major !== 1) {\n throwError(state, 'unacceptable YAML version of the document')\n }\n\n state.version = args[0]\n state.checkLineBreaks = (minor < 2)\n\n if (minor !== 1 && minor !== 2) {\n throwWarning(state, 'unsupported YAML version of the document')\n }\n },\n\n TAG: function handleTagDirective (state, name, args) {\n let prefix\n\n if (args.length !== 2) {\n throwError(state, 'TAG directive accepts exactly two arguments')\n }\n\n const handle = args[0]\n prefix = args[1]\n\n if (!PATTERN_TAG_HANDLE.test(handle)) {\n throwError(state, 'ill-formed tag handle (first argument) of the TAG directive')\n }\n\n if (_hasOwnProperty.call(state.tagMap, handle)) {\n throwError(state, 'there is a previously declared suffix for \"' + handle + '\" tag handle')\n }\n\n if (!PATTERN_TAG_URI.test(prefix)) {\n throwError(state, 'ill-formed tag prefix (second argument) of the TAG directive')\n }\n\n try {\n prefix = decodeURIComponent(prefix)\n } catch (err) {\n throwError(state, 'tag prefix is malformed: ' + prefix)\n }\n\n state.tagMap[handle] = prefix\n }\n}\n\nfunction captureSegment (state, start, end, checkJson) {\n if (start < end) {\n const _result = state.input.slice(start, end)\n\n if (checkJson) {\n for (let _position = 0, _length = _result.length; _position < _length; _position += 1) {\n const _character = _result.charCodeAt(_position)\n if (!(_character === 0x09 ||\n (_character >= 0x20 && _character <= 0x10FFFF))) {\n throwError(state, 'expected valid JSON character')\n }\n }\n } else if (PATTERN_NON_PRINTABLE.test(_result)) {\n throwError(state, 'the stream contains non-printable characters')\n }\n\n state.result += _result\n }\n}\n\nfunction mergeMappings (state, destination, source, overridableKeys) {\n if (!common.isObject(source)) {\n throwError(state, 'cannot merge mappings; the provided source object is unacceptable')\n }\n\n const sourceKeys = Object.keys(source)\n\n for (let index = 0, quantity = sourceKeys.length; index < quantity; index += 1) {\n const key = sourceKeys[index]\n\n if (state.maxTotalMergeKeys !== -1 && ++state.totalMergeKeys > state.maxTotalMergeKeys) {\n throwError(state, 'merge keys exceeded maxTotalMergeKeys (' + state.maxTotalMergeKeys + ')')\n }\n\n if (!_hasOwnProperty.call(destination, key)) {\n setProperty(destination, key, source[key])\n overridableKeys[key] = true\n }\n }\n}\n\nfunction storeMappingPair (state, _result, overridableKeys, keyTag, keyNode, valueNode,\n startLine, startLineStart, startPos) {\n // The output is a plain object here, so keys can only be strings.\n // We need to convert keyNode to a string, but doing so can hang the process\n // (deeply nested arrays that explode exponentially using aliases).\n if (Array.isArray(keyNode)) {\n keyNode = Array.prototype.slice.call(keyNode)\n\n for (let index = 0, quantity = keyNode.length; index < quantity; index += 1) {\n if (Array.isArray(keyNode[index])) {\n throwError(state, 'nested arrays are not supported inside keys')\n }\n\n if (typeof keyNode === 'object' && _class(keyNode[index]) === '[object Object]') {\n keyNode[index] = '[object Object]'\n }\n }\n }\n\n // Avoid code execution in load() via toString property\n // (still use its own toString for arrays, timestamps,\n // and whatever user schema extensions happen to have @@toStringTag)\n if (typeof keyNode === 'object' && _class(keyNode) === '[object Object]') {\n keyNode = '[object Object]'\n }\n\n keyNode = String(keyNode)\n\n if (_result === null) {\n _result = {}\n }\n\n if (keyTag === 'tag:yaml.org,2002:merge') {\n if (Array.isArray(valueNode)) {\n for (let index = 0, quantity = valueNode.length; index < quantity; index += 1) {\n mergeMappings(state, _result, valueNode[index], overridableKeys)\n }\n } else {\n mergeMappings(state, _result, valueNode, overridableKeys)\n }\n } else {\n if (!state.json &&\n !_hasOwnProperty.call(overridableKeys, keyNode) &&\n _hasOwnProperty.call(_result, keyNode)) {\n state.line = startLine || state.line\n state.lineStart = startLineStart || state.lineStart\n state.position = startPos || state.position\n throwError(state, 'duplicated mapping key')\n }\n\n setProperty(_result, keyNode, valueNode)\n delete overridableKeys[keyNode]\n }\n\n return _result\n}\n\nfunction readLineBreak (state) {\n const ch = state.input.charCodeAt(state.position)\n\n if (ch === 0x0A/* LF */) {\n state.position++\n } else if (ch === 0x0D/* CR */) {\n state.position++\n if (state.input.charCodeAt(state.position) === 0x0A/* LF */) {\n state.position++\n }\n } else {\n throwError(state, 'a line break is expected')\n }\n\n state.line += 1\n state.lineStart = state.position\n state.firstTabInLine = -1\n}\n\nfunction skipSeparationSpace (state, allowComments, checkIndent) {\n let lineBreaks = 0\n let ch = state.input.charCodeAt(state.position)\n\n while (ch !== 0) {\n while (isWhiteSpace(ch)) {\n if (ch === 0x09/* Tab */ && state.firstTabInLine === -1) {\n state.firstTabInLine = state.position\n }\n ch = state.input.charCodeAt(++state.position)\n }\n\n if (allowComments && ch === 0x23/* # */) {\n do {\n ch = state.input.charCodeAt(++state.position)\n } while (ch !== 0x0A/* LF */ && ch !== 0x0D/* CR */ && ch !== 0)\n }\n\n if (isEol(ch)) {\n readLineBreak(state)\n\n ch = state.input.charCodeAt(state.position)\n lineBreaks++\n state.lineIndent = 0\n\n while (ch === 0x20/* Space */) {\n state.lineIndent++\n ch = state.input.charCodeAt(++state.position)\n }\n } else {\n break\n }\n }\n\n if (checkIndent !== -1 && lineBreaks !== 0 && state.lineIndent < checkIndent) {\n throwWarning(state, 'deficient indentation')\n }\n\n return lineBreaks\n}\n\nfunction testDocumentSeparator (state) {\n let _position = state.position\n let ch = state.input.charCodeAt(_position)\n\n // Condition state.position === state.lineStart is tested\n // in parent on each call, for efficiency. No needs to test here again.\n if ((ch === 0x2D/* - */ || ch === 0x2E/* . */) &&\n ch === state.input.charCodeAt(_position + 1) &&\n ch === state.input.charCodeAt(_position + 2)) {\n _position += 3\n\n ch = state.input.charCodeAt(_position)\n\n if (ch === 0 || isWsOrEol(ch)) {\n return true\n }\n }\n\n return false\n}\n\nfunction writeFoldedLines (state, count) {\n if (count === 1) {\n state.result += ' '\n } else if (count > 1) {\n state.result += common.repeat('\\n', count - 1)\n }\n}\n\nfunction readPlainScalar (state, nodeIndent, withinFlowCollection) {\n let captureStart\n let captureEnd\n let hasPendingContent\n let _line\n let _lineStart\n let _lineIndent\n const _kind = state.kind\n const _result = state.result\n\n let ch = state.input.charCodeAt(state.position)\n\n if (isWsOrEol(ch) ||\n isFlowIndicator(ch) ||\n ch === 0x23/* # */ ||\n ch === 0x26/* & */ ||\n ch === 0x2A/* * */ ||\n ch === 0x21/* ! */ ||\n ch === 0x7C/* | */ ||\n ch === 0x3E/* > */ ||\n ch === 0x27/* ' */ ||\n ch === 0x22/* \" */ ||\n ch === 0x25/* % */ ||\n ch === 0x40/* @ */ ||\n ch === 0x60/* ` */) {\n return false\n }\n\n if (ch === 0x3F/* ? */ || ch === 0x2D/* - */) {\n const following = state.input.charCodeAt(state.position + 1)\n\n if (isWsOrEol(following) ||\n (withinFlowCollection && isFlowIndicator(following))) {\n return false\n }\n }\n\n state.kind = 'scalar'\n state.result = ''\n captureStart = captureEnd = state.position\n hasPendingContent = false\n\n while (ch !== 0) {\n if (ch === 0x3A/* : */) {\n const following = state.input.charCodeAt(state.position + 1)\n\n if (isWsOrEol(following) ||\n (withinFlowCollection && isFlowIndicator(following))) {\n break\n }\n } else if (ch === 0x23/* # */) {\n const preceding = state.input.charCodeAt(state.position - 1)\n\n if (isWsOrEol(preceding)) {\n break\n }\n } else if ((state.position === state.lineStart && testDocumentSeparator(state)) ||\n (withinFlowCollection && isFlowIndicator(ch))) {\n break\n } else if (isEol(ch)) {\n _line = state.line\n _lineStart = state.lineStart\n _lineIndent = state.lineIndent\n skipSeparationSpace(state, false, -1)\n\n if (state.lineIndent >= nodeIndent) {\n hasPendingContent = true\n ch = state.input.charCodeAt(state.position)\n continue\n } else {\n state.position = captureEnd\n state.line = _line\n state.lineStart = _lineStart\n state.lineIndent = _lineIndent\n break\n }\n }\n\n if (hasPendingContent) {\n captureSegment(state, captureStart, captureEnd, false)\n writeFoldedLines(state, state.line - _line)\n captureStart = captureEnd = state.position\n hasPendingContent = false\n }\n\n if (!isWhiteSpace(ch)) {\n captureEnd = state.position + 1\n }\n\n ch = state.input.charCodeAt(++state.position)\n }\n\n captureSegment(state, captureStart, captureEnd, false)\n\n if (state.result) {\n return true\n }\n\n state.kind = _kind\n state.result = _result\n return false\n}\n\nfunction readSingleQuotedScalar (state, nodeIndent) {\n let captureStart\n let captureEnd\n\n let ch = state.input.charCodeAt(state.position)\n\n if (ch !== 0x27/* ' */) {\n return false\n }\n\n state.kind = 'scalar'\n state.result = ''\n state.position++\n captureStart = captureEnd = state.position\n\n while ((ch = state.input.charCodeAt(state.position)) !== 0) {\n if (ch === 0x27/* ' */) {\n captureSegment(state, captureStart, state.position, true)\n ch = state.input.charCodeAt(++state.position)\n\n if (ch === 0x27/* ' */) {\n captureStart = state.position\n state.position++\n captureEnd = state.position\n } else {\n return true\n }\n } else if (isEol(ch)) {\n captureSegment(state, captureStart, captureEnd, true)\n writeFoldedLines(state, skipSeparationSpace(state, false, nodeIndent))\n captureStart = captureEnd = state.position\n } else if (state.position === state.lineStart && testDocumentSeparator(state)) {\n throwError(state, 'unexpected end of the document within a single quoted scalar')\n } else {\n state.position++\n if (!isWhiteSpace(ch)) {\n captureEnd = state.position\n }\n }\n }\n\n throwError(state, 'unexpected end of the stream within a single quoted scalar')\n}\n\nfunction readDoubleQuotedScalar (state, nodeIndent) {\n let captureStart\n let captureEnd\n let tmp\n\n let ch = state.input.charCodeAt(state.position)\n\n if (ch !== 0x22/* \" */) {\n return false\n }\n\n state.kind = 'scalar'\n state.result = ''\n state.position++\n captureStart = captureEnd = state.position\n\n while ((ch = state.input.charCodeAt(state.position)) !== 0) {\n if (ch === 0x22/* \" */) {\n captureSegment(state, captureStart, state.position, true)\n state.position++\n return true\n } else if (ch === 0x5C/* \\ */) {\n captureSegment(state, captureStart, state.position, true)\n ch = state.input.charCodeAt(++state.position)\n\n if (isEol(ch)) {\n skipSeparationSpace(state, false, nodeIndent)\n\n // TODO: rework to inline fn with no type cast?\n } else if (ch < 256 && simpleEscapeCheck[ch]) {\n state.result += simpleEscapeMap[ch]\n state.position++\n } else if ((tmp = escapedHexLen(ch)) > 0) {\n let hexLength = tmp\n let hexResult = 0\n\n for (; hexLength > 0; hexLength--) {\n ch = state.input.charCodeAt(++state.position)\n\n if ((tmp = fromHexCode(ch)) >= 0) {\n hexResult = (hexResult << 4) + tmp\n } else {\n throwError(state, 'expected hexadecimal character')\n }\n }\n\n state.result += charFromCodepoint(hexResult)\n\n state.position++\n } else {\n throwError(state, 'unknown escape sequence')\n }\n\n captureStart = captureEnd = state.position\n } else if (isEol(ch)) {\n captureSegment(state, captureStart, captureEnd, true)\n writeFoldedLines(state, skipSeparationSpace(state, false, nodeIndent))\n captureStart = captureEnd = state.position\n } else if (state.position === state.lineStart && testDocumentSeparator(state)) {\n throwError(state, 'unexpected end of the document within a double quoted scalar')\n } else {\n state.position++\n if (!isWhiteSpace(ch)) {\n captureEnd = state.position\n }\n }\n }\n\n throwError(state, 'unexpected end of the stream within a double quoted scalar')\n}\n\nfunction readFlowCollection (state, nodeIndent) {\n let readNext = true\n let _line\n let _lineStart\n let _pos\n const _tag = state.tag\n let _result\n const _anchor = state.anchor\n let terminator\n let isPair\n let isExplicitPair\n let isMapping\n const overridableKeys = Object.create(null)\n let keyNode\n let keyTag\n let valueNode\n\n let ch = state.input.charCodeAt(state.position)\n\n if (ch === 0x5B/* [ */) {\n terminator = 0x5D/* ] */\n isMapping = false\n _result = []\n } else if (ch === 0x7B/* { */) {\n terminator = 0x7D/* } */\n isMapping = true\n _result = {}\n } else {\n return false\n }\n\n if (state.anchor !== null) {\n storeAnchor(state, state.anchor, _result)\n }\n\n ch = state.input.charCodeAt(++state.position)\n\n while (ch !== 0) {\n skipSeparationSpace(state, true, nodeIndent)\n\n ch = state.input.charCodeAt(state.position)\n\n if (ch === terminator) {\n state.position++\n state.tag = _tag\n state.anchor = _anchor\n state.kind = isMapping ? 'mapping' : 'sequence'\n state.result = _result\n return true\n } else if (!readNext) {\n throwError(state, 'missed comma between flow collection entries')\n } else if (ch === 0x2C/* , */) {\n // \"flow collection entries can never be completely empty\", as per YAML 1.2, section 7.4\n throwError(state, \"expected the node content, but found ','\")\n }\n\n keyTag = keyNode = valueNode = null\n isPair = isExplicitPair = false\n\n if (ch === 0x3F/* ? */) {\n const following = state.input.charCodeAt(state.position + 1)\n\n if (isWsOrEol(following)) {\n isPair = isExplicitPair = true\n state.position++\n skipSeparationSpace(state, true, nodeIndent)\n }\n }\n\n _line = state.line // Save the current line.\n _lineStart = state.lineStart\n _pos = state.position\n composeNode(state, nodeIndent, CONTEXT_FLOW_IN, false, true)\n keyTag = state.tag\n keyNode = state.result\n skipSeparationSpace(state, true, nodeIndent)\n\n ch = state.input.charCodeAt(state.position)\n\n if ((isExplicitPair || state.line === _line) && ch === 0x3A/* : */) {\n isPair = true\n ch = state.input.charCodeAt(++state.position)\n skipSeparationSpace(state, true, nodeIndent)\n composeNode(state, nodeIndent, CONTEXT_FLOW_IN, false, true)\n valueNode = state.result\n }\n\n if (isMapping) {\n storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, valueNode, _line, _lineStart, _pos)\n } else if (isPair) {\n _result.push(storeMappingPair(state, null, overridableKeys, keyTag, keyNode, valueNode, _line, _lineStart, _pos))\n } else {\n _result.push(keyNode)\n }\n\n skipSeparationSpace(state, true, nodeIndent)\n\n ch = state.input.charCodeAt(state.position)\n\n if (ch === 0x2C/* , */) {\n readNext = true\n ch = state.input.charCodeAt(++state.position)\n } else {\n readNext = false\n }\n }\n\n throwError(state, 'unexpected end of the stream within a flow collection')\n}\n\nfunction readBlockScalar (state, nodeIndent) {\n let folding\n let chomping = CHOMPING_CLIP\n let didReadContent = false\n let detectedIndent = false\n let textIndent = nodeIndent\n let emptyLines = 0\n let atMoreIndented = false\n let tmp\n\n let ch = state.input.charCodeAt(state.position)\n\n if (ch === 0x7C/* | */) {\n folding = false\n } else if (ch === 0x3E/* > */) {\n folding = true\n } else {\n return false\n }\n\n state.kind = 'scalar'\n state.result = ''\n\n while (ch !== 0) {\n ch = state.input.charCodeAt(++state.position)\n\n if (ch === 0x2B/* + */ || ch === 0x2D/* - */) {\n if (CHOMPING_CLIP === chomping) {\n chomping = (ch === 0x2B/* + */) ? CHOMPING_KEEP : CHOMPING_STRIP\n } else {\n throwError(state, 'repeat of a chomping mode identifier')\n }\n } else if ((tmp = fromDecimalCode(ch)) >= 0) {\n if (tmp === 0) {\n throwError(state, 'bad explicit indentation width of a block scalar; it cannot be less than one')\n } else if (!detectedIndent) {\n textIndent = nodeIndent + tmp - 1\n detectedIndent = true\n } else {\n throwError(state, 'repeat of an indentation width identifier')\n }\n } else {\n break\n }\n }\n\n if (isWhiteSpace(ch)) {\n do { ch = state.input.charCodeAt(++state.position) }\n while (isWhiteSpace(ch))\n\n if (ch === 0x23/* # */) {\n do { ch = state.input.charCodeAt(++state.position) }\n while (!isEol(ch) && (ch !== 0))\n }\n }\n\n while (ch !== 0) {\n readLineBreak(state)\n state.lineIndent = 0\n\n ch = state.input.charCodeAt(state.position)\n\n // eslint-disable-next-line no-unmodified-loop-condition\n while ((!detectedIndent || state.lineIndent < textIndent) &&\n (ch === 0x20/* Space */)) {\n state.lineIndent++\n ch = state.input.charCodeAt(++state.position)\n }\n\n if (!detectedIndent && state.lineIndent > textIndent) {\n textIndent = state.lineIndent\n }\n\n if (isEol(ch)) {\n emptyLines++\n continue\n }\n\n if (!detectedIndent && textIndent === 0) {\n throwError(state, 'missing indentation for block scalar')\n }\n\n // End of the scalar.\n if (state.lineIndent < textIndent) {\n // Perform the chomping.\n if (chomping === CHOMPING_KEEP) {\n state.result += common.repeat('\\n', didReadContent ? 1 + emptyLines : emptyLines)\n } else if (chomping === CHOMPING_CLIP) {\n if (didReadContent) { // i.e. only if the scalar is not empty.\n state.result += '\\n'\n }\n }\n\n // Break this `while` cycle and go to the funciton's epilogue.\n break\n }\n\n // Folded style: use fancy rules to handle line breaks.\n if (folding) {\n // Lines starting with white space characters (more-indented lines) are not folded.\n if (isWhiteSpace(ch)) {\n atMoreIndented = true\n // except for the first content line (cf. Example 8.1)\n state.result += common.repeat('\\n', didReadContent ? 1 + emptyLines : emptyLines)\n\n // End of more-indented block.\n } else if (atMoreIndented) {\n atMoreIndented = false\n state.result += common.repeat('\\n', emptyLines + 1)\n\n // Just one line break - perceive as the same line.\n } else if (emptyLines === 0) {\n if (didReadContent) { // i.e. only if we have already read some scalar content.\n state.result += ' '\n }\n\n // Several line breaks - perceive as different lines.\n } else {\n state.result += common.repeat('\\n', emptyLines)\n }\n\n // Literal style: just add exact number of line breaks between content lines.\n } else {\n // Keep all line breaks except the header line break.\n state.result += common.repeat('\\n', didReadContent ? 1 + emptyLines : emptyLines)\n }\n\n didReadContent = true\n detectedIndent = true\n emptyLines = 0\n const captureStart = state.position\n\n while (!isEol(ch) && (ch !== 0)) {\n ch = state.input.charCodeAt(++state.position)\n }\n\n captureSegment(state, captureStart, state.position, false)\n }\n\n return true\n}\n\nfunction readBlockSequence (state, nodeIndent) {\n const _tag = state.tag\n const _anchor = state.anchor\n const _result = []\n let detected = false\n\n // there is a leading tab before this token, so it can't be a block sequence/mapping;\n // it can still be flow sequence/mapping or a scalar\n if (state.firstTabInLine !== -1) return false\n\n if (state.anchor !== null) {\n storeAnchor(state, state.anchor, _result)\n }\n\n let ch = state.input.charCodeAt(state.position)\n\n while (ch !== 0) {\n if (state.firstTabInLine !== -1) {\n state.position = state.firstTabInLine\n throwError(state, 'tab characters must not be used in indentation')\n }\n\n if (ch !== 0x2D/* - */) {\n break\n }\n\n const following = state.input.charCodeAt(state.position + 1)\n\n if (!isWsOrEol(following)) {\n break\n }\n\n detected = true\n state.position++\n\n if (skipSeparationSpace(state, true, -1)) {\n if (state.lineIndent <= nodeIndent) {\n _result.push(null)\n ch = state.input.charCodeAt(state.position)\n continue\n }\n }\n\n const _line = state.line\n composeNode(state, nodeIndent, CONTEXT_BLOCK_IN, false, true)\n _result.push(state.result)\n skipSeparationSpace(state, true, -1)\n\n ch = state.input.charCodeAt(state.position)\n\n if ((state.line === _line || state.lineIndent > nodeIndent) && (ch !== 0)) {\n throwError(state, 'bad indentation of a sequence entry')\n } else if (state.lineIndent < nodeIndent) {\n break\n }\n }\n\n if (detected) {\n state.tag = _tag\n state.anchor = _anchor\n state.kind = 'sequence'\n state.result = _result\n return true\n }\n return false\n}\n\nfunction readBlockMapping (state, nodeIndent, flowIndent) {\n let allowCompact\n let _keyLine\n let _keyLineStart\n let _keyPos\n const _tag = state.tag\n const _anchor = state.anchor\n const _result = {}\n const overridableKeys = Object.create(null)\n let keyTag = null\n let keyNode = null\n let valueNode = null\n let atExplicitKey = false\n let detected = false\n\n // there is a leading tab before this token, so it can't be a block sequence/mapping;\n // it can still be flow sequence/mapping or a scalar\n if (state.firstTabInLine !== -1) return false\n\n if (state.anchor !== null) {\n storeAnchor(state, state.anchor, _result)\n }\n\n let ch = state.input.charCodeAt(state.position)\n\n while (ch !== 0) {\n if (!atExplicitKey && state.firstTabInLine !== -1) {\n state.position = state.firstTabInLine\n throwError(state, 'tab characters must not be used in indentation')\n }\n\n const following = state.input.charCodeAt(state.position + 1)\n const _line = state.line // Save the current line.\n\n //\n // Explicit notation case. There are two separate blocks:\n // first for the key (denoted by \"?\") and second for the value (denoted by \":\")\n //\n if ((ch === 0x3F/* ? */ || ch === 0x3A/* : */) && isWsOrEol(following)) {\n if (ch === 0x3F/* ? */) {\n if (atExplicitKey) {\n storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, null, _keyLine, _keyLineStart, _keyPos)\n keyTag = keyNode = valueNode = null\n }\n\n detected = true\n atExplicitKey = true\n allowCompact = true\n } else if (atExplicitKey) {\n // i.e. 0x3A/* : */ === character after the explicit key.\n atExplicitKey = false\n allowCompact = true\n } else {\n throwError(state, 'incomplete explicit mapping pair; a key node is missed; or followed by a non-tabulated empty line')\n }\n\n state.position += 1\n ch = following\n\n //\n // Implicit notation case. Flow-style node as the key first, then \":\", and the value.\n //\n } else {\n _keyLine = state.line\n _keyLineStart = state.lineStart\n _keyPos = state.position\n\n if (!composeNode(state, flowIndent, CONTEXT_FLOW_OUT, false, true)) {\n // Neither implicit nor explicit notation.\n // Reading is done. Go to the epilogue.\n break\n }\n\n if (state.line === _line) {\n ch = state.input.charCodeAt(state.position)\n\n while (isWhiteSpace(ch)) {\n ch = state.input.charCodeAt(++state.position)\n }\n\n if (ch === 0x3A/* : */) {\n ch = state.input.charCodeAt(++state.position)\n\n if (!isWsOrEol(ch)) {\n throwError(state, 'a whitespace character is expected after the key-value separator within a block mapping')\n }\n\n if (atExplicitKey) {\n storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, null, _keyLine, _keyLineStart, _keyPos)\n keyTag = keyNode = valueNode = null\n }\n\n detected = true\n atExplicitKey = false\n allowCompact = false\n keyTag = state.tag\n keyNode = state.result\n } else if (detected) {\n throwError(state, 'can not read an implicit mapping pair; a colon is missed')\n } else {\n state.tag = _tag\n state.anchor = _anchor\n return true // Keep the result of `composeNode`.\n }\n } else if (detected) {\n throwError(state, 'can not read a block mapping entry; a multiline key may not be an implicit key')\n } else {\n state.tag = _tag\n state.anchor = _anchor\n return true // Keep the result of `composeNode`.\n }\n }\n\n //\n // Common reading code for both explicit and implicit notations.\n //\n if (state.line === _line || state.lineIndent > nodeIndent) {\n if (atExplicitKey) {\n _keyLine = state.line\n _keyLineStart = state.lineStart\n _keyPos = state.position\n }\n\n if (composeNode(state, nodeIndent, CONTEXT_BLOCK_OUT, true, allowCompact)) {\n if (atExplicitKey) {\n keyNode = state.result\n } else {\n valueNode = state.result\n }\n }\n\n if (!atExplicitKey) {\n storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, valueNode, _keyLine, _keyLineStart, _keyPos)\n keyTag = keyNode = valueNode = null\n }\n\n skipSeparationSpace(state, true, -1)\n ch = state.input.charCodeAt(state.position)\n }\n\n if ((state.line === _line || state.lineIndent > nodeIndent) && (ch !== 0)) {\n throwError(state, 'bad indentation of a mapping entry')\n } else if (state.lineIndent < nodeIndent) {\n break\n }\n }\n\n //\n // Epilogue.\n //\n\n // Special case: last mapping's node contains only the key in explicit notation.\n if (atExplicitKey) {\n storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, null, _keyLine, _keyLineStart, _keyPos)\n }\n\n // Expose the resulting mapping.\n if (detected) {\n state.tag = _tag\n state.anchor = _anchor\n state.kind = 'mapping'\n state.result = _result\n }\n\n return detected\n}\n\nfunction readTagProperty (state) {\n let isVerbatim = false\n let isNamed = false\n let tagHandle\n let tagName\n\n let ch = state.input.charCodeAt(state.position)\n\n if (ch !== 0x21/* ! */) return false\n\n if (state.tag !== null) {\n throwError(state, 'duplication of a tag property')\n }\n\n ch = state.input.charCodeAt(++state.position)\n\n if (ch === 0x3C/* < */) {\n isVerbatim = true\n ch = state.input.charCodeAt(++state.position)\n } else if (ch === 0x21/* ! */) {\n isNamed = true\n tagHandle = '!!'\n ch = state.input.charCodeAt(++state.position)\n } else {\n tagHandle = '!'\n }\n\n let _position = state.position\n\n if (isVerbatim) {\n do { ch = state.input.charCodeAt(++state.position) }\n while (ch !== 0 && ch !== 0x3E/* > */)\n\n if (state.position < state.length) {\n tagName = state.input.slice(_position, state.position)\n ch = state.input.charCodeAt(++state.position)\n } else {\n throwError(state, 'unexpected end of the stream within a verbatim tag')\n }\n } else {\n while (ch !== 0 && !isWsOrEol(ch)) {\n if (ch === 0x21/* ! */) {\n if (!isNamed) {\n tagHandle = state.input.slice(_position - 1, state.position + 1)\n\n if (!PATTERN_TAG_HANDLE.test(tagHandle)) {\n throwError(state, 'named tag handle cannot contain such characters')\n }\n\n isNamed = true\n _position = state.position + 1\n } else {\n throwError(state, 'tag suffix cannot contain exclamation marks')\n }\n }\n\n ch = state.input.charCodeAt(++state.position)\n }\n\n tagName = state.input.slice(_position, state.position)\n\n if (PATTERN_FLOW_INDICATORS.test(tagName)) {\n throwError(state, 'tag suffix cannot contain flow indicator characters')\n }\n }\n\n if (tagName && !PATTERN_TAG_URI.test(tagName)) {\n throwError(state, 'tag name cannot contain such characters: ' + tagName)\n }\n\n try {\n tagName = decodeURIComponent(tagName)\n } catch (err) {\n throwError(state, 'tag name is malformed: ' + tagName)\n }\n\n if (isVerbatim) {\n state.tag = tagName\n } else if (_hasOwnProperty.call(state.tagMap, tagHandle)) {\n state.tag = state.tagMap[tagHandle] + tagName\n } else if (tagHandle === '!') {\n state.tag = '!' + tagName\n } else if (tagHandle === '!!') {\n state.tag = 'tag:yaml.org,2002:' + tagName\n } else {\n throwError(state, 'undeclared tag handle \"' + tagHandle + '\"')\n }\n\n return true\n}\n\nfunction readAnchorProperty (state) {\n let ch = state.input.charCodeAt(state.position)\n\n if (ch !== 0x26/* & */) return false\n\n if (state.anchor !== null) {\n throwError(state, 'duplication of an anchor property')\n }\n\n ch = state.input.charCodeAt(++state.position)\n const _position = state.position\n\n while (ch !== 0 && !isWsOrEol(ch) && !isFlowIndicator(ch)) {\n ch = state.input.charCodeAt(++state.position)\n }\n\n if (state.position === _position) {\n throwError(state, 'name of an anchor node must contain at least one character')\n }\n\n state.anchor = state.input.slice(_position, state.position)\n return true\n}\n\nfunction readAlias (state) {\n let ch = state.input.charCodeAt(state.position)\n\n if (ch !== 0x2A/* * */) return false\n\n ch = state.input.charCodeAt(++state.position)\n const _position = state.position\n\n while (ch !== 0 && !isWsOrEol(ch) && !isFlowIndicator(ch)) {\n ch = state.input.charCodeAt(++state.position)\n }\n\n if (state.position === _position) {\n throwError(state, 'name of an alias node must contain at least one character')\n }\n\n const alias = state.input.slice(_position, state.position)\n\n if (!_hasOwnProperty.call(state.anchorMap, alias)) {\n throwError(state, 'unidentified alias \"' + alias + '\"')\n }\n\n state.result = state.anchorMap[alias]\n skipSeparationSpace(state, true, -1)\n return true\n}\n\nfunction tryReadBlockMappingFromProperty (state, propertyStart, nodeIndent, flowIndent) {\n const fallbackState = snapshotState(state)\n\n beginAnchorTransaction(state)\n restoreState(state, propertyStart)\n\n // Re-read the leading properties as part of the first implicit key, not as\n // properties of the current node.\n state.tag = null\n state.anchor = null\n state.kind = null\n state.result = null\n\n if (readBlockMapping(state, nodeIndent, flowIndent) && state.kind === 'mapping') {\n commitAnchorTransaction(state)\n return true\n }\n\n rollbackAnchorTransaction(state)\n restoreState(state, fallbackState)\n return false\n}\n\nfunction composeNode (state, parentIndent, nodeContext, allowToSeek, allowCompact) {\n let allowBlockScalars\n let allowBlockCollections\n let indentStatus = 1 // 1: this>parent, 0: this=parent, -1: this<parent\n let atNewLine = false\n let hasContent = false\n let propertyStart = null\n let type\n let flowIndent\n let blockIndent\n\n if (state.depth >= state.maxDepth) {\n throwError(state, 'nesting exceeded maxDepth (' + state.maxDepth + ')')\n }\n\n state.depth += 1\n\n if (state.listener !== null) {\n state.listener('open', state)\n }\n\n state.tag = null\n state.anchor = null\n state.kind = null\n state.result = null\n\n const allowBlockStyles = allowBlockScalars = allowBlockCollections =\n CONTEXT_BLOCK_OUT === nodeContext ||\n CONTEXT_BLOCK_IN === nodeContext\n\n if (allowToSeek) {\n if (skipSeparationSpace(state, true, -1)) {\n atNewLine = true\n\n if (state.lineIndent > parentIndent) {\n indentStatus = 1\n } else if (state.lineIndent === parentIndent) {\n indentStatus = 0\n } else if (state.lineIndent < parentIndent) {\n indentStatus = -1\n }\n }\n }\n\n if (indentStatus === 1) {\n while (true) {\n const ch = state.input.charCodeAt(state.position)\n const propertyState = snapshotState(state)\n\n // A duplicate property token after a line break can be the first key of\n // a nested block mapping, e.g. `!!map\\n !!str key: value`.\n if (atNewLine &&\n ((ch === 0x21/* ! */ && state.tag !== null) ||\n (ch === 0x26/* & */ && state.anchor !== null))) {\n break\n }\n\n if (!readTagProperty(state) && !readAnchorProperty(state)) {\n break\n }\n\n if (propertyStart === null) {\n propertyStart = propertyState\n }\n\n if (skipSeparationSpace(state, true, -1)) {\n atNewLine = true\n allowBlockCollections = allowBlockStyles\n\n if (state.lineIndent > parentIndent) {\n indentStatus = 1\n } else if (state.lineIndent === parentIndent) {\n indentStatus = 0\n } else if (state.lineIndent < parentIndent) {\n indentStatus = -1\n }\n } else {\n allowBlockCollections = false\n }\n }\n }\n\n if (allowBlockCollections) {\n allowBlockCollections = atNewLine || allowCompact\n }\n\n if (indentStatus === 1 || CONTEXT_BLOCK_OUT === nodeContext) {\n if (CONTEXT_FLOW_IN === nodeContext || CONTEXT_FLOW_OUT === nodeContext) {\n flowIndent = parentIndent\n } else {\n flowIndent = parentIndent + 1\n }\n\n blockIndent = state.position - state.lineStart\n\n if (indentStatus === 1) {\n if ((allowBlockCollections &&\n (readBlockSequence(state, blockIndent) || readBlockMapping(state, blockIndent, flowIndent))) ||\n readFlowCollection(state, flowIndent)) {\n hasContent = true\n } else {\n const ch = state.input.charCodeAt(state.position)\n\n if (propertyStart !== null && allowBlockStyles && !allowBlockCollections &&\n ch !== 0x7C/* | */ && ch !== 0x3E/* > */ &&\n tryReadBlockMappingFromProperty(\n state,\n propertyStart,\n propertyStart.position - propertyStart.lineStart,\n flowIndent\n )) {\n hasContent = true\n } else if ((allowBlockScalars && readBlockScalar(state, flowIndent)) ||\n readSingleQuotedScalar(state, flowIndent) ||\n readDoubleQuotedScalar(state, flowIndent)) {\n hasContent = true\n } else if (readAlias(state)) {\n hasContent = true\n\n if (state.tag !== null || state.anchor !== null) {\n throwError(state, 'alias node should not have any properties')\n }\n } else if (readPlainScalar(state, flowIndent, CONTEXT_FLOW_IN === nodeContext)) {\n hasContent = true\n\n if (state.tag === null) {\n state.tag = '?'\n }\n }\n\n if (state.anchor !== null) {\n storeAnchor(state, state.anchor, state.result)\n }\n }\n } else if (indentStatus === 0) {\n // Special case: block sequences are allowed to have same indentation level as the parent.\n // http://www.yaml.org/spec/1.2/spec.html#id2799784\n hasContent = allowBlockCollections && readBlockSequence(state, blockIndent)\n }\n }\n\n if (state.tag === null) {\n if (state.anchor !== null) {\n storeAnchor(state, state.anchor, state.result)\n }\n } else if (state.tag === '?') {\n // Implicit resolving is not allowed for non-scalar types, and '?'\n // non-specific tag is only automatically assigned to plain scalars.\n //\n // We only need to check kind conformity in case user explicitly assigns '?'\n // tag, for example like this: \"!<?> [0]\"\n //\n if (state.result !== null && state.kind !== 'scalar') {\n throwError(state, 'unacceptable node kind for !<?> tag; it should be \"scalar\", not \"' + state.kind + '\"')\n }\n\n for (let typeIndex = 0, typeQuantity = state.implicitTypes.length; typeIndex < typeQuantity; typeIndex += 1) {\n type = state.implicitTypes[typeIndex]\n\n if (type.resolve(state.result)) { // `state.result` updated in resolver if matched\n state.result = type.construct(state.result)\n state.tag = type.tag\n if (state.anchor !== null) {\n storeAnchor(state, state.anchor, state.result)\n }\n break\n }\n }\n } else if (state.tag !== '!') {\n if (_hasOwnProperty.call(state.typeMap[state.kind || 'fallback'], state.tag)) {\n type = state.typeMap[state.kind || 'fallback'][state.tag]\n } else {\n // looking for multi type\n type = null\n const typeList = state.typeMap.multi[state.kind || 'fallback']\n\n for (let typeIndex = 0, typeQuantity = typeList.length; typeIndex < typeQuantity; typeIndex += 1) {\n if (state.tag.slice(0, typeList[typeIndex].tag.length) === typeList[typeIndex].tag) {\n type = typeList[typeIndex]\n break\n }\n }\n }\n\n if (!type) {\n throwError(state, 'unknown tag !<' + state.tag + '>')\n }\n\n if (state.result !== null && type.kind !== state.kind) {\n throwError(state, 'unacceptable node kind for !<' + state.tag + '> tag; it should be \"' + type.kind + '\", not \"' + state.kind + '\"')\n }\n\n if (!type.resolve(state.result, state.tag)) { // `state.result` updated in resolver if matched\n throwError(state, 'cannot resolve a node with !<' + state.tag + '> explicit tag')\n } else {\n state.result = type.construct(state.result, state.tag)\n if (state.anchor !== null) {\n storeAnchor(state, state.anchor, state.result)\n }\n }\n }\n\n if (state.listener !== null) {\n state.listener('close', state)\n }\n\n state.depth -= 1\n return state.tag !== null || state.anchor !== null || hasContent\n}\n\nfunction readDocument (state) {\n const documentStart = state.position\n let hasDirectives = false\n let ch\n\n state.version = null\n state.checkLineBreaks = state.legacy\n state.tagMap = Object.create(null)\n state.anchorMap = Object.create(null)\n\n while ((ch = state.input.charCodeAt(state.position)) !== 0) {\n skipSeparationSpace(state, true, -1)\n\n ch = state.input.charCodeAt(state.position)\n\n if (state.lineIndent > 0 || ch !== 0x25/* % */) {\n break\n }\n\n hasDirectives = true\n ch = state.input.charCodeAt(++state.position)\n let _position = state.position\n\n while (ch !== 0 && !isWsOrEol(ch)) {\n ch = state.input.charCodeAt(++state.position)\n }\n\n const directiveName = state.input.slice(_position, state.position)\n const directiveArgs = []\n\n if (directiveName.length < 1) {\n throwError(state, 'directive name must not be less than one character in length')\n }\n\n while (ch !== 0) {\n while (isWhiteSpace(ch)) {\n ch = state.input.charCodeAt(++state.position)\n }\n\n if (ch === 0x23/* # */) {\n do { ch = state.input.charCodeAt(++state.position) }\n while (ch !== 0 && !isEol(ch))\n break\n }\n\n if (isEol(ch)) break\n\n _position = state.position\n\n while (ch !== 0 && !isWsOrEol(ch)) {\n ch = state.input.charCodeAt(++state.position)\n }\n\n directiveArgs.push(state.input.slice(_position, state.position))\n }\n\n if (ch !== 0) readLineBreak(state)\n\n if (_hasOwnProperty.call(directiveHandlers, directiveName)) {\n directiveHandlers[directiveName](state, directiveName, directiveArgs)\n } else {\n throwWarning(state, 'unknown document directive \"' + directiveName + '\"')\n }\n }\n\n skipSeparationSpace(state, true, -1)\n\n if (state.lineIndent === 0 &&\n state.input.charCodeAt(state.position) === 0x2D/* - */ &&\n state.input.charCodeAt(state.position + 1) === 0x2D/* - */ &&\n state.input.charCodeAt(state.position + 2) === 0x2D/* - */) {\n state.position += 3\n skipSeparationSpace(state, true, -1)\n } else if (hasDirectives) {\n throwError(state, 'directives end mark is expected')\n }\n\n composeNode(state, state.lineIndent - 1, CONTEXT_BLOCK_OUT, false, true)\n skipSeparationSpace(state, true, -1)\n\n if (state.checkLineBreaks &&\n PATTERN_NON_ASCII_LINE_BREAKS.test(state.input.slice(documentStart, state.position))) {\n throwWarning(state, 'non-ASCII line breaks are interpreted as content')\n }\n\n state.documents.push(state.result)\n\n if (state.position === state.lineStart && testDocumentSeparator(state)) {\n if (state.input.charCodeAt(state.position) === 0x2E/* . */) {\n state.position += 3\n skipSeparationSpace(state, true, -1)\n }\n return\n }\n\n if (state.position < (state.length - 1)) {\n throwError(state, 'end of the stream or a document separator is expected')\n }\n}\n\nfunction loadDocuments (input, options) {\n input = String(input)\n options = options || {}\n\n if (input.length !== 0) {\n // Add tailing `\\n` if not exists\n if (input.charCodeAt(input.length - 1) !== 0x0A/* LF */ &&\n input.charCodeAt(input.length - 1) !== 0x0D/* CR */) {\n input += '\\n'\n }\n\n // Strip BOM\n if (input.charCodeAt(0) === 0xFEFF) {\n input = input.slice(1)\n }\n }\n\n const state = new State(input, options)\n\n const nullpos = input.indexOf('\\0')\n\n if (nullpos !== -1) {\n state.position = nullpos\n throwError(state, 'null byte is not allowed in input')\n }\n\n // Use 0 as string terminator. That significantly simplifies bounds check.\n state.input += '\\0'\n\n while (state.input.charCodeAt(state.position) === 0x20/* Space */) {\n state.lineIndent += 1\n state.position += 1\n }\n\n while (state.position < (state.length - 1)) {\n readDocument(state)\n }\n\n return state.documents\n}\n\nfunction loadAll (input, iterator, options) {\n if (iterator !== null && typeof iterator === 'object' && typeof options === 'undefined') {\n options = iterator\n iterator = null\n }\n\n const documents = loadDocuments(input, options)\n\n if (typeof iterator !== 'function') {\n return documents\n }\n\n for (let index = 0, length = documents.length; index < length; index += 1) {\n iterator(documents[index])\n }\n}\n\nfunction load (input, options) {\n const documents = loadDocuments(input, options)\n\n if (documents.length === 0) {\n return undefined\n } else if (documents.length === 1) {\n return documents[0]\n }\n throw new YAMLException('expected a single document in the stream, but found more')\n}\n\nmodule.exports.loadAll = loadAll\nmodule.exports.load = load\n","'use strict'\n\nconst common = require('./common')\nconst YAMLException = require('./exception')\nconst DEFAULT_SCHEMA = require('./schema/default')\n\nconst _toString = Object.prototype.toString\nconst _hasOwnProperty = Object.prototype.hasOwnProperty\n\nconst CHAR_BOM = 0xFEFF\nconst CHAR_TAB = 0x09 /* Tab */\nconst CHAR_LINE_FEED = 0x0A /* LF */\nconst CHAR_CARRIAGE_RETURN = 0x0D /* CR */\nconst CHAR_SPACE = 0x20 /* Space */\nconst CHAR_EXCLAMATION = 0x21 /* ! */\nconst CHAR_DOUBLE_QUOTE = 0x22 /* \" */\nconst CHAR_SHARP = 0x23 /* # */\nconst CHAR_PERCENT = 0x25 /* % */\nconst CHAR_AMPERSAND = 0x26 /* & */\nconst CHAR_SINGLE_QUOTE = 0x27 /* ' */\nconst CHAR_ASTERISK = 0x2A /* * */\nconst CHAR_COMMA = 0x2C /* , */\nconst CHAR_MINUS = 0x2D /* - */\nconst CHAR_COLON = 0x3A /* : */\nconst CHAR_EQUALS = 0x3D /* = */\nconst CHAR_GREATER_THAN = 0x3E /* > */\nconst CHAR_QUESTION = 0x3F /* ? */\nconst CHAR_COMMERCIAL_AT = 0x40 /* @ */\nconst CHAR_LEFT_SQUARE_BRACKET = 0x5B /* [ */\nconst CHAR_RIGHT_SQUARE_BRACKET = 0x5D /* ] */\nconst CHAR_GRAVE_ACCENT = 0x60 /* ` */\nconst CHAR_LEFT_CURLY_BRACKET = 0x7B /* { */\nconst CHAR_VERTICAL_LINE = 0x7C /* | */\nconst CHAR_RIGHT_CURLY_BRACKET = 0x7D /* } */\n\nconst ESCAPE_SEQUENCES = {}\n\nESCAPE_SEQUENCES[0x00] = '\\\\0'\nESCAPE_SEQUENCES[0x07] = '\\\\a'\nESCAPE_SEQUENCES[0x08] = '\\\\b'\nESCAPE_SEQUENCES[0x09] = '\\\\t'\nESCAPE_SEQUENCES[0x0A] = '\\\\n'\nESCAPE_SEQUENCES[0x0B] = '\\\\v'\nESCAPE_SEQUENCES[0x0C] = '\\\\f'\nESCAPE_SEQUENCES[0x0D] = '\\\\r'\nESCAPE_SEQUENCES[0x1B] = '\\\\e'\nESCAPE_SEQUENCES[0x22] = '\\\\\"'\nESCAPE_SEQUENCES[0x5C] = '\\\\\\\\'\nESCAPE_SEQUENCES[0x85] = '\\\\N'\nESCAPE_SEQUENCES[0xA0] = '\\\\_'\nESCAPE_SEQUENCES[0x2028] = '\\\\L'\nESCAPE_SEQUENCES[0x2029] = '\\\\P'\n\nconst DEPRECATED_BOOLEANS_SYNTAX = [\n 'y', 'Y', 'yes', 'Yes', 'YES', 'on', 'On', 'ON',\n 'n', 'N', 'no', 'No', 'NO', 'off', 'Off', 'OFF'\n]\n\nconst DEPRECATED_BASE60_SYNTAX = /^[-+]?[0-9_]+(?::[0-9_]+)+(?:\\.[0-9_]*)?$/\n\nfunction compileStyleMap (schema, map) {\n if (map === null) return {}\n\n const result = {}\n const keys = Object.keys(map)\n\n for (let index = 0, length = keys.length; index < length; index += 1) {\n let tag = keys[index]\n let style = String(map[tag])\n\n if (tag.slice(0, 2) === '!!') {\n tag = 'tag:yaml.org,2002:' + tag.slice(2)\n }\n const type = schema.compiledTypeMap['fallback'][tag]\n\n if (type && _hasOwnProperty.call(type.styleAliases, style)) {\n style = type.styleAliases[style]\n }\n\n result[tag] = style\n }\n\n return result\n}\n\nfunction encodeHex (character) {\n let handle\n let length\n\n const string = character.toString(16).toUpperCase()\n\n if (character <= 0xFF) {\n handle = 'x'\n length = 2\n } else if (character <= 0xFFFF) {\n handle = 'u'\n length = 4\n } else if (character <= 0xFFFFFFFF) {\n handle = 'U'\n length = 8\n } else {\n throw new YAMLException('code point within a string may not be greater than 0xFFFFFFFF')\n }\n\n return '\\\\' + handle + common.repeat('0', length - string.length) + string\n}\n\nconst QUOTING_TYPE_SINGLE = 1\nconst QUOTING_TYPE_DOUBLE = 2\n\nfunction State (options) {\n this.schema = options['schema'] || DEFAULT_SCHEMA\n this.indent = Math.max(1, (options['indent'] || 2))\n this.noArrayIndent = options['noArrayIndent'] || false\n this.skipInvalid = options['skipInvalid'] || false\n this.flowLevel = (common.isNothing(options['flowLevel']) ? -1 : options['flowLevel'])\n this.styleMap = compileStyleMap(this.schema, options['styles'] || null)\n this.sortKeys = options['sortKeys'] || false\n this.lineWidth = options['lineWidth'] || 80\n this.noRefs = options['noRefs'] || false\n this.noCompatMode = options['noCompatMode'] || false\n this.condenseFlow = options['condenseFlow'] || false\n this.quotingType = options['quotingType'] === '\"' ? QUOTING_TYPE_DOUBLE : QUOTING_TYPE_SINGLE\n this.forceQuotes = options['forceQuotes'] || false\n this.replacer = typeof options['replacer'] === 'function' ? options['replacer'] : null\n\n this.implicitTypes = this.schema.compiledImplicit\n this.explicitTypes = this.schema.compiledExplicit\n\n this.tag = null\n this.result = ''\n\n this.duplicates = []\n this.usedDuplicates = null\n}\n\n// Indents every line in a string. Empty lines (\\n only) are not indented.\nfunction indentString (string, spaces) {\n const ind = common.repeat(' ', spaces)\n let position = 0\n let result = ''\n const length = string.length\n\n while (position < length) {\n let line\n const next = string.indexOf('\\n', position)\n if (next === -1) {\n line = string.slice(position)\n position = length\n } else {\n line = string.slice(position, next + 1)\n position = next + 1\n }\n\n if (line.length && line !== '\\n') result += ind\n\n result += line\n }\n\n return result\n}\n\nfunction generateNextLine (state, level) {\n return '\\n' + common.repeat(' ', state.indent * level)\n}\n\nfunction testImplicitResolving (state, str) {\n for (let index = 0, length = state.implicitTypes.length; index < length; index += 1) {\n const type = state.implicitTypes[index]\n\n if (type.resolve(str)) {\n return true\n }\n }\n\n return false\n}\n\n// [33] s-white ::= s-space | s-tab\nfunction isWhitespace (c) {\n return c === CHAR_SPACE || c === CHAR_TAB\n}\n\n// Returns true if the character can be printed without escaping.\n// From YAML 1.2: \"any allowed characters known to be non-printable\n// should also be escaped. [However,] This isn’t mandatory\"\n// Derived from nb-char - \\t - #x85 - #xA0 - #x2028 - #x2029.\nfunction isPrintable (c) {\n return (c >= 0x00020 && c <= 0x00007E) ||\n ((c >= 0x000A1 && c <= 0x00D7FF) && c !== 0x2028 && c !== 0x2029) ||\n ((c >= 0x0E000 && c <= 0x00FFFD) && c !== CHAR_BOM) ||\n (c >= 0x10000 && c <= 0x10FFFF)\n}\n\n// [34] ns-char ::= nb-char - s-white\n// [27] nb-char ::= c-printable - b-char - c-byte-order-mark\n// [26] b-char ::= b-line-feed | b-carriage-return\n// Including s-white (for some reason, examples doesn't match specs in this aspect)\n// ns-char ::= c-printable - b-line-feed - b-carriage-return - c-byte-order-mark\nfunction isNsCharOrWhitespace (c) {\n return isPrintable(c) &&\n c !== CHAR_BOM &&\n // - b-char\n c !== CHAR_CARRIAGE_RETURN &&\n c !== CHAR_LINE_FEED\n}\n\n// [127] ns-plain-safe(c) ::= c = flow-out ⇒ ns-plain-safe-out\n// c = flow-in ⇒ ns-plain-safe-in\n// c = block-key ⇒ ns-plain-safe-out\n// c = flow-key ⇒ ns-plain-safe-in\n// [128] ns-plain-safe-out ::= ns-char\n// [129] ns-plain-safe-in ::= ns-char - c-flow-indicator\n// [130] ns-plain-char(c) ::= ( ns-plain-safe(c) - “:” - “#” )\n// | ( /* An ns-char preceding */ “#” )\n// | ( “:” /* Followed by an ns-plain-safe(c) */ )\nfunction isPlainSafe (c, prev, inblock) {\n const cIsNsCharOrWhitespace = isNsCharOrWhitespace(c)\n const cIsNsChar = cIsNsCharOrWhitespace && !isWhitespace(c)\n return (\n (\n // ns-plain-safe\n inblock // c = flow-in\n ? cIsNsCharOrWhitespace\n : cIsNsCharOrWhitespace &&\n // - c-flow-indicator\n c !== CHAR_COMMA &&\n c !== CHAR_LEFT_SQUARE_BRACKET &&\n c !== CHAR_RIGHT_SQUARE_BRACKET &&\n c !== CHAR_LEFT_CURLY_BRACKET &&\n c !== CHAR_RIGHT_CURLY_BRACKET\n ) &&\n // ns-plain-char\n c !== CHAR_SHARP && // false on '#'\n !(prev === CHAR_COLON && !cIsNsChar)\n ) || // false on ': '\n (isNsCharOrWhitespace(prev) && !isWhitespace(prev) && c === CHAR_SHARP) || // change to true on '[^ ]#'\n (prev === CHAR_COLON && cIsNsChar) // change to true on ':[^ ]'\n}\n\n// Simplified test for values allowed as the first character in plain style.\nfunction isPlainSafeFirst (c) {\n // Uses a subset of ns-char - c-indicator\n // where ns-char = nb-char - s-white.\n // No support of ( ( “?” | “:” | “-” ) /* Followed by an ns-plain-safe(c)) */ ) part\n return isPrintable(c) &&\n c !== CHAR_BOM &&\n !isWhitespace(c) && // - s-white\n // - (c-indicator ::=\n // “-” | “?” | “:” | “,” | “[” | “]” | “{” | “}”\n c !== CHAR_MINUS &&\n c !== CHAR_QUESTION &&\n c !== CHAR_COLON &&\n c !== CHAR_COMMA &&\n c !== CHAR_LEFT_SQUARE_BRACKET &&\n c !== CHAR_RIGHT_SQUARE_BRACKET &&\n c !== CHAR_LEFT_CURLY_BRACKET &&\n c !== CHAR_RIGHT_CURLY_BRACKET &&\n // | “#” | “&” | “*” | “!” | “|” | “=” | “>” | “'” | “\"”\n c !== CHAR_SHARP &&\n c !== CHAR_AMPERSAND &&\n c !== CHAR_ASTERISK &&\n c !== CHAR_EXCLAMATION &&\n c !== CHAR_VERTICAL_LINE &&\n c !== CHAR_EQUALS &&\n c !== CHAR_GREATER_THAN &&\n c !== CHAR_SINGLE_QUOTE &&\n c !== CHAR_DOUBLE_QUOTE &&\n // | “%” | “@” | “`”)\n c !== CHAR_PERCENT &&\n c !== CHAR_COMMERCIAL_AT &&\n c !== CHAR_GRAVE_ACCENT\n}\n\n// Simplified test for values allowed as the last character in plain style.\nfunction isPlainSafeLast (c) {\n // just not whitespace or colon, it will be checked to be plain character later\n return !isWhitespace(c) && c !== CHAR_COLON\n}\n\n// Same as 'string'.codePointAt(pos), but works in older browsers.\nfunction codePointAt (string, pos) {\n const first = string.charCodeAt(pos)\n let second\n\n if (first >= 0xD800 && first <= 0xDBFF && pos + 1 < string.length) {\n second = string.charCodeAt(pos + 1)\n if (second >= 0xDC00 && second <= 0xDFFF) {\n // https://mathiasbynens.be/notes/javascript-encoding#surrogate-formulae\n return (first - 0xD800) * 0x400 + second - 0xDC00 + 0x10000\n }\n }\n return first\n}\n\n// Determines whether block indentation indicator is required.\nfunction needIndentIndicator (string) {\n const leadingSpaceRe = /^\\n* /\n return leadingSpaceRe.test(string)\n}\n\nconst STYLE_PLAIN = 1\nconst STYLE_SINGLE = 2\nconst STYLE_LITERAL = 3\nconst STYLE_FOLDED = 4\nconst STYLE_DOUBLE = 5\n\n// Determines which scalar styles are possible and returns the preferred style.\n// lineWidth = -1 => no limit.\n// Pre-conditions: str.length > 0.\n// Post-conditions:\n// STYLE_PLAIN or STYLE_SINGLE => no \\n are in the string.\n// STYLE_LITERAL => no lines are suitable for folding (or lineWidth is -1).\n// STYLE_FOLDED => a line > lineWidth and can be folded (and lineWidth != -1).\nfunction chooseScalarStyle (string, singleLineOnly, indentPerLevel, lineWidth,\n testAmbiguousType, quotingType, forceQuotes, inblock) {\n let i\n let char = 0\n let prevChar = null\n let hasLineBreak = false\n let hasFoldableLine = false // only checked if shouldTrackWidth\n const shouldTrackWidth = lineWidth !== -1\n let previousLineBreak = -1 // count the first line correctly\n let plain = isPlainSafeFirst(codePointAt(string, 0)) &&\n isPlainSafeLast(codePointAt(string, string.length - 1))\n\n if (singleLineOnly || forceQuotes) {\n // Case: no block styles.\n // Check for disallowed characters to rule out plain and single.\n for (i = 0; i < string.length; char >= 0x10000 ? i += 2 : i++) {\n char = codePointAt(string, i)\n if (!isPrintable(char)) {\n return STYLE_DOUBLE\n }\n plain = plain && isPlainSafe(char, prevChar, inblock)\n prevChar = char\n }\n } else {\n // Case: block styles permitted.\n for (i = 0; i < string.length; char >= 0x10000 ? i += 2 : i++) {\n char = codePointAt(string, i)\n if (char === CHAR_LINE_FEED) {\n hasLineBreak = true\n // Check if any line can be folded.\n if (shouldTrackWidth) {\n hasFoldableLine = hasFoldableLine ||\n // Foldable line = too long, and not more-indented.\n (i - previousLineBreak - 1 > lineWidth &&\n string[previousLineBreak + 1] !== ' ')\n previousLineBreak = i\n }\n } else if (!isPrintable(char)) {\n return STYLE_DOUBLE\n }\n plain = plain && isPlainSafe(char, prevChar, inblock)\n prevChar = char\n }\n // in case the end is missing a \\n\n hasFoldableLine = hasFoldableLine || (shouldTrackWidth &&\n (i - previousLineBreak - 1 > lineWidth &&\n string[previousLineBreak + 1] !== ' '))\n }\n // Although every style can represent \\n without escaping, prefer block styles\n // for multiline, since they're more readable and they don't add empty lines.\n // Also prefer folding a super-long line.\n if (!hasLineBreak && !hasFoldableLine) {\n // Strings interpretable as another type have to be quoted;\n // e.g. the string 'true' vs. the boolean true.\n if (plain && !forceQuotes && !testAmbiguousType(string)) {\n return STYLE_PLAIN\n }\n return quotingType === QUOTING_TYPE_DOUBLE ? STYLE_DOUBLE : STYLE_SINGLE\n }\n // Edge case: block indentation indicator can only have one digit.\n if (indentPerLevel > 9 && needIndentIndicator(string)) {\n return STYLE_DOUBLE\n }\n // At this point we know block styles are valid.\n // Prefer literal style unless we want to fold.\n if (!forceQuotes) {\n return hasFoldableLine ? STYLE_FOLDED : STYLE_LITERAL\n }\n return quotingType === QUOTING_TYPE_DOUBLE ? STYLE_DOUBLE : STYLE_SINGLE\n}\n\n// Note: line breaking/folding is implemented for only the folded style.\n// NB. We drop the last trailing newline (if any) of a returned block scalar\n// since the dumper adds its own newline. This always works:\n// • No ending newline => unaffected; already using strip \"-\" chomping.\n// • Ending newline => removed then restored.\n// Importantly, this keeps the \"+\" chomp indicator from gaining an extra line.\nfunction writeScalar (state, string, level, iskey, inblock) {\n state.dump = (function () {\n if (string.length === 0) {\n return state.quotingType === QUOTING_TYPE_DOUBLE ? '\"\"' : \"''\"\n }\n if (!state.noCompatMode) {\n if (DEPRECATED_BOOLEANS_SYNTAX.indexOf(string) !== -1 || DEPRECATED_BASE60_SYNTAX.test(string)) {\n return state.quotingType === QUOTING_TYPE_DOUBLE ? ('\"' + string + '\"') : (\"'\" + string + \"'\")\n }\n }\n\n const indent = state.indent * Math.max(1, level) // no 0-indent scalars\n // As indentation gets deeper, let the width decrease monotonically\n // to the lower bound min(state.lineWidth, 40).\n // Note that this implies\n // state.lineWidth ≤ 40 + state.indent: width is fixed at the lower bound.\n // state.lineWidth > 40 + state.indent: width decreases until the lower bound.\n // This behaves better than a constant minimum width which disallows narrower options,\n // or an indent threshold which causes the width to suddenly increase.\n const lineWidth = (state.lineWidth === -1)\n ? -1\n : Math.max(Math.min(state.lineWidth, 40), state.lineWidth - indent)\n\n // Without knowing if keys are implicit/explicit, assume implicit for safety.\n const singleLineOnly = iskey ||\n // No block styles in flow mode.\n (state.flowLevel > -1 && level >= state.flowLevel)\n function testAmbiguity (string) {\n return testImplicitResolving(state, string)\n }\n\n switch (chooseScalarStyle(string, singleLineOnly, state.indent, lineWidth,\n testAmbiguity, state.quotingType, state.forceQuotes && !iskey, inblock)) {\n case STYLE_PLAIN:\n return string\n case STYLE_SINGLE:\n return \"'\" + string.replace(/'/g, \"''\") + \"'\"\n case STYLE_LITERAL:\n return '|' + blockHeader(string, state.indent) +\n dropEndingNewline(indentString(string, indent))\n case STYLE_FOLDED:\n return '>' + blockHeader(string, state.indent) +\n dropEndingNewline(indentString(foldString(string, lineWidth), indent))\n case STYLE_DOUBLE:\n return '\"' + escapeString(string, lineWidth) + '\"'\n default:\n throw new YAMLException('impossible error: invalid scalar style')\n }\n }())\n}\n\n// Pre-conditions: string is valid for a block scalar, 1 <= indentPerLevel <= 9.\nfunction blockHeader (string, indentPerLevel) {\n const indentIndicator = needIndentIndicator(string) ? String(indentPerLevel) : ''\n\n // note the special case: the string '\\n' counts as a \"trailing\" empty line.\n const clip = string[string.length - 1] === '\\n'\n const keep = clip && (string[string.length - 2] === '\\n' || string === '\\n')\n const chomp = keep ? '+' : (clip ? '' : '-')\n\n return indentIndicator + chomp + '\\n'\n}\n\n// (See the note for writeScalar.)\nfunction dropEndingNewline (string) {\n return string[string.length - 1] === '\\n' ? string.slice(0, -1) : string\n}\n\n// Note: a long line without a suitable break point will exceed the width limit.\n// Pre-conditions: every char in str isPrintable, str.length > 0, width > 0.\nfunction foldString (string, width) {\n // In folded style, $k$ consecutive newlines output as $k+1$ newlines—\n // unless they're before or after a more-indented line, or at the very\n // beginning or end, in which case $k$ maps to $k$.\n // Therefore, parse each chunk as newline(s) followed by a content line.\n const lineRe = /(\\n+)([^\\n]*)/g\n\n // first line (possibly an empty line)\n let result = (function () {\n let nextLF = string.indexOf('\\n')\n nextLF = nextLF !== -1 ? nextLF : string.length\n lineRe.lastIndex = nextLF\n return foldLine(string.slice(0, nextLF), width)\n }())\n // If we haven't reached the first content line yet, don't add an extra \\n.\n let prevMoreIndented = string[0] === '\\n' || string[0] === ' '\n let moreIndented\n\n // rest of the lines\n let match\n while ((match = lineRe.exec(string))) {\n const prefix = match[1]\n const line = match[2]\n\n moreIndented = (line[0] === ' ')\n result += prefix +\n ((!prevMoreIndented && !moreIndented && line !== '') ? '\\n' : '') +\n foldLine(line, width)\n prevMoreIndented = moreIndented\n }\n\n return result\n}\n\n// Greedy line breaking.\n// Picks the longest line under the limit each time,\n// otherwise settles for the shortest line over the limit.\n// NB. More-indented lines *cannot* be folded, as that would add an extra \\n.\nfunction foldLine (line, width) {\n if (line === '' || line[0] === ' ') return line\n\n // Since a more-indented line adds a \\n, breaks can't be followed by a space.\n const breakRe = / [^ ]/g // note: the match index will always be <= length-2.\n let match\n // start is an inclusive index. end, curr, and next are exclusive.\n let start = 0\n let end\n let curr = 0\n let next = 0\n let result = ''\n\n // Invariants: 0 <= start <= length-1.\n // 0 <= curr <= next <= max(0, length-2). curr - start <= width.\n // Inside the loop:\n // A match implies length >= 2, so curr and next are <= length-2.\n while ((match = breakRe.exec(line))) {\n next = match.index\n // maintain invariant: curr - start <= width\n if (next - start > width) {\n end = (curr > start) ? curr : next // derive end <= length-2\n result += '\\n' + line.slice(start, end)\n // skip the space that was output as \\n\n start = end + 1 // derive start <= length-1\n }\n curr = next\n }\n\n // By the invariants, start <= length-1, so there is something left over.\n // It is either the whole string or a part starting from non-whitespace.\n result += '\\n'\n // Insert a break if the remainder is too long and there is a break available.\n if (line.length - start > width && curr > start) {\n result += line.slice(start, curr) + '\\n' + line.slice(curr + 1)\n } else {\n result += line.slice(start)\n }\n\n return result.slice(1) // drop extra \\n joiner\n}\n\n// Escapes a double-quoted string.\nfunction escapeString (string) {\n let result = ''\n let char = 0\n\n for (let i = 0; i < string.length; char >= 0x10000 ? i += 2 : i++) {\n char = codePointAt(string, i)\n const escapeSeq = ESCAPE_SEQUENCES[char]\n\n if (!escapeSeq && isPrintable(char)) {\n result += string[i]\n if (char >= 0x10000) result += string[i + 1]\n } else {\n result += escapeSeq || encodeHex(char)\n }\n }\n\n return result\n}\n\nfunction writeFlowSequence (state, level, object) {\n let _result = ''\n const _tag = state.tag\n\n for (let index = 0, length = object.length; index < length; index += 1) {\n let value = object[index]\n\n if (state.replacer) {\n value = state.replacer.call(object, String(index), value)\n }\n\n // Write only valid elements, put null instead of invalid elements.\n if (writeNode(state, level, value, false, false) ||\n (typeof value === 'undefined' &&\n writeNode(state, level, null, false, false))) {\n if (_result !== '') _result += ',' + (!state.condenseFlow ? ' ' : '')\n _result += state.dump\n }\n }\n\n state.tag = _tag\n state.dump = '[' + _result + ']'\n}\n\nfunction writeBlockSequence (state, level, object, compact) {\n let _result = ''\n const _tag = state.tag\n\n for (let index = 0, length = object.length; index < length; index += 1) {\n let value = object[index]\n\n if (state.replacer) {\n value = state.replacer.call(object, String(index), value)\n }\n\n // Write only valid elements, put null instead of invalid elements.\n if (writeNode(state, level + 1, value, true, true, false, true) ||\n (typeof value === 'undefined' &&\n writeNode(state, level + 1, null, true, true, false, true))) {\n if (!compact || _result !== '') {\n _result += generateNextLine(state, level)\n }\n\n if (state.dump && CHAR_LINE_FEED === state.dump.charCodeAt(0)) {\n _result += '-'\n } else {\n _result += '- '\n }\n\n _result += state.dump\n }\n }\n\n state.tag = _tag\n state.dump = _result || '[]' // Empty sequence if no valid values.\n}\n\nfunction writeFlowMapping (state, level, object) {\n let _result = ''\n const _tag = state.tag\n const objectKeyList = Object.keys(object)\n\n for (let index = 0, length = objectKeyList.length; index < length; index += 1) {\n let pairBuffer = ''\n if (_result !== '') pairBuffer += ', '\n\n if (state.condenseFlow) pairBuffer += '\"'\n\n const objectKey = objectKeyList[index]\n let objectValue = object[objectKey]\n\n if (state.replacer) {\n objectValue = state.replacer.call(object, objectKey, objectValue)\n }\n\n if (!writeNode(state, level, objectKey, false, false)) {\n continue // Skip this pair because of invalid key;\n }\n\n if (state.dump.length > 1024) pairBuffer += '? '\n\n pairBuffer += state.dump + (state.condenseFlow ? '\"' : '') + ':' + (state.condenseFlow ? '' : ' ')\n\n if (!writeNode(state, level, objectValue, false, false)) {\n continue // Skip this pair because of invalid value.\n }\n\n pairBuffer += state.dump\n\n // Both key and value are valid.\n _result += pairBuffer\n }\n\n state.tag = _tag\n state.dump = '{' + _result + '}'\n}\n\nfunction writeBlockMapping (state, level, object, compact) {\n let _result = ''\n const _tag = state.tag\n const objectKeyList = Object.keys(object)\n\n // Allow sorting keys so that the output file is deterministic\n if (state.sortKeys === true) {\n // Default sorting\n objectKeyList.sort()\n } else if (typeof state.sortKeys === 'function') {\n // Custom sort function\n objectKeyList.sort(state.sortKeys)\n } else if (state.sortKeys) {\n // Something is wrong\n throw new YAMLException('sortKeys must be a boolean or a function')\n }\n\n for (let index = 0, length = objectKeyList.length; index < length; index += 1) {\n let pairBuffer = ''\n\n if (!compact || _result !== '') {\n pairBuffer += generateNextLine(state, level)\n }\n\n const objectKey = objectKeyList[index]\n let objectValue = object[objectKey]\n\n if (state.replacer) {\n objectValue = state.replacer.call(object, objectKey, objectValue)\n }\n\n if (!writeNode(state, level + 1, objectKey, true, true, true)) {\n continue // Skip this pair because of invalid key.\n }\n\n const explicitPair = (state.tag !== null && state.tag !== '?') ||\n (state.dump && state.dump.length > 1024)\n\n if (explicitPair) {\n if (state.dump && CHAR_LINE_FEED === state.dump.charCodeAt(0)) {\n pairBuffer += '?'\n } else {\n pairBuffer += '? '\n }\n }\n\n pairBuffer += state.dump\n\n if (explicitPair) {\n pairBuffer += generateNextLine(state, level)\n }\n\n if (!writeNode(state, level + 1, objectValue, true, explicitPair)) {\n continue // Skip this pair because of invalid value.\n }\n\n if (state.dump && CHAR_LINE_FEED === state.dump.charCodeAt(0)) {\n pairBuffer += ':'\n } else {\n pairBuffer += ': '\n }\n\n pairBuffer += state.dump\n\n // Both key and value are valid.\n _result += pairBuffer\n }\n\n state.tag = _tag\n state.dump = _result || '{}' // Empty mapping if no valid pairs.\n}\n\nfunction detectType (state, object, explicit) {\n const typeList = explicit ? state.explicitTypes : state.implicitTypes\n\n for (let index = 0, length = typeList.length; index < length; index += 1) {\n const type = typeList[index]\n\n if ((type.instanceOf || type.predicate) &&\n (!type.instanceOf || ((typeof object === 'object') && (object instanceof type.instanceOf))) &&\n (!type.predicate || type.predicate(object))) {\n if (explicit) {\n if (type.multi && type.representName) {\n state.tag = type.representName(object)\n } else {\n state.tag = type.tag\n }\n } else {\n state.tag = '?'\n }\n\n if (type.represent) {\n const style = state.styleMap[type.tag] || type.defaultStyle\n\n let _result\n if (_toString.call(type.represent) === '[object Function]') {\n _result = type.represent(object, style)\n } else if (_hasOwnProperty.call(type.represent, style)) {\n _result = type.represent[style](object, style)\n } else {\n throw new YAMLException('!<' + type.tag + '> tag resolver accepts not \"' + style + '\" style')\n }\n\n state.dump = _result\n }\n\n return true\n }\n }\n\n return false\n}\n\n// Serializes `object` and writes it to global `result`.\n// Returns true on success, or false on invalid object.\n//\nfunction writeNode (state, level, object, block, compact, iskey, isblockseq) {\n state.tag = null\n state.dump = object\n\n if (!detectType(state, object, false)) {\n detectType(state, object, true)\n }\n\n const type = _toString.call(state.dump)\n const inblock = block\n\n if (block) {\n block = (state.flowLevel < 0 || state.flowLevel > level)\n }\n\n const objectOrArray = type === '[object Object]' || type === '[object Array]'\n let duplicateIndex\n let duplicate\n\n if (objectOrArray) {\n duplicateIndex = state.duplicates.indexOf(object)\n duplicate = duplicateIndex !== -1\n }\n\n if ((state.tag !== null && state.tag !== '?') || duplicate || (state.indent !== 2 && level > 0)) {\n compact = false\n }\n\n if (duplicate && state.usedDuplicates[duplicateIndex]) {\n state.dump = '*ref_' + duplicateIndex\n } else {\n if (objectOrArray && duplicate && !state.usedDuplicates[duplicateIndex]) {\n state.usedDuplicates[duplicateIndex] = true\n }\n if (type === '[object Object]') {\n if (block && (Object.keys(state.dump).length !== 0)) {\n writeBlockMapping(state, level, state.dump, compact)\n if (duplicate) {\n state.dump = '&ref_' + duplicateIndex + state.dump\n }\n } else {\n writeFlowMapping(state, level, state.dump)\n if (duplicate) {\n state.dump = '&ref_' + duplicateIndex + ' ' + state.dump\n }\n }\n } else if (type === '[object Array]') {\n if (block && (state.dump.length !== 0)) {\n if (state.noArrayIndent && !isblockseq && level > 0) {\n writeBlockSequence(state, level - 1, state.dump, compact)\n } else {\n writeBlockSequence(state, level, state.dump, compact)\n }\n if (duplicate) {\n state.dump = '&ref_' + duplicateIndex + state.dump\n }\n } else {\n writeFlowSequence(state, level, state.dump)\n if (duplicate) {\n state.dump = '&ref_' + duplicateIndex + ' ' + state.dump\n }\n }\n } else if (type === '[object String]') {\n if (state.tag !== '?') {\n writeScalar(state, state.dump, level, iskey, inblock)\n }\n } else if (type === '[object Undefined]') {\n return false\n } else {\n if (state.skipInvalid) return false\n throw new YAMLException('unacceptable kind of an object to dump ' + type)\n }\n\n if (state.tag !== null && state.tag !== '?') {\n // Need to encode all characters except those allowed by the spec:\n //\n // [35] ns-dec-digit ::= [#x30-#x39] /* 0-9 */\n // [36] ns-hex-digit ::= ns-dec-digit\n // | [#x41-#x46] /* A-F */ | [#x61-#x66] /* a-f */\n // [37] ns-ascii-letter ::= [#x41-#x5A] /* A-Z */ | [#x61-#x7A] /* a-z */\n // [38] ns-word-char ::= ns-dec-digit | ns-ascii-letter | “-”\n // [39] ns-uri-char ::= “%” ns-hex-digit ns-hex-digit | ns-word-char | “#”\n // | “;” | “/” | “?” | “:” | “@” | “&” | “=” | “+” | “$” | “,”\n // | “_” | “.” | “!” | “~” | “*” | “'” | “(” | “)” | “[” | “]”\n //\n // Also need to encode '!' because it has special meaning (end of tag prefix).\n //\n let tagStr = encodeURI(\n state.tag[0] === '!' ? state.tag.slice(1) : state.tag\n ).replace(/!/g, '%21')\n\n if (state.tag[0] === '!') {\n tagStr = '!' + tagStr\n } else if (tagStr.slice(0, 18) === 'tag:yaml.org,2002:') {\n tagStr = '!!' + tagStr.slice(18)\n } else {\n tagStr = '!<' + tagStr + '>'\n }\n\n state.dump = tagStr + ' ' + state.dump\n }\n }\n\n return true\n}\n\nfunction getDuplicateReferences (object, state) {\n const objects = []\n const duplicatesIndexes = []\n\n inspectNode(object, objects, duplicatesIndexes)\n\n const length = duplicatesIndexes.length\n for (let index = 0; index < length; index += 1) {\n state.duplicates.push(objects[duplicatesIndexes[index]])\n }\n state.usedDuplicates = new Array(length)\n}\n\nfunction inspectNode (object, objects, duplicatesIndexes) {\n if (object !== null && typeof object === 'object') {\n const index = objects.indexOf(object)\n if (index !== -1) {\n if (duplicatesIndexes.indexOf(index) === -1) {\n duplicatesIndexes.push(index)\n }\n } else {\n objects.push(object)\n\n if (Array.isArray(object)) {\n for (let i = 0, length = object.length; i < length; i += 1) {\n inspectNode(object[i], objects, duplicatesIndexes)\n }\n } else {\n const objectKeyList = Object.keys(object)\n\n for (let i = 0, length = objectKeyList.length; i < length; i += 1) {\n inspectNode(object[objectKeyList[i]], objects, duplicatesIndexes)\n }\n }\n }\n }\n}\n\nfunction dump (input, options) {\n options = options || {}\n\n const state = new State(options)\n\n if (!state.noRefs) getDuplicateReferences(input, state)\n\n let value = input\n\n if (state.replacer) {\n value = state.replacer.call({ '': value }, '', value)\n }\n\n if (writeNode(state, 0, value, true, true)) return state.dump + '\\n'\n\n return ''\n}\n\nmodule.exports.dump = dump\n","'use strict'\n\nconst loader = require('./lib/loader')\nconst dumper = require('./lib/dumper')\n\nfunction renamed (from, to) {\n return function () {\n throw new Error('Function yaml.' + from + ' is removed in js-yaml 4. ' +\n 'Use yaml.' + to + ' instead, which is now safe by default.')\n }\n}\n\nmodule.exports.Type = require('./lib/type')\nmodule.exports.Schema = require('./lib/schema')\nmodule.exports.FAILSAFE_SCHEMA = require('./lib/schema/failsafe')\nmodule.exports.JSON_SCHEMA = require('./lib/schema/json')\nmodule.exports.CORE_SCHEMA = require('./lib/schema/core')\nmodule.exports.DEFAULT_SCHEMA = require('./lib/schema/default')\nmodule.exports.load = loader.load\nmodule.exports.loadAll = loader.loadAll\nmodule.exports.dump = dumper.dump\nmodule.exports.YAMLException = require('./lib/exception')\n\n// Re-export all types in case user wants to create custom schema\nmodule.exports.types = {\n binary: require('./lib/type/binary'),\n float: require('./lib/type/float'),\n map: require('./lib/type/map'),\n null: require('./lib/type/null'),\n pairs: require('./lib/type/pairs'),\n set: require('./lib/type/set'),\n timestamp: require('./lib/type/timestamp'),\n bool: require('./lib/type/bool'),\n int: require('./lib/type/int'),\n merge: require('./lib/type/merge'),\n omap: require('./lib/type/omap'),\n seq: require('./lib/type/seq'),\n str: require('./lib/type/str')\n}\n\n// Removed functions from JS-YAML 3.0.x\nmodule.exports.safeLoad = renamed('safeLoad', 'load')\nmodule.exports.safeLoadAll = renamed('safeLoadAll', 'loadAll')\nmodule.exports.safeDump = renamed('safeDump', 'dump')\n","import yaml from '../index.js'\n\nconst {\n Type,\n Schema,\n FAILSAFE_SCHEMA,\n JSON_SCHEMA,\n CORE_SCHEMA,\n DEFAULT_SCHEMA,\n load,\n loadAll,\n dump,\n YAMLException,\n types,\n safeLoad,\n safeLoadAll,\n safeDump\n} = yaml\n\nexport {\n Type,\n Schema,\n FAILSAFE_SCHEMA,\n JSON_SCHEMA,\n CORE_SCHEMA,\n DEFAULT_SCHEMA,\n load,\n loadAll,\n dump,\n YAMLException,\n types,\n safeLoad,\n safeLoadAll,\n safeDump\n}\n\nexport default yaml\n"],"names":["exception","YAMLException","common","require$$0","line","map","Type","require$$1","schema","type","Schema","require$$2","require$$3","require$$4","require$$5","require$$6","DEFAULT_SCHEMA","loadAll","load","str","string","dump","loader","dumper","require$$7","require$$8","require$$9","require$$10","require$$11","require$$12","require$$13","require$$14","require$$15","require$$16","require$$17","require$$18","require$$19","require$$20","require$$21"],"mappings":"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"}
|