@cdklabs/cdk-ssm-documents 0.0.56 → 0.0.58
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/dist-cjs/endpoint/bdd.js +52 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/endpoint/endpointResolver.js +2 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/endpoint/bdd.js +49 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/endpoint/endpointResolver.js +3 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cloudformation/package.json +34 -34
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/endpoint/bdd.js +52 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/endpoint/endpointResolver.js +2 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/endpoint/bdd.js +49 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/endpoint/endpointResolver.js +3 -3
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/models/models_0.d.ts +2 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cloudwatch/package.json +36 -36
- package/node_modules/@aws-sdk/client-ec2/README.md +35 -0
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/endpoint/bdd.js +52 -0
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/endpoint/endpointResolver.js +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/index.js +86 -0
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/schemas/schemas_0.js +257 -106
- package/node_modules/@aws-sdk/client-ec2/dist-es/EC2.js +10 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AcceptTransitGatewayClientVpnAttachmentCommand.js +16 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayClientVpnAttachmentCommand.js +16 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetManagedResourceVisibilityCommand.js +16 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyManagedResourceVisibilityCommand.js +16 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RejectTransitGatewayClientVpnAttachmentCommand.js +16 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/index.js +5 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/endpoint/bdd.js +49 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/endpoint/endpointResolver.js +3 -3
- package/node_modules/@aws-sdk/client-ec2/dist-es/models/enums.js +14 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/schemas/schemas_0.js +194 -43
- package/node_modules/@aws-sdk/client-ec2/dist-types/EC2.d.ts +37 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/EC2Client.d.ts +7 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptTransitGatewayClientVpnAttachmentCommand.d.ts +82 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptTransitGatewayMulticastDomainAssociationsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateClientVpnTargetNetworkCommand.d.ts +3 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateTransitGatewayMulticastDomainCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateTransitGatewayPolicyTableCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateTransitGatewayRouteTableCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CopyVolumesCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateClientVpnEndpointCommand.d.ts +10 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateClientVpnRouteCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateDelegateMacVolumeOwnershipTaskCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLaunchTemplateCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLaunchTemplateVersionCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkInterfaceCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreatePlacementGroupCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSecondaryNetworkCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayMeteringPolicyEntryCommand.d.ts +4 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayPrefixListReferenceCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayRouteCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVolumeCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteClientVpnEndpointCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteLaunchTemplateCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTrafficMirrorFilterCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTrafficMirrorFilterRuleCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTrafficMirrorSessionCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayClientVpnAttachmentCommand.d.ts +82 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayMeteringPolicyEntryCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayPrefixListReferenceCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayRouteCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeClientVpnEndpointsCommand.d.ts +11 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeClientVpnRoutesCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeClientVpnTargetNetworksCommand.d.ts +6 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceAttributeCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceCreditSpecificationsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceEventNotificationAttributesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceEventWindowsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceImageMetadataCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceStatusCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstancesCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLaunchTemplateVersionsCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLaunchTemplatesCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeNetworkInterfacesCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribePlacementGroupsCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTagsCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTrafficMirrorFilterRulesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTrafficMirrorFiltersCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTrafficMirrorSessionsCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewayAttachmentsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVolumeStatusCommand.d.ts +6 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVolumesCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVolumesModificationsCommand.d.ts +5 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableTransitGatewayRouteTablePropagationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateTransitGatewayMulticastDomainCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateTransitGatewayPolicyTableCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateTransitGatewayRouteTableCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableTransitGatewayRouteTablePropagationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityReservationUsageCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCoipPoolUsageCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetConsoleOutputCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetLaunchTemplateDataCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetManagedResourceVisibilityCommand.d.ts +77 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayMeteringPolicyEntriesCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayMulticastDomainAssociationsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayPolicyTableAssociationsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayPrefixListReferencesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayRouteTableAssociationsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayRouteTablePropagationsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ListVolumesInRecycleBinCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyClientVpnEndpointCommand.d.ts +9 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyLaunchTemplateCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyManagedResourceVisibilityCommand.d.ts +80 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyRouteServerCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifySecurityGroupRulesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifySnapshotAttributeCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifySnapshotTierCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifySpotFleetRequestCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifySubnetAttributeCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyTransitGatewayPrefixListReferenceCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVolumeCommand.d.ts +5 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RejectTransitGatewayClientVpnAttachmentCommand.d.ts +82 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RejectTransitGatewayMulticastDomainAssociationsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReplaceTransitGatewayRouteCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RunInstancesCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/SearchTransitGatewayMulticastGroupsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/SearchTransitGatewayRoutesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/enums.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_0.d.ts +112 -181
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_1.d.ts +179 -119
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_2.d.ts +119 -56
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_3.d.ts +126 -205
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_4.d.ts +239 -266
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_5.d.ts +288 -292
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_6.d.ts +360 -374
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_7.d.ts +399 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/schemas/schemas_0.d.ts +19 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/EC2.d.ts +105 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/EC2Client.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AcceptTransitGatewayClientVpnAttachmentCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateDelegateMacVolumeOwnershipTaskCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateSecondaryNetworkCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTrafficMirrorFilterCommand.d.ts +2 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTrafficMirrorFilterRuleCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTrafficMirrorSessionCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayClientVpnAttachmentCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceCreditSpecificationsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceEventNotificationAttributesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceEventWindowsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTagsCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTrafficMirrorFilterRulesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTrafficMirrorFiltersCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTrafficMirrorSessionsCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityReservationUsageCommand.d.ts +2 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCoipPoolUsageCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetConsoleOutputCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetManagedResourceVisibilityCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyManagedResourceVisibilityCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyRouteServerCommand.d.ts +2 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifySecurityGroupRulesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifySnapshotAttributeCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifySnapshotTierCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifySpotFleetRequestCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifySubnetAttributeCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RejectTransitGatewayClientVpnAttachmentCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/enums.d.ts +18 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_0.d.ts +31 -36
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_1.d.ts +33 -33
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_2.d.ts +31 -15
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_3.d.ts +36 -33
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_4.d.ts +41 -44
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_5.d.ts +48 -48
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_6.d.ts +69 -77
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_7.d.ts +87 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/schemas/schemas_0.d.ts +19 -0
- package/node_modules/@aws-sdk/client-ec2/package.json +36 -36
- package/node_modules/@aws-sdk/client-iam/dist-cjs/endpoint/bdd.js +85 -0
- package/node_modules/@aws-sdk/client-iam/dist-cjs/endpoint/endpointResolver.js +2 -2
- package/node_modules/@aws-sdk/client-iam/dist-es/endpoint/bdd.js +82 -0
- package/node_modules/@aws-sdk/client-iam/dist-es/endpoint/endpointResolver.js +3 -3
- package/node_modules/@aws-sdk/client-iam/dist-types/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-iam/package.json +35 -35
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/endpoint/bdd.js +49 -0
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/endpoint/endpointResolver.js +2 -2
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/index.js +1 -0
- package/node_modules/@aws-sdk/client-lambda/dist-es/endpoint/bdd.js +46 -0
- package/node_modules/@aws-sdk/client-lambda/dist-es/endpoint/endpointResolver.js +3 -3
- package/node_modules/@aws-sdk/client-lambda/dist-es/models/enums.js +1 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateFunctionCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionConfigurationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetLayerVersionByArnCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetLayerVersionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetProvisionedConcurrencyConfigCommand.d.ts +4 -4
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListFunctionsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListLayerVersionsCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListLayersCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListVersionsByFunctionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PublishLayerVersionCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PublishVersionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionCodeCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionConfigurationCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-lambda/dist-types/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/models/enums.d.ts +1 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/enums.d.ts +1 -0
- package/node_modules/@aws-sdk/client-lambda/package.json +46 -40
- package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/bdd.js +757 -0
- package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/endpointResolver.js +2 -2
- package/node_modules/@aws-sdk/client-s3/dist-cjs/index.js +7 -6
- package/node_modules/@aws-sdk/client-s3/dist-cjs/schemas/schemas_0.js +75 -60
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketPolicyCommand.js +1 -5
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/SelectObjectContentCommand.js +0 -2
- package/node_modules/@aws-sdk/client-s3/dist-es/endpoint/bdd.js +754 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/endpoint/endpointResolver.js +3 -3
- package/node_modules/@aws-sdk/client-s3/dist-es/models/enums.js +5 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/schemas/schemas_0.js +75 -60
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CompleteMultipartUploadCommand.d.ts +15 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CopyObjectCommand.d.ts +6 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketMetadataConfigurationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketMetadataTableConfigurationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateMultipartUploadCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketInventoryConfigurationCommand.d.ts +38 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketInventoryConfigurationCommand.d.ts +39 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAttributesCommand.d.ts +10 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectCommand.d.ts +5 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/HeadObjectCommand.d.ts +5 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketInventoryConfigurationsCommand.d.ts +39 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListMultipartUploadsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectVersionsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectsV2Command.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListPartsCommand.d.ts +6 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAbacCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAccelerateConfigurationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAclCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketCorsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketEncryptionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketInventoryConfigurationCommand.d.ts +31 -5
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketLifecycleConfigurationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketLoggingCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketOwnershipControlsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketPolicyCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketReplicationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketRequestPaymentCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketTaggingCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketVersioningCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketWebsiteCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectAclCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectCommand.d.ts +11 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectLegalHoldCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectLockConfigurationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectRetentionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectTaggingCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutPublicAccessBlockCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/RestoreObjectCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateBucketMetadataInventoryTableConfigurationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateBucketMetadataJournalTableConfigurationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateObjectEncryptionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UploadPartCommand.d.ts +11 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UploadPartCopyCommand.d.ts +5 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/WriteGetObjectResponseCommand.d.ts +5 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/models/enums.d.ts +5 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/models/models_0.d.ts +546 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/models/models_1.d.ts +194 -34
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/enums.d.ts +5 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_0.d.ts +55 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_1.d.ts +20 -0
- package/node_modules/@aws-sdk/client-s3/package.json +50 -50
- package/node_modules/@aws-sdk/client-sns/dist-cjs/endpoint/bdd.js +55 -0
- package/node_modules/@aws-sdk/client-sns/dist-cjs/endpoint/endpointResolver.js +2 -2
- package/node_modules/@aws-sdk/client-sns/dist-es/endpoint/bdd.js +52 -0
- package/node_modules/@aws-sdk/client-sns/dist-es/endpoint/endpointResolver.js +3 -3
- package/node_modules/@aws-sdk/client-sns/dist-types/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-sns/package.json +33 -33
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/endpoint/bdd.js +52 -0
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/endpoint/endpointResolver.js +2 -2
- package/node_modules/@aws-sdk/client-sqs/dist-es/endpoint/bdd.js +49 -0
- package/node_modules/@aws-sdk/client-sqs/dist-es/endpoint/endpointResolver.js +3 -3
- package/node_modules/@aws-sdk/client-sqs/dist-types/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-sqs/package.json +36 -36
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/bdd.js +52 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/endpointResolver.js +2 -2
- package/node_modules/@aws-sdk/client-ssm/dist-es/endpoint/bdd.js +49 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/endpoint/endpointResolver.js +3 -3
- package/node_modules/@aws-sdk/client-ssm/dist-types/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/package.json +34 -34
- package/node_modules/@aws-sdk/core/dist-cjs/index.js +72 -61
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +3 -0
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +70 -61
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/setFeature.js +2 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/ProtocolLib.js +11 -10
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/UnionSerde.js +4 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJsonRpcProtocol.js +4 -5
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsRestJsonProtocol.js +2 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeDeserializer.js +6 -4
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeSerializer.js +15 -10
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/experimental/SinglePassJsonShapeSerializer.js +2 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/parseJsonBody.js +17 -17
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/AwsQueryProtocol.js +3 -8
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/QueryShapeSerializer.js +2 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/AwsRestXmlProtocol.js +2 -2
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeSerializer.js +4 -2
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/setFeature.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonShapeSerializer.d.ts +2 -2
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonShapeSerializer.d.ts +1 -1
- package/node_modules/@aws-sdk/core/package.json +14 -12
- package/node_modules/@aws-sdk/crc64-nvme/package.json +2 -2
- package/node_modules/@aws-sdk/credential-provider-env/package.json +5 -5
- package/node_modules/@aws-sdk/credential-provider-http/package.json +10 -10
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +14 -14
- package/node_modules/@aws-sdk/credential-provider-login/package.json +8 -8
- package/node_modules/@aws-sdk/credential-provider-node/package.json +12 -12
- package/node_modules/@aws-sdk/credential-provider-process/package.json +6 -6
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +8 -8
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +7 -7
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/package.json +5 -5
- package/node_modules/@aws-sdk/middleware-expect-continue/package.json +4 -4
- package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +10 -10
- package/node_modules/@aws-sdk/middleware-host-header/package.json +4 -4
- package/node_modules/@aws-sdk/middleware-location-constraint/package.json +3 -3
- package/node_modules/@aws-sdk/middleware-logger/package.json +3 -3
- package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +4 -4
- package/node_modules/@aws-sdk/middleware-sdk-ec2/package.json +8 -8
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.js +9 -25
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/toStream.browser.js +11 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/toStream.js +7 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/throw-200-exceptions.js +9 -25
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/toStream.browser.js +8 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/toStream.js +4 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/throw-200-exceptions.d.ts +2 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/toStream.browser.d.ts +4 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/toStream.d.ts +5 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/throw-200-exceptions.d.ts +2 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/toStream.browser.d.ts +1 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/toStream.d.ts +2 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +21 -14
- package/node_modules/@aws-sdk/middleware-sdk-sqs/package.json +4 -4
- package/node_modules/@aws-sdk/middleware-ssec/package.json +3 -3
- package/node_modules/@aws-sdk/middleware-user-agent/package.json +8 -8
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/endpoint/bdd.js +100 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/endpoint/endpointResolver.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/bdd.js +90 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/endpointResolver.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/endpoint/bdd.js +80 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/endpoint/endpointResolver.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/bdd.js +80 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/endpointResolver.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/STSClient.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/auth/httpAuthSchemeProvider.js +87 -5
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/bdd.js +150 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/endpointResolver.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/models/errors.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.js +6 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.shared.js +7 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/endpoint/bdd.js +97 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/endpoint/endpointResolver.js +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/bdd.js +87 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/endpointResolver.js +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/bdd.js +77 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/endpointResolver.js +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/bdd.js +77 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/endpointResolver.js +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STSClient.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/auth/httpAuthSchemeProvider.js +88 -4
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/bdd.js +147 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/endpointResolver.js +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/errors.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.js +7 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.shared.js +8 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/auth/httpAuthSchemeProvider.d.ts +15 -7
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/errors.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.browser.d.ts +3 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.d.ts +10 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.native.d.ts +3 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.shared.d.ts +3 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/auth/httpAuthSchemeProvider.d.ts +20 -9
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/errors.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.browser.d.ts +11 -5
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.d.ts +35 -16
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.native.d.ts +11 -5
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.shared.d.ts +8 -1
- package/node_modules/@aws-sdk/nested-clients/package.json +33 -32
- package/node_modules/@aws-sdk/region-config-resolver/package.json +5 -5
- package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +6 -6
- package/node_modules/@aws-sdk/token-providers/package.json +7 -7
- package/node_modules/@aws-sdk/types/package.json +2 -2
- package/node_modules/@aws-sdk/util-endpoints/package.json +5 -5
- package/node_modules/@aws-sdk/util-format-url/package.json +4 -4
- package/node_modules/@aws-sdk/util-user-agent-browser/package.json +3 -3
- package/node_modules/@aws-sdk/util-user-agent-node/package.json +5 -5
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.js +0 -2
- package/node_modules/@aws-sdk/xml-builder/dist-es/xml-parser.js +0 -2
- package/node_modules/@aws-sdk/xml-builder/package.json +3 -3
- package/node_modules/@nodable/entities/README.md +41 -0
- package/node_modules/@nodable/entities/package.json +54 -0
- package/node_modules/@nodable/entities/src/EntityDecoder.js +543 -0
- package/node_modules/@nodable/entities/src/EntityEncoder.js +194 -0
- package/node_modules/@nodable/entities/src/entities.js +1177 -0
- package/node_modules/@nodable/entities/src/entityTries.js +49 -0
- package/node_modules/@nodable/entities/src/index.d.ts +264 -0
- package/node_modules/@nodable/entities/src/index.js +29 -0
- package/node_modules/@smithy/config-resolver/package.json +5 -5
- package/node_modules/@smithy/core/dist-cjs/index.js +2 -1
- package/node_modules/@smithy/core/dist-cjs/submodules/cbor/index.js +32 -14
- package/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.js +2 -2
- package/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.js +16 -8
- package/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +17 -10
- package/node_modules/@smithy/core/dist-cjs/submodules/schema/index.js +6 -1
- package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.js +6 -3
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/DefaultIdentityProviderConfig.js +2 -1
- package/node_modules/@smithy/core/dist-es/submodules/cbor/CborCodec.js +23 -11
- package/node_modules/@smithy/core/dist-es/submodules/cbor/parseCborBody.js +9 -3
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/toEndpointV1.js +2 -2
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/EventStreamSerde.js +16 -8
- package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpBindingProtocol.js +9 -4
- package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpProtocol.js +8 -6
- package/node_modules/@smithy/core/dist-es/submodules/schema/TypeRegistry.js +6 -1
- package/node_modules/@smithy/core/dist-es/submodules/serde/parse-utils.js +6 -3
- package/node_modules/@smithy/core/dist-es/util-identity-and-auth/DefaultIdentityProviderConfig.js +2 -1
- package/node_modules/@smithy/core/dist-types/submodules/schema/TypeRegistry.d.ts +1 -1
- package/node_modules/@smithy/core/package.json +7 -7
- package/node_modules/@smithy/credential-provider-imds/package.json +5 -5
- package/node_modules/@smithy/eventstream-codec/package.json +2 -2
- package/node_modules/@smithy/eventstream-serde-browser/package.json +3 -3
- package/node_modules/@smithy/eventstream-serde-config-resolver/package.json +2 -2
- package/node_modules/@smithy/eventstream-serde-node/package.json +3 -3
- package/node_modules/@smithy/eventstream-serde-universal/package.json +3 -3
- package/node_modules/@smithy/fetch-http-handler/package.json +5 -5
- package/node_modules/@smithy/hash-blob-browser/package.json +2 -2
- package/node_modules/@smithy/hash-node/package.json +2 -2
- package/node_modules/@smithy/hash-stream-node/package.json +2 -2
- package/node_modules/@smithy/invalid-dependency/package.json +2 -2
- package/node_modules/@smithy/md5-js/package.json +2 -2
- package/node_modules/@smithy/middleware-compression/package.json +6 -6
- package/node_modules/@smithy/middleware-content-length/package.json +3 -3
- package/node_modules/@smithy/middleware-endpoint/package.json +8 -8
- package/node_modules/@smithy/middleware-retry/package.json +9 -9
- package/node_modules/@smithy/middleware-serde/package.json +4 -4
- package/node_modules/@smithy/middleware-stack/package.json +2 -2
- package/node_modules/@smithy/node-config-provider/package.json +4 -4
- package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +208 -102
- package/node_modules/@smithy/node-http-handler/dist-es/http2/ClientHttp2SessionRef.js +50 -0
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +83 -41
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-pool.js +32 -18
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +44 -43
- package/node_modules/@smithy/node-http-handler/dist-types/http2/ClientHttp2SessionRef.d.ts +46 -0
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +32 -14
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +32 -8
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +14 -6
- package/node_modules/@smithy/node-http-handler/package.json +5 -5
- package/node_modules/@smithy/property-provider/package.json +2 -2
- package/node_modules/@smithy/protocol-http/package.json +2 -2
- package/node_modules/@smithy/querystring-builder/package.json +2 -2
- package/node_modules/@smithy/querystring-parser/package.json +2 -2
- package/node_modules/@smithy/service-error-classification/dist-cjs/index.js +6 -0
- package/node_modules/@smithy/service-error-classification/dist-es/index.js +5 -0
- package/node_modules/@smithy/service-error-classification/dist-types/index.d.ts +6 -0
- package/node_modules/@smithy/service-error-classification/package.json +2 -2
- package/node_modules/@smithy/shared-ini-file-loader/package.json +2 -2
- package/node_modules/@smithy/signature-v4/dist-cjs/index.js +11 -5
- package/node_modules/@smithy/signature-v4/dist-es/SignatureV4.js +11 -5
- package/node_modules/@smithy/signature-v4/dist-types/SignatureV4.d.ts +3 -3
- package/node_modules/@smithy/signature-v4/package.json +4 -4
- package/node_modules/@smithy/smithy-client/dist-cjs/index.js +8 -1
- package/node_modules/@smithy/smithy-client/dist-es/command.js +8 -1
- package/node_modules/@smithy/smithy-client/package.json +7 -7
- package/node_modules/@smithy/types/dist-types/connection/config.d.ts +5 -0
- package/node_modules/@smithy/types/dist-types/signature.d.ts +20 -3
- package/node_modules/@smithy/types/package.json +1 -1
- package/node_modules/@smithy/url-parser/package.json +3 -3
- package/node_modules/@smithy/util-defaults-mode-browser/package.json +4 -4
- package/node_modules/@smithy/util-defaults-mode-node/package.json +7 -7
- package/node_modules/@smithy/util-endpoints/dist-cjs/index.js +79 -71
- package/node_modules/@smithy/util-endpoints/dist-es/decideEndpoint.js +4 -3
- package/node_modules/@smithy/util-endpoints/dist-es/lib/getAttr.js +2 -1
- package/node_modules/@smithy/util-endpoints/dist-es/resolveEndpoint.js +8 -13
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateCondition.js +9 -7
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateConditions.js +12 -8
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateEndpointRule.js +14 -13
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateErrorRule.js +7 -4
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateExpression.js +10 -8
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateRules.js +4 -4
- package/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointHeaders.js +5 -5
- package/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointProperties.js +4 -4
- package/node_modules/@smithy/util-endpoints/dist-types/bdd/BinaryDecisionDiagram.d.ts +2 -2
- package/node_modules/@smithy/util-endpoints/dist-types/types/shared.d.ts +3 -3
- package/node_modules/@smithy/util-endpoints/dist-types/utils/endpointFunctions.d.ts +2 -15
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateCondition.d.ts +6 -3
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateConditions.d.ts +3 -3
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointHeaders.d.ts +1 -1
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointProperties.d.ts +2 -2
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getReferenceValue.d.ts +2 -2
- package/node_modules/@smithy/util-endpoints/package.json +3 -3
- package/node_modules/@smithy/util-middleware/package.json +2 -2
- package/node_modules/@smithy/util-retry/dist-cjs/index.js +20 -10
- package/node_modules/@smithy/util-retry/dist-es/StandardRetryStrategy.js +20 -10
- package/node_modules/@smithy/util-retry/dist-types/StandardRetryStrategy.d.ts +12 -4
- package/node_modules/@smithy/util-retry/package.json +3 -3
- package/node_modules/@smithy/util-stream/package.json +4 -4
- package/node_modules/@smithy/util-waiter/dist-cjs/index.js +59 -34
- package/node_modules/@smithy/util-waiter/dist-es/poller.js +61 -34
- package/node_modules/@smithy/util-waiter/dist-types/createWaiter.d.ts +1 -1
- package/node_modules/@smithy/util-waiter/dist-types/poller.d.ts +2 -1
- package/node_modules/@smithy/util-waiter/dist-types/waiter.d.ts +13 -13
- package/node_modules/@smithy/util-waiter/package.json +3 -3
- package/node_modules/fast-xml-builder/package.json +1 -1
- package/node_modules/fast-xml-builder/src/fxb.js +6 -2
- package/node_modules/fast-xml-builder/src/orderedJs2Xml.js +16 -2
- package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/CHANGELOG.md +53 -0
- package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/README.md +8 -28
- package/node_modules/fast-xml-parser/lib/fxbuilder.min.js +2 -0
- package/node_modules/fast-xml-parser/lib/fxbuilder.min.js.map +1 -0
- package/node_modules/fast-xml-parser/lib/fxp.cjs +1 -0
- package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/lib/fxp.d.cts +172 -6
- package/node_modules/fast-xml-parser/lib/fxp.min.js +2 -0
- package/node_modules/fast-xml-parser/lib/fxp.min.js.map +1 -0
- package/node_modules/fast-xml-parser/lib/fxparser.min.js +2 -0
- package/node_modules/fast-xml-parser/lib/fxparser.min.js.map +1 -0
- package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/package.json +5 -4
- package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/fxp.d.ts +162 -3
- package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/xmlparser/DocTypeReader.js +2 -5
- package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/xmlparser/OptionsBuilder.js +15 -11
- package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/xmlparser/OrderedObjParser.js +168 -244
- package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/xmlparser/XMLParser.js +1 -1
- package/package.json +10 -10
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/endpoint/ruleset.js +0 -7
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/endpoint/ruleset.js +0 -4
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/endpoint/ruleset.js +0 -7
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/endpoint/ruleset.js +0 -4
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/endpoint/ruleset.js +0 -7
- package/node_modules/@aws-sdk/client-ec2/dist-es/endpoint/ruleset.js +0 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-iam/dist-cjs/endpoint/ruleset.js +0 -7
- package/node_modules/@aws-sdk/client-iam/dist-es/endpoint/ruleset.js +0 -4
- package/node_modules/@aws-sdk/client-iam/dist-types/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/endpoint/ruleset.js +0 -7
- package/node_modules/@aws-sdk/client-lambda/dist-es/endpoint/ruleset.js +0 -4
- package/node_modules/@aws-sdk/client-lambda/dist-types/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/ruleset.js +0 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/endpoint/ruleset.js +0 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-sns/dist-cjs/endpoint/ruleset.js +0 -7
- package/node_modules/@aws-sdk/client-sns/dist-es/endpoint/ruleset.js +0 -4
- package/node_modules/@aws-sdk/client-sns/dist-types/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/endpoint/ruleset.js +0 -7
- package/node_modules/@aws-sdk/client-sqs/dist-es/endpoint/ruleset.js +0 -4
- package/node_modules/@aws-sdk/client-sqs/dist-types/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/ruleset.js +0 -7
- package/node_modules/@aws-sdk/client-ssm/dist-es/endpoint/ruleset.js +0 -4
- package/node_modules/@aws-sdk/client-ssm/dist-types/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/endpoint/ruleset.js +0 -146
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/ruleset.js +0 -133
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/endpoint/ruleset.js +0 -106
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/ruleset.js +0 -106
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/ruleset.js +0 -145
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/endpoint/ruleset.js +0 -143
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/ruleset.js +0 -130
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/ruleset.js +0 -103
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/ruleset.js +0 -103
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/ruleset.js +0 -142
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/endpoint/ruleset.d.ts +0 -2
- 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.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/pem.d.cts +0 -148
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/pem.d.ts +0 -135
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/LICENSE +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/lib/fxvalidator.min.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/lib/fxvalidator.min.js.map +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/cli/cli.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/cli/man.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/cli/read.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/fxp.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/ignoreAttributes.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/util.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/CharsSymbol.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/EntitiesParser.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/OptionsBuilder.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/OutputBuilders/BaseOutputBuilder.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/OutputBuilders/JsArrBuilder.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/OutputBuilders/JsMinArrBuilder.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/OutputBuilders/JsObjBuilder.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/OutputBuilders/ParserOptionsBuilder.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/Report.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/TagPath.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/TagPathMatcher.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/XMLParser.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/Xml2JsParser.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/XmlPartReader.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/XmlSpecialTagsReader.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/inputSource/BufferSource.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/inputSource/StringSource.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/valueParsers/EntitiesParser.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/valueParsers/booleanParser.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/valueParsers/booleanParserExt.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/valueParsers/currency.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/valueParsers/join.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/valueParsers/number.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/valueParsers/trim.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/validator.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/xmlbuilder/json2xml.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/xmlparser/node2json.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/xmlparser/xmlNode.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/strnum → strnum}/CHANGELOG.md +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/strnum → strnum}/LICENSE +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/strnum → strnum}/README.md +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/strnum → strnum}/package.json +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/strnum → strnum}/strnum.js +0 -0
|
@@ -926,45 +926,85 @@ export interface UploadPartOutput {
|
|
|
926
926
|
*/
|
|
927
927
|
ETag?: string | undefined;
|
|
928
928
|
/**
|
|
929
|
-
* <p>The Base64 encoded, 32-bit <code>CRC32
|
|
930
|
-
*
|
|
931
|
-
*
|
|
932
|
-
*
|
|
929
|
+
* <p>The Base64 encoded, 32-bit <code>CRC32</code> checksum of the part. This will only be present if
|
|
930
|
+
* the checksum was provided in the request. For more information, see
|
|
931
|
+
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
|
|
932
|
+
* object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
933
933
|
* @public
|
|
934
934
|
*/
|
|
935
935
|
ChecksumCRC32?: string | undefined;
|
|
936
936
|
/**
|
|
937
|
-
* <p>The Base64 encoded, 32-bit <code>CRC32C</code> checksum of the
|
|
938
|
-
*
|
|
939
|
-
*
|
|
940
|
-
*
|
|
937
|
+
* <p>The Base64 encoded, 32-bit <code>CRC32C</code> checksum of the part. This will only be present if
|
|
938
|
+
* the checksum was provided in the request. For more information, see
|
|
939
|
+
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
|
|
940
|
+
* object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
941
941
|
* @public
|
|
942
942
|
*/
|
|
943
943
|
ChecksumCRC32C?: string | undefined;
|
|
944
944
|
/**
|
|
945
|
-
* <p>
|
|
946
|
-
*
|
|
947
|
-
*
|
|
948
|
-
*
|
|
945
|
+
* <p>The Base64 encoded, 64-bit <code>CRC64NVME</code> checksum of the part. This will only be present if
|
|
946
|
+
* the checksum was provided in the request. For more information, see
|
|
947
|
+
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
|
|
948
|
+
* object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
949
949
|
* @public
|
|
950
950
|
*/
|
|
951
951
|
ChecksumCRC64NVME?: string | undefined;
|
|
952
952
|
/**
|
|
953
|
-
* <p>The Base64 encoded, 160-bit <code>SHA1</code>
|
|
954
|
-
*
|
|
955
|
-
*
|
|
956
|
-
*
|
|
953
|
+
* <p>The Base64 encoded, 160-bit <code>SHA1</code> checksum of the part. This will only be present if
|
|
954
|
+
* the checksum was provided in the request. For more information, see
|
|
955
|
+
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
|
|
956
|
+
* object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
957
957
|
* @public
|
|
958
958
|
*/
|
|
959
959
|
ChecksumSHA1?: string | undefined;
|
|
960
960
|
/**
|
|
961
|
-
* <p>The Base64 encoded, 256-bit <code>SHA256</code>
|
|
962
|
-
*
|
|
963
|
-
*
|
|
964
|
-
*
|
|
961
|
+
* <p>The Base64 encoded, 256-bit <code>SHA256</code> checksum of the part. This will only be present if
|
|
962
|
+
* the checksum was provided in the request. For more information, see
|
|
963
|
+
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
|
|
964
|
+
* object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
965
965
|
* @public
|
|
966
966
|
*/
|
|
967
967
|
ChecksumSHA256?: string | undefined;
|
|
968
|
+
/**
|
|
969
|
+
* <p>The Base64 encoded, 512-bit <code>SHA512</code> checksum of the part. This will only be present if
|
|
970
|
+
* the checksum was provided in the request. For more information, see
|
|
971
|
+
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
|
|
972
|
+
* object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
973
|
+
* @public
|
|
974
|
+
*/
|
|
975
|
+
ChecksumSHA512?: string | undefined;
|
|
976
|
+
/**
|
|
977
|
+
* <p>The Base64 encoded, 128-bit <code>MD5</code> checksum of the part. This will only be present if
|
|
978
|
+
* the checksum was provided in the request. For more information, see
|
|
979
|
+
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
|
|
980
|
+
* object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
981
|
+
* @public
|
|
982
|
+
*/
|
|
983
|
+
ChecksumMD5?: string | undefined;
|
|
984
|
+
/**
|
|
985
|
+
* <p>The Base64 encoded, 64-bit <code>XXHASH64</code> checksum of the part. This will only be present if
|
|
986
|
+
* the checksum was provided in the request. For more information, see
|
|
987
|
+
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
|
|
988
|
+
* object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
989
|
+
* @public
|
|
990
|
+
*/
|
|
991
|
+
ChecksumXXHASH64?: string | undefined;
|
|
992
|
+
/**
|
|
993
|
+
* <p>The Base64 encoded, 64-bit <code>XXHASH3</code> checksum of the part. This will only be present if
|
|
994
|
+
* the checksum was provided in the request. For more information, see
|
|
995
|
+
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
|
|
996
|
+
* object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
997
|
+
* @public
|
|
998
|
+
*/
|
|
999
|
+
ChecksumXXHASH3?: string | undefined;
|
|
1000
|
+
/**
|
|
1001
|
+
* <p>The Base64 encoded, 128-bit <code>XXHASH128</code> checksum of the part. This will only be present if
|
|
1002
|
+
* the checksum was provided in the request. For more information, see
|
|
1003
|
+
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
|
|
1004
|
+
* object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
1005
|
+
* @public
|
|
1006
|
+
*/
|
|
1007
|
+
ChecksumXXHASH128?: string | undefined;
|
|
968
1008
|
/**
|
|
969
1009
|
* <p>If server-side encryption with a customer-provided encryption key was requested, the response will
|
|
970
1010
|
* include this header to confirm the encryption algorithm that's used.</p>
|
|
@@ -1106,6 +1146,46 @@ export interface UploadPartRequest {
|
|
|
1106
1146
|
* @public
|
|
1107
1147
|
*/
|
|
1108
1148
|
ChecksumSHA256?: string | undefined;
|
|
1149
|
+
/**
|
|
1150
|
+
* <p>This header can be used as a data integrity check to verify that the data received is the same data
|
|
1151
|
+
* that was originally sent. This header specifies the Base64 encoded, 512-bit <code>SHA512</code>
|
|
1152
|
+
* digest of the part. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1153
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1154
|
+
* @public
|
|
1155
|
+
*/
|
|
1156
|
+
ChecksumSHA512?: string | undefined;
|
|
1157
|
+
/**
|
|
1158
|
+
* <p>This header can be used as a data integrity check to verify that the data received is the same data
|
|
1159
|
+
* that was originally sent. This header specifies the Base64 encoded, 128-bit <code>MD5</code>
|
|
1160
|
+
* digest of the part. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1161
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1162
|
+
* @public
|
|
1163
|
+
*/
|
|
1164
|
+
ChecksumMD5?: string | undefined;
|
|
1165
|
+
/**
|
|
1166
|
+
* <p>This header can be used as a data integrity check to verify that the data received is the same data
|
|
1167
|
+
* that was originally sent. This header specifies the Base64 encoded, 64-bit <code>XXHASH64</code>
|
|
1168
|
+
* checksum of the part. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1169
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1170
|
+
* @public
|
|
1171
|
+
*/
|
|
1172
|
+
ChecksumXXHASH64?: string | undefined;
|
|
1173
|
+
/**
|
|
1174
|
+
* <p>This header can be used as a data integrity check to verify that the data received is the same data
|
|
1175
|
+
* that was originally sent. This header specifies the Base64 encoded, 64-bit <code>XXHASH3</code>
|
|
1176
|
+
* checksum of the part. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1177
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1178
|
+
* @public
|
|
1179
|
+
*/
|
|
1180
|
+
ChecksumXXHASH3?: string | undefined;
|
|
1181
|
+
/**
|
|
1182
|
+
* <p>This header can be used as a data integrity check to verify that the data received is the same data
|
|
1183
|
+
* that was originally sent. This header specifies the Base64 encoded, 128-bit <code>XXHASH128</code>
|
|
1184
|
+
* checksum of the part. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1185
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1186
|
+
* @public
|
|
1187
|
+
*/
|
|
1188
|
+
ChecksumXXHASH128?: string | undefined;
|
|
1109
1189
|
/**
|
|
1110
1190
|
* <p>Object key for which the multipart upload was initiated.</p>
|
|
1111
1191
|
* @public
|
|
@@ -1184,45 +1264,85 @@ export interface CopyPartResult {
|
|
|
1184
1264
|
*/
|
|
1185
1265
|
LastModified?: Date | undefined;
|
|
1186
1266
|
/**
|
|
1187
|
-
* <p>
|
|
1188
|
-
*
|
|
1189
|
-
*
|
|
1267
|
+
* <p>The Base64 encoded, 32-bit <code>CRC32</code> checksum of the part. This checksum is present if
|
|
1268
|
+
* the multipart upload request was created with the <code>CRC32</code> checksum algorithm. For more
|
|
1269
|
+
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1190
1270
|
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1191
1271
|
* @public
|
|
1192
1272
|
*/
|
|
1193
1273
|
ChecksumCRC32?: string | undefined;
|
|
1194
1274
|
/**
|
|
1195
|
-
* <p>
|
|
1196
|
-
*
|
|
1197
|
-
*
|
|
1275
|
+
* <p>The Base64 encoded, 32-bit <code>CRC32C</code> checksum of the part. This checksum is present if
|
|
1276
|
+
* the multipart upload request was created with the <code>CRC32C</code> checksum algorithm. For more
|
|
1277
|
+
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1198
1278
|
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1199
1279
|
* @public
|
|
1200
1280
|
*/
|
|
1201
1281
|
ChecksumCRC32C?: string | undefined;
|
|
1202
1282
|
/**
|
|
1203
1283
|
* <p>The Base64 encoded, 64-bit <code>CRC64NVME</code> checksum of the part. This checksum is present if
|
|
1204
|
-
* the multipart upload request was created with the <code>CRC64NVME</code> checksum algorithm
|
|
1205
|
-
*
|
|
1284
|
+
* the multipart upload request was created with the <code>CRC64NVME</code> checksum algorithm. For more
|
|
1285
|
+
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1206
1286
|
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1207
1287
|
* @public
|
|
1208
1288
|
*/
|
|
1209
1289
|
ChecksumCRC64NVME?: string | undefined;
|
|
1210
1290
|
/**
|
|
1211
|
-
* <p>
|
|
1212
|
-
*
|
|
1213
|
-
*
|
|
1291
|
+
* <p>The Base64 encoded, 160-bit <code>SHA1</code> digest of the part. This checksum is present if
|
|
1292
|
+
* the multipart upload request was created with the <code>SHA1</code> checksum algorithm. For more
|
|
1293
|
+
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1214
1294
|
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1215
1295
|
* @public
|
|
1216
1296
|
*/
|
|
1217
1297
|
ChecksumSHA1?: string | undefined;
|
|
1218
1298
|
/**
|
|
1219
|
-
* <p>
|
|
1220
|
-
*
|
|
1221
|
-
*
|
|
1299
|
+
* <p>The Base64 encoded, 256-bit <code>SHA256</code> digest of the part. This checksum is present if
|
|
1300
|
+
* the multipart upload request was created with the <code>SHA256</code> checksum algorithm. For more
|
|
1301
|
+
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1222
1302
|
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1223
1303
|
* @public
|
|
1224
1304
|
*/
|
|
1225
1305
|
ChecksumSHA256?: string | undefined;
|
|
1306
|
+
/**
|
|
1307
|
+
* <p>The Base64 encoded, 512-bit <code>SHA512</code> digest of the part. This checksum is present if
|
|
1308
|
+
* the multipart upload request was created with the <code>SHA512</code> checksum algorithm. For more
|
|
1309
|
+
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1310
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1311
|
+
* @public
|
|
1312
|
+
*/
|
|
1313
|
+
ChecksumSHA512?: string | undefined;
|
|
1314
|
+
/**
|
|
1315
|
+
* <p>The Base64 encoded, 128-bit <code>MD5</code> digest of the part. This checksum is present if
|
|
1316
|
+
* the multipart upload request was created with the <code>MD5</code> checksum algorithm. For more
|
|
1317
|
+
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1318
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1319
|
+
* @public
|
|
1320
|
+
*/
|
|
1321
|
+
ChecksumMD5?: string | undefined;
|
|
1322
|
+
/**
|
|
1323
|
+
* <p>The Base64 encoded, 64-bit <code>XXHASH64</code> checksum of the part. This checksum is present if
|
|
1324
|
+
* the multipart upload request was created with the <code>XXHASH64</code> checksum algorithm. For more
|
|
1325
|
+
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1326
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1327
|
+
* @public
|
|
1328
|
+
*/
|
|
1329
|
+
ChecksumXXHASH64?: string | undefined;
|
|
1330
|
+
/**
|
|
1331
|
+
* <p>The Base64 encoded, 64-bit <code>XXHASH3</code> checksum of the part. This checksum is present if
|
|
1332
|
+
* the multipart upload request was created with the <code>XXHASH3</code> checksum algorithm. For more
|
|
1333
|
+
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1334
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1335
|
+
* @public
|
|
1336
|
+
*/
|
|
1337
|
+
ChecksumXXHASH3?: string | undefined;
|
|
1338
|
+
/**
|
|
1339
|
+
* <p>The Base64 encoded, 128-bit <code>XXHASH128</code> checksum of the part. This checksum is present if
|
|
1340
|
+
* the multipart upload request was created with the <code>XXHASH128</code> checksum algorithm. For more
|
|
1341
|
+
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1342
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1343
|
+
* @public
|
|
1344
|
+
*/
|
|
1345
|
+
ChecksumXXHASH128?: string | undefined;
|
|
1226
1346
|
}
|
|
1227
1347
|
/**
|
|
1228
1348
|
* @public
|
|
@@ -1736,6 +1856,46 @@ export interface WriteGetObjectResponseRequest {
|
|
|
1736
1856
|
* @public
|
|
1737
1857
|
*/
|
|
1738
1858
|
ChecksumSHA256?: string | undefined;
|
|
1859
|
+
/**
|
|
1860
|
+
* <p>This header can be used as a data integrity check to verify that the data received is the same data
|
|
1861
|
+
* that was originally sent. This header specifies the Base64 encoded, 512-bit <code>SHA512</code>
|
|
1862
|
+
* digest of the part. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1863
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1864
|
+
* @public
|
|
1865
|
+
*/
|
|
1866
|
+
ChecksumSHA512?: string | undefined;
|
|
1867
|
+
/**
|
|
1868
|
+
* <p>This header can be used as a data integrity check to verify that the data received is the same data
|
|
1869
|
+
* that was originally sent. This header specifies the Base64 encoded, 128-bit <code>MD5</code>
|
|
1870
|
+
* digest of the part. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1871
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1872
|
+
* @public
|
|
1873
|
+
*/
|
|
1874
|
+
ChecksumMD5?: string | undefined;
|
|
1875
|
+
/**
|
|
1876
|
+
* <p>This header can be used as a data integrity check to verify that the data received is the same data
|
|
1877
|
+
* that was originally sent. This header specifies the Base64 encoded, 64-bit <code>XXHASH64</code>
|
|
1878
|
+
* checksum of the part. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1879
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1880
|
+
* @public
|
|
1881
|
+
*/
|
|
1882
|
+
ChecksumXXHASH64?: string | undefined;
|
|
1883
|
+
/**
|
|
1884
|
+
* <p>This header can be used as a data integrity check to verify that the data received is the same data
|
|
1885
|
+
* that was originally sent. This header specifies the Base64 encoded, 64-bit <code>XXHASH3</code>
|
|
1886
|
+
* checksum of the part. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1887
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1888
|
+
* @public
|
|
1889
|
+
*/
|
|
1890
|
+
ChecksumXXHASH3?: string | undefined;
|
|
1891
|
+
/**
|
|
1892
|
+
* <p>This header can be used as a data integrity check to verify that the data received is the same data
|
|
1893
|
+
* that was originally sent. This header specifies the Base64 encoded, 128-bit <code>XXHASH128</code>
|
|
1894
|
+
* checksum of the part. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1895
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1896
|
+
* @public
|
|
1897
|
+
*/
|
|
1898
|
+
ChecksumXXHASH128?: string | undefined;
|
|
1739
1899
|
/**
|
|
1740
1900
|
* <p>Specifies whether an object stored in Amazon S3 is (<code>true</code>) or is not (<code>false</code>) a
|
|
1741
1901
|
* delete marker. To learn more about delete markers, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/DeleteMarker.html">Working with delete markers</a>.</p>
|
|
@@ -65,8 +65,13 @@ export declare const ChecksumAlgorithm: {
|
|
|
65
65
|
readonly CRC32: "CRC32";
|
|
66
66
|
readonly CRC32C: "CRC32C";
|
|
67
67
|
readonly CRC64NVME: "CRC64NVME";
|
|
68
|
+
readonly MD5: "MD5";
|
|
68
69
|
readonly SHA1: "SHA1";
|
|
69
70
|
readonly SHA256: "SHA256";
|
|
71
|
+
readonly SHA512: "SHA512";
|
|
72
|
+
readonly XXHASH128: "XXHASH128";
|
|
73
|
+
readonly XXHASH3: "XXHASH3";
|
|
74
|
+
readonly XXHASH64: "XXHASH64";
|
|
70
75
|
};
|
|
71
76
|
export type ChecksumAlgorithm =
|
|
72
77
|
(typeof ChecksumAlgorithm)[keyof typeof ChecksumAlgorithm];
|
|
@@ -123,6 +123,11 @@ export interface CompleteMultipartUploadOutput {
|
|
|
123
123
|
ChecksumCRC64NVME?: string | undefined;
|
|
124
124
|
ChecksumSHA1?: string | undefined;
|
|
125
125
|
ChecksumSHA256?: string | undefined;
|
|
126
|
+
ChecksumSHA512?: string | undefined;
|
|
127
|
+
ChecksumMD5?: string | undefined;
|
|
128
|
+
ChecksumXXHASH64?: string | undefined;
|
|
129
|
+
ChecksumXXHASH3?: string | undefined;
|
|
130
|
+
ChecksumXXHASH128?: string | undefined;
|
|
126
131
|
ChecksumType?: ChecksumType | undefined;
|
|
127
132
|
ServerSideEncryption?: ServerSideEncryption | undefined;
|
|
128
133
|
VersionId?: string | undefined;
|
|
@@ -137,6 +142,11 @@ export interface CompletedPart {
|
|
|
137
142
|
ChecksumCRC64NVME?: string | undefined;
|
|
138
143
|
ChecksumSHA1?: string | undefined;
|
|
139
144
|
ChecksumSHA256?: string | undefined;
|
|
145
|
+
ChecksumSHA512?: string | undefined;
|
|
146
|
+
ChecksumMD5?: string | undefined;
|
|
147
|
+
ChecksumXXHASH64?: string | undefined;
|
|
148
|
+
ChecksumXXHASH3?: string | undefined;
|
|
149
|
+
ChecksumXXHASH128?: string | undefined;
|
|
140
150
|
PartNumber?: number | undefined;
|
|
141
151
|
}
|
|
142
152
|
export interface CompletedMultipartUpload {
|
|
@@ -152,6 +162,11 @@ export interface CompleteMultipartUploadRequest {
|
|
|
152
162
|
ChecksumCRC64NVME?: string | undefined;
|
|
153
163
|
ChecksumSHA1?: string | undefined;
|
|
154
164
|
ChecksumSHA256?: string | undefined;
|
|
165
|
+
ChecksumSHA512?: string | undefined;
|
|
166
|
+
ChecksumMD5?: string | undefined;
|
|
167
|
+
ChecksumXXHASH64?: string | undefined;
|
|
168
|
+
ChecksumXXHASH3?: string | undefined;
|
|
169
|
+
ChecksumXXHASH128?: string | undefined;
|
|
155
170
|
ChecksumType?: ChecksumType | undefined;
|
|
156
171
|
MpuObjectSize?: number | undefined;
|
|
157
172
|
RequestPayer?: RequestPayer | undefined;
|
|
@@ -171,6 +186,11 @@ export interface CopyObjectResult {
|
|
|
171
186
|
ChecksumCRC64NVME?: string | undefined;
|
|
172
187
|
ChecksumSHA1?: string | undefined;
|
|
173
188
|
ChecksumSHA256?: string | undefined;
|
|
189
|
+
ChecksumSHA512?: string | undefined;
|
|
190
|
+
ChecksumMD5?: string | undefined;
|
|
191
|
+
ChecksumXXHASH64?: string | undefined;
|
|
192
|
+
ChecksumXXHASH3?: string | undefined;
|
|
193
|
+
ChecksumXXHASH128?: string | undefined;
|
|
174
194
|
}
|
|
175
195
|
export interface CopyObjectOutput {
|
|
176
196
|
CopyObjectResult?: CopyObjectResult | undefined;
|
|
@@ -1139,6 +1159,11 @@ export interface GetObjectOutput {
|
|
|
1139
1159
|
ChecksumCRC64NVME?: string | undefined;
|
|
1140
1160
|
ChecksumSHA1?: string | undefined;
|
|
1141
1161
|
ChecksumSHA256?: string | undefined;
|
|
1162
|
+
ChecksumSHA512?: string | undefined;
|
|
1163
|
+
ChecksumMD5?: string | undefined;
|
|
1164
|
+
ChecksumXXHASH64?: string | undefined;
|
|
1165
|
+
ChecksumXXHASH3?: string | undefined;
|
|
1166
|
+
ChecksumXXHASH128?: string | undefined;
|
|
1142
1167
|
ChecksumType?: ChecksumType | undefined;
|
|
1143
1168
|
MissingMeta?: number | undefined;
|
|
1144
1169
|
VersionId?: string | undefined;
|
|
@@ -1207,6 +1232,11 @@ export interface Checksum {
|
|
|
1207
1232
|
ChecksumCRC64NVME?: string | undefined;
|
|
1208
1233
|
ChecksumSHA1?: string | undefined;
|
|
1209
1234
|
ChecksumSHA256?: string | undefined;
|
|
1235
|
+
ChecksumSHA512?: string | undefined;
|
|
1236
|
+
ChecksumMD5?: string | undefined;
|
|
1237
|
+
ChecksumXXHASH64?: string | undefined;
|
|
1238
|
+
ChecksumXXHASH3?: string | undefined;
|
|
1239
|
+
ChecksumXXHASH128?: string | undefined;
|
|
1210
1240
|
ChecksumType?: ChecksumType | undefined;
|
|
1211
1241
|
}
|
|
1212
1242
|
export interface ObjectPart {
|
|
@@ -1217,6 +1247,11 @@ export interface ObjectPart {
|
|
|
1217
1247
|
ChecksumCRC64NVME?: string | undefined;
|
|
1218
1248
|
ChecksumSHA1?: string | undefined;
|
|
1219
1249
|
ChecksumSHA256?: string | undefined;
|
|
1250
|
+
ChecksumSHA512?: string | undefined;
|
|
1251
|
+
ChecksumMD5?: string | undefined;
|
|
1252
|
+
ChecksumXXHASH64?: string | undefined;
|
|
1253
|
+
ChecksumXXHASH3?: string | undefined;
|
|
1254
|
+
ChecksumXXHASH128?: string | undefined;
|
|
1220
1255
|
}
|
|
1221
1256
|
export interface GetObjectAttributesParts {
|
|
1222
1257
|
TotalPartsCount?: number | undefined;
|
|
@@ -1354,6 +1389,11 @@ export interface HeadObjectOutput {
|
|
|
1354
1389
|
ChecksumCRC64NVME?: string | undefined;
|
|
1355
1390
|
ChecksumSHA1?: string | undefined;
|
|
1356
1391
|
ChecksumSHA256?: string | undefined;
|
|
1392
|
+
ChecksumSHA512?: string | undefined;
|
|
1393
|
+
ChecksumMD5?: string | undefined;
|
|
1394
|
+
ChecksumXXHASH64?: string | undefined;
|
|
1395
|
+
ChecksumXXHASH3?: string | undefined;
|
|
1396
|
+
ChecksumXXHASH128?: string | undefined;
|
|
1357
1397
|
ChecksumType?: ChecksumType | undefined;
|
|
1358
1398
|
ETag?: string | undefined;
|
|
1359
1399
|
MissingMeta?: number | undefined;
|
|
@@ -1645,6 +1685,11 @@ export interface Part {
|
|
|
1645
1685
|
ChecksumCRC64NVME?: string | undefined;
|
|
1646
1686
|
ChecksumSHA1?: string | undefined;
|
|
1647
1687
|
ChecksumSHA256?: string | undefined;
|
|
1688
|
+
ChecksumSHA512?: string | undefined;
|
|
1689
|
+
ChecksumMD5?: string | undefined;
|
|
1690
|
+
ChecksumXXHASH64?: string | undefined;
|
|
1691
|
+
ChecksumXXHASH3?: string | undefined;
|
|
1692
|
+
ChecksumXXHASH128?: string | undefined;
|
|
1648
1693
|
}
|
|
1649
1694
|
export interface ListPartsOutput {
|
|
1650
1695
|
AbortDate?: Date | undefined;
|
|
@@ -1854,6 +1899,11 @@ export interface PutObjectOutput {
|
|
|
1854
1899
|
ChecksumCRC64NVME?: string | undefined;
|
|
1855
1900
|
ChecksumSHA1?: string | undefined;
|
|
1856
1901
|
ChecksumSHA256?: string | undefined;
|
|
1902
|
+
ChecksumSHA512?: string | undefined;
|
|
1903
|
+
ChecksumMD5?: string | undefined;
|
|
1904
|
+
ChecksumXXHASH64?: string | undefined;
|
|
1905
|
+
ChecksumXXHASH3?: string | undefined;
|
|
1906
|
+
ChecksumXXHASH128?: string | undefined;
|
|
1857
1907
|
ChecksumType?: ChecksumType | undefined;
|
|
1858
1908
|
ServerSideEncryption?: ServerSideEncryption | undefined;
|
|
1859
1909
|
VersionId?: string | undefined;
|
|
@@ -1882,6 +1932,11 @@ export interface PutObjectRequest {
|
|
|
1882
1932
|
ChecksumCRC64NVME?: string | undefined;
|
|
1883
1933
|
ChecksumSHA1?: string | undefined;
|
|
1884
1934
|
ChecksumSHA256?: string | undefined;
|
|
1935
|
+
ChecksumSHA512?: string | undefined;
|
|
1936
|
+
ChecksumMD5?: string | undefined;
|
|
1937
|
+
ChecksumXXHASH64?: string | undefined;
|
|
1938
|
+
ChecksumXXHASH3?: string | undefined;
|
|
1939
|
+
ChecksumXXHASH128?: string | undefined;
|
|
1885
1940
|
Expires?: Date | undefined;
|
|
1886
1941
|
IfMatch?: string | undefined;
|
|
1887
1942
|
IfNoneMatch?: string | undefined;
|
|
@@ -241,6 +241,11 @@ export interface UploadPartOutput {
|
|
|
241
241
|
ChecksumCRC64NVME?: string | undefined;
|
|
242
242
|
ChecksumSHA1?: string | undefined;
|
|
243
243
|
ChecksumSHA256?: string | undefined;
|
|
244
|
+
ChecksumSHA512?: string | undefined;
|
|
245
|
+
ChecksumMD5?: string | undefined;
|
|
246
|
+
ChecksumXXHASH64?: string | undefined;
|
|
247
|
+
ChecksumXXHASH3?: string | undefined;
|
|
248
|
+
ChecksumXXHASH128?: string | undefined;
|
|
244
249
|
SSECustomerAlgorithm?: string | undefined;
|
|
245
250
|
SSECustomerKeyMD5?: string | undefined;
|
|
246
251
|
SSEKMSKeyId?: string | undefined;
|
|
@@ -258,6 +263,11 @@ export interface UploadPartRequest {
|
|
|
258
263
|
ChecksumCRC64NVME?: string | undefined;
|
|
259
264
|
ChecksumSHA1?: string | undefined;
|
|
260
265
|
ChecksumSHA256?: string | undefined;
|
|
266
|
+
ChecksumSHA512?: string | undefined;
|
|
267
|
+
ChecksumMD5?: string | undefined;
|
|
268
|
+
ChecksumXXHASH64?: string | undefined;
|
|
269
|
+
ChecksumXXHASH3?: string | undefined;
|
|
270
|
+
ChecksumXXHASH128?: string | undefined;
|
|
261
271
|
Key: string | undefined;
|
|
262
272
|
PartNumber: number | undefined;
|
|
263
273
|
UploadId: string | undefined;
|
|
@@ -275,6 +285,11 @@ export interface CopyPartResult {
|
|
|
275
285
|
ChecksumCRC64NVME?: string | undefined;
|
|
276
286
|
ChecksumSHA1?: string | undefined;
|
|
277
287
|
ChecksumSHA256?: string | undefined;
|
|
288
|
+
ChecksumSHA512?: string | undefined;
|
|
289
|
+
ChecksumMD5?: string | undefined;
|
|
290
|
+
ChecksumXXHASH64?: string | undefined;
|
|
291
|
+
ChecksumXXHASH3?: string | undefined;
|
|
292
|
+
ChecksumXXHASH128?: string | undefined;
|
|
278
293
|
}
|
|
279
294
|
export interface UploadPartCopyOutput {
|
|
280
295
|
CopySourceVersionId?: string | undefined;
|
|
@@ -327,6 +342,11 @@ export interface WriteGetObjectResponseRequest {
|
|
|
327
342
|
ChecksumCRC64NVME?: string | undefined;
|
|
328
343
|
ChecksumSHA1?: string | undefined;
|
|
329
344
|
ChecksumSHA256?: string | undefined;
|
|
345
|
+
ChecksumSHA512?: string | undefined;
|
|
346
|
+
ChecksumMD5?: string | undefined;
|
|
347
|
+
ChecksumXXHASH64?: string | undefined;
|
|
348
|
+
ChecksumXXHASH3?: string | undefined;
|
|
349
|
+
ChecksumXXHASH128?: string | undefined;
|
|
330
350
|
DeleteMarker?: boolean | undefined;
|
|
331
351
|
ETag?: string | undefined;
|
|
332
352
|
Expires?: Date | undefined;
|
|
@@ -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.1037.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,62 +30,62 @@
|
|
|
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.
|
|
34
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
35
|
-
"@aws-sdk/middleware-bucket-endpoint": "^3.972.
|
|
36
|
-
"@aws-sdk/middleware-expect-continue": "^3.972.
|
|
37
|
-
"@aws-sdk/middleware-flexible-checksums": "^3.974.
|
|
38
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
39
|
-
"@aws-sdk/middleware-location-constraint": "^3.972.
|
|
40
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
41
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
42
|
-
"@aws-sdk/middleware-sdk-s3": "^3.972.
|
|
43
|
-
"@aws-sdk/middleware-ssec": "^3.972.
|
|
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.
|
|
47
|
-
"@aws-sdk/types": "^3.973.
|
|
48
|
-
"@aws-sdk/util-endpoints": "^3.996.
|
|
49
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
50
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
51
|
-
"@smithy/config-resolver": "^4.4.
|
|
52
|
-
"@smithy/core": "^3.23.
|
|
53
|
-
"@smithy/eventstream-serde-browser": "^4.2.
|
|
54
|
-
"@smithy/eventstream-serde-config-resolver": "^4.3.
|
|
55
|
-
"@smithy/eventstream-serde-node": "^4.2.
|
|
56
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
57
|
-
"@smithy/hash-blob-browser": "^4.2.
|
|
58
|
-
"@smithy/hash-node": "^4.2.
|
|
59
|
-
"@smithy/hash-stream-node": "^4.2.
|
|
60
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
61
|
-
"@smithy/md5-js": "^4.2.
|
|
62
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
63
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
64
|
-
"@smithy/middleware-retry": "^4.5.
|
|
65
|
-
"@smithy/middleware-serde": "^4.2.
|
|
66
|
-
"@smithy/middleware-stack": "^4.2.
|
|
67
|
-
"@smithy/node-config-provider": "^4.3.
|
|
68
|
-
"@smithy/node-http-handler": "^4.
|
|
69
|
-
"@smithy/protocol-http": "^5.3.
|
|
70
|
-
"@smithy/smithy-client": "^4.12.
|
|
71
|
-
"@smithy/types": "^4.14.
|
|
72
|
-
"@smithy/url-parser": "^4.2.
|
|
33
|
+
"@aws-sdk/core": "^3.974.5",
|
|
34
|
+
"@aws-sdk/credential-provider-node": "^3.972.36",
|
|
35
|
+
"@aws-sdk/middleware-bucket-endpoint": "^3.972.10",
|
|
36
|
+
"@aws-sdk/middleware-expect-continue": "^3.972.10",
|
|
37
|
+
"@aws-sdk/middleware-flexible-checksums": "^3.974.13",
|
|
38
|
+
"@aws-sdk/middleware-host-header": "^3.972.10",
|
|
39
|
+
"@aws-sdk/middleware-location-constraint": "^3.972.10",
|
|
40
|
+
"@aws-sdk/middleware-logger": "^3.972.10",
|
|
41
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.11",
|
|
42
|
+
"@aws-sdk/middleware-sdk-s3": "^3.972.34",
|
|
43
|
+
"@aws-sdk/middleware-ssec": "^3.972.10",
|
|
44
|
+
"@aws-sdk/middleware-user-agent": "^3.972.35",
|
|
45
|
+
"@aws-sdk/region-config-resolver": "^3.972.13",
|
|
46
|
+
"@aws-sdk/signature-v4-multi-region": "^3.996.22",
|
|
47
|
+
"@aws-sdk/types": "^3.973.8",
|
|
48
|
+
"@aws-sdk/util-endpoints": "^3.996.8",
|
|
49
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.10",
|
|
50
|
+
"@aws-sdk/util-user-agent-node": "^3.973.21",
|
|
51
|
+
"@smithy/config-resolver": "^4.4.17",
|
|
52
|
+
"@smithy/core": "^3.23.17",
|
|
53
|
+
"@smithy/eventstream-serde-browser": "^4.2.14",
|
|
54
|
+
"@smithy/eventstream-serde-config-resolver": "^4.3.14",
|
|
55
|
+
"@smithy/eventstream-serde-node": "^4.2.14",
|
|
56
|
+
"@smithy/fetch-http-handler": "^5.3.17",
|
|
57
|
+
"@smithy/hash-blob-browser": "^4.2.15",
|
|
58
|
+
"@smithy/hash-node": "^4.2.14",
|
|
59
|
+
"@smithy/hash-stream-node": "^4.2.14",
|
|
60
|
+
"@smithy/invalid-dependency": "^4.2.14",
|
|
61
|
+
"@smithy/md5-js": "^4.2.14",
|
|
62
|
+
"@smithy/middleware-content-length": "^4.2.14",
|
|
63
|
+
"@smithy/middleware-endpoint": "^4.4.32",
|
|
64
|
+
"@smithy/middleware-retry": "^4.5.5",
|
|
65
|
+
"@smithy/middleware-serde": "^4.2.20",
|
|
66
|
+
"@smithy/middleware-stack": "^4.2.14",
|
|
67
|
+
"@smithy/node-config-provider": "^4.3.14",
|
|
68
|
+
"@smithy/node-http-handler": "^4.6.1",
|
|
69
|
+
"@smithy/protocol-http": "^5.3.14",
|
|
70
|
+
"@smithy/smithy-client": "^4.12.13",
|
|
71
|
+
"@smithy/types": "^4.14.1",
|
|
72
|
+
"@smithy/url-parser": "^4.2.14",
|
|
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.
|
|
78
|
-
"@smithy/util-endpoints": "^3.
|
|
79
|
-
"@smithy/util-middleware": "^4.2.
|
|
80
|
-
"@smithy/util-retry": "^4.3.
|
|
81
|
-
"@smithy/util-stream": "^4.5.
|
|
76
|
+
"@smithy/util-defaults-mode-browser": "^4.3.49",
|
|
77
|
+
"@smithy/util-defaults-mode-node": "^4.2.54",
|
|
78
|
+
"@smithy/util-endpoints": "^3.4.2",
|
|
79
|
+
"@smithy/util-middleware": "^4.2.14",
|
|
80
|
+
"@smithy/util-retry": "^4.3.4",
|
|
81
|
+
"@smithy/util-stream": "^4.5.25",
|
|
82
82
|
"@smithy/util-utf8": "^4.2.2",
|
|
83
|
-
"@smithy/util-waiter": "^4.2.
|
|
83
|
+
"@smithy/util-waiter": "^4.2.16",
|
|
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.1037.0",
|
|
88
|
+
"@smithy/snapshot-testing": "^2.0.8",
|
|
89
89
|
"@tsconfig/node20": "20.1.8",
|
|
90
90
|
"@types/node": "^20.14.8",
|
|
91
91
|
"concurrently": "7.0.0",
|