@cdklabs/cdk-ssm-documents 0.0.52 → 0.0.53
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 +12 -12
- package/lib/construct/synth-utils.js +1 -1
- package/lib/document/automation-document.js +1 -1
- package/lib/document/command-document.js +1 -1
- package/lib/document/document-builder.js +2 -2
- package/lib/document/ssm-document.js +1 -1
- package/lib/domain/aws-service.js +1 -1
- package/lib/domain/choice.js +1 -1
- package/lib/domain/data-type.js +1 -1
- package/lib/domain/enum/install-action.js +2 -2
- package/lib/domain/enum/install-uninstall-repair.js +2 -2
- package/lib/domain/enum/installation-type.js +2 -2
- package/lib/domain/enum/package-name.js +2 -2
- package/lib/domain/input.js +1 -1
- package/lib/domain/operation.js +1 -1
- package/lib/domain/platform.js +1 -1
- package/lib/domain/precondition.js +1 -1
- package/lib/incident-response/incident-response.js +3 -3
- package/lib/interface/approve-hook.js +2 -2
- package/lib/interface/auth-method.js +3 -3
- package/lib/interface/aws-invoker.js +2 -2
- package/lib/interface/downloadable-content.js +8 -8
- package/lib/interface/environment.js +3 -3
- package/lib/interface/execute-automation-hook/api-execute-automation-hook.js +1 -1
- package/lib/interface/observer.js +1 -1
- package/lib/interface/on-failure.js +6 -6
- package/lib/interface/pause-hook.js +2 -2
- package/lib/interface/run-command-hook/api-run-command-hook.js +1 -1
- package/lib/interface/run-document-location.js +2 -2
- package/lib/interface/sleep-hook.js +2 -2
- package/lib/interface/step-ref.js +1 -1
- package/lib/interface/variables/boolean-variable.js +2 -2
- package/lib/interface/variables/map-list-variable.js +2 -2
- package/lib/interface/variables/number-variable.js +2 -2
- package/lib/interface/variables/secure-string-variable.js +4 -4
- package/lib/interface/variables/string-list-variable.js +2 -2
- package/lib/interface/variables/string-map-variable.js +2 -2
- package/lib/interface/variables/string-variable.js +4 -4
- package/lib/interface/variables/variable.js +2 -2
- package/lib/interface/webhook.js +1 -1
- package/lib/parent-steps/automation/approve-step.js +1 -1
- package/lib/parent-steps/automation/assert-aws-resource-step.js +1 -1
- package/lib/parent-steps/automation/aws-api-step.js +1 -1
- package/lib/parent-steps/automation/branch-step.js +1 -1
- package/lib/parent-steps/automation/change-instance-state-step.js +3 -3
- package/lib/parent-steps/automation/copy-image-step.js +1 -1
- package/lib/parent-steps/automation/create-image-step.js +1 -1
- package/lib/parent-steps/automation/create-stack-step.js +3 -3
- package/lib/parent-steps/automation/create-tags-step.js +3 -3
- package/lib/parent-steps/automation/delete-image-step.js +1 -1
- package/lib/parent-steps/automation/delete-stack-step.js +1 -1
- package/lib/parent-steps/automation/execute-automation-step.js +1 -1
- package/lib/parent-steps/automation/execute-script-step.js +5 -5
- package/lib/parent-steps/automation/execute-state-machine-step.js +1 -1
- package/lib/parent-steps/automation/invoke-lambda-function-step.js +1 -1
- package/lib/parent-steps/automation/invoke-webhook-step.js +1 -1
- package/lib/parent-steps/automation/pause-step.js +1 -1
- package/lib/parent-steps/automation/run-command-step.js +3 -3
- package/lib/parent-steps/automation/run-instance-step.js +1 -1
- package/lib/parent-steps/automation/sleep-step.js +1 -1
- package/lib/parent-steps/automation/update-variable.js +1 -1
- package/lib/parent-steps/automation/wait-for-resource-step.js +1 -1
- package/lib/parent-steps/automation-step.js +1 -1
- package/lib/parent-steps/command/applications-step.js +1 -1
- package/lib/parent-steps/command/configure-docker-step.js +1 -1
- package/lib/parent-steps/command/configure-package-step.js +1 -1
- package/lib/parent-steps/command/domain-join-step.js +1 -1
- package/lib/parent-steps/command/download-content-step.js +1 -1
- package/lib/parent-steps/command/ps-module-step.js +1 -1
- package/lib/parent-steps/command/run-docker-action-step.js +1 -1
- package/lib/parent-steps/command/run-document-step.js +1 -1
- package/lib/parent-steps/command/run-powershell-script-step.js +1 -1
- package/lib/parent-steps/command/run-shell-script-step.js +1 -1
- package/lib/parent-steps/command/software-inventory-step.js +1 -1
- package/lib/parent-steps/command/update-agent-step.js +1 -1
- package/lib/parent-steps/command/update-ssm-agent-step.js +1 -1
- package/lib/parent-steps/command-step.js +1 -1
- package/lib/parent-steps/step.js +1 -1
- package/lib/patterns/automation/composite-step.js +2 -2
- package/lib/patterns/automation/reboot-instance-and-wait.js +1 -1
- package/lib/patterns/automation/string-step.js +1 -1
- package/lib/patterns/document/string-document.js +1 -1
- package/lib/patterns/document/timed-document.js +1 -1
- package/lib/samples/hello-world.js +1 -1
- package/lib/simulation/automation/approve-simulation.js +1 -1
- package/lib/simulation/automation/assert-aws-resource-simulation.js +1 -1
- package/lib/simulation/automation/automation-simulation-base.js +1 -1
- package/lib/simulation/automation/aws-api-simulation.js +1 -1
- package/lib/simulation/automation/branch-simulation.js +1 -1
- package/lib/simulation/automation/change-instance-state-simulation.js +1 -1
- package/lib/simulation/automation/copy-image-simulation.js +1 -1
- package/lib/simulation/automation/create-image-simulation.js +1 -1
- package/lib/simulation/automation/create-stack-simulation.js +1 -1
- package/lib/simulation/automation/create-tags-simulation.js +1 -1
- package/lib/simulation/automation/delete-image-simulation.js +1 -1
- package/lib/simulation/automation/delete-stack-simulation.js +1 -1
- package/lib/simulation/automation/execute-script-simulation.js +1 -1
- package/lib/simulation/automation/execute-state-machine-simulation.js +1 -1
- package/lib/simulation/automation/invoke-lambda-function-simulation.js +1 -1
- package/lib/simulation/automation/invoke-webhook-simulation.js +1 -1
- package/lib/simulation/automation/pause-simulation.js +1 -1
- package/lib/simulation/automation/run-command-simulation.js +1 -1
- package/lib/simulation/automation/run-instance-simulation.js +1 -1
- package/lib/simulation/automation/sleep-simulation.js +1 -1
- package/lib/simulation/automation/update-variable-simulation.js +1 -1
- package/lib/simulation/automation/wait-for-resource-simulation.js +1 -1
- package/lib/simulation/automation-step-simulation.js +1 -1
- package/lib/simulation/command/command-simulation-base.js +1 -1
- package/lib/simulation/command/ps-module-simulation.js +1 -1
- package/lib/simulation/command/run-powershell-script-simulation.js +1 -1
- package/lib/simulation/command/run-shell-script-simulation.js +1 -1
- package/lib/simulation/command-step-simulation.js +1 -1
- package/lib/simulation/document/automation-simulation.js +1 -1
- package/lib/simulation/document/command-simulation.js +1 -1
- package/lib/simulation/simulation.js +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/package.json +15 -15
- package/node_modules/@aws-sdk/client-cloudwatch/README.md +13 -2
- package/node_modules/@aws-sdk/client-cloudwatch/package.json +17 -17
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/index.js +6 -0
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/schemas/schemas_0.js +105 -62
- package/node_modules/@aws-sdk/client-ec2/dist-es/models/enums.js +5 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/schemas/schemas_0.js +51 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateFleetCommand.d.ts +8 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSecondarySubnetCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTrafficMirrorSessionCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFleetsCommand.d.ts +8 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceImageMetadataCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceTypesCommand.d.ts +5 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTrafficMirrorSessionsCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTrafficMirrorTargetsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetDeclarativePoliciesReportSummaryCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetDefaultCreditSpecificationCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyFleetCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyTrafficMirrorSessionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/enums.d.ts +13 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_1.d.ts +31 -43
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_2.d.ts +40 -10
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_3.d.ts +31 -166
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_4.d.ts +196 -88
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_5.d.ts +87 -118
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_6.d.ts +119 -160
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_7.d.ts +160 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/schemas/schemas_0.d.ts +3 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateSecondarySubnetCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTrafficMirrorSessionCommand.d.ts +2 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceImageMetadataCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTrafficMirrorSessionsCommand.d.ts +2 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTrafficMirrorTargetsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetDeclarativePoliciesReportSummaryCommand.d.ts +2 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetDefaultCreditSpecificationCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyTrafficMirrorSessionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/enums.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_1.d.ts +5 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_2.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_3.d.ts +8 -18
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_4.d.ts +27 -18
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_5.d.ts +17 -23
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_6.d.ts +23 -40
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_7.d.ts +38 -5
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/schemas/schemas_0.d.ts +3 -0
- package/node_modules/@aws-sdk/client-ec2/package.json +17 -17
- package/node_modules/@aws-sdk/client-iam/package.json +16 -16
- package/node_modules/@aws-sdk/client-lambda/package.json +16 -16
- package/node_modules/@aws-sdk/client-s3/package.json +21 -21
- package/node_modules/@aws-sdk/client-sns/package.json +15 -15
- package/node_modules/@aws-sdk/client-sqs/package.json +17 -17
- package/node_modules/@aws-sdk/client-ssm/package.json +15 -15
- package/node_modules/@aws-sdk/core/package.json +4 -4
- package/node_modules/@aws-sdk/credential-provider-env/package.json +2 -2
- package/node_modules/@aws-sdk/credential-provider-http/package.json +5 -5
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +9 -9
- package/node_modules/@aws-sdk/credential-provider-login/package.json +3 -3
- package/node_modules/@aws-sdk/credential-provider-node/package.json +7 -7
- package/node_modules/@aws-sdk/credential-provider-process/package.json +2 -2
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +4 -4
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +3 -3
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-cjs/index.js +19 -7
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/flexibleChecksumsResponseMiddleware.js +10 -2
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/getChecksumAlgorithmListForResponse.js +10 -6
- package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +4 -4
- package/node_modules/@aws-sdk/middleware-sdk-ec2/package.json +3 -3
- package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +5 -5
- package/node_modules/@aws-sdk/middleware-sdk-sqs/package.json +2 -2
- package/node_modules/@aws-sdk/middleware-user-agent/package.json +3 -3
- package/node_modules/@aws-sdk/nested-clients/package.json +14 -14
- package/node_modules/@aws-sdk/region-config-resolver/package.json +2 -2
- package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +2 -2
- package/node_modules/@aws-sdk/token-providers/package.json +3 -3
- package/node_modules/@aws-sdk/util-user-agent-node/package.json +2 -2
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/index.js +21 -11
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.js +5 -1
- package/node_modules/@aws-sdk/xml-builder/dist-es/escape-attribute.js +8 -1
- package/node_modules/@aws-sdk/xml-builder/dist-es/escape-element.js +13 -10
- package/node_modules/@aws-sdk/xml-builder/dist-es/xml-parser.js +5 -1
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/CHANGELOG.md +40 -4
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/README.md +8 -7
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxbuilder.min.js +1 -1
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxbuilder.min.js.map +1 -1
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxp.cjs +1 -1
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxp.d.cts +82 -20
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxp.min.js +1 -1
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxp.min.js.map +1 -1
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxparser.min.js +1 -1
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxparser.min.js.map +1 -1
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxvalidator.min.js.map +1 -1
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/pem.d.cts +148 -0
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/package.json +4 -3
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/fxp.d.ts +75 -19
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/pem.d.ts +135 -0
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/util.js +18 -0
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/xmlparser/DocTypeReader.js +37 -18
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/xmlparser/OptionsBuilder.js +76 -5
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/xmlparser/OrderedObjParser.js +298 -116
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/xmlparser/XMLParser.js +2 -2
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/xmlparser/node2json.js +65 -15
- package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/CHANGELOG.md +9 -2
- package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/package.json +1 -1
- package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/strnum.js +12 -6
- package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/tests/strnum_test.js +3 -0
- package/node_modules/@aws-sdk/xml-builder/node_modules/strnum/tests/temp.js +8 -0
- package/node_modules/@aws-sdk/xml-builder/package.json +2 -2
- package/node_modules/@smithy/config-resolver/dist-cjs/index.js +12 -0
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +5 -0
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +5 -0
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +6 -0
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +6 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +6 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +6 -0
- package/node_modules/@smithy/config-resolver/package.json +1 -1
- package/node_modules/@smithy/middleware-endpoint/dist-types/resolveEndpointConfig.d.ts +2 -2
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/resolveEndpointConfig.d.ts +2 -2
- package/node_modules/@smithy/middleware-endpoint/package.json +1 -1
- package/node_modules/@smithy/middleware-retry/package.json +2 -2
- package/node_modules/@smithy/smithy-client/package.json +2 -2
- package/node_modules/@smithy/util-defaults-mode-browser/package.json +2 -2
- package/node_modules/@smithy/util-defaults-mode-node/package.json +3 -3
- package/node_modules/{@aws-sdk/xml-builder/node_modules/path-expression-matcher → path-expression-matcher}/README.md +98 -13
- package/node_modules/path-expression-matcher/lib/pem.cjs +1 -0
- package/node_modules/{@aws-sdk/xml-builder/node_modules/path-expression-matcher → path-expression-matcher}/lib/pem.d.cts +188 -0
- package/node_modules/path-expression-matcher/lib/pem.min.js +2 -0
- package/node_modules/path-expression-matcher/lib/pem.min.js.map +1 -0
- package/node_modules/{@aws-sdk/xml-builder/node_modules/path-expression-matcher → path-expression-matcher}/package.json +2 -2
- package/node_modules/{@aws-sdk/xml-builder/node_modules/path-expression-matcher → path-expression-matcher}/src/Matcher.js +84 -0
- package/node_modules/{@aws-sdk/xml-builder/node_modules/path-expression-matcher → path-expression-matcher}/src/index.d.ts +152 -0
- package/package.json +10 -10
- package/node_modules/@aws-sdk/xml-builder/node_modules/path-expression-matcher/lib/pem.cjs +0 -1
- package/node_modules/@aws-sdk/xml-builder/node_modules/path-expression-matcher/lib/pem.min.js +0 -2
- package/node_modules/@aws-sdk/xml-builder/node_modules/path-expression-matcher/lib/pem.min.js.map +0 -1
- /package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/.github/SECURITY.md +0 -0
- /package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/.vscode/launch.json +0 -0
- /package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/LICENSE +0 -0
- /package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/README.md +0 -0
- /package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/algo.stflow +0 -0
- /package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/tests/infinity_test.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-builder → fast-xml-builder}/CHANGELOG.md +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-builder → fast-xml-builder}/LICENSE +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-builder → fast-xml-builder}/README.md +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-builder → fast-xml-builder}/lib/fxb.cjs +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-builder → fast-xml-builder}/lib/fxb.d.cts +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-builder → fast-xml-builder}/lib/fxb.min.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-builder → fast-xml-builder}/lib/fxb.min.js.map +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-builder → fast-xml-builder}/package.json +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-builder → fast-xml-builder}/src/fxb.d.ts +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-builder → fast-xml-builder}/src/fxb.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-builder → fast-xml-builder}/src/ignoreAttributes.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-builder → fast-xml-builder}/src/orderedJs2Xml.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-builder → fast-xml-builder}/src/prettifyJs2Xml.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/path-expression-matcher → path-expression-matcher}/LICENSE +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/path-expression-matcher → path-expression-matcher}/src/Expression.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/path-expression-matcher → path-expression-matcher}/src/index.js +0 -0
|
@@ -4,7 +4,6 @@ import {
|
|
|
4
4
|
AnalysisStatus,
|
|
5
5
|
ArchitectureType,
|
|
6
6
|
ArchitectureValues,
|
|
7
|
-
AutoAcceptSharedAttachmentsValue,
|
|
8
7
|
AutoPlacement,
|
|
9
8
|
BootModeValues,
|
|
10
9
|
CapacityReservationPreference,
|
|
@@ -12,13 +11,9 @@ import {
|
|
|
12
11
|
DefaultHttpTokensEnforcedState,
|
|
13
12
|
DefaultInstanceMetadataEndpointState,
|
|
14
13
|
DefaultInstanceMetadataTagsState,
|
|
15
|
-
DefaultRouteTableAssociationValue,
|
|
16
|
-
DefaultRouteTablePropagationValue,
|
|
17
14
|
DiskImageFormat,
|
|
18
|
-
DnsSupportValue,
|
|
19
15
|
EkPubKeyFormat,
|
|
20
16
|
EkPubKeyType,
|
|
21
|
-
EncryptionSupportOptionValue,
|
|
22
17
|
EndDateType,
|
|
23
18
|
ExcessCapacityTerminationPolicy,
|
|
24
19
|
FleetExcessCapacityTerminationPolicy,
|
|
@@ -70,7 +65,6 @@ import {
|
|
|
70
65
|
RouteServerPersistRoutesAction,
|
|
71
66
|
RouteServerRouteInstallationStatus,
|
|
72
67
|
RouteServerRouteStatus,
|
|
73
|
-
SecurityGroupReferencingSupportValue,
|
|
74
68
|
SelfServicePortal,
|
|
75
69
|
ShutdownBehavior,
|
|
76
70
|
SnapshotAttributeName,
|
|
@@ -82,7 +76,6 @@ import {
|
|
|
82
76
|
TrafficMirrorFilterRuleField,
|
|
83
77
|
TrafficMirrorNetworkService,
|
|
84
78
|
TrafficMirrorRuleAction,
|
|
85
|
-
TrafficMirrorSessionField,
|
|
86
79
|
TransitGatewayAssociationState,
|
|
87
80
|
TransitGatewayAttachmentResourceType,
|
|
88
81
|
TransitGatewayPropagationState,
|
|
@@ -91,7 +84,6 @@ import {
|
|
|
91
84
|
VirtualizationType,
|
|
92
85
|
VolumeState,
|
|
93
86
|
VolumeType,
|
|
94
|
-
VpnEcmpSupportValue,
|
|
95
87
|
} from "./enums";
|
|
96
88
|
import {
|
|
97
89
|
AddressAttribute,
|
|
@@ -145,7 +137,6 @@ import {
|
|
|
145
137
|
TrafficMirrorFilter,
|
|
146
138
|
TrafficMirrorFilterRule,
|
|
147
139
|
TrafficMirrorPortRangeRequest,
|
|
148
|
-
TrafficMirrorSession,
|
|
149
140
|
SubnetCidrReservation,
|
|
150
141
|
TransitGatewayMeteringPolicyEntry,
|
|
151
142
|
TransitGatewayPrefixListReference,
|
|
@@ -168,7 +159,29 @@ import {
|
|
|
168
159
|
LaunchTemplateConfig,
|
|
169
160
|
ReservedInstancesConfiguration,
|
|
170
161
|
} from "./models_4";
|
|
171
|
-
import { RouteServerPropagation } from "./models_5";
|
|
162
|
+
import { RegionalSummary, RouteServerPropagation } from "./models_5";
|
|
163
|
+
export interface AttributeSummary {
|
|
164
|
+
AttributeName?: string | undefined;
|
|
165
|
+
MostFrequentValue?: string | undefined;
|
|
166
|
+
NumberOfMatchedAccounts?: number | undefined;
|
|
167
|
+
NumberOfUnmatchedAccounts?: number | undefined;
|
|
168
|
+
RegionalSummaries?: RegionalSummary[] | undefined;
|
|
169
|
+
}
|
|
170
|
+
export interface GetDeclarativePoliciesReportSummaryResult {
|
|
171
|
+
ReportId?: string | undefined;
|
|
172
|
+
S3Bucket?: string | undefined;
|
|
173
|
+
S3Prefix?: string | undefined;
|
|
174
|
+
TargetId?: string | undefined;
|
|
175
|
+
StartTime?: Date | undefined;
|
|
176
|
+
EndTime?: Date | undefined;
|
|
177
|
+
NumberOfAccounts?: number | undefined;
|
|
178
|
+
NumberOfFailedAccounts?: number | undefined;
|
|
179
|
+
AttributeSummaries?: AttributeSummary[] | undefined;
|
|
180
|
+
}
|
|
181
|
+
export interface GetDefaultCreditSpecificationRequest {
|
|
182
|
+
DryRun?: boolean | undefined;
|
|
183
|
+
InstanceFamily: UnlimitedSupportedInstanceFamily | undefined;
|
|
184
|
+
}
|
|
172
185
|
export interface InstanceFamilyCreditSpecification {
|
|
173
186
|
InstanceFamily?: UnlimitedSupportedInstanceFamily | undefined;
|
|
174
187
|
CpuCredits?: string | undefined;
|
|
@@ -1894,33 +1907,3 @@ export interface ModifyTrafficMirrorFilterRuleRequest {
|
|
|
1894
1907
|
export interface ModifyTrafficMirrorFilterRuleResult {
|
|
1895
1908
|
TrafficMirrorFilterRule?: TrafficMirrorFilterRule | undefined;
|
|
1896
1909
|
}
|
|
1897
|
-
export interface ModifyTrafficMirrorSessionRequest {
|
|
1898
|
-
TrafficMirrorSessionId: string | undefined;
|
|
1899
|
-
TrafficMirrorTargetId?: string | undefined;
|
|
1900
|
-
TrafficMirrorFilterId?: string | undefined;
|
|
1901
|
-
PacketLength?: number | undefined;
|
|
1902
|
-
SessionNumber?: number | undefined;
|
|
1903
|
-
VirtualNetworkId?: number | undefined;
|
|
1904
|
-
Description?: string | undefined;
|
|
1905
|
-
RemoveFields?: TrafficMirrorSessionField[] | undefined;
|
|
1906
|
-
DryRun?: boolean | undefined;
|
|
1907
|
-
}
|
|
1908
|
-
export interface ModifyTrafficMirrorSessionResult {
|
|
1909
|
-
TrafficMirrorSession?: TrafficMirrorSession | undefined;
|
|
1910
|
-
}
|
|
1911
|
-
export interface ModifyTransitGatewayOptions {
|
|
1912
|
-
AddTransitGatewayCidrBlocks?: string[] | undefined;
|
|
1913
|
-
RemoveTransitGatewayCidrBlocks?: string[] | undefined;
|
|
1914
|
-
VpnEcmpSupport?: VpnEcmpSupportValue | undefined;
|
|
1915
|
-
DnsSupport?: DnsSupportValue | undefined;
|
|
1916
|
-
SecurityGroupReferencingSupport?:
|
|
1917
|
-
| SecurityGroupReferencingSupportValue
|
|
1918
|
-
| undefined;
|
|
1919
|
-
AutoAcceptSharedAttachments?: AutoAcceptSharedAttachmentsValue | undefined;
|
|
1920
|
-
DefaultRouteTableAssociation?: DefaultRouteTableAssociationValue | undefined;
|
|
1921
|
-
AssociationDefaultRouteTableId?: string | undefined;
|
|
1922
|
-
DefaultRouteTablePropagation?: DefaultRouteTablePropagationValue | undefined;
|
|
1923
|
-
PropagationDefaultRouteTableId?: string | undefined;
|
|
1924
|
-
AmazonSideAsn?: number | undefined;
|
|
1925
|
-
EncryptionSupport?: EncryptionSupportOptionValue | undefined;
|
|
1926
|
-
}
|
|
@@ -4,11 +4,15 @@ import {
|
|
|
4
4
|
AmdSevSnpSpecification,
|
|
5
5
|
ApplianceModeSupportValue,
|
|
6
6
|
ArchitectureValues,
|
|
7
|
+
AutoAcceptSharedAttachmentsValue,
|
|
7
8
|
BootModeValues,
|
|
8
9
|
CapacityManagerStatus,
|
|
9
10
|
CapacityReservationInstancePlatform,
|
|
10
11
|
CurrencyCodeValues,
|
|
12
|
+
DefaultRouteTableAssociationValue,
|
|
13
|
+
DefaultRouteTablePropagationValue,
|
|
11
14
|
DnsSupportValue,
|
|
15
|
+
EncryptionSupportOptionValue,
|
|
12
16
|
HostnameType,
|
|
13
17
|
HttpTokensState,
|
|
14
18
|
ImdsSupportValues,
|
|
@@ -43,6 +47,7 @@ import {
|
|
|
43
47
|
SSEType,
|
|
44
48
|
Status,
|
|
45
49
|
TpmSupportValues,
|
|
50
|
+
TrafficMirrorSessionField,
|
|
46
51
|
TransitGatewayAttachmentResourceType,
|
|
47
52
|
VerificationMethod,
|
|
48
53
|
VerifiedAccessEndpointProtocol,
|
|
@@ -50,6 +55,7 @@ import {
|
|
|
50
55
|
VpcEncryptionControlExclusionStateInput,
|
|
51
56
|
VpcEncryptionControlMode,
|
|
52
57
|
VpcTenancy,
|
|
58
|
+
VpnEcmpSupportValue,
|
|
53
59
|
} from "./enums";
|
|
54
60
|
import {
|
|
55
61
|
AddressAttribute,
|
|
@@ -86,6 +92,7 @@ import {
|
|
|
86
92
|
} from "./models_1";
|
|
87
93
|
import {
|
|
88
94
|
DnsOptionsSpecification,
|
|
95
|
+
TrafficMirrorSession,
|
|
89
96
|
TransitGateway,
|
|
90
97
|
TransitGatewayMeteringPolicy,
|
|
91
98
|
TransitGatewayPrefixListReference,
|
|
@@ -133,11 +140,37 @@ import {
|
|
|
133
140
|
VolumeModification,
|
|
134
141
|
VpcBlockPublicAccessOptions,
|
|
135
142
|
} from "./models_5";
|
|
136
|
-
import {
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
143
|
+
import { CapacityReservationSpecification, Purchase } from "./models_6";
|
|
144
|
+
export interface ModifyTrafficMirrorSessionRequest {
|
|
145
|
+
TrafficMirrorSessionId: string | undefined;
|
|
146
|
+
TrafficMirrorTargetId?: string | undefined;
|
|
147
|
+
TrafficMirrorFilterId?: string | undefined;
|
|
148
|
+
PacketLength?: number | undefined;
|
|
149
|
+
SessionNumber?: number | undefined;
|
|
150
|
+
VirtualNetworkId?: number | undefined;
|
|
151
|
+
Description?: string | undefined;
|
|
152
|
+
RemoveFields?: TrafficMirrorSessionField[] | undefined;
|
|
153
|
+
DryRun?: boolean | undefined;
|
|
154
|
+
}
|
|
155
|
+
export interface ModifyTrafficMirrorSessionResult {
|
|
156
|
+
TrafficMirrorSession?: TrafficMirrorSession | undefined;
|
|
157
|
+
}
|
|
158
|
+
export interface ModifyTransitGatewayOptions {
|
|
159
|
+
AddTransitGatewayCidrBlocks?: string[] | undefined;
|
|
160
|
+
RemoveTransitGatewayCidrBlocks?: string[] | undefined;
|
|
161
|
+
VpnEcmpSupport?: VpnEcmpSupportValue | undefined;
|
|
162
|
+
DnsSupport?: DnsSupportValue | undefined;
|
|
163
|
+
SecurityGroupReferencingSupport?:
|
|
164
|
+
| SecurityGroupReferencingSupportValue
|
|
165
|
+
| undefined;
|
|
166
|
+
AutoAcceptSharedAttachments?: AutoAcceptSharedAttachmentsValue | undefined;
|
|
167
|
+
DefaultRouteTableAssociation?: DefaultRouteTableAssociationValue | undefined;
|
|
168
|
+
AssociationDefaultRouteTableId?: string | undefined;
|
|
169
|
+
DefaultRouteTablePropagation?: DefaultRouteTablePropagationValue | undefined;
|
|
170
|
+
PropagationDefaultRouteTableId?: string | undefined;
|
|
171
|
+
AmazonSideAsn?: number | undefined;
|
|
172
|
+
EncryptionSupport?: EncryptionSupportOptionValue | undefined;
|
|
173
|
+
}
|
|
141
174
|
export interface ModifyTransitGatewayRequest {
|
|
142
175
|
TransitGatewayId: string | undefined;
|
|
143
176
|
Description?: string | undefined;
|
|
@@ -482,6 +482,7 @@ export declare var CustomerGateway$: StaticStructureSchema;
|
|
|
482
482
|
export declare var DataQuery$: StaticStructureSchema;
|
|
483
483
|
export declare var DataResponse$: StaticStructureSchema;
|
|
484
484
|
export declare var DeclarativePoliciesReport$: StaticStructureSchema;
|
|
485
|
+
export declare var DefaultConnectionTrackingConfiguration$: StaticStructureSchema;
|
|
485
486
|
export declare var DeleteCapacityManagerDataExportRequest$: StaticStructureSchema;
|
|
486
487
|
export declare var DeleteCapacityManagerDataExportResult$: StaticStructureSchema;
|
|
487
488
|
export declare var DeleteCarrierGatewayRequest$: StaticStructureSchema;
|
|
@@ -2022,6 +2023,8 @@ export declare var RequestSpotLaunchSpecification$: StaticStructureSchema;
|
|
|
2022
2023
|
export declare var Reservation$: StaticStructureSchema;
|
|
2023
2024
|
export declare var ReservationFleetInstanceSpecification$: StaticStructureSchema;
|
|
2024
2025
|
export declare var ReservationValue$: StaticStructureSchema;
|
|
2026
|
+
export declare var ReservedCapacityOptions$: StaticStructureSchema;
|
|
2027
|
+
export declare var ReservedCapacityOptionsRequest$: StaticStructureSchema;
|
|
2025
2028
|
export declare var ReservedInstanceLimitPrice$: StaticStructureSchema;
|
|
2026
2029
|
export declare var ReservedInstanceReservationValue$: StaticStructureSchema;
|
|
2027
2030
|
export declare var ReservedInstances$: StaticStructureSchema;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ec2",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ec2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1014.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-ec2",
|
|
@@ -25,39 +25,39 @@
|
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
27
27
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
28
|
-
"@aws-sdk/core": "^3.973.
|
|
29
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
28
|
+
"@aws-sdk/core": "^3.973.23",
|
|
29
|
+
"@aws-sdk/credential-provider-node": "^3.972.24",
|
|
30
30
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
31
31
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
32
32
|
"@aws-sdk/middleware-recursion-detection": "^3.972.8",
|
|
33
|
-
"@aws-sdk/middleware-sdk-ec2": "^3.972.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
35
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
33
|
+
"@aws-sdk/middleware-sdk-ec2": "^3.972.17",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "^3.972.24",
|
|
35
|
+
"@aws-sdk/region-config-resolver": "^3.972.9",
|
|
36
36
|
"@aws-sdk/types": "^3.973.6",
|
|
37
37
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
38
38
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
39
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
40
|
-
"@smithy/config-resolver": "^4.4.
|
|
41
|
-
"@smithy/core": "^3.23.
|
|
39
|
+
"@aws-sdk/util-user-agent-node": "^3.973.10",
|
|
40
|
+
"@smithy/config-resolver": "^4.4.13",
|
|
41
|
+
"@smithy/core": "^3.23.12",
|
|
42
42
|
"@smithy/fetch-http-handler": "^5.3.15",
|
|
43
43
|
"@smithy/hash-node": "^4.2.12",
|
|
44
44
|
"@smithy/invalid-dependency": "^4.2.12",
|
|
45
45
|
"@smithy/middleware-content-length": "^4.2.12",
|
|
46
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
47
|
-
"@smithy/middleware-retry": "^4.4.
|
|
48
|
-
"@smithy/middleware-serde": "^4.2.
|
|
46
|
+
"@smithy/middleware-endpoint": "^4.4.27",
|
|
47
|
+
"@smithy/middleware-retry": "^4.4.44",
|
|
48
|
+
"@smithy/middleware-serde": "^4.2.15",
|
|
49
49
|
"@smithy/middleware-stack": "^4.2.12",
|
|
50
50
|
"@smithy/node-config-provider": "^4.3.12",
|
|
51
|
-
"@smithy/node-http-handler": "^4.
|
|
51
|
+
"@smithy/node-http-handler": "^4.5.0",
|
|
52
52
|
"@smithy/protocol-http": "^5.3.12",
|
|
53
|
-
"@smithy/smithy-client": "^4.12.
|
|
53
|
+
"@smithy/smithy-client": "^4.12.7",
|
|
54
54
|
"@smithy/types": "^4.13.1",
|
|
55
55
|
"@smithy/url-parser": "^4.2.12",
|
|
56
56
|
"@smithy/util-base64": "^4.3.2",
|
|
57
57
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
58
58
|
"@smithy/util-body-length-node": "^4.2.3",
|
|
59
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
60
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
59
|
+
"@smithy/util-defaults-mode-browser": "^4.3.43",
|
|
60
|
+
"@smithy/util-defaults-mode-node": "^4.2.47",
|
|
61
61
|
"@smithy/util-endpoints": "^3.3.3",
|
|
62
62
|
"@smithy/util-middleware": "^4.2.12",
|
|
63
63
|
"@smithy/util-retry": "^4.2.12",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"tslib": "^2.6.2"
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
69
|
-
"@smithy/snapshot-testing": "^2.0.
|
|
69
|
+
"@smithy/snapshot-testing": "^2.0.3",
|
|
70
70
|
"@tsconfig/node20": "20.1.8",
|
|
71
71
|
"@types/node": "^20.14.8",
|
|
72
72
|
"concurrently": "7.0.0",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iam",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iam Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1014.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-iam",
|
|
@@ -27,38 +27,38 @@
|
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
29
29
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
30
|
-
"@aws-sdk/core": "^3.973.
|
|
31
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
30
|
+
"@aws-sdk/core": "^3.973.23",
|
|
31
|
+
"@aws-sdk/credential-provider-node": "^3.972.24",
|
|
32
32
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
33
33
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "^3.972.8",
|
|
35
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
36
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
35
|
+
"@aws-sdk/middleware-user-agent": "^3.972.24",
|
|
36
|
+
"@aws-sdk/region-config-resolver": "^3.972.9",
|
|
37
37
|
"@aws-sdk/types": "^3.973.6",
|
|
38
38
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
39
39
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
40
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
41
|
-
"@smithy/config-resolver": "^4.4.
|
|
42
|
-
"@smithy/core": "^3.23.
|
|
40
|
+
"@aws-sdk/util-user-agent-node": "^3.973.10",
|
|
41
|
+
"@smithy/config-resolver": "^4.4.13",
|
|
42
|
+
"@smithy/core": "^3.23.12",
|
|
43
43
|
"@smithy/fetch-http-handler": "^5.3.15",
|
|
44
44
|
"@smithy/hash-node": "^4.2.12",
|
|
45
45
|
"@smithy/invalid-dependency": "^4.2.12",
|
|
46
46
|
"@smithy/middleware-content-length": "^4.2.12",
|
|
47
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
48
|
-
"@smithy/middleware-retry": "^4.4.
|
|
49
|
-
"@smithy/middleware-serde": "^4.2.
|
|
47
|
+
"@smithy/middleware-endpoint": "^4.4.27",
|
|
48
|
+
"@smithy/middleware-retry": "^4.4.44",
|
|
49
|
+
"@smithy/middleware-serde": "^4.2.15",
|
|
50
50
|
"@smithy/middleware-stack": "^4.2.12",
|
|
51
51
|
"@smithy/node-config-provider": "^4.3.12",
|
|
52
|
-
"@smithy/node-http-handler": "^4.
|
|
52
|
+
"@smithy/node-http-handler": "^4.5.0",
|
|
53
53
|
"@smithy/protocol-http": "^5.3.12",
|
|
54
|
-
"@smithy/smithy-client": "^4.12.
|
|
54
|
+
"@smithy/smithy-client": "^4.12.7",
|
|
55
55
|
"@smithy/types": "^4.13.1",
|
|
56
56
|
"@smithy/url-parser": "^4.2.12",
|
|
57
57
|
"@smithy/util-base64": "^4.3.2",
|
|
58
58
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
59
59
|
"@smithy/util-body-length-node": "^4.2.3",
|
|
60
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
61
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
60
|
+
"@smithy/util-defaults-mode-browser": "^4.3.43",
|
|
61
|
+
"@smithy/util-defaults-mode-node": "^4.2.47",
|
|
62
62
|
"@smithy/util-endpoints": "^3.3.3",
|
|
63
63
|
"@smithy/util-middleware": "^4.2.12",
|
|
64
64
|
"@smithy/util-retry": "^4.2.12",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"tslib": "^2.6.2"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
|
-
"@smithy/snapshot-testing": "^2.0.
|
|
70
|
+
"@smithy/snapshot-testing": "^2.0.3",
|
|
71
71
|
"@tsconfig/node20": "20.1.8",
|
|
72
72
|
"@types/node": "^20.14.8",
|
|
73
73
|
"concurrently": "7.0.0",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-lambda",
|
|
3
3
|
"description": "AWS SDK for JavaScript Lambda Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1014.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-lambda",
|
|
@@ -23,19 +23,19 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
25
25
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
26
|
-
"@aws-sdk/core": "^3.973.
|
|
27
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
+
"@aws-sdk/core": "^3.973.23",
|
|
27
|
+
"@aws-sdk/credential-provider-node": "^3.972.24",
|
|
28
28
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
29
29
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
30
30
|
"@aws-sdk/middleware-recursion-detection": "^3.972.8",
|
|
31
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
32
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
31
|
+
"@aws-sdk/middleware-user-agent": "^3.972.24",
|
|
32
|
+
"@aws-sdk/region-config-resolver": "^3.972.9",
|
|
33
33
|
"@aws-sdk/types": "^3.973.6",
|
|
34
34
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
35
35
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
36
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
37
|
-
"@smithy/config-resolver": "^4.4.
|
|
38
|
-
"@smithy/core": "^3.23.
|
|
36
|
+
"@aws-sdk/util-user-agent-node": "^3.973.10",
|
|
37
|
+
"@smithy/config-resolver": "^4.4.13",
|
|
38
|
+
"@smithy/core": "^3.23.12",
|
|
39
39
|
"@smithy/eventstream-serde-browser": "^4.2.12",
|
|
40
40
|
"@smithy/eventstream-serde-config-resolver": "^4.3.12",
|
|
41
41
|
"@smithy/eventstream-serde-node": "^4.2.12",
|
|
@@ -43,25 +43,25 @@
|
|
|
43
43
|
"@smithy/hash-node": "^4.2.12",
|
|
44
44
|
"@smithy/invalid-dependency": "^4.2.12",
|
|
45
45
|
"@smithy/middleware-content-length": "^4.2.12",
|
|
46
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
47
|
-
"@smithy/middleware-retry": "^4.4.
|
|
48
|
-
"@smithy/middleware-serde": "^4.2.
|
|
46
|
+
"@smithy/middleware-endpoint": "^4.4.27",
|
|
47
|
+
"@smithy/middleware-retry": "^4.4.44",
|
|
48
|
+
"@smithy/middleware-serde": "^4.2.15",
|
|
49
49
|
"@smithy/middleware-stack": "^4.2.12",
|
|
50
50
|
"@smithy/node-config-provider": "^4.3.12",
|
|
51
|
-
"@smithy/node-http-handler": "^4.
|
|
51
|
+
"@smithy/node-http-handler": "^4.5.0",
|
|
52
52
|
"@smithy/protocol-http": "^5.3.12",
|
|
53
|
-
"@smithy/smithy-client": "^4.12.
|
|
53
|
+
"@smithy/smithy-client": "^4.12.7",
|
|
54
54
|
"@smithy/types": "^4.13.1",
|
|
55
55
|
"@smithy/url-parser": "^4.2.12",
|
|
56
56
|
"@smithy/util-base64": "^4.3.2",
|
|
57
57
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
58
58
|
"@smithy/util-body-length-node": "^4.2.3",
|
|
59
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
60
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
59
|
+
"@smithy/util-defaults-mode-browser": "^4.3.43",
|
|
60
|
+
"@smithy/util-defaults-mode-node": "^4.2.47",
|
|
61
61
|
"@smithy/util-endpoints": "^3.3.3",
|
|
62
62
|
"@smithy/util-middleware": "^4.2.12",
|
|
63
63
|
"@smithy/util-retry": "^4.2.12",
|
|
64
|
-
"@smithy/util-stream": "^4.5.
|
|
64
|
+
"@smithy/util-stream": "^4.5.20",
|
|
65
65
|
"@smithy/util-utf8": "^4.2.2",
|
|
66
66
|
"@smithy/util-waiter": "^4.2.13",
|
|
67
67
|
"tslib": "^2.6.2"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-s3",
|
|
3
3
|
"description": "AWS SDK for JavaScript S3 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1014.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-s3",
|
|
@@ -30,26 +30,26 @@
|
|
|
30
30
|
"@aws-crypto/sha1-browser": "5.2.0",
|
|
31
31
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
32
32
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
33
|
-
"@aws-sdk/core": "^3.973.
|
|
34
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
33
|
+
"@aws-sdk/core": "^3.973.23",
|
|
34
|
+
"@aws-sdk/credential-provider-node": "^3.972.24",
|
|
35
35
|
"@aws-sdk/middleware-bucket-endpoint": "^3.972.8",
|
|
36
36
|
"@aws-sdk/middleware-expect-continue": "^3.972.8",
|
|
37
|
-
"@aws-sdk/middleware-flexible-checksums": "^3.
|
|
37
|
+
"@aws-sdk/middleware-flexible-checksums": "^3.974.3",
|
|
38
38
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
39
39
|
"@aws-sdk/middleware-location-constraint": "^3.972.8",
|
|
40
40
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
41
41
|
"@aws-sdk/middleware-recursion-detection": "^3.972.8",
|
|
42
|
-
"@aws-sdk/middleware-sdk-s3": "^3.972.
|
|
42
|
+
"@aws-sdk/middleware-sdk-s3": "^3.972.23",
|
|
43
43
|
"@aws-sdk/middleware-ssec": "^3.972.8",
|
|
44
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
45
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
46
|
-
"@aws-sdk/signature-v4-multi-region": "^3.996.
|
|
44
|
+
"@aws-sdk/middleware-user-agent": "^3.972.24",
|
|
45
|
+
"@aws-sdk/region-config-resolver": "^3.972.9",
|
|
46
|
+
"@aws-sdk/signature-v4-multi-region": "^3.996.11",
|
|
47
47
|
"@aws-sdk/types": "^3.973.6",
|
|
48
48
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
49
49
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
50
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
51
|
-
"@smithy/config-resolver": "^4.4.
|
|
52
|
-
"@smithy/core": "^3.23.
|
|
50
|
+
"@aws-sdk/util-user-agent-node": "^3.973.10",
|
|
51
|
+
"@smithy/config-resolver": "^4.4.13",
|
|
52
|
+
"@smithy/core": "^3.23.12",
|
|
53
53
|
"@smithy/eventstream-serde-browser": "^4.2.12",
|
|
54
54
|
"@smithy/eventstream-serde-config-resolver": "^4.3.12",
|
|
55
55
|
"@smithy/eventstream-serde-node": "^4.2.12",
|
|
@@ -60,32 +60,32 @@
|
|
|
60
60
|
"@smithy/invalid-dependency": "^4.2.12",
|
|
61
61
|
"@smithy/md5-js": "^4.2.12",
|
|
62
62
|
"@smithy/middleware-content-length": "^4.2.12",
|
|
63
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
64
|
-
"@smithy/middleware-retry": "^4.4.
|
|
65
|
-
"@smithy/middleware-serde": "^4.2.
|
|
63
|
+
"@smithy/middleware-endpoint": "^4.4.27",
|
|
64
|
+
"@smithy/middleware-retry": "^4.4.44",
|
|
65
|
+
"@smithy/middleware-serde": "^4.2.15",
|
|
66
66
|
"@smithy/middleware-stack": "^4.2.12",
|
|
67
67
|
"@smithy/node-config-provider": "^4.3.12",
|
|
68
|
-
"@smithy/node-http-handler": "^4.
|
|
68
|
+
"@smithy/node-http-handler": "^4.5.0",
|
|
69
69
|
"@smithy/protocol-http": "^5.3.12",
|
|
70
|
-
"@smithy/smithy-client": "^4.12.
|
|
70
|
+
"@smithy/smithy-client": "^4.12.7",
|
|
71
71
|
"@smithy/types": "^4.13.1",
|
|
72
72
|
"@smithy/url-parser": "^4.2.12",
|
|
73
73
|
"@smithy/util-base64": "^4.3.2",
|
|
74
74
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
75
75
|
"@smithy/util-body-length-node": "^4.2.3",
|
|
76
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
77
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
76
|
+
"@smithy/util-defaults-mode-browser": "^4.3.43",
|
|
77
|
+
"@smithy/util-defaults-mode-node": "^4.2.47",
|
|
78
78
|
"@smithy/util-endpoints": "^3.3.3",
|
|
79
79
|
"@smithy/util-middleware": "^4.2.12",
|
|
80
80
|
"@smithy/util-retry": "^4.2.12",
|
|
81
|
-
"@smithy/util-stream": "^4.5.
|
|
81
|
+
"@smithy/util-stream": "^4.5.20",
|
|
82
82
|
"@smithy/util-utf8": "^4.2.2",
|
|
83
83
|
"@smithy/util-waiter": "^4.2.13",
|
|
84
84
|
"tslib": "^2.6.2"
|
|
85
85
|
},
|
|
86
86
|
"devDependencies": {
|
|
87
|
-
"@aws-sdk/signature-v4-crt": "3.
|
|
88
|
-
"@smithy/snapshot-testing": "^2.0.
|
|
87
|
+
"@aws-sdk/signature-v4-crt": "3.1014.0",
|
|
88
|
+
"@smithy/snapshot-testing": "^2.0.3",
|
|
89
89
|
"@tsconfig/node20": "20.1.8",
|
|
90
90
|
"@types/node": "^20.14.8",
|
|
91
91
|
"concurrently": "7.0.0",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sns",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sns Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1014.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-sns",
|
|
@@ -23,38 +23,38 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
25
25
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
26
|
-
"@aws-sdk/core": "^3.973.
|
|
27
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
+
"@aws-sdk/core": "^3.973.23",
|
|
27
|
+
"@aws-sdk/credential-provider-node": "^3.972.24",
|
|
28
28
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
29
29
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
30
30
|
"@aws-sdk/middleware-recursion-detection": "^3.972.8",
|
|
31
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
32
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
31
|
+
"@aws-sdk/middleware-user-agent": "^3.972.24",
|
|
32
|
+
"@aws-sdk/region-config-resolver": "^3.972.9",
|
|
33
33
|
"@aws-sdk/types": "^3.973.6",
|
|
34
34
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
35
35
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
36
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
37
|
-
"@smithy/config-resolver": "^4.4.
|
|
38
|
-
"@smithy/core": "^3.23.
|
|
36
|
+
"@aws-sdk/util-user-agent-node": "^3.973.10",
|
|
37
|
+
"@smithy/config-resolver": "^4.4.13",
|
|
38
|
+
"@smithy/core": "^3.23.12",
|
|
39
39
|
"@smithy/fetch-http-handler": "^5.3.15",
|
|
40
40
|
"@smithy/hash-node": "^4.2.12",
|
|
41
41
|
"@smithy/invalid-dependency": "^4.2.12",
|
|
42
42
|
"@smithy/middleware-content-length": "^4.2.12",
|
|
43
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
44
|
-
"@smithy/middleware-retry": "^4.4.
|
|
45
|
-
"@smithy/middleware-serde": "^4.2.
|
|
43
|
+
"@smithy/middleware-endpoint": "^4.4.27",
|
|
44
|
+
"@smithy/middleware-retry": "^4.4.44",
|
|
45
|
+
"@smithy/middleware-serde": "^4.2.15",
|
|
46
46
|
"@smithy/middleware-stack": "^4.2.12",
|
|
47
47
|
"@smithy/node-config-provider": "^4.3.12",
|
|
48
|
-
"@smithy/node-http-handler": "^4.
|
|
48
|
+
"@smithy/node-http-handler": "^4.5.0",
|
|
49
49
|
"@smithy/protocol-http": "^5.3.12",
|
|
50
|
-
"@smithy/smithy-client": "^4.12.
|
|
50
|
+
"@smithy/smithy-client": "^4.12.7",
|
|
51
51
|
"@smithy/types": "^4.13.1",
|
|
52
52
|
"@smithy/url-parser": "^4.2.12",
|
|
53
53
|
"@smithy/util-base64": "^4.3.2",
|
|
54
54
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
55
55
|
"@smithy/util-body-length-node": "^4.2.3",
|
|
56
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
57
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
56
|
+
"@smithy/util-defaults-mode-browser": "^4.3.43",
|
|
57
|
+
"@smithy/util-defaults-mode-node": "^4.2.47",
|
|
58
58
|
"@smithy/util-endpoints": "^3.3.3",
|
|
59
59
|
"@smithy/util-middleware": "^4.2.12",
|
|
60
60
|
"@smithy/util-retry": "^4.2.12",
|