@cdklabs/cdk-ssm-documents 0.0.57 → 0.0.59
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-cjs/index.js +9 -9
- 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-es/waiters/waitForChangeSetCreateComplete.js +2 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackCreateComplete.js +2 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackDeleteComplete.js +2 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackExists.js +2 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackImportComplete.js +2 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackRefactorCreateComplete.js +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackRefactorExecuteComplete.js +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackRollbackComplete.js +2 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackUpdateComplete.js +2 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/CloudFormation.d.ts +11 -10
- 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/CloudFormation.d.ts +13 -10
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForChangeSetCreateComplete.d.ts +9 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForStackCreateComplete.d.ts +9 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForStackDeleteComplete.d.ts +11 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForStackExists.d.ts +9 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForStackImportComplete.d.ts +9 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForStackRefactorCreateComplete.d.ts +11 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForStackRefactorExecuteComplete.d.ts +11 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForStackRollbackComplete.d.ts +9 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForStackUpdateComplete.d.ts +9 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForTypeRegistrationComplete.d.ts +11 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForChangeSetCreateComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackCreateComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackDeleteComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackImportComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackRefactorCreateComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackRefactorExecuteComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackRollbackComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackUpdateComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForTypeRegistrationComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-cloudformation/package.json +19 -19
- 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-cjs/index.js +1 -1
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/schemas/schemas_0.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-es/schemas/schemas_0.js +2 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/waiters/waitForAlarmExists.js +1 -1
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/waiters/waitForAlarmMuteRuleExists.js +2 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/waiters/waitForCompositeAlarmExists.js +1 -1
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/CloudWatch.d.ts +3 -3
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DeleteDashboardsCommand.d.ts +2 -4
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetOTelEnrichmentCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutDashboardCommand.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/StartOTelEnrichmentCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/StopOTelEnrichmentCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- 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 +37 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/CloudWatch.d.ts +3 -3
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/waiters/waitForAlarmExists.d.ts +9 -3
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/waiters/waitForAlarmMuteRuleExists.d.ts +9 -3
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/waiters/waitForCompositeAlarmExists.d.ts +9 -3
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/waiters/waitForAlarmExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/waiters/waitForAlarmMuteRuleExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/waiters/waitForCompositeAlarmExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-cloudwatch/package.json +21 -21
- 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 +103 -17
- 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-es/waiters/waitForImageAvailable.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForImageExists.js +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForInstanceExists.js +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForInstanceRunning.js +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForInstanceStatusOk.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForInstanceStopped.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForInstanceTerminated.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForInternetGatewayExists.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForKeyPairExists.js +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForNatGatewayAvailable.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForNatGatewayDeleted.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForNetworkInterfaceAvailable.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForPasswordDataAvailable.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSecondaryNetworkCreateComplete.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSecondarySubnetCreateComplete.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSecurityGroupExists.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSnapshotCompleted.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSpotInstanceRequestFulfilled.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSubnetAvailable.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVolumeAvailable.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVolumeDeleted.js +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVolumeInUse.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVpcAvailable.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVpcExists.js +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVpcPeeringConnectionDeleted.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVpcPeeringConnectionExists.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/EC2.d.ts +81 -43
- 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 +155 -43
- 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/dist-types/ts3.4/waiters/waitForBundleTaskComplete.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForConversionTaskCancelled.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForConversionTaskCompleted.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForConversionTaskDeleted.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForCustomerGatewayAvailable.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForExportTaskCancelled.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForExportTaskCompleted.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForImageAvailable.d.ts +7 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForImageExists.d.ts +7 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForImageUsageReportAvailable.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForInstanceExists.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForInstanceRunning.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForInstanceStatusOk.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForInstanceStopped.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForInstanceTerminated.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForInternetGatewayExists.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForKeyPairExists.d.ts +7 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForNatGatewayAvailable.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForNatGatewayDeleted.d.ts +11 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForNetworkInterfaceAvailable.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForPasswordDataAvailable.d.ts +7 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSecondaryNetworkCreateComplete.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSecondaryNetworkDeleteComplete.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSecondarySubnetCreateComplete.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSecondarySubnetDeleteComplete.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSecurityGroupExists.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSecurityGroupVpcAssociationAssociated.d.ts +11 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSecurityGroupVpcAssociationDisassociated.d.ts +11 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSnapshotCompleted.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSnapshotImported.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSpotInstanceRequestFulfilled.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForStoreImageTaskComplete.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSubnetAvailable.d.ts +7 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSystemStatusOk.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVolumeAvailable.d.ts +7 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVolumeDeleted.d.ts +7 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVolumeInUse.d.ts +7 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVpcAvailable.d.ts +7 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVpcExists.d.ts +7 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVpcPeeringConnectionDeleted.d.ts +11 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVpcPeeringConnectionExists.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVpnConnectionAvailable.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVpnConnectionDeleted.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForBundleTaskComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForConversionTaskCancelled.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForConversionTaskCompleted.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForConversionTaskDeleted.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForCustomerGatewayAvailable.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForExportTaskCancelled.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForExportTaskCompleted.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForImageAvailable.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForImageExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForImageUsageReportAvailable.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForInstanceExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForInstanceRunning.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForInstanceStatusOk.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForInstanceStopped.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForInstanceTerminated.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForInternetGatewayExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForKeyPairExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForNatGatewayAvailable.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForNatGatewayDeleted.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForNetworkInterfaceAvailable.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForPasswordDataAvailable.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSecondaryNetworkCreateComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSecondaryNetworkDeleteComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSecondarySubnetCreateComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSecondarySubnetDeleteComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSecurityGroupExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSecurityGroupVpcAssociationAssociated.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSecurityGroupVpcAssociationDisassociated.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSnapshotCompleted.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSnapshotImported.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSpotInstanceRequestFulfilled.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForStoreImageTaskComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSubnetAvailable.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSystemStatusOk.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVolumeAvailable.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVolumeDeleted.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVolumeInUse.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVpcAvailable.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVpcExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVpcPeeringConnectionDeleted.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVpcPeeringConnectionExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVpnConnectionAvailable.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVpnConnectionDeleted.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/package.json +21 -21
- package/node_modules/@aws-sdk/client-iam/README.md +51 -0
- 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-cjs/index.js +4 -4
- 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-es/waiters/waitForInstanceProfileExists.js +2 -2
- package/node_modules/@aws-sdk/client-iam/dist-es/waiters/waitForPolicyExists.js +2 -2
- package/node_modules/@aws-sdk/client-iam/dist-es/waiters/waitForRoleExists.js +1 -1
- package/node_modules/@aws-sdk/client-iam/dist-es/waiters/waitForUserExists.js +1 -1
- package/node_modules/@aws-sdk/client-iam/dist-types/IAM.d.ts +55 -4
- package/node_modules/@aws-sdk/client-iam/dist-types/IAMClient.d.ts +51 -0
- package/node_modules/@aws-sdk/client-iam/dist-types/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-iam/dist-types/index.d.ts +51 -0
- package/node_modules/@aws-sdk/client-iam/dist-types/models/models_0.d.ts +5 -0
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/IAM.d.ts +4 -4
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/waiters/waitForInstanceProfileExists.d.ts +9 -3
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/waiters/waitForPolicyExists.d.ts +7 -3
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/waiters/waitForRoleExists.d.ts +7 -3
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/waiters/waitForUserExists.d.ts +7 -3
- package/node_modules/@aws-sdk/client-iam/dist-types/waiters/waitForInstanceProfileExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-iam/dist-types/waiters/waitForPolicyExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-iam/dist-types/waiters/waitForRoleExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-iam/dist-types/waiters/waitForUserExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-iam/package.json +20 -20
- 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 +2 -1
- 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-es/waiters/waitForFunctionActiveV2.js +1 -1
- package/node_modules/@aws-sdk/client-lambda/dist-es/waiters/waitForFunctionExists.js +2 -2
- package/node_modules/@aws-sdk/client-lambda/dist-es/waiters/waitForFunctionUpdatedV2.js +1 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/Lambda.d.ts +6 -6
- 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/Lambda.d.ts +6 -6
- 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/dist-types/ts3.4/waiters/waitForFunctionActive.d.ts +9 -3
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionActiveV2.d.ts +7 -3
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionExists.d.ts +7 -3
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionUpdated.d.ts +9 -3
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionUpdatedV2.d.ts +7 -3
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForPublishedVersionActive.d.ts +9 -3
- package/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForFunctionActive.d.ts +4 -3
- package/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForFunctionActiveV2.d.ts +4 -3
- package/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForFunctionExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForFunctionUpdated.d.ts +4 -3
- package/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForFunctionUpdatedV2.d.ts +4 -3
- package/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForPublishedVersionActive.d.ts +4 -3
- package/node_modules/@aws-sdk/client-lambda/package.json +28 -22
- 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 +11 -10
- 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-es/waiters/waitForBucketExists.js +2 -2
- package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForBucketNotExists.js +2 -2
- package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForObjectExists.js +2 -2
- package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForObjectNotExists.js +2 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/S3.d.ts +5 -4
- 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/S3.d.ts +5 -4
- 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/dist-types/ts3.4/waiters/waitForBucketExists.d.ts +7 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForBucketNotExists.d.ts +8 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForObjectExists.d.ts +7 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForObjectNotExists.d.ts +8 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForBucketExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForBucketNotExists.d.ts +5 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForObjectExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForObjectNotExists.d.ts +5 -3
- package/node_modules/@aws-sdk/client-s3/package.json +25 -25
- 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-cjs/index.js +1 -1
- 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-es/waiters/waitForCommandExecuted.js +1 -1
- package/node_modules/@aws-sdk/client-ssm/dist-types/SSM.d.ts +1 -1
- 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/SSM.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/waiters/waitForCommandExecuted.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ssm/dist-types/waiters/waitForCommandExecuted.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ssm/package.json +19 -19
- package/node_modules/@aws-sdk/core/dist-cjs/index.js +35 -17
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +18 -6
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +18 -11
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/emitWarningIfUnsupportedVersion.js +15 -6
- 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/emitWarningIfUnsupportedVersion.d.ts +1 -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-external/nodable_entities.js +336 -0
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.js +26 -2
- package/node_modules/@aws-sdk/xml-builder/dist-es/xml-external/nodable_entities.js +332 -0
- package/node_modules/@aws-sdk/xml-builder/dist-es/xml-parser.js +26 -2
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/xml-external/nodable_entities.d.ts +66 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/xml-external/nodable_entities.d.ts +65 -0
- package/node_modules/@aws-sdk/xml-builder/package.json +3 -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 +27 -13
- package/node_modules/@smithy/util-retry/dist-es/AdaptiveRetryStrategy.js +5 -2
- package/node_modules/@smithy/util-retry/dist-es/DefaultRateLimiter.js +2 -1
- 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 +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/fast-xml-builder/CHANGELOG.md +13 -0
- package/node_modules/fast-xml-builder/lib/fxb.cjs +1 -1
- package/node_modules/fast-xml-builder/lib/fxb.min.js +1 -1
- package/node_modules/fast-xml-builder/lib/fxb.min.js.map +1 -1
- package/node_modules/fast-xml-builder/package.json +1 -1
- package/node_modules/fast-xml-builder/src/fxb.js +7 -8
- package/node_modules/fast-xml-builder/src/orderedJs2Xml.js +6 -7
- package/node_modules/fast-xml-builder/src/util.js +16 -0
- package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/CHANGELOG.md +61 -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 +174 -245
- package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/xmlparser/XMLParser.js +2 -2
- 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
|
@@ -320,6 +320,9 @@ const _ASw = "AwsService";
|
|
|
320
320
|
const _AT = "AddressTransfer";
|
|
321
321
|
const _ATGAI = "AccepterTransitGatewayAttachmentId";
|
|
322
322
|
const _ATGCB = "AddTransitGatewayCidrBlocks";
|
|
323
|
+
const _ATGCVA = "AcceptTransitGatewayClientVpnAttachment";
|
|
324
|
+
const _ATGCVAR = "AcceptTransitGatewayClientVpnAttachmentRequest";
|
|
325
|
+
const _ATGCVARc = "AcceptTransitGatewayClientVpnAttachmentResult";
|
|
323
326
|
const _ATGMD = "AssociateTransitGatewayMulticastDomain";
|
|
324
327
|
const _ATGMDA = "AcceptTransitGatewayMulticastDomainAssociations";
|
|
325
328
|
const _ATGMDAR = "AcceptTransitGatewayMulticastDomainAssociationsRequest";
|
|
@@ -1080,6 +1083,8 @@ const _CVATPDO = "CreateVerifiedAccessTrustProviderDeviceOptions";
|
|
|
1080
1083
|
const _CVATPOO = "CreateVerifiedAccessTrustProviderOidcOptions";
|
|
1081
1084
|
const _CVATPR = "CreateVerifiedAccessTrustProviderRequest";
|
|
1082
1085
|
const _CVATPRr = "CreateVerifiedAccessTrustProviderResult";
|
|
1086
|
+
const _CVAZIS = "ClientVpnAvailabilityZoneIdSet";
|
|
1087
|
+
const _CVAZS = "ClientVpnAvailabilityZoneSet";
|
|
1083
1088
|
const _CVBPAE = "CreateVpcBlockPublicAccessExclusion";
|
|
1084
1089
|
const _CVBPAER = "CreateVpcBlockPublicAccessExclusionRequest";
|
|
1085
1090
|
const _CVBPAERr = "CreateVpcBlockPublicAccessExclusionResult";
|
|
@@ -1117,6 +1122,7 @@ const _CVG = "CreateVpnGateway";
|
|
|
1117
1122
|
const _CVGR = "CreateVpnGatewayRequest";
|
|
1118
1123
|
const _CVGRr = "CreateVpnGatewayResult";
|
|
1119
1124
|
const _CVL = "ConditionValueList";
|
|
1125
|
+
const _CVOI = "ClientVpnOwnerId";
|
|
1120
1126
|
const _CVP = "CreateVolumePermission";
|
|
1121
1127
|
const _CVPC = "CreateVpcPeeringConnection";
|
|
1122
1128
|
const _CVPCR = "CreateVpcPeeringConnectionRequest";
|
|
@@ -2031,6 +2037,9 @@ const _DTGCR = "DeleteTransitGatewayConnectRequest";
|
|
|
2031
2037
|
const _DTGCRe = "DeleteTransitGatewayConnectResult";
|
|
2032
2038
|
const _DTGCRes = "DescribeTransitGatewayConnectsRequest";
|
|
2033
2039
|
const _DTGCResc = "DescribeTransitGatewayConnectsResult";
|
|
2040
|
+
const _DTGCVA = "DeleteTransitGatewayClientVpnAttachment";
|
|
2041
|
+
const _DTGCVAR = "DeleteTransitGatewayClientVpnAttachmentRequest";
|
|
2042
|
+
const _DTGCVARe = "DeleteTransitGatewayClientVpnAttachmentResult";
|
|
2034
2043
|
const _DTGCe = "DescribeTransitGatewayConnects";
|
|
2035
2044
|
const _DTGMD = "DeleteTransitGatewayMulticastDomain";
|
|
2036
2045
|
const _DTGMDR = "DeleteTransitGatewayMulticastDomainRequest";
|
|
@@ -2299,6 +2308,7 @@ const _DVSR = "DescribeVolumeStatusRequest";
|
|
|
2299
2308
|
const _DVSRe = "DescribeVolumeStatusResult";
|
|
2300
2309
|
const _DVe = "DestinationVpc";
|
|
2301
2310
|
const _DVef = "DefaultVersion";
|
|
2311
|
+
const _DVefa = "DefaultVisibility";
|
|
2302
2312
|
const _DVel = "DeleteVolume";
|
|
2303
2313
|
const _DVele = "DeleteVpc";
|
|
2304
2314
|
const _DVes = "DescribeVolumes";
|
|
@@ -2836,6 +2846,9 @@ const _GMPLARe = "GetManagedPrefixListAssociationsResult";
|
|
|
2836
2846
|
const _GMPLE = "GetManagedPrefixListEntries";
|
|
2837
2847
|
const _GMPLER = "GetManagedPrefixListEntriesRequest";
|
|
2838
2848
|
const _GMPLERe = "GetManagedPrefixListEntriesResult";
|
|
2849
|
+
const _GMRV = "GetManagedResourceVisibility";
|
|
2850
|
+
const _GMRVR = "GetManagedResourceVisibilityRequest";
|
|
2851
|
+
const _GMRVRe = "GetManagedResourceVisibilityResult";
|
|
2839
2852
|
const _GN = "GroupName";
|
|
2840
2853
|
const _GNIASAF = "GetNetworkInsightsAccessScopeAnalysisFindings";
|
|
2841
2854
|
const _GNIASAFR = "GetNetworkInsightsAccessScopeAnalysisFindingsRequest";
|
|
@@ -2927,6 +2940,7 @@ const _Ge = "Geography";
|
|
|
2927
2940
|
const _Gp = "Gpus";
|
|
2928
2941
|
const _Gr = "Group";
|
|
2929
2942
|
const _H = "Hosts";
|
|
2943
|
+
const _HBD = "HiddenByDefault";
|
|
2930
2944
|
const _HCP = "HiveCompatiblePartitions";
|
|
2931
2945
|
const _HE = "HttpEndpoint";
|
|
2932
2946
|
const _HI = "HostIds";
|
|
@@ -3182,6 +3196,7 @@ const _IMORns = "InstanceMetadataOptionsRequest";
|
|
|
3182
3196
|
const _IMORnst = "InstanceMetadataOptionsResponse";
|
|
3183
3197
|
const _IMOn = "InstanceMetadataOptions";
|
|
3184
3198
|
const _IMOns = "InstanceMarketOptions";
|
|
3199
|
+
const _IMR = "IncludeManagedResources";
|
|
3185
3200
|
const _IMT = "InstanceMetadataTags";
|
|
3186
3201
|
const _IMU = "ImportManifestUrl";
|
|
3187
3202
|
const _IMm = "ImageMetadata";
|
|
@@ -3835,6 +3850,7 @@ const _MI = "MaximumIops";
|
|
|
3835
3850
|
const _MIA = "ModifyImageAttribute";
|
|
3836
3851
|
const _MIAR = "ModifyImageAttributeRequest";
|
|
3837
3852
|
const _MIARo = "ModifyInstanceAttributeRequest";
|
|
3853
|
+
const _MIAV = "ModifyInstanceAttributeValue";
|
|
3838
3854
|
const _MIAo = "ModifyInstanceAttribute";
|
|
3839
3855
|
const _MIC = "MaxInstanceCount";
|
|
3840
3856
|
const _MICE = "ModifyInstanceConnectEndpoint";
|
|
@@ -3913,6 +3929,9 @@ const _MMBR = "MemoryMiBRequest";
|
|
|
3913
3929
|
const _MMPL = "ModifyManagedPrefixList";
|
|
3914
3930
|
const _MMPLR = "ModifyManagedPrefixListRequest";
|
|
3915
3931
|
const _MMPLRo = "ModifyManagedPrefixListResult";
|
|
3932
|
+
const _MMRV = "ModifyManagedResourceVisibility";
|
|
3933
|
+
const _MMRVR = "ModifyManagedResourceVisibilityRequest";
|
|
3934
|
+
const _MMRVRo = "ModifyManagedResourceVisibilityResult";
|
|
3916
3935
|
const _MMT = "MacModificationTask";
|
|
3917
3936
|
const _MMTI = "MacModificationTaskIds";
|
|
3918
3937
|
const _MMTIL = "MacModificationTaskIdList";
|
|
@@ -3957,6 +3976,7 @@ const _MRIRo = "ModifyReservedInstancesResult";
|
|
|
3957
3976
|
const _MRS = "ModifyRouteServer";
|
|
3958
3977
|
const _MRSR = "ModifyRouteServerRequest";
|
|
3959
3978
|
const _MRSRo = "ModifyRouteServerResult";
|
|
3979
|
+
const _MRVS = "ManagedResourceVisibilitySettings";
|
|
3960
3980
|
const _MRo = "ModificationResults";
|
|
3961
3981
|
const _MRu = "MultiRegion";
|
|
3962
3982
|
const _MS = "ManagementState";
|
|
@@ -4957,6 +4977,9 @@ const _RTAI = "RouteTableAssociationId";
|
|
|
4957
4977
|
const _RTAL = "RouteTableAssociationList";
|
|
4958
4978
|
const _RTAS = "RouteTableAssociationState";
|
|
4959
4979
|
const _RTGCB = "RemoveTransitGatewayCidrBlocks";
|
|
4980
|
+
const _RTGCVA = "RejectTransitGatewayClientVpnAttachment";
|
|
4981
|
+
const _RTGCVAR = "RejectTransitGatewayClientVpnAttachmentRequest";
|
|
4982
|
+
const _RTGCVARe = "RejectTransitGatewayClientVpnAttachmentResult";
|
|
4960
4983
|
const _RTGMDA = "RejectTransitGatewayMulticastDomainAssociations";
|
|
4961
4984
|
const _RTGMDAR = "RejectTransitGatewayMulticastDomainAssociationsRequest";
|
|
4962
4985
|
const _RTGMDARe = "RejectTransitGatewayMulticastDomainAssociationsResult";
|
|
@@ -5493,9 +5516,11 @@ const _TGAra = "TransitGatewayAttachment";
|
|
|
5493
5516
|
const _TGAran = "TransitGatewayArn";
|
|
5494
5517
|
const _TGArans = "TransitGatewayAssociation";
|
|
5495
5518
|
const _TGAransi = "TransitGatewayAsn";
|
|
5496
|
-
const _TGC = "
|
|
5519
|
+
const _TGC = "TransitGatewayConfiguration";
|
|
5497
5520
|
const _TGCB = "TransitGatewayCidrBlocks";
|
|
5498
5521
|
const _TGCBSL = "TransitGatewayCidrBlockStringList";
|
|
5522
|
+
const _TGCDES = "TransitGatewayConfigurationDescribeEndpointStructure";
|
|
5523
|
+
const _TGCIS = "TransitGatewayConfigurationInputStructure";
|
|
5499
5524
|
const _TGCL = "TransitGatewayConnectList";
|
|
5500
5525
|
const _TGCO = "TransitGatewayConnectOptions";
|
|
5501
5526
|
const _TGCP = "TransitGatewayConnectPeer";
|
|
@@ -5506,8 +5531,10 @@ const _TGCPIr = "TransitGatewayConnectPeerIds";
|
|
|
5506
5531
|
const _TGCPL = "TransitGatewayConnectPeerList";
|
|
5507
5532
|
const _TGCPr = "TransitGatewayConnectPeers";
|
|
5508
5533
|
const _TGCRBO = "TransitGatewayConnectRequestBgpOptions";
|
|
5534
|
+
const _TGCVA = "TransitGatewayClientVpnAttachment";
|
|
5509
5535
|
const _TGCa = "TargetGroupsConfig";
|
|
5510
|
-
const _TGCr = "
|
|
5536
|
+
const _TGCr = "TransitGatewayConnect";
|
|
5537
|
+
const _TGCra = "TransitGatewayConnects";
|
|
5511
5538
|
const _TGI = "TransitGatewayId";
|
|
5512
5539
|
const _TGISL = "TransitGatewayIdStringList";
|
|
5513
5540
|
const _TGIr = "TransitGatewayIds";
|
|
@@ -6028,6 +6055,7 @@ const _Va = "Values";
|
|
|
6028
6055
|
const _Ve = "Versions";
|
|
6029
6056
|
const _Ven = "Vendor";
|
|
6030
6057
|
const _Ver = "Version";
|
|
6058
|
+
const _Vi = "Visibility";
|
|
6031
6059
|
const _Vl = "Vlan";
|
|
6032
6060
|
const _Vo = "Volumes";
|
|
6033
6061
|
const _Vol = "Volume";
|
|
@@ -6406,6 +6434,7 @@ const _cTre = "creationTime";
|
|
|
6406
6434
|
const _cTrea = "creationTimestamp";
|
|
6407
6435
|
const _cVE = "clientVpnEndpoint";
|
|
6408
6436
|
const _cVEI = "clientVpnEndpointId";
|
|
6437
|
+
const _cVOI = "clientVpnOwnerId";
|
|
6409
6438
|
const _cVP = "createVolumePermission";
|
|
6410
6439
|
const _cVTN = "clientVpnTargetNetworks";
|
|
6411
6440
|
const _cWL = "cloudWatchLogs";
|
|
@@ -6525,6 +6554,7 @@ const _dVD = "deviceValidationDomain";
|
|
|
6525
6554
|
const _dVN = "defaultVersionNumber";
|
|
6526
6555
|
const _dVe = "desiredVersion";
|
|
6527
6556
|
const _dVef = "defaultVersion";
|
|
6557
|
+
const _dVefa = "defaultVisibility";
|
|
6528
6558
|
const _da = "data";
|
|
6529
6559
|
const _de = "description";
|
|
6530
6560
|
const _dea = "deadline";
|
|
@@ -6724,6 +6754,7 @@ const _gSro = "groupSource";
|
|
|
6724
6754
|
const _gp = "gpus";
|
|
6725
6755
|
const _gr = "groups";
|
|
6726
6756
|
const _h = "hypervisor";
|
|
6757
|
+
const _hBD = "hiddenByDefault";
|
|
6727
6758
|
const _hCP = "hiveCompatiblePartitions";
|
|
6728
6759
|
const _hE = "httpEndpoint";
|
|
6729
6760
|
const _hI = "hostId";
|
|
@@ -7868,13 +7899,15 @@ const _tGAr = "transitGatewayAttachment";
|
|
|
7868
7899
|
const _tGAra = "transitGatewayArn";
|
|
7869
7900
|
const _tGAran = "transitGatewayAsn";
|
|
7870
7901
|
const _tGArans = "transitGatewayAddress";
|
|
7871
|
-
const _tGC = "
|
|
7902
|
+
const _tGC = "transitGatewayConfiguration";
|
|
7872
7903
|
const _tGCB = "transitGatewayCidrBlocks";
|
|
7873
7904
|
const _tGCP = "transitGatewayConnectPeer";
|
|
7874
7905
|
const _tGCPI = "transitGatewayConnectPeerId";
|
|
7875
7906
|
const _tGCPS = "transitGatewayConnectPeerSet";
|
|
7876
7907
|
const _tGCS = "transitGatewayConnectSet";
|
|
7908
|
+
const _tGCVA = "transitGatewayClientVpnAttachment";
|
|
7877
7909
|
const _tGCa = "targetGroupsConfig";
|
|
7910
|
+
const _tGCr = "transitGatewayConnect";
|
|
7878
7911
|
const _tGI = "transitGatewayId";
|
|
7879
7912
|
const _tGMD = "transitGatewayMulticastDomain";
|
|
7880
7913
|
const _tGMDA = "transitGatewayMulticastDomainArn";
|
|
@@ -8108,6 +8141,7 @@ const _vTi = "virtualizationType";
|
|
|
8108
8141
|
const _vU = "validUntil";
|
|
8109
8142
|
const _ve = "version";
|
|
8110
8143
|
const _ven = "vendor";
|
|
8144
|
+
const _vi = "visibility";
|
|
8111
8145
|
const _vl = "vlan";
|
|
8112
8146
|
const _vo = "volumes";
|
|
8113
8147
|
const _vol = "volume";
|
|
@@ -8137,6 +8171,7 @@ var CopySnapshotRequestPSU = [0, n0, _CSRPSU, 8, 0];
|
|
|
8137
8171
|
var customerGatewayConfiguration = [0, n0, _cGC, 8, 0];
|
|
8138
8172
|
var EkPubKeyValue = [0, n0, _EPKV, 8, 0];
|
|
8139
8173
|
var ImportManifestUrl = [0, n0, _IMU, 8, 0];
|
|
8174
|
+
var ModifyInstanceAttributeValue = [0, n0, _MIAV, 8, 0];
|
|
8140
8175
|
var PasswordData = [0, n0, _PD, 8, 0];
|
|
8141
8176
|
var preSharedKey = [0, n0, _pSK, 8, 0];
|
|
8142
8177
|
var ReportInstanceStatusRequestDescription = [0, n0, _RISRD, 8, 0];
|
|
@@ -8203,6 +8238,17 @@ export var AcceptReservedInstancesExchangeQuoteResult$ = [3, n0, _ARIEQRc,
|
|
|
8203
8238
|
[[0, { [_eQN]: `ExchangeId`,
|
|
8204
8239
|
[_xN]: _eI }]]
|
|
8205
8240
|
];
|
|
8241
|
+
export var AcceptTransitGatewayClientVpnAttachmentRequest$ = [3, n0, _ATGCVAR,
|
|
8242
|
+
0,
|
|
8243
|
+
[_TGAI, _DR],
|
|
8244
|
+
[0, 2], 1
|
|
8245
|
+
];
|
|
8246
|
+
export var AcceptTransitGatewayClientVpnAttachmentResult$ = [3, n0, _ATGCVARc,
|
|
8247
|
+
0,
|
|
8248
|
+
[_TGCVA],
|
|
8249
|
+
[[() => TransitGatewayClientVpnAttachment$, { [_eQN]: `TransitGatewayClientVpnAttachment`,
|
|
8250
|
+
[_xN]: _tGCVA }]]
|
|
8251
|
+
];
|
|
8206
8252
|
export var AcceptTransitGatewayMulticastDomainAssociationsRequest$ = [3, n0, _ATGMDAR,
|
|
8207
8253
|
0,
|
|
8208
8254
|
[_TGMDI, _TGAI, _SI, _DR],
|
|
@@ -8650,8 +8696,8 @@ export var AssociateCapacityReservationBillingOwnerResult$ = [3, n0, _ACRBORss,
|
|
|
8650
8696
|
];
|
|
8651
8697
|
export var AssociateClientVpnTargetNetworkRequest$ = [3, n0, _ACVTNR,
|
|
8652
8698
|
0,
|
|
8653
|
-
[_CVEI, _SIu, _CT, _DR],
|
|
8654
|
-
[0, 0, [0, 4], 2],
|
|
8699
|
+
[_CVEI, _SIu, _CT, _DR, _AZ, _AZI],
|
|
8700
|
+
[0, 0, [0, 4], 2, 0, 0], 1
|
|
8655
8701
|
];
|
|
8656
8702
|
export var AssociateClientVpnTargetNetworkResult$ = [3, n0, _ACVTNRs,
|
|
8657
8703
|
0,
|
|
@@ -9817,7 +9863,7 @@ export var ClientVpnConnectionStatus$ = [3, n0, _CVCS,
|
|
|
9817
9863
|
];
|
|
9818
9864
|
export var ClientVpnEndpoint$ = [3, n0, _CVE,
|
|
9819
9865
|
0,
|
|
9820
|
-
[_CVEI, _De, _Sta, _CTre, _DT, _DNn, _CCB, _DS, _STp, _VP, _TPr, _VPp, _ATNs, _SCA, _AO, _CLO, _T, _SGIe, _VI, _SSPU, _CCO, _STH, _CLBO, _CREO, _DOST, _EIAT, _TIAT],
|
|
9866
|
+
[_CVEI, _De, _Sta, _CTre, _DT, _DNn, _CCB, _DS, _STp, _VP, _TPr, _VPp, _ATNs, _SCA, _AO, _CLO, _T, _SGIe, _VI, _SSPU, _CCO, _STH, _CLBO, _CREO, _DOST, _EIAT, _TIAT, _TGC],
|
|
9821
9867
|
[[0, { [_eQN]: `ClientVpnEndpointId`,
|
|
9822
9868
|
[_xN]: _cVEI }], [0, { [_eQN]: `Description`,
|
|
9823
9869
|
[_xN]: _de }], [() => ClientVpnEndpointStatus$, { [_eQN]: `Status`,
|
|
@@ -9845,7 +9891,8 @@ export var ClientVpnEndpoint$ = [3, n0, _CVE,
|
|
|
9845
9891
|
[_xN]: _cREO }], [2, { [_eQN]: `DisconnectOnSessionTimeout`,
|
|
9846
9892
|
[_xN]: _dOST }], [0, { [_eQN]: `EndpointIpAddressType`,
|
|
9847
9893
|
[_xN]: _eIAT }], [0, { [_eQN]: `TrafficIpAddressType`,
|
|
9848
|
-
[_xN]: _tIAT }]]
|
|
9894
|
+
[_xN]: _tIAT }], [() => TransitGatewayConfigurationDescribeEndpointStructure$, { [_eQN]: `TransitGatewayConfiguration`,
|
|
9895
|
+
[_xN]: _tGC }]]
|
|
9849
9896
|
];
|
|
9850
9897
|
export var ClientVpnEndpointAttributeStatus$ = [3, n0, _CVEAS,
|
|
9851
9898
|
0,
|
|
@@ -9863,7 +9910,7 @@ export var ClientVpnEndpointStatus$ = [3, n0, _CVES,
|
|
|
9863
9910
|
];
|
|
9864
9911
|
export var ClientVpnRoute$ = [3, n0, _CVR,
|
|
9865
9912
|
0,
|
|
9866
|
-
[_CVEI, _DCe, _TSar, _Ty, _O, _Sta, _De],
|
|
9913
|
+
[_CVEI, _DCe, _TSar, _Ty, _O, _Sta, _De, _TGAI],
|
|
9867
9914
|
[[0, { [_eQN]: `ClientVpnEndpointId`,
|
|
9868
9915
|
[_xN]: _cVEI }], [0, { [_eQN]: `DestinationCidr`,
|
|
9869
9916
|
[_xN]: _dC }], [0, { [_eQN]: `TargetSubnet`,
|
|
@@ -9871,7 +9918,8 @@ export var ClientVpnRoute$ = [3, n0, _CVR,
|
|
|
9871
9918
|
[_xN]: _ty }], [0, { [_eQN]: `Origin`,
|
|
9872
9919
|
[_xN]: _o }], [() => ClientVpnRouteStatus$, { [_eQN]: `Status`,
|
|
9873
9920
|
[_xN]: _sta }], [0, { [_eQN]: `Description`,
|
|
9874
|
-
[_xN]: _de }]]
|
|
9921
|
+
[_xN]: _de }], [0, { [_eQN]: `TransitGatewayAttachmentId`,
|
|
9922
|
+
[_xN]: _tGAI }]]
|
|
9875
9923
|
];
|
|
9876
9924
|
export var ClientVpnRouteStatus$ = [3, n0, _CVRS,
|
|
9877
9925
|
0,
|
|
@@ -10147,8 +10195,8 @@ export var CreateCarrierGatewayResult$ = [3, n0, _CCGRr,
|
|
|
10147
10195
|
];
|
|
10148
10196
|
export var CreateClientVpnEndpointRequest$ = [3, n0, _CCVER,
|
|
10149
10197
|
0,
|
|
10150
|
-
[_SCA, _AO, _CLO, _CCB, _DS, _TPr, _VPp, _De, _STp, _DR, _CT, _TS, _SGIe, _VI, _SSP, _CCO, _STH, _CLBO, _CREO, _DOST, _EIAT, _TIAT],
|
|
10151
|
-
[0, [() => ClientVpnAuthenticationRequestList, { [_xN]: _Au }], () => ConnectionLogOptions$, 0, [() => ValueStringList, 0], 0, 1, 0, 2, 2, [0, 4], [() => TagSpecificationList, { [_xN]: _TSa }], [() => ClientVpnSecurityGroupIdSet, { [_xN]: _SGI }], 0, 0, () => ClientConnectOptions$, 1, () => ClientLoginBannerOptions$, () => ClientRouteEnforcementOptions$, 2, 0, 0], 3
|
|
10198
|
+
[_SCA, _AO, _CLO, _CCB, _DS, _TPr, _VPp, _De, _STp, _DR, _CT, _TS, _SGIe, _VI, _SSP, _CCO, _STH, _CLBO, _CREO, _DOST, _EIAT, _TIAT, _TGC],
|
|
10199
|
+
[0, [() => ClientVpnAuthenticationRequestList, { [_xN]: _Au }], () => ConnectionLogOptions$, 0, [() => ValueStringList, 0], 0, 1, 0, 2, 2, [0, 4], [() => TagSpecificationList, { [_xN]: _TSa }], [() => ClientVpnSecurityGroupIdSet, { [_xN]: _SGI }], 0, 0, () => ClientConnectOptions$, 1, () => ClientLoginBannerOptions$, () => ClientRouteEnforcementOptions$, 2, 0, 0, [() => TransitGatewayConfigurationInputStructure$, 0]], 3
|
|
10152
10200
|
];
|
|
10153
10201
|
export var CreateClientVpnEndpointResult$ = [3, n0, _CCVERr,
|
|
10154
10202
|
0,
|
|
@@ -10161,7 +10209,7 @@ export var CreateClientVpnEndpointResult$ = [3, n0, _CCVERr,
|
|
|
10161
10209
|
export var CreateClientVpnRouteRequest$ = [3, n0, _CCVRR,
|
|
10162
10210
|
0,
|
|
10163
10211
|
[_CVEI, _DCB, _TVSI, _De, _CT, _DR],
|
|
10164
|
-
[0, 0, 0, 0, [0, 4], 2],
|
|
10212
|
+
[0, 0, 0, 0, [0, 4], 2], 2
|
|
10165
10213
|
];
|
|
10166
10214
|
export var CreateClientVpnRouteResult$ = [3, n0, _CCVRRr,
|
|
10167
10215
|
0,
|
|
@@ -11020,9 +11068,9 @@ export var CreateTransitGatewayConnectRequestOptions$ = [3, n0, _CTGCRO,
|
|
|
11020
11068
|
];
|
|
11021
11069
|
export var CreateTransitGatewayConnectResult$ = [3, n0, _CTGCRr,
|
|
11022
11070
|
0,
|
|
11023
|
-
[
|
|
11071
|
+
[_TGCr],
|
|
11024
11072
|
[[() => TransitGatewayConnect$, { [_eQN]: `TransitGatewayConnect`,
|
|
11025
|
-
[_xN]:
|
|
11073
|
+
[_xN]: _tGCr }]]
|
|
11026
11074
|
];
|
|
11027
11075
|
export var CreateTransitGatewayMeteringPolicyEntryRequest$ = [3, n0, _CTGMPER,
|
|
11028
11076
|
0,
|
|
@@ -12168,6 +12216,17 @@ export var DeleteTrafficMirrorTargetResult$ = [3, n0, _DTMTRe,
|
|
|
12168
12216
|
[[0, { [_eQN]: `TrafficMirrorTargetId`,
|
|
12169
12217
|
[_xN]: _tMTI }]]
|
|
12170
12218
|
];
|
|
12219
|
+
export var DeleteTransitGatewayClientVpnAttachmentRequest$ = [3, n0, _DTGCVAR,
|
|
12220
|
+
0,
|
|
12221
|
+
[_TGAI, _DR],
|
|
12222
|
+
[0, 2], 1
|
|
12223
|
+
];
|
|
12224
|
+
export var DeleteTransitGatewayClientVpnAttachmentResult$ = [3, n0, _DTGCVARe,
|
|
12225
|
+
0,
|
|
12226
|
+
[_TGCVA],
|
|
12227
|
+
[[() => TransitGatewayClientVpnAttachment$, { [_eQN]: `TransitGatewayClientVpnAttachment`,
|
|
12228
|
+
[_xN]: _tGCVA }]]
|
|
12229
|
+
];
|
|
12171
12230
|
export var DeleteTransitGatewayConnectPeerRequest$ = [3, n0, _DTGCPR,
|
|
12172
12231
|
0,
|
|
12173
12232
|
[_TGCPI, _DR],
|
|
@@ -12186,9 +12245,9 @@ export var DeleteTransitGatewayConnectRequest$ = [3, n0, _DTGCR,
|
|
|
12186
12245
|
];
|
|
12187
12246
|
export var DeleteTransitGatewayConnectResult$ = [3, n0, _DTGCRe,
|
|
12188
12247
|
0,
|
|
12189
|
-
[
|
|
12248
|
+
[_TGCr],
|
|
12190
12249
|
[[() => TransitGatewayConnect$, { [_eQN]: `TransitGatewayConnect`,
|
|
12191
|
-
[_xN]:
|
|
12250
|
+
[_xN]: _tGCr }]]
|
|
12192
12251
|
];
|
|
12193
12252
|
export var DeleteTransitGatewayMeteringPolicyEntryRequest$ = [3, n0, _DTGMPER,
|
|
12194
12253
|
0,
|
|
@@ -13394,8 +13453,8 @@ export var DescribeInstanceSqlHaStatesResult$ = [3, n0, _DISHSRe,
|
|
|
13394
13453
|
];
|
|
13395
13454
|
export var DescribeInstancesRequest$ = [3, n0, _DIRescr,
|
|
13396
13455
|
0,
|
|
13397
|
-
[_IIns, _DR, _Fi, _NTe, _MR],
|
|
13398
|
-
[[() => InstanceIdStringList, { [_xN]: _II }], [2, { [_eQN]: `DryRun`,
|
|
13456
|
+
[_IIns, _IMR, _DR, _Fi, _NTe, _MR],
|
|
13457
|
+
[[() => InstanceIdStringList, { [_xN]: _II }], 2, [2, { [_eQN]: `DryRun`,
|
|
13399
13458
|
[_xN]: _dR }], [() => FilterList, { [_xN]: _Fil }], [0, { [_eQN]: `NextToken`,
|
|
13400
13459
|
[_xN]: _nTe }], [1, { [_eQN]: `MaxResults`,
|
|
13401
13460
|
[_xN]: _mR }]]
|
|
@@ -13409,8 +13468,8 @@ export var DescribeInstancesResult$ = [3, n0, _DIRescri,
|
|
|
13409
13468
|
];
|
|
13410
13469
|
export var DescribeInstanceStatusRequest$ = [3, n0, _DISRes,
|
|
13411
13470
|
0,
|
|
13412
|
-
[_IIns, _MR, _NTe, _DR, _Fi, _IAI],
|
|
13413
|
-
[[() => InstanceIdStringList, { [_xN]: _II }], 1, 0, [2, { [_eQN]: `DryRun`,
|
|
13471
|
+
[_IIns, _MR, _NTe, _IMR, _DR, _Fi, _IAI],
|
|
13472
|
+
[[() => InstanceIdStringList, { [_xN]: _II }], 1, 0, 2, [2, { [_eQN]: `DryRun`,
|
|
13414
13473
|
[_xN]: _dR }], [() => FilterList, { [_xN]: _Fil }], [2, { [_eQN]: `IncludeAllInstances`,
|
|
13415
13474
|
[_xN]: _iAI }]]
|
|
13416
13475
|
];
|
|
@@ -13617,8 +13676,8 @@ export var DescribeKeyPairsResult$ = [3, n0, _DKPResc,
|
|
|
13617
13676
|
];
|
|
13618
13677
|
export var DescribeLaunchTemplatesRequest$ = [3, n0, _DLTRes,
|
|
13619
13678
|
0,
|
|
13620
|
-
[_DR, _LTIa, _LTNa, _Fi, _NTe, _MR],
|
|
13621
|
-
[2, [() => LaunchTemplateIdStringList, { [_xN]: _LTI }], [() => LaunchTemplateNameStringList, { [_xN]: _LTN }], [() => FilterList, { [_xN]: _Fil }], 0, 1]
|
|
13679
|
+
[_DR, _LTIa, _LTNa, _Fi, _NTe, _MR, _IMR],
|
|
13680
|
+
[2, [() => LaunchTemplateIdStringList, { [_xN]: _LTI }], [() => LaunchTemplateNameStringList, { [_xN]: _LTN }], [() => FilterList, { [_xN]: _Fil }], 0, 1, 2]
|
|
13622
13681
|
];
|
|
13623
13682
|
export var DescribeLaunchTemplatesResult$ = [3, n0, _DLTResc,
|
|
13624
13683
|
0,
|
|
@@ -13629,8 +13688,8 @@ export var DescribeLaunchTemplatesResult$ = [3, n0, _DLTResc,
|
|
|
13629
13688
|
];
|
|
13630
13689
|
export var DescribeLaunchTemplateVersionsRequest$ = [3, n0, _DLTVRes,
|
|
13631
13690
|
0,
|
|
13632
|
-
[_DR, _LTI, _LTN, _Ve, _MV, _MVa, _NTe, _MR, _Fi, _RAes],
|
|
13633
|
-
[2, 0, 0, [() => VersionStringList, { [_xN]: _LTV }], 0, 0, 0, 1, [() => FilterList, { [_xN]: _Fil }], 2]
|
|
13691
|
+
[_DR, _LTI, _LTN, _Ve, _MV, _MVa, _NTe, _MR, _Fi, _RAes, _IMR],
|
|
13692
|
+
[2, 0, 0, [() => VersionStringList, { [_xN]: _LTV }], 0, 0, 0, 1, [() => FilterList, { [_xN]: _Fil }], 2, 2]
|
|
13634
13693
|
];
|
|
13635
13694
|
export var DescribeLaunchTemplateVersionsResult$ = [3, n0, _DLTVResc,
|
|
13636
13695
|
0,
|
|
@@ -13882,8 +13941,8 @@ export var DescribeNetworkInterfacePermissionsResult$ = [3, n0, _DNIPRescri,
|
|
|
13882
13941
|
];
|
|
13883
13942
|
export var DescribeNetworkInterfacesRequest$ = [3, n0, _DNIRe,
|
|
13884
13943
|
0,
|
|
13885
|
-
[_NTe, _MR, _DR, _NIIe, _Fi],
|
|
13886
|
-
[0, 1, [2, { [_eQN]: `DryRun`,
|
|
13944
|
+
[_NTe, _MR, _IMR, _DR, _NIIe, _Fi],
|
|
13945
|
+
[0, 1, 2, [2, { [_eQN]: `DryRun`,
|
|
13887
13946
|
[_xN]: _dR }], [() => NetworkInterfaceIdList, { [_xN]: _NII }], [() => FilterList, { [_eQN]: `Filter`,
|
|
13888
13947
|
[_xN]: _f }]]
|
|
13889
13948
|
];
|
|
@@ -14471,7 +14530,7 @@ export var DescribeTransitGatewayConnectsRequest$ = [3, n0, _DTGCRes,
|
|
|
14471
14530
|
];
|
|
14472
14531
|
export var DescribeTransitGatewayConnectsResult$ = [3, n0, _DTGCResc,
|
|
14473
14532
|
0,
|
|
14474
|
-
[
|
|
14533
|
+
[_TGCra, _NTe],
|
|
14475
14534
|
[[() => TransitGatewayConnectList, { [_eQN]: `TransitGatewayConnectSet`,
|
|
14476
14535
|
[_xN]: _tGCS }], [0, { [_eQN]: `NextToken`,
|
|
14477
14536
|
[_xN]: _nTe }]]
|
|
@@ -14672,8 +14731,8 @@ export var DescribeVolumesModificationsResult$ = [3, n0, _DVMRe,
|
|
|
14672
14731
|
];
|
|
14673
14732
|
export var DescribeVolumesRequest$ = [3, n0, _DVRes,
|
|
14674
14733
|
0,
|
|
14675
|
-
[_VIol, _DR, _Fi, _NTe, _MR],
|
|
14676
|
-
[[() => VolumeIdStringList, { [_xN]: _VIo }], [2, { [_eQN]: `DryRun`,
|
|
14734
|
+
[_VIol, _IMR, _DR, _Fi, _NTe, _MR],
|
|
14735
|
+
[[() => VolumeIdStringList, { [_xN]: _VIo }], 2, [2, { [_eQN]: `DryRun`,
|
|
14677
14736
|
[_xN]: _dR }], [() => FilterList, { [_xN]: _Fil }], [0, { [_eQN]: `NextToken`,
|
|
14678
14737
|
[_xN]: _nTe }], [1, { [_eQN]: `MaxResults`,
|
|
14679
14738
|
[_xN]: _mR }]]
|
|
@@ -14687,8 +14746,8 @@ export var DescribeVolumesResult$ = [3, n0, _DVResc,
|
|
|
14687
14746
|
];
|
|
14688
14747
|
export var DescribeVolumeStatusRequest$ = [3, n0, _DVSR,
|
|
14689
14748
|
0,
|
|
14690
|
-
[_MR, _NTe, _VIol, _DR, _Fi],
|
|
14691
|
-
[1, 0, [() => VolumeIdStringList, { [_xN]: _VIo }], [2, { [_eQN]: `DryRun`,
|
|
14749
|
+
[_MR, _NTe, _VIol, _IMR, _DR, _Fi],
|
|
14750
|
+
[1, 0, [() => VolumeIdStringList, { [_xN]: _VIo }], 2, [2, { [_eQN]: `DryRun`,
|
|
14692
14751
|
[_xN]: _dR }], [() => FilterList, { [_xN]: _Fil }]]
|
|
14693
14752
|
];
|
|
14694
14753
|
export var DescribeVolumeStatusResult$ = [3, n0, _DVSRe,
|
|
@@ -17098,6 +17157,17 @@ export var GetManagedPrefixListEntriesResult$ = [3, n0, _GMPLERe,
|
|
|
17098
17157
|
[_xN]: _eSnt }], [0, { [_eQN]: `NextToken`,
|
|
17099
17158
|
[_xN]: _nTe }]]
|
|
17100
17159
|
];
|
|
17160
|
+
export var GetManagedResourceVisibilityRequest$ = [3, n0, _GMRVR,
|
|
17161
|
+
0,
|
|
17162
|
+
[_DR],
|
|
17163
|
+
[2]
|
|
17164
|
+
];
|
|
17165
|
+
export var GetManagedResourceVisibilityResult$ = [3, n0, _GMRVRe,
|
|
17166
|
+
0,
|
|
17167
|
+
[_Vi],
|
|
17168
|
+
[[() => ManagedResourceVisibilitySettings$, { [_eQN]: `Visibility`,
|
|
17169
|
+
[_xN]: _vi }]]
|
|
17170
|
+
];
|
|
17101
17171
|
export var GetNetworkInsightsAccessScopeAnalysisFindingsRequest$ = [3, n0, _GNIASAFR,
|
|
17102
17172
|
0,
|
|
17103
17173
|
[_NIASAI, _MR, _NTe, _DR],
|
|
@@ -19866,6 +19936,12 @@ export var ManagedPrefixList$ = [3, n0, _MPLa,
|
|
|
19866
19936
|
[_xN]: _iPLRTI }], [2, { [_eQN]: `IpamPrefixListResolverSyncEnabled`,
|
|
19867
19937
|
[_xN]: _iPLRSE }]]
|
|
19868
19938
|
];
|
|
19939
|
+
export var ManagedResourceVisibilitySettings$ = [3, n0, _MRVS,
|
|
19940
|
+
0,
|
|
19941
|
+
[_DVefa],
|
|
19942
|
+
[[0, { [_eQN]: `DefaultVisibility`,
|
|
19943
|
+
[_xN]: _dVefa }]]
|
|
19944
|
+
];
|
|
19869
19945
|
export var MediaAcceleratorInfo$ = [3, n0, _MAIe,
|
|
19870
19946
|
0,
|
|
19871
19947
|
[_Acc, _TMMIMB],
|
|
@@ -19988,8 +20064,8 @@ export var ModifyCapacityReservationResult$ = [3, n0, _MCRRo,
|
|
|
19988
20064
|
];
|
|
19989
20065
|
export var ModifyClientVpnEndpointRequest$ = [3, n0, _MCVER,
|
|
19990
20066
|
0,
|
|
19991
|
-
[_CVEI, _SCA, _CLO, _DS, _VPp, _De, _STp, _DR, _SGIe, _VI, _SSP, _CCO, _STH, _CLBO, _CREO, _DOST],
|
|
19992
|
-
[0, 0, () => ConnectionLogOptions$, [() => DnsServersOptionsModifyStructure$, 0], 1, 0, 2, 2, [() => ClientVpnSecurityGroupIdSet, { [_xN]: _SGI }], 0, 0, () => ClientConnectOptions$, 1, () => ClientLoginBannerOptions$, () => ClientRouteEnforcementOptions$, 2], 1
|
|
20067
|
+
[_CVEI, _SCA, _CLO, _DS, _VPp, _De, _STp, _DR, _SGIe, _VI, _SSP, _CCO, _STH, _CLBO, _CREO, _DOST, _TGC],
|
|
20068
|
+
[0, 0, () => ConnectionLogOptions$, [() => DnsServersOptionsModifyStructure$, 0], 1, 0, 2, 2, [() => ClientVpnSecurityGroupIdSet, { [_xN]: _SGI }], 0, 0, () => ClientConnectOptions$, 1, () => ClientLoginBannerOptions$, () => ClientRouteEnforcementOptions$, 2, [() => TransitGatewayConfigurationInputStructure$, 0]], 1
|
|
19993
20069
|
];
|
|
19994
20070
|
export var ModifyClientVpnEndpointResult$ = [3, n0, _MCVERo,
|
|
19995
20071
|
0,
|
|
@@ -20080,7 +20156,7 @@ export var ModifyInstanceAttributeRequest$ = [3, n0, _MIARo,
|
|
|
20080
20156
|
[[0, { [_eQN]: `InstanceId`,
|
|
20081
20157
|
[_xN]: _iI }], [() => AttributeBooleanValue$, 0], [() => AttributeBooleanValue$, 0], [2, { [_eQN]: `DryRun`,
|
|
20082
20158
|
[_xN]: _dR }], [0, { [_eQN]: `Attribute`,
|
|
20083
|
-
[_xN]: _att }], [
|
|
20159
|
+
[_xN]: _att }], [() => ModifyInstanceAttributeValue, { [_eQN]: `Value`,
|
|
20084
20160
|
[_xN]: _v }], [() => InstanceBlockDeviceMappingSpecificationList, { [_eQN]: `BlockDeviceMapping`,
|
|
20085
20161
|
[_xN]: _bDM }], [() => AttributeBooleanValue$, { [_eQN]: `DisableApiTermination`,
|
|
20086
20162
|
[_xN]: _dAT }], [() => AttributeValue$, { [_eQN]: `InstanceType`,
|
|
@@ -20347,6 +20423,17 @@ export var ModifyManagedPrefixListResult$ = [3, n0, _MMPLRo,
|
|
|
20347
20423
|
[[() => ManagedPrefixList$, { [_eQN]: `PrefixList`,
|
|
20348
20424
|
[_xN]: _pL }]]
|
|
20349
20425
|
];
|
|
20426
|
+
export var ModifyManagedResourceVisibilityRequest$ = [3, n0, _MMRVR,
|
|
20427
|
+
0,
|
|
20428
|
+
[_DR, _DVefa],
|
|
20429
|
+
[2, 0]
|
|
20430
|
+
];
|
|
20431
|
+
export var ModifyManagedResourceVisibilityResult$ = [3, n0, _MMRVRo,
|
|
20432
|
+
0,
|
|
20433
|
+
[_Vi],
|
|
20434
|
+
[[() => ManagedResourceVisibilitySettings$, { [_eQN]: `Visibility`,
|
|
20435
|
+
[_xN]: _vi }]]
|
|
20436
|
+
];
|
|
20350
20437
|
export var ModifyNetworkInterfaceAttributeRequest$ = [3, n0, _MNIAR,
|
|
20351
20438
|
0,
|
|
20352
20439
|
[_NII, _ESS, _EPI, _CTS, _APIAss, _ASI, _DR, _De, _SDC, _G, _Att],
|
|
@@ -21319,10 +21406,11 @@ export var OperatorRequest$ = [3, n0, _ORpe,
|
|
|
21319
21406
|
];
|
|
21320
21407
|
export var OperatorResponse$ = [3, n0, _ORper,
|
|
21321
21408
|
0,
|
|
21322
|
-
[_Mana, _P],
|
|
21409
|
+
[_Mana, _P, _HBD],
|
|
21323
21410
|
[[2, { [_eQN]: `Managed`,
|
|
21324
21411
|
[_xN]: _mana }], [0, { [_eQN]: `Principal`,
|
|
21325
|
-
[_xN]: _p }]]
|
|
21412
|
+
[_xN]: _p }], [2, { [_eQN]: `HiddenByDefault`,
|
|
21413
|
+
[_xN]: _hBD }]]
|
|
21326
21414
|
];
|
|
21327
21415
|
export var OutpostLag$ = [3, n0, _OLu,
|
|
21328
21416
|
0,
|
|
@@ -21996,6 +22084,17 @@ export var RejectCapacityReservationBillingOwnershipResult$ = [3, n0, _RCRBORe,
|
|
|
21996
22084
|
[[2, { [_eQN]: `Return`,
|
|
21997
22085
|
[_xN]: _r }]]
|
|
21998
22086
|
];
|
|
22087
|
+
export var RejectTransitGatewayClientVpnAttachmentRequest$ = [3, n0, _RTGCVAR,
|
|
22088
|
+
0,
|
|
22089
|
+
[_TGAI, _DR],
|
|
22090
|
+
[0, 2], 1
|
|
22091
|
+
];
|
|
22092
|
+
export var RejectTransitGatewayClientVpnAttachmentResult$ = [3, n0, _RTGCVARe,
|
|
22093
|
+
0,
|
|
22094
|
+
[_TGCVA],
|
|
22095
|
+
[[() => TransitGatewayClientVpnAttachment$, { [_eQN]: `TransitGatewayClientVpnAttachment`,
|
|
22096
|
+
[_xN]: _tGCVA }]]
|
|
22097
|
+
];
|
|
21999
22098
|
export var RejectTransitGatewayMulticastDomainAssociationsRequest$ = [3, n0, _RTGMDAR,
|
|
22000
22099
|
0,
|
|
22001
22100
|
[_TGMDI, _TGAI, _SI, _DR],
|
|
@@ -23931,14 +24030,16 @@ export var TargetGroupsConfig$ = [3, n0, _TGCa,
|
|
|
23931
24030
|
];
|
|
23932
24031
|
export var TargetNetwork$ = [3, n0, _TNa,
|
|
23933
24032
|
0,
|
|
23934
|
-
[_AIs, _VI, _TNI, _CVEI, _Sta, _SGe],
|
|
24033
|
+
[_AIs, _VI, _TNI, _CVEI, _Sta, _SGe, _AZv, _AZIv],
|
|
23935
24034
|
[[0, { [_eQN]: `AssociationId`,
|
|
23936
24035
|
[_xN]: _aIs }], [0, { [_eQN]: `VpcId`,
|
|
23937
24036
|
[_xN]: _vI }], [0, { [_eQN]: `TargetNetworkId`,
|
|
23938
24037
|
[_xN]: _tNI }], [0, { [_eQN]: `ClientVpnEndpointId`,
|
|
23939
24038
|
[_xN]: _cVEI }], [() => AssociationStatus$, { [_eQN]: `Status`,
|
|
23940
24039
|
[_xN]: _sta }], [() => ValueStringList, { [_eQN]: `SecurityGroups`,
|
|
23941
|
-
[_xN]: _sGe }]]
|
|
24040
|
+
[_xN]: _sGe }], [() => ClientVpnAvailabilityZoneSet, { [_eQN]: `AvailabilityZoneSet`,
|
|
24041
|
+
[_xN]: _aZS }], [() => ClientVpnAvailabilityZoneIdSet, { [_eQN]: `AvailabilityZoneIdSet`,
|
|
24042
|
+
[_xN]: _aZIS }]]
|
|
23942
24043
|
];
|
|
23943
24044
|
export var TargetReservationValue$ = [3, n0, _TRV,
|
|
23944
24045
|
0,
|
|
@@ -24133,7 +24234,32 @@ export var TransitGatewayAttachmentPropagation$ = [3, n0, _TGAPr,
|
|
|
24133
24234
|
[_xN]: _tGRTI }], [0, { [_eQN]: `State`,
|
|
24134
24235
|
[_xN]: _st }]]
|
|
24135
24236
|
];
|
|
24136
|
-
export var
|
|
24237
|
+
export var TransitGatewayClientVpnAttachment$ = [3, n0, _TGCVA,
|
|
24238
|
+
0,
|
|
24239
|
+
[_TGAI, _TGI, _CVEI, _CVOI, _St, _CTre],
|
|
24240
|
+
[[0, { [_eQN]: `TransitGatewayAttachmentId`,
|
|
24241
|
+
[_xN]: _tGAI }], [0, { [_eQN]: `TransitGatewayId`,
|
|
24242
|
+
[_xN]: _tGI }], [0, { [_eQN]: `ClientVpnEndpointId`,
|
|
24243
|
+
[_xN]: _cVEI }], [0, { [_eQN]: `ClientVpnOwnerId`,
|
|
24244
|
+
[_xN]: _cVOI }], [0, { [_eQN]: `State`,
|
|
24245
|
+
[_xN]: _st }], [0, { [_eQN]: `CreationTime`,
|
|
24246
|
+
[_xN]: _cTre }]]
|
|
24247
|
+
];
|
|
24248
|
+
export var TransitGatewayConfigurationDescribeEndpointStructure$ = [3, n0, _TGCDES,
|
|
24249
|
+
0,
|
|
24250
|
+
[_TGI, _TGAI, _AZv, _AZIv],
|
|
24251
|
+
[[0, { [_eQN]: `TransitGatewayId`,
|
|
24252
|
+
[_xN]: _tGI }], [0, { [_eQN]: `TransitGatewayAttachmentId`,
|
|
24253
|
+
[_xN]: _tGAI }], [() => ClientVpnAvailabilityZoneSet, { [_eQN]: `AvailabilityZoneSet`,
|
|
24254
|
+
[_xN]: _aZS }], [() => ClientVpnAvailabilityZoneIdSet, { [_eQN]: `AvailabilityZoneIdSet`,
|
|
24255
|
+
[_xN]: _aZIS }]]
|
|
24256
|
+
];
|
|
24257
|
+
export var TransitGatewayConfigurationInputStructure$ = [3, n0, _TGCIS,
|
|
24258
|
+
0,
|
|
24259
|
+
[_TGI, _AZv, _AZIv],
|
|
24260
|
+
[0, [() => ClientVpnAvailabilityZoneSet, { [_xN]: _AZ }], [() => ClientVpnAvailabilityZoneIdSet, { [_xN]: _AZI }]]
|
|
24261
|
+
];
|
|
24262
|
+
export var TransitGatewayConnect$ = [3, n0, _TGCr,
|
|
24137
24263
|
0,
|
|
24138
24264
|
[_TGAI, _TTGAI, _TGI, _St, _CTre, _Opt, _T],
|
|
24139
24265
|
[[0, { [_eQN]: `TransitGatewayAttachmentId`,
|
|
@@ -25091,7 +25217,7 @@ export var VolumeDetail$ = [3, n0, _VDo,
|
|
|
25091
25217
|
];
|
|
25092
25218
|
export var VolumeModification$ = [3, n0, _VMo,
|
|
25093
25219
|
0,
|
|
25094
|
-
[_VIo, _MSod, _SMt, _TSarg, _TIar, _TVT, _TTar, _TMAE, _OSr, _OIr, _OVT, _OTri, _OMAE, _Pro, _ST, _ETnd],
|
|
25220
|
+
[_VIo, _MSod, _SMt, _TSarg, _TIar, _TVT, _TTar, _TMAE, _OSr, _OIr, _OVT, _OTri, _OMAE, _Pro, _ST, _ETnd, _Op],
|
|
25095
25221
|
[[0, { [_eQN]: `VolumeId`,
|
|
25096
25222
|
[_xN]: _vIo }], [0, { [_eQN]: `ModificationState`,
|
|
25097
25223
|
[_xN]: _mSod }], [0, { [_eQN]: `StatusMessage`,
|
|
@@ -25108,7 +25234,8 @@ export var VolumeModification$ = [3, n0, _VMo,
|
|
|
25108
25234
|
[_xN]: _oMAE }], [1, { [_eQN]: `Progress`,
|
|
25109
25235
|
[_xN]: _pro }], [4, { [_eQN]: `StartTime`,
|
|
25110
25236
|
[_xN]: _sT }], [4, { [_eQN]: `EndTime`,
|
|
25111
|
-
[_xN]: _eTn }]]
|
|
25237
|
+
[_xN]: _eTn }], [() => OperatorResponse$, { [_eQN]: `Operator`,
|
|
25238
|
+
[_xN]: _ope }]]
|
|
25112
25239
|
];
|
|
25113
25240
|
export var VolumeRecycleBinInfo$ = [3, n0, _VRBI,
|
|
25114
25241
|
0,
|
|
@@ -25173,7 +25300,7 @@ export var VolumeStatusInfo$ = [3, n0, _VSI,
|
|
|
25173
25300
|
];
|
|
25174
25301
|
export var VolumeStatusItem$ = [3, n0, _VSIo,
|
|
25175
25302
|
0,
|
|
25176
|
-
[_Acti, _AZ, _OA, _Ev, _VIo, _VSol, _ASttac, _ISD, _AZI],
|
|
25303
|
+
[_Acti, _AZ, _OA, _Ev, _VIo, _VSol, _ASttac, _ISD, _AZI, _Op],
|
|
25177
25304
|
[[() => VolumeStatusActionsList, { [_eQN]: `ActionsSet`,
|
|
25178
25305
|
[_xN]: _aSct }], [0, { [_eQN]: `AvailabilityZone`,
|
|
25179
25306
|
[_xN]: _aZ }], [0, { [_eQN]: `OutpostArn`,
|
|
@@ -25183,7 +25310,8 @@ export var VolumeStatusItem$ = [3, n0, _VSIo,
|
|
|
25183
25310
|
[_xN]: _vSol }], [() => VolumeStatusAttachmentStatusList, { [_eQN]: `AttachmentStatuses`,
|
|
25184
25311
|
[_xN]: _aStta }], [() => InitializationStatusDetails$, { [_eQN]: `InitializationStatusDetails`,
|
|
25185
25312
|
[_xN]: _iSD }], [0, { [_eQN]: `AvailabilityZoneId`,
|
|
25186
|
-
[_xN]: _aZI }]]
|
|
25313
|
+
[_xN]: _aZI }], [() => OperatorResponse$, { [_eQN]: `Operator`,
|
|
25314
|
+
[_xN]: _ope }]]
|
|
25187
25315
|
];
|
|
25188
25316
|
export var Vpc$ = [3, n0, _Vp,
|
|
25189
25317
|
0,
|
|
@@ -25877,6 +26005,14 @@ var ClientVpnAuthenticationList = [1, n0, _CVAL,
|
|
|
25877
26005
|
var ClientVpnAuthenticationRequestList = [1, n0, _CVARL,
|
|
25878
26006
|
0, () => ClientVpnAuthenticationRequest$
|
|
25879
26007
|
];
|
|
26008
|
+
var ClientVpnAvailabilityZoneIdSet = [1, n0, _CVAZIS,
|
|
26009
|
+
0, [0,
|
|
26010
|
+
{ [_xN]: _it }]
|
|
26011
|
+
];
|
|
26012
|
+
var ClientVpnAvailabilityZoneSet = [1, n0, _CVAZS,
|
|
26013
|
+
0, [0,
|
|
26014
|
+
{ [_xN]: _it }]
|
|
26015
|
+
];
|
|
25880
26016
|
var ClientVpnConnectionSet = [1, n0, _CVCSl,
|
|
25881
26017
|
0, [() => ClientVpnConnection$,
|
|
25882
26018
|
{ [_xN]: _it }]
|
|
@@ -28399,6 +28535,9 @@ export var AcceptCapacityReservationBillingOwnership$ = [9, n0, _ACRBO,
|
|
|
28399
28535
|
export var AcceptReservedInstancesExchangeQuote$ = [9, n0, _ARIEQ,
|
|
28400
28536
|
0, () => AcceptReservedInstancesExchangeQuoteRequest$, () => AcceptReservedInstancesExchangeQuoteResult$
|
|
28401
28537
|
];
|
|
28538
|
+
export var AcceptTransitGatewayClientVpnAttachment$ = [9, n0, _ATGCVA,
|
|
28539
|
+
0, () => AcceptTransitGatewayClientVpnAttachmentRequest$, () => AcceptTransitGatewayClientVpnAttachmentResult$
|
|
28540
|
+
];
|
|
28402
28541
|
export var AcceptTransitGatewayMulticastDomainAssociations$ = [9, n0, _ATGMDA,
|
|
28403
28542
|
0, () => AcceptTransitGatewayMulticastDomainAssociationsRequest$, () => AcceptTransitGatewayMulticastDomainAssociationsResult$
|
|
28404
28543
|
];
|
|
@@ -29077,6 +29216,9 @@ export var DeleteTrafficMirrorTarget$ = [9, n0, _DTMT,
|
|
|
29077
29216
|
export var DeleteTransitGateway$ = [9, n0, _DTG,
|
|
29078
29217
|
0, () => DeleteTransitGatewayRequest$, () => DeleteTransitGatewayResult$
|
|
29079
29218
|
];
|
|
29219
|
+
export var DeleteTransitGatewayClientVpnAttachment$ = [9, n0, _DTGCVA,
|
|
29220
|
+
0, () => DeleteTransitGatewayClientVpnAttachmentRequest$, () => DeleteTransitGatewayClientVpnAttachmentResult$
|
|
29221
|
+
];
|
|
29080
29222
|
export var DeleteTransitGatewayConnect$ = [9, n0, _DTGC,
|
|
29081
29223
|
0, () => DeleteTransitGatewayConnectRequest$, () => DeleteTransitGatewayConnectResult$
|
|
29082
29224
|
];
|
|
@@ -30085,6 +30227,9 @@ export var GetManagedPrefixListAssociations$ = [9, n0, _GMPLA,
|
|
|
30085
30227
|
export var GetManagedPrefixListEntries$ = [9, n0, _GMPLE,
|
|
30086
30228
|
0, () => GetManagedPrefixListEntriesRequest$, () => GetManagedPrefixListEntriesResult$
|
|
30087
30229
|
];
|
|
30230
|
+
export var GetManagedResourceVisibility$ = [9, n0, _GMRV,
|
|
30231
|
+
0, () => GetManagedResourceVisibilityRequest$, () => GetManagedResourceVisibilityResult$
|
|
30232
|
+
];
|
|
30088
30233
|
export var GetNetworkInsightsAccessScopeAnalysisFindings$ = [9, n0, _GNIASAF,
|
|
30089
30234
|
0, () => GetNetworkInsightsAccessScopeAnalysisFindingsRequest$, () => GetNetworkInsightsAccessScopeAnalysisFindingsResult$
|
|
30090
30235
|
];
|
|
@@ -30304,6 +30449,9 @@ export var ModifyLocalGatewayRoute$ = [9, n0, _MLGR,
|
|
|
30304
30449
|
export var ModifyManagedPrefixList$ = [9, n0, _MMPL,
|
|
30305
30450
|
0, () => ModifyManagedPrefixListRequest$, () => ModifyManagedPrefixListResult$
|
|
30306
30451
|
];
|
|
30452
|
+
export var ModifyManagedResourceVisibility$ = [9, n0, _MMRV,
|
|
30453
|
+
0, () => ModifyManagedResourceVisibilityRequest$, () => ModifyManagedResourceVisibilityResult$
|
|
30454
|
+
];
|
|
30307
30455
|
export var ModifyNetworkInterfaceAttribute$ = [9, n0, _MNIA,
|
|
30308
30456
|
0, () => ModifyNetworkInterfaceAttributeRequest$, () => __Unit
|
|
30309
30457
|
];
|
|
@@ -30484,6 +30632,9 @@ export var RegisterTransitGatewayMulticastGroupSources$ = [9, n0, _RTGMGS,
|
|
|
30484
30632
|
export var RejectCapacityReservationBillingOwnership$ = [9, n0, _RCRBO,
|
|
30485
30633
|
0, () => RejectCapacityReservationBillingOwnershipRequest$, () => RejectCapacityReservationBillingOwnershipResult$
|
|
30486
30634
|
];
|
|
30635
|
+
export var RejectTransitGatewayClientVpnAttachment$ = [9, n0, _RTGCVA,
|
|
30636
|
+
0, () => RejectTransitGatewayClientVpnAttachmentRequest$, () => RejectTransitGatewayClientVpnAttachmentResult$
|
|
30637
|
+
];
|
|
30487
30638
|
export var RejectTransitGatewayMulticastDomainAssociations$ = [9, n0, _RTGMDA,
|
|
30488
30639
|
0, () => RejectTransitGatewayMulticastDomainAssociationsRequest$, () => RejectTransitGatewayMulticastDomainAssociationsResult$
|
|
30489
30640
|
];
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
|
|
2
|
-
import { DescribeImagesCommand } from "../commands/DescribeImagesCommand";
|
|
2
|
+
import { DescribeImagesCommand, } from "../commands/DescribeImagesCommand";
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
|
|
2
|
-
import { DescribeImagesCommand } from "../commands/DescribeImagesCommand";
|
|
2
|
+
import { DescribeImagesCommand, } from "../commands/DescribeImagesCommand";
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
|
@@ -18,7 +18,7 @@ const checkState = async (client, input) => {
|
|
|
18
18
|
}
|
|
19
19
|
catch (exception) {
|
|
20
20
|
reason = exception;
|
|
21
|
-
if (exception.name
|
|
21
|
+
if (exception.name === "InvalidAMIID.NotFound") {
|
|
22
22
|
return { state: WaiterState.RETRY, reason };
|
|
23
23
|
}
|
|
24
24
|
}
|