@cdklabs/cdk-ssm-documents 0.0.57 → 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 +11 -11
- package/lib/construct/synth-utils.js +1 -1
- package/lib/document/automation-document.js +1 -1
- package/lib/document/command-document.js +1 -1
- package/lib/document/document-builder.js +2 -2
- package/lib/document/ssm-document.js +1 -1
- package/lib/domain/aws-service.js +1 -1
- package/lib/domain/choice.js +1 -1
- package/lib/domain/data-type.js +1 -1
- package/lib/domain/enum/install-action.js +2 -2
- package/lib/domain/enum/install-uninstall-repair.js +2 -2
- package/lib/domain/enum/installation-type.js +2 -2
- package/lib/domain/enum/package-name.js +2 -2
- package/lib/domain/input.js +1 -1
- package/lib/domain/operation.js +1 -1
- package/lib/domain/platform.js +1 -1
- package/lib/domain/precondition.js +1 -1
- package/lib/incident-response/incident-response.js +3 -3
- package/lib/interface/approve-hook.js +2 -2
- package/lib/interface/auth-method.js +3 -3
- package/lib/interface/aws-invoker.js +2 -2
- package/lib/interface/downloadable-content.js +8 -8
- package/lib/interface/environment.js +3 -3
- package/lib/interface/execute-automation-hook/api-execute-automation-hook.js +1 -1
- package/lib/interface/observer.js +1 -1
- package/lib/interface/on-failure.js +6 -6
- package/lib/interface/pause-hook.js +2 -2
- package/lib/interface/run-command-hook/api-run-command-hook.js +1 -1
- package/lib/interface/run-document-location.js +2 -2
- package/lib/interface/sleep-hook.js +2 -2
- package/lib/interface/step-ref.js +1 -1
- package/lib/interface/variables/boolean-variable.js +2 -2
- package/lib/interface/variables/map-list-variable.js +2 -2
- package/lib/interface/variables/number-variable.js +2 -2
- package/lib/interface/variables/secure-string-variable.js +4 -4
- package/lib/interface/variables/string-list-variable.js +2 -2
- package/lib/interface/variables/string-map-variable.js +2 -2
- package/lib/interface/variables/string-variable.js +4 -4
- package/lib/interface/variables/variable.js +2 -2
- package/lib/interface/webhook.js +1 -1
- package/lib/parent-steps/automation/approve-step.js +1 -1
- package/lib/parent-steps/automation/assert-aws-resource-step.js +1 -1
- package/lib/parent-steps/automation/aws-api-step.js +1 -1
- package/lib/parent-steps/automation/branch-step.js +1 -1
- package/lib/parent-steps/automation/change-instance-state-step.js +3 -3
- package/lib/parent-steps/automation/copy-image-step.js +1 -1
- package/lib/parent-steps/automation/create-image-step.js +1 -1
- package/lib/parent-steps/automation/create-stack-step.js +3 -3
- package/lib/parent-steps/automation/create-tags-step.js +3 -3
- package/lib/parent-steps/automation/delete-image-step.js +1 -1
- package/lib/parent-steps/automation/delete-stack-step.js +1 -1
- package/lib/parent-steps/automation/execute-automation-step.js +1 -1
- package/lib/parent-steps/automation/execute-script-step.js +5 -5
- package/lib/parent-steps/automation/execute-state-machine-step.js +1 -1
- package/lib/parent-steps/automation/invoke-lambda-function-step.js +1 -1
- package/lib/parent-steps/automation/invoke-webhook-step.js +1 -1
- package/lib/parent-steps/automation/pause-step.js +1 -1
- package/lib/parent-steps/automation/run-command-step.js +3 -3
- package/lib/parent-steps/automation/run-instance-step.js +1 -1
- package/lib/parent-steps/automation/sleep-step.js +1 -1
- package/lib/parent-steps/automation/update-variable.js +1 -1
- package/lib/parent-steps/automation/wait-for-resource-step.js +1 -1
- package/lib/parent-steps/automation-step.js +1 -1
- package/lib/parent-steps/command/applications-step.js +1 -1
- package/lib/parent-steps/command/configure-docker-step.js +1 -1
- package/lib/parent-steps/command/configure-package-step.js +1 -1
- package/lib/parent-steps/command/domain-join-step.js +1 -1
- package/lib/parent-steps/command/download-content-step.js +1 -1
- package/lib/parent-steps/command/ps-module-step.js +1 -1
- package/lib/parent-steps/command/run-docker-action-step.js +1 -1
- package/lib/parent-steps/command/run-document-step.js +1 -1
- package/lib/parent-steps/command/run-powershell-script-step.js +1 -1
- package/lib/parent-steps/command/run-shell-script-step.js +1 -1
- package/lib/parent-steps/command/software-inventory-step.js +1 -1
- package/lib/parent-steps/command/update-agent-step.js +1 -1
- package/lib/parent-steps/command/update-ssm-agent-step.js +1 -1
- package/lib/parent-steps/command-step.js +1 -1
- package/lib/parent-steps/step.js +1 -1
- package/lib/patterns/automation/composite-step.js +2 -2
- package/lib/patterns/automation/reboot-instance-and-wait.js +1 -1
- package/lib/patterns/automation/string-step.js +1 -1
- package/lib/patterns/document/string-document.js +1 -1
- package/lib/patterns/document/timed-document.js +1 -1
- package/lib/samples/hello-world.js +1 -1
- package/lib/simulation/automation/approve-simulation.js +1 -1
- package/lib/simulation/automation/assert-aws-resource-simulation.js +1 -1
- package/lib/simulation/automation/automation-simulation-base.js +1 -1
- package/lib/simulation/automation/aws-api-simulation.js +1 -1
- package/lib/simulation/automation/branch-simulation.js +1 -1
- package/lib/simulation/automation/change-instance-state-simulation.js +1 -1
- package/lib/simulation/automation/copy-image-simulation.js +1 -1
- package/lib/simulation/automation/create-image-simulation.js +1 -1
- package/lib/simulation/automation/create-stack-simulation.js +1 -1
- package/lib/simulation/automation/create-tags-simulation.js +1 -1
- package/lib/simulation/automation/delete-image-simulation.js +1 -1
- package/lib/simulation/automation/delete-stack-simulation.js +1 -1
- package/lib/simulation/automation/execute-script-simulation.js +1 -1
- package/lib/simulation/automation/execute-state-machine-simulation.js +1 -1
- package/lib/simulation/automation/invoke-lambda-function-simulation.js +1 -1
- package/lib/simulation/automation/invoke-webhook-simulation.js +1 -1
- package/lib/simulation/automation/pause-simulation.js +1 -1
- package/lib/simulation/automation/run-command-simulation.js +1 -1
- package/lib/simulation/automation/run-instance-simulation.js +1 -1
- package/lib/simulation/automation/sleep-simulation.js +1 -1
- package/lib/simulation/automation/update-variable-simulation.js +1 -1
- package/lib/simulation/automation/wait-for-resource-simulation.js +1 -1
- package/lib/simulation/automation-step-simulation.js +1 -1
- package/lib/simulation/command/command-simulation-base.js +1 -1
- package/lib/simulation/command/ps-module-simulation.js +1 -1
- package/lib/simulation/command/run-powershell-script-simulation.js +1 -1
- package/lib/simulation/command/run-shell-script-simulation.js +1 -1
- package/lib/simulation/command-step-simulation.js +1 -1
- package/lib/simulation/document/automation-simulation.js +1 -1
- package/lib/simulation/document/command-simulation.js +1 -1
- package/lib/simulation/simulation.js +1 -1
- package/node_modules/@aws-sdk/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 +18 -18
- 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/ts3.4/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cloudwatch/package.json +20 -20
- 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 +20 -20
- 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 +19 -19
- 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 +27 -21
- 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 +24 -24
- 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 +18 -18
- 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 +20 -20
- 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 +18 -18
- package/node_modules/@aws-sdk/core/dist-cjs/index.js +20 -11
- 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 +18 -11
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/setFeature.js +2 -0
- 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 +6 -3
- 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/query/QueryShapeSerializer.js +2 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/AwsRestXmlProtocol.js +0 -1
- 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/package.json +7 -5
- package/node_modules/@aws-sdk/credential-provider-env/package.json +2 -2
- package/node_modules/@aws-sdk/credential-provider-http/package.json +5 -5
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +9 -9
- package/node_modules/@aws-sdk/credential-provider-login/package.json +3 -3
- package/node_modules/@aws-sdk/credential-provider-node/package.json +7 -7
- package/node_modules/@aws-sdk/credential-provider-process/package.json +2 -2
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +4 -4
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +3 -3
- package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +4 -4
- package/node_modules/@aws-sdk/middleware-sdk-ec2/package.json +3 -3
- 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 +15 -8
- package/node_modules/@aws-sdk/middleware-sdk-sqs/package.json +2 -2
- package/node_modules/@aws-sdk/middleware-user-agent/package.json +5 -5
- 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 +18 -17
- package/node_modules/@aws-sdk/region-config-resolver/package.json +2 -2
- package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +2 -2
- package/node_modules/@aws-sdk/token-providers/package.json +3 -3
- package/node_modules/@aws-sdk/util-endpoints/package.json +2 -2
- package/node_modules/@aws-sdk/util-user-agent-node/package.json +2 -2
- 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 +2 -2
- 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/core/package.json +2 -2
- package/node_modules/@smithy/middleware-compression/package.json +2 -2
- package/node_modules/@smithy/middleware-endpoint/package.json +3 -3
- package/node_modules/@smithy/middleware-retry/package.json +5 -5
- package/node_modules/@smithy/middleware-serde/package.json +2 -2
- package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +27 -16
- package/node_modules/@smithy/node-http-handler/dist-es/http2/ClientHttp2SessionRef.js +5 -0
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +22 -16
- package/node_modules/@smithy/node-http-handler/dist-types/http2/ClientHttp2SessionRef.d.ts +4 -0
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +2 -4
- package/node_modules/@smithy/node-http-handler/package.json +1 -1
- package/node_modules/@smithy/service-error-classification/dist-cjs/index.js +1 -0
- package/node_modules/@smithy/service-error-classification/dist-es/index.js +1 -0
- package/node_modules/@smithy/service-error-classification/package.json +1 -1
- package/node_modules/@smithy/smithy-client/package.json +4 -4
- package/node_modules/@smithy/util-defaults-mode-browser/package.json +2 -2
- package/node_modules/@smithy/util-defaults-mode-node/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 +2 -2
- package/node_modules/@smithy/util-stream/package.json +2 -2
- 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 +1 -1
- 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/nested-clients/dist-es/submodules/cognito-identity/endpoint/ruleset.js
DELETED
|
@@ -1,143 +0,0 @@
|
|
|
1
|
-
const w = "required", x = "fn", y = "argv", z = "ref";
|
|
2
|
-
const a = true, b = "isSet", c = "booleanEquals", d = "error", e = "endpoint", f = "tree", g = "PartitionResult", h = "getAttr", i = "stringEquals", j = { [w]: false, type: "string" }, k = { [w]: true, default: false, type: "boolean" }, l = { [z]: "Endpoint" }, m = { [x]: c, [y]: [{ [z]: "UseFIPS" }, true] }, n = { [x]: c, [y]: [{ [z]: "UseDualStack" }, true] }, o = {}, p = { [z]: "Region" }, q = { [x]: h, [y]: [{ [z]: g }, "supportsFIPS"] }, r = { [z]: g }, s = { [x]: c, [y]: [true, { [x]: h, [y]: [r, "supportsDualStack"] }] }, t = [m], u = [n], v = [p];
|
|
3
|
-
const _data = {
|
|
4
|
-
version: "1.0",
|
|
5
|
-
parameters: { Region: j, UseDualStack: k, UseFIPS: k, Endpoint: j },
|
|
6
|
-
rules: [
|
|
7
|
-
{
|
|
8
|
-
conditions: [{ [x]: b, [y]: [l] }],
|
|
9
|
-
rules: [
|
|
10
|
-
{ conditions: t, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: d },
|
|
11
|
-
{ conditions: u, error: "Invalid Configuration: Dualstack and custom endpoint are not supported", type: d },
|
|
12
|
-
{ endpoint: { url: l, properties: o, headers: o }, type: e },
|
|
13
|
-
],
|
|
14
|
-
type: f,
|
|
15
|
-
},
|
|
16
|
-
{
|
|
17
|
-
conditions: [{ [x]: b, [y]: v }],
|
|
18
|
-
rules: [
|
|
19
|
-
{
|
|
20
|
-
conditions: [{ [x]: "aws.partition", [y]: v, assign: g }],
|
|
21
|
-
rules: [
|
|
22
|
-
{
|
|
23
|
-
conditions: [m, n],
|
|
24
|
-
rules: [
|
|
25
|
-
{
|
|
26
|
-
conditions: [{ [x]: c, [y]: [a, q] }, s],
|
|
27
|
-
rules: [
|
|
28
|
-
{
|
|
29
|
-
conditions: [{ [x]: i, [y]: [p, "us-east-1"] }],
|
|
30
|
-
endpoint: {
|
|
31
|
-
url: "https://cognito-identity-fips.us-east-1.amazonaws.com",
|
|
32
|
-
properties: o,
|
|
33
|
-
headers: o,
|
|
34
|
-
},
|
|
35
|
-
type: e,
|
|
36
|
-
},
|
|
37
|
-
{
|
|
38
|
-
conditions: [{ [x]: i, [y]: [p, "us-east-2"] }],
|
|
39
|
-
endpoint: {
|
|
40
|
-
url: "https://cognito-identity-fips.us-east-2.amazonaws.com",
|
|
41
|
-
properties: o,
|
|
42
|
-
headers: o,
|
|
43
|
-
},
|
|
44
|
-
type: e,
|
|
45
|
-
},
|
|
46
|
-
{
|
|
47
|
-
conditions: [{ [x]: i, [y]: [p, "us-west-1"] }],
|
|
48
|
-
endpoint: {
|
|
49
|
-
url: "https://cognito-identity-fips.us-west-1.amazonaws.com",
|
|
50
|
-
properties: o,
|
|
51
|
-
headers: o,
|
|
52
|
-
},
|
|
53
|
-
type: e,
|
|
54
|
-
},
|
|
55
|
-
{
|
|
56
|
-
conditions: [{ [x]: i, [y]: [p, "us-west-2"] }],
|
|
57
|
-
endpoint: {
|
|
58
|
-
url: "https://cognito-identity-fips.us-west-2.amazonaws.com",
|
|
59
|
-
properties: o,
|
|
60
|
-
headers: o,
|
|
61
|
-
},
|
|
62
|
-
type: e,
|
|
63
|
-
},
|
|
64
|
-
{
|
|
65
|
-
endpoint: {
|
|
66
|
-
url: "https://cognito-identity-fips.{Region}.{PartitionResult#dualStackDnsSuffix}",
|
|
67
|
-
properties: o,
|
|
68
|
-
headers: o,
|
|
69
|
-
},
|
|
70
|
-
type: e,
|
|
71
|
-
},
|
|
72
|
-
],
|
|
73
|
-
type: f,
|
|
74
|
-
},
|
|
75
|
-
{ error: "FIPS and DualStack are enabled, but this partition does not support one or both", type: d },
|
|
76
|
-
],
|
|
77
|
-
type: f,
|
|
78
|
-
},
|
|
79
|
-
{
|
|
80
|
-
conditions: t,
|
|
81
|
-
rules: [
|
|
82
|
-
{
|
|
83
|
-
conditions: [{ [x]: c, [y]: [q, a] }],
|
|
84
|
-
rules: [
|
|
85
|
-
{
|
|
86
|
-
endpoint: {
|
|
87
|
-
url: "https://cognito-identity-fips.{Region}.{PartitionResult#dnsSuffix}",
|
|
88
|
-
properties: o,
|
|
89
|
-
headers: o,
|
|
90
|
-
},
|
|
91
|
-
type: e,
|
|
92
|
-
},
|
|
93
|
-
],
|
|
94
|
-
type: f,
|
|
95
|
-
},
|
|
96
|
-
{ error: "FIPS is enabled but this partition does not support FIPS", type: d },
|
|
97
|
-
],
|
|
98
|
-
type: f,
|
|
99
|
-
},
|
|
100
|
-
{
|
|
101
|
-
conditions: u,
|
|
102
|
-
rules: [
|
|
103
|
-
{
|
|
104
|
-
conditions: [s],
|
|
105
|
-
rules: [
|
|
106
|
-
{
|
|
107
|
-
conditions: [{ [x]: i, [y]: ["aws", { [x]: h, [y]: [r, "name"] }] }],
|
|
108
|
-
endpoint: { url: "https://cognito-identity.{Region}.amazonaws.com", properties: o, headers: o },
|
|
109
|
-
type: e,
|
|
110
|
-
},
|
|
111
|
-
{
|
|
112
|
-
endpoint: {
|
|
113
|
-
url: "https://cognito-identity.{Region}.{PartitionResult#dualStackDnsSuffix}",
|
|
114
|
-
properties: o,
|
|
115
|
-
headers: o,
|
|
116
|
-
},
|
|
117
|
-
type: e,
|
|
118
|
-
},
|
|
119
|
-
],
|
|
120
|
-
type: f,
|
|
121
|
-
},
|
|
122
|
-
{ error: "DualStack is enabled but this partition does not support DualStack", type: d },
|
|
123
|
-
],
|
|
124
|
-
type: f,
|
|
125
|
-
},
|
|
126
|
-
{
|
|
127
|
-
endpoint: {
|
|
128
|
-
url: "https://cognito-identity.{Region}.{PartitionResult#dnsSuffix}",
|
|
129
|
-
properties: o,
|
|
130
|
-
headers: o,
|
|
131
|
-
},
|
|
132
|
-
type: e,
|
|
133
|
-
},
|
|
134
|
-
],
|
|
135
|
-
type: f,
|
|
136
|
-
},
|
|
137
|
-
],
|
|
138
|
-
type: f,
|
|
139
|
-
},
|
|
140
|
-
{ error: "Invalid Configuration: Missing Region", type: d },
|
|
141
|
-
],
|
|
142
|
-
};
|
|
143
|
-
export const ruleSet = _data;
|
|
@@ -1,130 +0,0 @@
|
|
|
1
|
-
const u = "required", v = "fn", w = "argv", x = "ref";
|
|
2
|
-
const a = true, b = "isSet", c = "booleanEquals", d = "error", e = "endpoint", f = "tree", g = "PartitionResult", h = "stringEquals", i = { [u]: true, default: false, type: "boolean" }, j = { [u]: false, type: "string" }, k = { [x]: "Endpoint" }, l = { [v]: c, [w]: [{ [x]: "UseFIPS" }, true] }, m = { [v]: c, [w]: [{ [x]: "UseDualStack" }, true] }, n = {}, o = { [v]: "getAttr", [w]: [{ [x]: g }, "name"] }, p = { [v]: c, [w]: [{ [x]: "UseFIPS" }, false] }, q = { [v]: c, [w]: [{ [x]: "UseDualStack" }, false] }, r = { [v]: "getAttr", [w]: [{ [x]: g }, "supportsFIPS"] }, s = { [v]: c, [w]: [true, { [v]: "getAttr", [w]: [{ [x]: g }, "supportsDualStack"] }] }, t = [{ [x]: "Region" }];
|
|
3
|
-
const _data = {
|
|
4
|
-
version: "1.0",
|
|
5
|
-
parameters: { UseDualStack: i, UseFIPS: i, Endpoint: j, Region: j },
|
|
6
|
-
rules: [
|
|
7
|
-
{
|
|
8
|
-
conditions: [{ [v]: b, [w]: [k] }],
|
|
9
|
-
rules: [
|
|
10
|
-
{ conditions: [l], error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: d },
|
|
11
|
-
{
|
|
12
|
-
rules: [
|
|
13
|
-
{
|
|
14
|
-
conditions: [m],
|
|
15
|
-
error: "Invalid Configuration: Dualstack and custom endpoint are not supported",
|
|
16
|
-
type: d,
|
|
17
|
-
},
|
|
18
|
-
{ endpoint: { url: k, properties: n, headers: n }, type: e },
|
|
19
|
-
],
|
|
20
|
-
type: f,
|
|
21
|
-
},
|
|
22
|
-
],
|
|
23
|
-
type: f,
|
|
24
|
-
},
|
|
25
|
-
{
|
|
26
|
-
rules: [
|
|
27
|
-
{
|
|
28
|
-
conditions: [{ [v]: b, [w]: t }],
|
|
29
|
-
rules: [
|
|
30
|
-
{
|
|
31
|
-
conditions: [{ [v]: "aws.partition", [w]: t, assign: g }],
|
|
32
|
-
rules: [
|
|
33
|
-
{
|
|
34
|
-
conditions: [{ [v]: h, [w]: [o, "aws"] }, p, q],
|
|
35
|
-
endpoint: { url: "https://{Region}.signin.aws.amazon.com", properties: n, headers: n },
|
|
36
|
-
type: e,
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
conditions: [{ [v]: h, [w]: [o, "aws-cn"] }, p, q],
|
|
40
|
-
endpoint: { url: "https://{Region}.signin.amazonaws.cn", properties: n, headers: n },
|
|
41
|
-
type: e,
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
conditions: [{ [v]: h, [w]: [o, "aws-us-gov"] }, p, q],
|
|
45
|
-
endpoint: { url: "https://{Region}.signin.amazonaws-us-gov.com", properties: n, headers: n },
|
|
46
|
-
type: e,
|
|
47
|
-
},
|
|
48
|
-
{
|
|
49
|
-
conditions: [l, m],
|
|
50
|
-
rules: [
|
|
51
|
-
{
|
|
52
|
-
conditions: [{ [v]: c, [w]: [a, r] }, s],
|
|
53
|
-
rules: [
|
|
54
|
-
{
|
|
55
|
-
endpoint: {
|
|
56
|
-
url: "https://signin-fips.{Region}.{PartitionResult#dualStackDnsSuffix}",
|
|
57
|
-
properties: n,
|
|
58
|
-
headers: n,
|
|
59
|
-
},
|
|
60
|
-
type: e,
|
|
61
|
-
},
|
|
62
|
-
],
|
|
63
|
-
type: f,
|
|
64
|
-
},
|
|
65
|
-
{
|
|
66
|
-
error: "FIPS and DualStack are enabled, but this partition does not support one or both",
|
|
67
|
-
type: d,
|
|
68
|
-
},
|
|
69
|
-
],
|
|
70
|
-
type: f,
|
|
71
|
-
},
|
|
72
|
-
{
|
|
73
|
-
conditions: [l, q],
|
|
74
|
-
rules: [
|
|
75
|
-
{
|
|
76
|
-
conditions: [{ [v]: c, [w]: [r, a] }],
|
|
77
|
-
rules: [
|
|
78
|
-
{
|
|
79
|
-
endpoint: {
|
|
80
|
-
url: "https://signin-fips.{Region}.{PartitionResult#dnsSuffix}",
|
|
81
|
-
properties: n,
|
|
82
|
-
headers: n,
|
|
83
|
-
},
|
|
84
|
-
type: e,
|
|
85
|
-
},
|
|
86
|
-
],
|
|
87
|
-
type: f,
|
|
88
|
-
},
|
|
89
|
-
{ error: "FIPS is enabled but this partition does not support FIPS", type: d },
|
|
90
|
-
],
|
|
91
|
-
type: f,
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
conditions: [p, m],
|
|
95
|
-
rules: [
|
|
96
|
-
{
|
|
97
|
-
conditions: [s],
|
|
98
|
-
rules: [
|
|
99
|
-
{
|
|
100
|
-
endpoint: {
|
|
101
|
-
url: "https://signin.{Region}.{PartitionResult#dualStackDnsSuffix}",
|
|
102
|
-
properties: n,
|
|
103
|
-
headers: n,
|
|
104
|
-
},
|
|
105
|
-
type: e,
|
|
106
|
-
},
|
|
107
|
-
],
|
|
108
|
-
type: f,
|
|
109
|
-
},
|
|
110
|
-
{ error: "DualStack is enabled but this partition does not support DualStack", type: d },
|
|
111
|
-
],
|
|
112
|
-
type: f,
|
|
113
|
-
},
|
|
114
|
-
{
|
|
115
|
-
endpoint: { url: "https://signin.{Region}.{PartitionResult#dnsSuffix}", properties: n, headers: n },
|
|
116
|
-
type: e,
|
|
117
|
-
},
|
|
118
|
-
],
|
|
119
|
-
type: f,
|
|
120
|
-
},
|
|
121
|
-
],
|
|
122
|
-
type: f,
|
|
123
|
-
},
|
|
124
|
-
{ error: "Invalid Configuration: Missing Region", type: d },
|
|
125
|
-
],
|
|
126
|
-
type: f,
|
|
127
|
-
},
|
|
128
|
-
],
|
|
129
|
-
};
|
|
130
|
-
export const ruleSet = _data;
|
|
@@ -1,103 +0,0 @@
|
|
|
1
|
-
const u = "required", v = "fn", w = "argv", x = "ref";
|
|
2
|
-
const a = true, b = "isSet", c = "booleanEquals", d = "error", e = "endpoint", f = "tree", g = "PartitionResult", h = "getAttr", i = { [u]: false, type: "string" }, j = { [u]: true, default: false, type: "boolean" }, k = { [x]: "Endpoint" }, l = { [v]: c, [w]: [{ [x]: "UseFIPS" }, true] }, m = { [v]: c, [w]: [{ [x]: "UseDualStack" }, true] }, n = {}, o = { [v]: h, [w]: [{ [x]: g }, "supportsFIPS"] }, p = { [x]: g }, q = { [v]: c, [w]: [true, { [v]: h, [w]: [p, "supportsDualStack"] }] }, r = [l], s = [m], t = [{ [x]: "Region" }];
|
|
3
|
-
const _data = {
|
|
4
|
-
version: "1.0",
|
|
5
|
-
parameters: { Region: i, UseDualStack: j, UseFIPS: j, Endpoint: i },
|
|
6
|
-
rules: [
|
|
7
|
-
{
|
|
8
|
-
conditions: [{ [v]: b, [w]: [k] }],
|
|
9
|
-
rules: [
|
|
10
|
-
{ conditions: r, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: d },
|
|
11
|
-
{ conditions: s, error: "Invalid Configuration: Dualstack and custom endpoint are not supported", type: d },
|
|
12
|
-
{ endpoint: { url: k, properties: n, headers: n }, type: e },
|
|
13
|
-
],
|
|
14
|
-
type: f,
|
|
15
|
-
},
|
|
16
|
-
{
|
|
17
|
-
conditions: [{ [v]: b, [w]: t }],
|
|
18
|
-
rules: [
|
|
19
|
-
{
|
|
20
|
-
conditions: [{ [v]: "aws.partition", [w]: t, assign: g }],
|
|
21
|
-
rules: [
|
|
22
|
-
{
|
|
23
|
-
conditions: [l, m],
|
|
24
|
-
rules: [
|
|
25
|
-
{
|
|
26
|
-
conditions: [{ [v]: c, [w]: [a, o] }, q],
|
|
27
|
-
rules: [
|
|
28
|
-
{
|
|
29
|
-
endpoint: {
|
|
30
|
-
url: "https://portal.sso-fips.{Region}.{PartitionResult#dualStackDnsSuffix}",
|
|
31
|
-
properties: n,
|
|
32
|
-
headers: n,
|
|
33
|
-
},
|
|
34
|
-
type: e,
|
|
35
|
-
},
|
|
36
|
-
],
|
|
37
|
-
type: f,
|
|
38
|
-
},
|
|
39
|
-
{ error: "FIPS and DualStack are enabled, but this partition does not support one or both", type: d },
|
|
40
|
-
],
|
|
41
|
-
type: f,
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
conditions: r,
|
|
45
|
-
rules: [
|
|
46
|
-
{
|
|
47
|
-
conditions: [{ [v]: c, [w]: [o, a] }],
|
|
48
|
-
rules: [
|
|
49
|
-
{
|
|
50
|
-
conditions: [{ [v]: "stringEquals", [w]: [{ [v]: h, [w]: [p, "name"] }, "aws-us-gov"] }],
|
|
51
|
-
endpoint: { url: "https://portal.sso.{Region}.amazonaws.com", properties: n, headers: n },
|
|
52
|
-
type: e,
|
|
53
|
-
},
|
|
54
|
-
{
|
|
55
|
-
endpoint: {
|
|
56
|
-
url: "https://portal.sso-fips.{Region}.{PartitionResult#dnsSuffix}",
|
|
57
|
-
properties: n,
|
|
58
|
-
headers: n,
|
|
59
|
-
},
|
|
60
|
-
type: e,
|
|
61
|
-
},
|
|
62
|
-
],
|
|
63
|
-
type: f,
|
|
64
|
-
},
|
|
65
|
-
{ error: "FIPS is enabled but this partition does not support FIPS", type: d },
|
|
66
|
-
],
|
|
67
|
-
type: f,
|
|
68
|
-
},
|
|
69
|
-
{
|
|
70
|
-
conditions: s,
|
|
71
|
-
rules: [
|
|
72
|
-
{
|
|
73
|
-
conditions: [q],
|
|
74
|
-
rules: [
|
|
75
|
-
{
|
|
76
|
-
endpoint: {
|
|
77
|
-
url: "https://portal.sso.{Region}.{PartitionResult#dualStackDnsSuffix}",
|
|
78
|
-
properties: n,
|
|
79
|
-
headers: n,
|
|
80
|
-
},
|
|
81
|
-
type: e,
|
|
82
|
-
},
|
|
83
|
-
],
|
|
84
|
-
type: f,
|
|
85
|
-
},
|
|
86
|
-
{ error: "DualStack is enabled but this partition does not support DualStack", type: d },
|
|
87
|
-
],
|
|
88
|
-
type: f,
|
|
89
|
-
},
|
|
90
|
-
{
|
|
91
|
-
endpoint: { url: "https://portal.sso.{Region}.{PartitionResult#dnsSuffix}", properties: n, headers: n },
|
|
92
|
-
type: e,
|
|
93
|
-
},
|
|
94
|
-
],
|
|
95
|
-
type: f,
|
|
96
|
-
},
|
|
97
|
-
],
|
|
98
|
-
type: f,
|
|
99
|
-
},
|
|
100
|
-
{ error: "Invalid Configuration: Missing Region", type: d },
|
|
101
|
-
],
|
|
102
|
-
};
|
|
103
|
-
export const ruleSet = _data;
|
package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/ruleset.js
DELETED
|
@@ -1,103 +0,0 @@
|
|
|
1
|
-
const u = "required", v = "fn", w = "argv", x = "ref";
|
|
2
|
-
const a = true, b = "isSet", c = "booleanEquals", d = "error", e = "endpoint", f = "tree", g = "PartitionResult", h = "getAttr", i = { [u]: false, type: "string" }, j = { [u]: true, default: false, type: "boolean" }, k = { [x]: "Endpoint" }, l = { [v]: c, [w]: [{ [x]: "UseFIPS" }, true] }, m = { [v]: c, [w]: [{ [x]: "UseDualStack" }, true] }, n = {}, o = { [v]: h, [w]: [{ [x]: g }, "supportsFIPS"] }, p = { [x]: g }, q = { [v]: c, [w]: [true, { [v]: h, [w]: [p, "supportsDualStack"] }] }, r = [l], s = [m], t = [{ [x]: "Region" }];
|
|
3
|
-
const _data = {
|
|
4
|
-
version: "1.0",
|
|
5
|
-
parameters: { Region: i, UseDualStack: j, UseFIPS: j, Endpoint: i },
|
|
6
|
-
rules: [
|
|
7
|
-
{
|
|
8
|
-
conditions: [{ [v]: b, [w]: [k] }],
|
|
9
|
-
rules: [
|
|
10
|
-
{ conditions: r, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: d },
|
|
11
|
-
{ conditions: s, error: "Invalid Configuration: Dualstack and custom endpoint are not supported", type: d },
|
|
12
|
-
{ endpoint: { url: k, properties: n, headers: n }, type: e },
|
|
13
|
-
],
|
|
14
|
-
type: f,
|
|
15
|
-
},
|
|
16
|
-
{
|
|
17
|
-
conditions: [{ [v]: b, [w]: t }],
|
|
18
|
-
rules: [
|
|
19
|
-
{
|
|
20
|
-
conditions: [{ [v]: "aws.partition", [w]: t, assign: g }],
|
|
21
|
-
rules: [
|
|
22
|
-
{
|
|
23
|
-
conditions: [l, m],
|
|
24
|
-
rules: [
|
|
25
|
-
{
|
|
26
|
-
conditions: [{ [v]: c, [w]: [a, o] }, q],
|
|
27
|
-
rules: [
|
|
28
|
-
{
|
|
29
|
-
endpoint: {
|
|
30
|
-
url: "https://oidc-fips.{Region}.{PartitionResult#dualStackDnsSuffix}",
|
|
31
|
-
properties: n,
|
|
32
|
-
headers: n,
|
|
33
|
-
},
|
|
34
|
-
type: e,
|
|
35
|
-
},
|
|
36
|
-
],
|
|
37
|
-
type: f,
|
|
38
|
-
},
|
|
39
|
-
{ error: "FIPS and DualStack are enabled, but this partition does not support one or both", type: d },
|
|
40
|
-
],
|
|
41
|
-
type: f,
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
conditions: r,
|
|
45
|
-
rules: [
|
|
46
|
-
{
|
|
47
|
-
conditions: [{ [v]: c, [w]: [o, a] }],
|
|
48
|
-
rules: [
|
|
49
|
-
{
|
|
50
|
-
conditions: [{ [v]: "stringEquals", [w]: [{ [v]: h, [w]: [p, "name"] }, "aws-us-gov"] }],
|
|
51
|
-
endpoint: { url: "https://oidc.{Region}.amazonaws.com", properties: n, headers: n },
|
|
52
|
-
type: e,
|
|
53
|
-
},
|
|
54
|
-
{
|
|
55
|
-
endpoint: {
|
|
56
|
-
url: "https://oidc-fips.{Region}.{PartitionResult#dnsSuffix}",
|
|
57
|
-
properties: n,
|
|
58
|
-
headers: n,
|
|
59
|
-
},
|
|
60
|
-
type: e,
|
|
61
|
-
},
|
|
62
|
-
],
|
|
63
|
-
type: f,
|
|
64
|
-
},
|
|
65
|
-
{ error: "FIPS is enabled but this partition does not support FIPS", type: d },
|
|
66
|
-
],
|
|
67
|
-
type: f,
|
|
68
|
-
},
|
|
69
|
-
{
|
|
70
|
-
conditions: s,
|
|
71
|
-
rules: [
|
|
72
|
-
{
|
|
73
|
-
conditions: [q],
|
|
74
|
-
rules: [
|
|
75
|
-
{
|
|
76
|
-
endpoint: {
|
|
77
|
-
url: "https://oidc.{Region}.{PartitionResult#dualStackDnsSuffix}",
|
|
78
|
-
properties: n,
|
|
79
|
-
headers: n,
|
|
80
|
-
},
|
|
81
|
-
type: e,
|
|
82
|
-
},
|
|
83
|
-
],
|
|
84
|
-
type: f,
|
|
85
|
-
},
|
|
86
|
-
{ error: "DualStack is enabled but this partition does not support DualStack", type: d },
|
|
87
|
-
],
|
|
88
|
-
type: f,
|
|
89
|
-
},
|
|
90
|
-
{
|
|
91
|
-
endpoint: { url: "https://oidc.{Region}.{PartitionResult#dnsSuffix}", properties: n, headers: n },
|
|
92
|
-
type: e,
|
|
93
|
-
},
|
|
94
|
-
],
|
|
95
|
-
type: f,
|
|
96
|
-
},
|
|
97
|
-
],
|
|
98
|
-
type: f,
|
|
99
|
-
},
|
|
100
|
-
{ error: "Invalid Configuration: Missing Region", type: d },
|
|
101
|
-
],
|
|
102
|
-
};
|
|
103
|
-
export const ruleSet = _data;
|
|
@@ -1,142 +0,0 @@
|
|
|
1
|
-
const F = "required", G = "type", H = "fn", I = "argv", J = "ref";
|
|
2
|
-
const a = false, b = true, c = "booleanEquals", d = "stringEquals", e = "sigv4", f = "sts", g = "us-east-1", h = "endpoint", i = "https://sts.{Region}.{PartitionResult#dnsSuffix}", j = "tree", k = "error", l = "getAttr", m = { [F]: false, [G]: "string" }, n = { [F]: true, default: false, [G]: "boolean" }, o = { [J]: "Endpoint" }, p = { [H]: "isSet", [I]: [{ [J]: "Region" }] }, q = { [J]: "Region" }, r = { [H]: "aws.partition", [I]: [q], assign: "PartitionResult" }, s = { [J]: "UseFIPS" }, t = { [J]: "UseDualStack" }, u = {
|
|
3
|
-
url: "https://sts.amazonaws.com",
|
|
4
|
-
properties: { authSchemes: [{ name: e, signingName: f, signingRegion: g }] },
|
|
5
|
-
headers: {},
|
|
6
|
-
}, v = {}, w = { conditions: [{ [H]: d, [I]: [q, "aws-global"] }], [h]: u, [G]: h }, x = { [H]: c, [I]: [s, true] }, y = { [H]: c, [I]: [t, true] }, z = { [H]: l, [I]: [{ [J]: "PartitionResult" }, "supportsFIPS"] }, A = { [J]: "PartitionResult" }, B = { [H]: c, [I]: [true, { [H]: l, [I]: [A, "supportsDualStack"] }] }, C = [{ [H]: "isSet", [I]: [o] }], D = [x], E = [y];
|
|
7
|
-
const _data = {
|
|
8
|
-
version: "1.0",
|
|
9
|
-
parameters: { Region: m, UseDualStack: n, UseFIPS: n, Endpoint: m, UseGlobalEndpoint: n },
|
|
10
|
-
rules: [
|
|
11
|
-
{
|
|
12
|
-
conditions: [
|
|
13
|
-
{ [H]: c, [I]: [{ [J]: "UseGlobalEndpoint" }, b] },
|
|
14
|
-
{ [H]: "not", [I]: C },
|
|
15
|
-
p,
|
|
16
|
-
r,
|
|
17
|
-
{ [H]: c, [I]: [s, a] },
|
|
18
|
-
{ [H]: c, [I]: [t, a] },
|
|
19
|
-
],
|
|
20
|
-
rules: [
|
|
21
|
-
{ conditions: [{ [H]: d, [I]: [q, "ap-northeast-1"] }], endpoint: u, [G]: h },
|
|
22
|
-
{ conditions: [{ [H]: d, [I]: [q, "ap-south-1"] }], endpoint: u, [G]: h },
|
|
23
|
-
{ conditions: [{ [H]: d, [I]: [q, "ap-southeast-1"] }], endpoint: u, [G]: h },
|
|
24
|
-
{ conditions: [{ [H]: d, [I]: [q, "ap-southeast-2"] }], endpoint: u, [G]: h },
|
|
25
|
-
w,
|
|
26
|
-
{ conditions: [{ [H]: d, [I]: [q, "ca-central-1"] }], endpoint: u, [G]: h },
|
|
27
|
-
{ conditions: [{ [H]: d, [I]: [q, "eu-central-1"] }], endpoint: u, [G]: h },
|
|
28
|
-
{ conditions: [{ [H]: d, [I]: [q, "eu-north-1"] }], endpoint: u, [G]: h },
|
|
29
|
-
{ conditions: [{ [H]: d, [I]: [q, "eu-west-1"] }], endpoint: u, [G]: h },
|
|
30
|
-
{ conditions: [{ [H]: d, [I]: [q, "eu-west-2"] }], endpoint: u, [G]: h },
|
|
31
|
-
{ conditions: [{ [H]: d, [I]: [q, "eu-west-3"] }], endpoint: u, [G]: h },
|
|
32
|
-
{ conditions: [{ [H]: d, [I]: [q, "sa-east-1"] }], endpoint: u, [G]: h },
|
|
33
|
-
{ conditions: [{ [H]: d, [I]: [q, g] }], endpoint: u, [G]: h },
|
|
34
|
-
{ conditions: [{ [H]: d, [I]: [q, "us-east-2"] }], endpoint: u, [G]: h },
|
|
35
|
-
{ conditions: [{ [H]: d, [I]: [q, "us-west-1"] }], endpoint: u, [G]: h },
|
|
36
|
-
{ conditions: [{ [H]: d, [I]: [q, "us-west-2"] }], endpoint: u, [G]: h },
|
|
37
|
-
{
|
|
38
|
-
endpoint: {
|
|
39
|
-
url: i,
|
|
40
|
-
properties: { authSchemes: [{ name: e, signingName: f, signingRegion: "{Region}" }] },
|
|
41
|
-
headers: v,
|
|
42
|
-
},
|
|
43
|
-
[G]: h,
|
|
44
|
-
},
|
|
45
|
-
],
|
|
46
|
-
[G]: j,
|
|
47
|
-
},
|
|
48
|
-
{
|
|
49
|
-
conditions: C,
|
|
50
|
-
rules: [
|
|
51
|
-
{ conditions: D, error: "Invalid Configuration: FIPS and custom endpoint are not supported", [G]: k },
|
|
52
|
-
{ conditions: E, error: "Invalid Configuration: Dualstack and custom endpoint are not supported", [G]: k },
|
|
53
|
-
{ endpoint: { url: o, properties: v, headers: v }, [G]: h },
|
|
54
|
-
],
|
|
55
|
-
[G]: j,
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
conditions: [p],
|
|
59
|
-
rules: [
|
|
60
|
-
{
|
|
61
|
-
conditions: [r],
|
|
62
|
-
rules: [
|
|
63
|
-
{
|
|
64
|
-
conditions: [x, y],
|
|
65
|
-
rules: [
|
|
66
|
-
{
|
|
67
|
-
conditions: [{ [H]: c, [I]: [b, z] }, B],
|
|
68
|
-
rules: [
|
|
69
|
-
{
|
|
70
|
-
endpoint: {
|
|
71
|
-
url: "https://sts-fips.{Region}.{PartitionResult#dualStackDnsSuffix}",
|
|
72
|
-
properties: v,
|
|
73
|
-
headers: v,
|
|
74
|
-
},
|
|
75
|
-
[G]: h,
|
|
76
|
-
},
|
|
77
|
-
],
|
|
78
|
-
[G]: j,
|
|
79
|
-
},
|
|
80
|
-
{ error: "FIPS and DualStack are enabled, but this partition does not support one or both", [G]: k },
|
|
81
|
-
],
|
|
82
|
-
[G]: j,
|
|
83
|
-
},
|
|
84
|
-
{
|
|
85
|
-
conditions: D,
|
|
86
|
-
rules: [
|
|
87
|
-
{
|
|
88
|
-
conditions: [{ [H]: c, [I]: [z, b] }],
|
|
89
|
-
rules: [
|
|
90
|
-
{
|
|
91
|
-
conditions: [{ [H]: d, [I]: [{ [H]: l, [I]: [A, "name"] }, "aws-us-gov"] }],
|
|
92
|
-
endpoint: { url: "https://sts.{Region}.amazonaws.com", properties: v, headers: v },
|
|
93
|
-
[G]: h,
|
|
94
|
-
},
|
|
95
|
-
{
|
|
96
|
-
endpoint: {
|
|
97
|
-
url: "https://sts-fips.{Region}.{PartitionResult#dnsSuffix}",
|
|
98
|
-
properties: v,
|
|
99
|
-
headers: v,
|
|
100
|
-
},
|
|
101
|
-
[G]: h,
|
|
102
|
-
},
|
|
103
|
-
],
|
|
104
|
-
[G]: j,
|
|
105
|
-
},
|
|
106
|
-
{ error: "FIPS is enabled but this partition does not support FIPS", [G]: k },
|
|
107
|
-
],
|
|
108
|
-
[G]: j,
|
|
109
|
-
},
|
|
110
|
-
{
|
|
111
|
-
conditions: E,
|
|
112
|
-
rules: [
|
|
113
|
-
{
|
|
114
|
-
conditions: [B],
|
|
115
|
-
rules: [
|
|
116
|
-
{
|
|
117
|
-
endpoint: {
|
|
118
|
-
url: "https://sts.{Region}.{PartitionResult#dualStackDnsSuffix}",
|
|
119
|
-
properties: v,
|
|
120
|
-
headers: v,
|
|
121
|
-
},
|
|
122
|
-
[G]: h,
|
|
123
|
-
},
|
|
124
|
-
],
|
|
125
|
-
[G]: j,
|
|
126
|
-
},
|
|
127
|
-
{ error: "DualStack is enabled but this partition does not support DualStack", [G]: k },
|
|
128
|
-
],
|
|
129
|
-
[G]: j,
|
|
130
|
-
},
|
|
131
|
-
w,
|
|
132
|
-
{ endpoint: { url: i, properties: v, headers: v }, [G]: h },
|
|
133
|
-
],
|
|
134
|
-
[G]: j,
|
|
135
|
-
},
|
|
136
|
-
],
|
|
137
|
-
[G]: j,
|
|
138
|
-
},
|
|
139
|
-
{ error: "Invalid Configuration: Missing Region", [G]: k },
|
|
140
|
-
],
|
|
141
|
-
};
|
|
142
|
-
export const ruleSet = _data;
|