@cdklabs/cdk-ssm-documents 0.0.61 → 0.0.63
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +13 -13
- package/lib/construct/synth-utils.js +1 -1
- package/lib/document/automation-document.js +1 -1
- package/lib/document/command-document.js +1 -1
- package/lib/document/document-builder.js +2 -2
- package/lib/document/ssm-document.js +1 -1
- package/lib/domain/aws-service.js +1 -1
- package/lib/domain/choice.js +1 -1
- package/lib/domain/data-type.js +1 -1
- package/lib/domain/enum/install-action.js +2 -2
- package/lib/domain/enum/install-uninstall-repair.js +2 -2
- package/lib/domain/enum/installation-type.js +2 -2
- package/lib/domain/enum/package-name.js +2 -2
- package/lib/domain/input.js +1 -1
- package/lib/domain/operation.js +1 -1
- package/lib/domain/platform.js +1 -1
- package/lib/domain/precondition.js +1 -1
- package/lib/incident-response/incident-response.js +3 -3
- package/lib/interface/approve-hook.js +2 -2
- package/lib/interface/auth-method.js +3 -3
- package/lib/interface/aws-invoker.js +2 -2
- package/lib/interface/downloadable-content.js +8 -8
- package/lib/interface/environment.js +3 -3
- package/lib/interface/execute-automation-hook/api-execute-automation-hook.js +1 -1
- package/lib/interface/observer.js +1 -1
- package/lib/interface/on-failure.js +6 -6
- package/lib/interface/pause-hook.js +2 -2
- package/lib/interface/run-command-hook/api-run-command-hook.js +1 -1
- package/lib/interface/run-document-location.js +2 -2
- package/lib/interface/sleep-hook.js +2 -2
- package/lib/interface/step-ref.js +1 -1
- package/lib/interface/variables/boolean-variable.js +2 -2
- package/lib/interface/variables/map-list-variable.js +2 -2
- package/lib/interface/variables/number-variable.js +2 -2
- package/lib/interface/variables/secure-string-variable.js +4 -4
- package/lib/interface/variables/string-list-variable.js +2 -2
- package/lib/interface/variables/string-map-variable.js +2 -2
- package/lib/interface/variables/string-variable.js +4 -4
- package/lib/interface/variables/variable.js +2 -2
- package/lib/interface/webhook.js +1 -1
- package/lib/parent-steps/automation/approve-step.js +1 -1
- package/lib/parent-steps/automation/assert-aws-resource-step.js +1 -1
- package/lib/parent-steps/automation/aws-api-step.js +1 -1
- package/lib/parent-steps/automation/branch-step.js +1 -1
- package/lib/parent-steps/automation/change-instance-state-step.js +3 -3
- package/lib/parent-steps/automation/copy-image-step.js +1 -1
- package/lib/parent-steps/automation/create-image-step.js +1 -1
- package/lib/parent-steps/automation/create-stack-step.js +3 -3
- package/lib/parent-steps/automation/create-tags-step.js +3 -3
- package/lib/parent-steps/automation/delete-image-step.js +1 -1
- package/lib/parent-steps/automation/delete-stack-step.js +1 -1
- package/lib/parent-steps/automation/execute-automation-step.js +1 -1
- package/lib/parent-steps/automation/execute-script-step.js +5 -5
- package/lib/parent-steps/automation/execute-state-machine-step.js +1 -1
- package/lib/parent-steps/automation/invoke-lambda-function-step.js +1 -1
- package/lib/parent-steps/automation/invoke-webhook-step.js +1 -1
- package/lib/parent-steps/automation/pause-step.js +1 -1
- package/lib/parent-steps/automation/run-command-step.js +3 -3
- package/lib/parent-steps/automation/run-instance-step.js +1 -1
- package/lib/parent-steps/automation/sleep-step.js +1 -1
- package/lib/parent-steps/automation/update-variable.js +1 -1
- package/lib/parent-steps/automation/wait-for-resource-step.js +1 -1
- package/lib/parent-steps/automation-step.js +1 -1
- package/lib/parent-steps/command/applications-step.js +1 -1
- package/lib/parent-steps/command/configure-docker-step.js +1 -1
- package/lib/parent-steps/command/configure-package-step.js +1 -1
- package/lib/parent-steps/command/domain-join-step.js +1 -1
- package/lib/parent-steps/command/download-content-step.js +1 -1
- package/lib/parent-steps/command/ps-module-step.js +1 -1
- package/lib/parent-steps/command/run-docker-action-step.js +1 -1
- package/lib/parent-steps/command/run-document-step.js +1 -1
- package/lib/parent-steps/command/run-powershell-script-step.js +1 -1
- package/lib/parent-steps/command/run-shell-script-step.js +1 -1
- package/lib/parent-steps/command/software-inventory-step.js +1 -1
- package/lib/parent-steps/command/update-agent-step.js +1 -1
- package/lib/parent-steps/command/update-ssm-agent-step.js +1 -1
- package/lib/parent-steps/command-step.js +1 -1
- package/lib/parent-steps/step.js +1 -1
- package/lib/patterns/automation/composite-step.js +2 -2
- package/lib/patterns/automation/reboot-instance-and-wait.js +1 -1
- package/lib/patterns/automation/string-step.js +1 -1
- package/lib/patterns/document/string-document.js +1 -1
- package/lib/patterns/document/timed-document.js +1 -1
- package/lib/samples/hello-world.js +1 -1
- package/lib/simulation/automation/approve-simulation.js +1 -1
- package/lib/simulation/automation/assert-aws-resource-simulation.js +1 -1
- package/lib/simulation/automation/automation-simulation-base.js +1 -1
- package/lib/simulation/automation/aws-api-simulation.js +1 -1
- package/lib/simulation/automation/branch-simulation.js +1 -1
- package/lib/simulation/automation/change-instance-state-simulation.js +1 -1
- package/lib/simulation/automation/copy-image-simulation.js +1 -1
- package/lib/simulation/automation/create-image-simulation.js +1 -1
- package/lib/simulation/automation/create-stack-simulation.js +1 -1
- package/lib/simulation/automation/create-tags-simulation.js +1 -1
- package/lib/simulation/automation/delete-image-simulation.js +1 -1
- package/lib/simulation/automation/delete-stack-simulation.js +1 -1
- package/lib/simulation/automation/execute-script-simulation.js +1 -1
- package/lib/simulation/automation/execute-state-machine-simulation.js +1 -1
- package/lib/simulation/automation/invoke-lambda-function-simulation.js +1 -1
- package/lib/simulation/automation/invoke-webhook-simulation.js +1 -1
- package/lib/simulation/automation/pause-simulation.js +1 -1
- package/lib/simulation/automation/run-command-simulation.js +1 -1
- package/lib/simulation/automation/run-instance-simulation.js +1 -1
- package/lib/simulation/automation/sleep-simulation.js +1 -1
- package/lib/simulation/automation/update-variable-simulation.js +1 -1
- package/lib/simulation/automation/wait-for-resource-simulation.js +1 -1
- package/lib/simulation/automation-step-simulation.js +1 -1
- package/lib/simulation/command/command-simulation-base.js +1 -1
- package/lib/simulation/command/ps-module-simulation.js +1 -1
- package/lib/simulation/command/run-powershell-script-simulation.js +1 -1
- package/lib/simulation/command/run-shell-script-simulation.js +1 -1
- package/lib/simulation/command-step-simulation.js +1 -1
- package/lib/simulation/document/automation-simulation.js +1 -1
- package/lib/simulation/document/command-simulation.js +1 -1
- package/lib/simulation/simulation.js +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/package.json +8 -8
- package/node_modules/@aws-sdk/client-cloudwatch/package.json +10 -10
- package/node_modules/@aws-sdk/client-ec2/README.md +66 -2
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/index.js +33 -0
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/schemas/schemas_0.js +98 -60
- package/node_modules/@aws-sdk/client-ec2/dist-es/EC2.js +6 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamPoolAllocationsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIpamPoolAllocationCommand.js +16 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/index.js +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/models/enums.js +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/pagination/DescribeIpamPoolAllocationsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/pagination/index.js +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/schemas/schemas_0.js +51 -13
- package/node_modules/@aws-sdk/client-ec2/dist-types/EC2.d.ts +74 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/EC2Client.d.ts +56 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptAddressTransferCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AllocateAddressCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AllocateHostsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AllocateIpamPoolCidrCommand.d.ts +17 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateIpamResourceDiscoveryCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AuthorizeSecurityGroupEgressCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AuthorizeSecurityGroupIngressCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CopyImageCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CopySnapshotCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CopyVolumesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityManagerDataExportCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityReservationBySplittingCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityReservationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityReservationFleetCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCarrierGatewayCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateClientVpnEndpointCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCoipPoolCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCustomerGatewayCommand.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/CreateDhcpOptionsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateEgressOnlyInternetGatewayCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateFleetCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateFlowLogsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateFpgaImageCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateImageCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateImageUsageReportCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInstanceConnectEndpointCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInstanceEventWindowCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInstanceExportTaskCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInternetGatewayCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInterruptibleCapacityReservationAllocationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamExternalResourceVerificationTokenCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamPolicyCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamPoolCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamPrefixListResolverCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamPrefixListResolverTargetCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamResourceDiscoveryCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamScopeCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateKeyPairCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLaunchTemplateCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLaunchTemplateVersionCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayRouteTableCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayRouteTableVpcAssociationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayVirtualInterfaceCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayVirtualInterfaceGroupCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateMacSystemIntegrityProtectionModificationTaskCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateManagedPrefixListCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNatGatewayCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkAclCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkInsightsAccessScopeCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkInsightsPathCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkInterfaceCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreatePlacementGroupCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreatePublicIpv4PoolCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateReplaceRootVolumeTaskCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRestoreImageTaskCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteServerCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteServerEndpointCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteServerPeerCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteTableCommand.d.ts +1 -1
- 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/CreateSecondarySubnetCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSecurityGroupCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSnapshotCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSnapshotsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSubnetCidrReservationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSubnetCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTrafficMirrorFilterCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTrafficMirrorFilterRuleCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTrafficMirrorSessionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTrafficMirrorTargetCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayConnectCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayConnectPeerCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayMeteringPolicyCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayMulticastDomainCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayPeeringAttachmentCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayPolicyTableCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayRouteTableAnnouncementCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayRouteTableCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayVpcAttachmentCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVerifiedAccessEndpointCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVerifiedAccessGroupCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVerifiedAccessInstanceCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVerifiedAccessTrustProviderCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVolumeCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcBlockPublicAccessExclusionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcEncryptionControlCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcEndpointCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcEndpointServiceConfigurationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcPeeringConnectionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpnConcentratorCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpnConnectionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpnGatewayCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamPoolAllocationsCommand.d.ts +110 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLaunchTemplateVersionsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotFleetRequestsCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSubnetsCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTagsCommand.d.ts +2 -3
- 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/ExportImageCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerMonitoredTagKeysCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityReservationUsageCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamPoolAllocationsCommand.d.ts +6 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetLaunchTemplateDataCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ImportImageCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ImportKeyPairCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ImportSnapshotCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceAttributeCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamPoolAllocationCommand.d.ts +92 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyPublicIpDnsNameOptionsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyReservedInstancesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyRouteServerCommand.d.ts +1 -2
- 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/ProvisionByoipCidrCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/PurchaseCapacityBlockCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/PurchaseHostReservationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RegisterImageCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RequestSpotFleetCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RequestSpotInstancesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RunInstancesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/StartDeclarativePoliciesReportCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/StartNetworkInsightsAccessScopeAnalysisCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/StartNetworkInsightsAnalysisCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/index.d.ts +52 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/enums.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_0.d.ts +12 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_4.d.ts +51 -74
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_5.d.ts +77 -46
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_6.d.ts +104 -129
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_7.d.ts +127 -18
- package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/DescribeIpamPoolAllocationsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/schemas/schemas_0.d.ts +6 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/EC2.d.ts +42 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/EC2Client.d.ts +12 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamPoolAllocationsCommand.d.ts +53 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSubnetsCommand.d.ts +2 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTagsCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityManagerMonitoredTagKeysCommand.d.ts +2 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityReservationUsageCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamPoolAllocationCommand.d.ts +53 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyPublicIpDnsNameOptionsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyReservedInstancesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyRouteServerCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/enums.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_0.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_4.d.ts +12 -11
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_5.d.ts +12 -10
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_6.d.ts +26 -27
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_7.d.ts +31 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/pagination/DescribeIpamPoolAllocationsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/schemas/schemas_0.d.ts +6 -0
- package/node_modules/@aws-sdk/client-ec2/package.json +10 -10
- package/node_modules/@aws-sdk/client-iam/package.json +9 -9
- package/node_modules/@aws-sdk/client-lambda/package.json +9 -9
- package/node_modules/@aws-sdk/client-s3/package.json +17 -17
- package/node_modules/@aws-sdk/client-sns/package.json +8 -8
- package/node_modules/@aws-sdk/client-sqs/package.json +10 -10
- package/node_modules/@aws-sdk/client-ssm/package.json +8 -8
- package/node_modules/@aws-sdk/core/dist-cjs/index.js +10 -10
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +10 -10
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJsonRpcProtocol.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/parseJsonBody.js +9 -9
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/parseJsonBody.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/parseJsonBody.d.ts +0 -1
- package/node_modules/@aws-sdk/core/package.json +6 -6
- package/node_modules/@aws-sdk/crc64-nvme/package.json +2 -2
- package/node_modules/@aws-sdk/credential-provider-env/package.json +5 -5
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js +12 -6
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.js +12 -6
- package/node_modules/@aws-sdk/credential-provider-http/package.json +8 -7
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +13 -13
- package/node_modules/@aws-sdk/credential-provider-login/package.json +6 -6
- package/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +12 -1
- package/node_modules/@aws-sdk/credential-provider-node/dist-es/runtime/memoize-chain.js +12 -1
- package/node_modules/@aws-sdk/credential-provider-node/package.json +11 -11
- package/node_modules/@aws-sdk/credential-provider-process/package.json +5 -5
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +7 -7
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +6 -6
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/package.json +5 -5
- package/node_modules/@aws-sdk/middleware-expect-continue/package.json +4 -4
- package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +7 -7
- package/node_modules/@aws-sdk/middleware-location-constraint/package.json +3 -3
- package/node_modules/@aws-sdk/middleware-sdk-ec2/package.json +6 -6
- package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +6 -7
- package/node_modules/@aws-sdk/middleware-sdk-sqs/package.json +4 -4
- package/node_modules/@aws-sdk/middleware-ssec/package.json +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/index.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/index.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/package.json +8 -8
- package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +4 -5
- package/node_modules/@aws-sdk/token-providers/package.json +6 -6
- package/node_modules/@aws-sdk/types/package.json +2 -2
- package/node_modules/@aws-sdk/xml-builder/package.json +3 -3
- package/node_modules/@nodable/entities/package.json +1 -1
- package/node_modules/@nodable/entities/src/EntityDecoder.js +1 -1
- package/node_modules/@nodable/entities/src/entities.js +0 -18
- package/node_modules/@smithy/core/cbor.d.ts +1 -3
- package/node_modules/@smithy/core/cbor.js +0 -1
- package/node_modules/@smithy/core/checksum.d.ts +2 -2
- package/node_modules/@smithy/core/checksum.js +1 -1
- package/node_modules/@smithy/core/client.d.ts +1 -3
- package/node_modules/@smithy/core/client.js +0 -1
- package/node_modules/@smithy/core/config.d.ts +2 -2
- package/node_modules/@smithy/core/config.js +1 -1
- package/node_modules/@smithy/core/dist-cjs/index.js +3 -4
- package/node_modules/@smithy/core/dist-cjs/submodules/client/index.js +3 -11
- package/node_modules/@smithy/core/dist-cjs/submodules/config/index.browser.js +2 -2
- package/node_modules/@smithy/core/dist-cjs/submodules/config/index.js +2 -2
- package/node_modules/@smithy/core/dist-cjs/submodules/config/index.native.js +2 -2
- package/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.browser.js +9 -40
- package/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.js +9 -40
- package/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +12 -142
- package/node_modules/@smithy/core/dist-cjs/submodules/retry/index.browser.js +39 -22
- package/node_modules/@smithy/core/dist-cjs/submodules/retry/index.js +39 -22
- package/node_modules/@smithy/core/dist-cjs/submodules/schema/index.js +7 -9
- package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.browser.js +2 -2
- package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.js +2 -2
- package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.native.js +2 -2
- package/node_modules/@smithy/core/dist-cjs/submodules/transport/index.js +184 -0
- package/node_modules/@smithy/core/dist-es/index.js +6 -6
- package/node_modules/@smithy/core/dist-es/submodules/client/index.js +2 -2
- package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/checkRegion.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/index.browser.js +2 -2
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/index.js +2 -2
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/toEndpointV1.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/resolveEndpointConfig.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/index.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpBindingProtocol.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpProtocol.js +1 -2
- package/node_modules/@smithy/core/dist-es/submodules/protocols/RpcProtocol.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/protocols/index.js +5 -5
- package/node_modules/@smithy/core/dist-es/submodules/protocols/middleware-content-length/contentLengthMiddleware.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/protocols/requestBuilder.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/configurations.js +19 -6
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retryMiddleware.js +4 -5
- package/node_modules/@smithy/core/dist-es/submodules/retry/service-error-classification/constants.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/ConfiguredRetryStrategy.js +4 -5
- package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/DefaultRetryToken.js +3 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/StandardRetryStrategy.js +9 -5
- package/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaDeserializationMiddleware.js +3 -4
- package/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaSerializationMiddleware.js +1 -2
- package/node_modules/@smithy/core/dist-es/submodules/serde/middleware-serde/deserializerMiddleware.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/transport/index.js +9 -0
- package/node_modules/@smithy/core/dist-es/submodules/{protocols/url-parser → transport}/parseUrl.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/{endpoints → transport}/toEndpointV1.js +1 -1
- package/node_modules/@smithy/core/dist-types/index.d.ts +10 -6
- package/node_modules/@smithy/core/dist-types/submodules/client/index.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/index.browser.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/index.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/adaptors/toEndpointV1.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/lib/index.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/protocols/HttpBindingProtocol.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/protocols/index.d.ts +5 -5
- package/node_modules/@smithy/core/dist-types/submodules/protocols/protocol-http/httpHandler.d.ts +1 -2
- package/node_modules/@smithy/core/dist-types/submodules/protocols/requestBuilder.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/retry/middleware-retry/configurations.d.ts +4 -1
- package/node_modules/@smithy/core/dist-types/submodules/retry/util-retry/ConfiguredRetryStrategy.d.ts +1 -2
- package/node_modules/@smithy/core/dist-types/submodules/retry/util-retry/DefaultRetryToken.d.ts +3 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/util-retry/StandardRetryStrategy.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/transport/index.d.ts +9 -0
- package/node_modules/@smithy/core/endpoints.d.ts +1 -3
- package/node_modules/@smithy/core/endpoints.js +0 -1
- package/node_modules/@smithy/core/event-streams.d.ts +1 -3
- package/node_modules/@smithy/core/event-streams.js +0 -1
- package/node_modules/@smithy/core/package.json +20 -11
- package/node_modules/@smithy/core/protocols.d.ts +1 -3
- package/node_modules/@smithy/core/protocols.js +0 -1
- package/node_modules/@smithy/core/retry.d.ts +2 -2
- package/node_modules/@smithy/core/retry.js +1 -1
- package/node_modules/@smithy/core/schema.d.ts +1 -3
- package/node_modules/@smithy/core/schema.js +0 -1
- package/node_modules/@smithy/core/serde.d.ts +1 -3
- package/node_modules/@smithy/core/serde.js +0 -1
- package/node_modules/@smithy/core/transport.d.ts +5 -0
- package/node_modules/@smithy/core/transport.js +5 -0
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/index.js +14 -13
- package/node_modules/@smithy/credential-provider-imds/dist-es/fromContainerMetadata.js +14 -13
- package/node_modules/@smithy/credential-provider-imds/package.json +3 -3
- package/node_modules/@smithy/fetch-http-handler/package.json +4 -4
- package/node_modules/@smithy/middleware-compression/package.json +3 -3
- package/node_modules/@smithy/node-http-handler/package.json +4 -4
- package/node_modules/@smithy/signature-v4/package.json +3 -3
- package/node_modules/@smithy/types/dist-types/retry.d.ts +25 -0
- package/node_modules/@smithy/types/package.json +1 -1
- package/node_modules/js-yaml/README.md +4 -20
- package/node_modules/js-yaml/bin/js-yaml.js +53 -62
- package/node_modules/js-yaml/dist/js-yaml.js +2404 -3880
- package/node_modules/js-yaml/dist/js-yaml.js.map +1 -0
- package/node_modules/js-yaml/dist/js-yaml.min.js +33 -2
- package/node_modules/js-yaml/dist/js-yaml.min.js.map +1 -0
- package/node_modules/js-yaml/dist/js-yaml.mjs +2381 -3855
- package/node_modules/js-yaml/dist/js-yaml.mjs.map +1 -0
- package/node_modules/js-yaml/index.js +32 -35
- package/node_modules/js-yaml/lib/common.js +28 -37
- package/node_modules/js-yaml/lib/dumper.js +450 -478
- package/node_modules/js-yaml/lib/exception.js +23 -27
- package/node_modules/js-yaml/lib/index_vite_proxy.tmp.mjs +37 -0
- package/node_modules/js-yaml/lib/loader.js +927 -866
- package/node_modules/js-yaml/lib/schema/core.js +2 -4
- package/node_modules/js-yaml/lib/schema/default.js +2 -4
- package/node_modules/js-yaml/lib/schema/failsafe.js +3 -6
- package/node_modules/js-yaml/lib/schema/json.js +2 -4
- package/node_modules/js-yaml/lib/schema.js +56 -68
- package/node_modules/js-yaml/lib/snippet.js +47 -52
- package/node_modules/js-yaml/lib/type/binary.js +61 -64
- package/node_modules/js-yaml/lib/type/bool.js +14 -14
- package/node_modules/js-yaml/lib/type/float.js +47 -45
- package/node_modules/js-yaml/lib/type/int.js +65 -79
- package/node_modules/js-yaml/lib/type/map.js +4 -4
- package/node_modules/js-yaml/lib/type/merge.js +5 -5
- package/node_modules/js-yaml/lib/type/null.js +16 -16
- package/node_modules/js-yaml/lib/type/omap.js +22 -21
- package/node_modules/js-yaml/lib/type/pairs.js +24 -27
- package/node_modules/js-yaml/lib/type/seq.js +4 -4
- package/node_modules/js-yaml/lib/type/set.js +12 -12
- package/node_modules/js-yaml/lib/type/str.js +4 -4
- package/node_modules/js-yaml/lib/type/timestamp.js +53 -53
- package/node_modules/js-yaml/lib/type.js +30 -30
- package/node_modules/js-yaml/package.json +32 -21
- package/package.json +11 -11
- package/node_modules/@smithy/core/dist-cjs/getSmithyContext.js +0 -6
- package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.js +0 -21
- package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/getHttpAuthSchemePlugin.js +0 -21
- package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +0 -46
- package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/index.js +0 -6
- package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/resolveAuthOptions.js +0 -24
- package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/getHttpSigningMiddleware.js +0 -19
- package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/httpSigningMiddleware.js +0 -27
- package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/index.js +0 -5
- package/node_modules/@smithy/core/dist-cjs/normalizeProvider.js +0 -10
- package/node_modules/@smithy/core/dist-cjs/pagination/createPaginator.js +0 -44
- package/node_modules/@smithy/core/dist-cjs/request-builder/requestBuilder.js +0 -5
- package/node_modules/@smithy/core/dist-cjs/setFeature.js +0 -14
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/DefaultIdentityProviderConfig.js +0 -18
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js +0 -38
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js +0 -15
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/index.js +0 -6
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/noAuth.js +0 -9
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/index.js +0 -6
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/memoizeIdentityProvider.js +0 -61
- package/node_modules/@smithy/core/dist-es/request-builder/requestBuilder.js +0 -1
- package/node_modules/@smithy/core/dist-es/submodules/client/util-middleware/getSmithyContext.js +0 -2
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/TestVectors.fixture.js +0 -146
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/vectorTypes.fixture.js +0 -1
- package/node_modules/@smithy/core/dist-types/request-builder/requestBuilder.d.ts +0 -6
- package/node_modules/@smithy/core/dist-types/submodules/client/util-middleware/getSmithyContext.d.ts +0 -5
- package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-codec/TestVectors.fixture.d.ts +0 -2
- package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-codec/vectorTypes.fixture.d.ts +0 -12
- package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/index.js +0 -2
- package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/index.d.ts +0 -8
- package/node_modules/@smithy/node-http-handler/dist-es/readable.mock.js +0 -21
- package/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +0 -88
- package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/readable.mock.js +0 -21
- package/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +0 -12
- package/node_modules/@smithy/node-http-handler/dist-types/server.mock.d.ts +0 -12
- package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +0 -12
- package/node_modules/@smithy/signature-v4/dist-es/suite.fixture.js +0 -399
- package/node_modules/@smithy/signature-v4/dist-types/suite.fixture.d.ts +0 -14
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/CHANGELOG.md +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/LICENSE +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/README.md +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/lib/fxbuilder.min.js +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/lib/fxbuilder.min.js.map +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/lib/fxp.cjs +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/lib/fxp.d.cts +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/lib/fxp.min.js +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/lib/fxp.min.js.map +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/lib/fxparser.min.js +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/lib/fxparser.min.js.map +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/lib/fxvalidator.min.js +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/lib/fxvalidator.min.js.map +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/package.json +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/cli/cli.js +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/cli/man.js +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/cli/read.js +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/fxp.d.ts +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/fxp.js +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/ignoreAttributes.js +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/util.js +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/CharsSymbol.js +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/EntitiesParser.js +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/OptionsBuilder.js +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/OutputBuilders/BaseOutputBuilder.js +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/OutputBuilders/JsArrBuilder.js +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/OutputBuilders/JsMinArrBuilder.js +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/OutputBuilders/JsObjBuilder.js +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/OutputBuilders/ParserOptionsBuilder.js +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/Report.js +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/TagPath.js +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/TagPathMatcher.js +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/XMLParser.js +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/Xml2JsParser.js +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/XmlPartReader.js +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/XmlSpecialTagsReader.js +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/inputSource/BufferSource.js +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/inputSource/StringSource.js +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/valueParsers/EntitiesParser.js +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/valueParsers/booleanParser.js +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/valueParsers/booleanParserExt.js +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/valueParsers/currency.js +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/valueParsers/join.js +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/valueParsers/number.js +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/v6/valueParsers/trim.js +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/validator.js +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/xmlbuilder/json2xml.js +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/xmlparser/DocTypeReader.js +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/xmlparser/OptionsBuilder.js +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/xmlparser/OrderedObjParser.js +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/xmlparser/XMLParser.js +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/xmlparser/node2json.js +0 -0
- /package/node_modules/{fast-xml-parser → @aws-sdk/xml-builder/node_modules/fast-xml-parser}/src/xmlparser/xmlNode.js +0 -0
- /package/node_modules/@smithy/core/dist-es/{middleware-http-auth-scheme → legacy-root-exports/middleware-http-auth-scheme}/getHttpAuthSchemeEndpointRuleSetPlugin.js +0 -0
- /package/node_modules/@smithy/core/dist-es/{middleware-http-auth-scheme → legacy-root-exports/middleware-http-auth-scheme}/getHttpAuthSchemePlugin.js +0 -0
- /package/node_modules/@smithy/core/dist-es/{middleware-http-auth-scheme → legacy-root-exports/middleware-http-auth-scheme}/httpAuthSchemeMiddleware.js +0 -0
- /package/node_modules/@smithy/core/dist-es/{middleware-http-auth-scheme → legacy-root-exports/middleware-http-auth-scheme}/index.js +0 -0
- /package/node_modules/@smithy/core/dist-es/{middleware-http-auth-scheme → legacy-root-exports/middleware-http-auth-scheme}/resolveAuthOptions.js +0 -0
- /package/node_modules/@smithy/core/dist-es/{middleware-http-signing → legacy-root-exports/middleware-http-signing}/getHttpSigningMiddleware.js +0 -0
- /package/node_modules/@smithy/core/dist-es/{middleware-http-signing → legacy-root-exports/middleware-http-signing}/httpSigningMiddleware.js +0 -0
- /package/node_modules/@smithy/core/dist-es/{middleware-http-signing → legacy-root-exports/middleware-http-signing}/index.js +0 -0
- /package/node_modules/@smithy/core/dist-es/{pagination → legacy-root-exports/pagination}/createPaginator.js +0 -0
- /package/node_modules/@smithy/core/dist-es/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/DefaultIdentityProviderConfig.js +0 -0
- /package/node_modules/@smithy/core/dist-es/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/httpAuthSchemes/httpApiKeyAuth.js +0 -0
- /package/node_modules/@smithy/core/dist-es/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/httpAuthSchemes/httpBearerAuth.js +0 -0
- /package/node_modules/@smithy/core/dist-es/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/httpAuthSchemes/index.js +0 -0
- /package/node_modules/@smithy/core/dist-es/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/httpAuthSchemes/noAuth.js +0 -0
- /package/node_modules/@smithy/core/dist-es/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/index.js +0 -0
- /package/node_modules/@smithy/core/dist-es/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/memoizeIdentityProvider.js +0 -0
- /package/node_modules/@smithy/core/dist-es/{getSmithyContext.js → submodules/transport/getSmithyContext.js} +0 -0
- /package/node_modules/@smithy/core/dist-es/submodules/{protocols/protocol-http → transport}/httpRequest.js +0 -0
- /package/node_modules/@smithy/core/dist-es/submodules/{protocols/protocol-http → transport}/httpResponse.js +0 -0
- /package/node_modules/@smithy/core/dist-es/submodules/{endpoints/util-endpoints/lib → transport}/isValidHostLabel.js +0 -0
- /package/node_modules/@smithy/core/dist-es/submodules/{protocols/protocol-http → transport}/isValidHostname.js +0 -0
- /package/node_modules/@smithy/core/dist-es/submodules/{client/util-middleware → transport}/normalizeProvider.js +0 -0
- /package/node_modules/@smithy/core/dist-es/submodules/{protocols/querystring-parser → transport}/parseQueryString.js +0 -0
- /package/node_modules/@smithy/core/dist-types/{middleware-http-auth-scheme → legacy-root-exports/middleware-http-auth-scheme}/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +0 -0
- /package/node_modules/@smithy/core/dist-types/{middleware-http-auth-scheme → legacy-root-exports/middleware-http-auth-scheme}/getHttpAuthSchemePlugin.d.ts +0 -0
- /package/node_modules/@smithy/core/dist-types/{middleware-http-auth-scheme → legacy-root-exports/middleware-http-auth-scheme}/httpAuthSchemeMiddleware.d.ts +0 -0
- /package/node_modules/@smithy/core/dist-types/{middleware-http-auth-scheme → legacy-root-exports/middleware-http-auth-scheme}/index.d.ts +0 -0
- /package/node_modules/@smithy/core/dist-types/{middleware-http-auth-scheme → legacy-root-exports/middleware-http-auth-scheme}/resolveAuthOptions.d.ts +0 -0
- /package/node_modules/@smithy/core/dist-types/{middleware-http-signing → legacy-root-exports/middleware-http-signing}/getHttpSigningMiddleware.d.ts +0 -0
- /package/node_modules/@smithy/core/dist-types/{middleware-http-signing → legacy-root-exports/middleware-http-signing}/httpSigningMiddleware.d.ts +0 -0
- /package/node_modules/@smithy/core/dist-types/{middleware-http-signing → legacy-root-exports/middleware-http-signing}/index.d.ts +0 -0
- /package/node_modules/@smithy/core/dist-types/{pagination → legacy-root-exports/pagination}/createPaginator.d.ts +0 -0
- /package/node_modules/@smithy/core/dist-types/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/DefaultIdentityProviderConfig.d.ts +0 -0
- /package/node_modules/@smithy/core/dist-types/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/httpAuthSchemes/httpApiKeyAuth.d.ts +0 -0
- /package/node_modules/@smithy/core/dist-types/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/httpAuthSchemes/httpBearerAuth.d.ts +0 -0
- /package/node_modules/@smithy/core/dist-types/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/httpAuthSchemes/index.d.ts +0 -0
- /package/node_modules/@smithy/core/dist-types/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/httpAuthSchemes/noAuth.d.ts +0 -0
- /package/node_modules/@smithy/core/dist-types/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/index.d.ts +0 -0
- /package/node_modules/@smithy/core/dist-types/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/memoizeIdentityProvider.d.ts +0 -0
- /package/node_modules/@smithy/core/dist-types/{getSmithyContext.d.ts → submodules/transport/getSmithyContext.d.ts} +0 -0
- /package/node_modules/@smithy/core/dist-types/submodules/{protocols/protocol-http → transport}/httpRequest.d.ts +0 -0
- /package/node_modules/@smithy/core/dist-types/submodules/{protocols/protocol-http → transport}/httpResponse.d.ts +0 -0
- /package/node_modules/@smithy/core/dist-types/submodules/{endpoints/util-endpoints/lib → transport}/isValidHostLabel.d.ts +0 -0
- /package/node_modules/@smithy/core/dist-types/submodules/{protocols/protocol-http → transport}/isValidHostname.d.ts +0 -0
- /package/node_modules/@smithy/core/dist-types/submodules/{client/util-middleware → transport}/normalizeProvider.d.ts +0 -0
- /package/node_modules/@smithy/core/dist-types/submodules/{protocols/querystring-parser → transport}/parseQueryString.d.ts +0 -0
- /package/node_modules/@smithy/core/dist-types/submodules/{protocols/url-parser → transport}/parseUrl.d.ts +0 -0
- /package/node_modules/@smithy/core/dist-types/submodules/{endpoints → transport}/toEndpointV1.d.ts +0 -0
|
@@ -339,6 +339,7 @@ import { DescribeInternetGatewaysCommand, } from "./commands/DescribeInternetGat
|
|
|
339
339
|
import { DescribeIpamByoasnCommand, } from "./commands/DescribeIpamByoasnCommand";
|
|
340
340
|
import { DescribeIpamExternalResourceVerificationTokensCommand, } from "./commands/DescribeIpamExternalResourceVerificationTokensCommand";
|
|
341
341
|
import { DescribeIpamPoliciesCommand, } from "./commands/DescribeIpamPoliciesCommand";
|
|
342
|
+
import { DescribeIpamPoolAllocationsCommand, } from "./commands/DescribeIpamPoolAllocationsCommand";
|
|
342
343
|
import { DescribeIpamPoolsCommand, } from "./commands/DescribeIpamPoolsCommand";
|
|
343
344
|
import { DescribeIpamPrefixListResolversCommand, } from "./commands/DescribeIpamPrefixListResolversCommand";
|
|
344
345
|
import { DescribeIpamPrefixListResolverTargetsCommand, } from "./commands/DescribeIpamPrefixListResolverTargetsCommand";
|
|
@@ -631,6 +632,7 @@ import { ModifyInstanceNetworkPerformanceOptionsCommand, } from "./commands/Modi
|
|
|
631
632
|
import { ModifyInstancePlacementCommand, } from "./commands/ModifyInstancePlacementCommand";
|
|
632
633
|
import { ModifyIpamCommand, } from "./commands/ModifyIpamCommand";
|
|
633
634
|
import { ModifyIpamPolicyAllocationRulesCommand, } from "./commands/ModifyIpamPolicyAllocationRulesCommand";
|
|
635
|
+
import { ModifyIpamPoolAllocationCommand, } from "./commands/ModifyIpamPoolAllocationCommand";
|
|
634
636
|
import { ModifyIpamPoolCommand, } from "./commands/ModifyIpamPoolCommand";
|
|
635
637
|
import { ModifyIpamPrefixListResolverCommand, } from "./commands/ModifyIpamPrefixListResolverCommand";
|
|
636
638
|
import { ModifyIpamPrefixListResolverTargetCommand, } from "./commands/ModifyIpamPrefixListResolverTargetCommand";
|
|
@@ -812,6 +814,7 @@ import { paginateDescribeInstanceTopology } from "./pagination/DescribeInstanceT
|
|
|
812
814
|
import { paginateDescribeInstanceTypeOfferings } from "./pagination/DescribeInstanceTypeOfferingsPaginator";
|
|
813
815
|
import { paginateDescribeInstanceTypes } from "./pagination/DescribeInstanceTypesPaginator";
|
|
814
816
|
import { paginateDescribeInternetGateways } from "./pagination/DescribeInternetGatewaysPaginator";
|
|
817
|
+
import { paginateDescribeIpamPoolAllocations } from "./pagination/DescribeIpamPoolAllocationsPaginator";
|
|
815
818
|
import { paginateDescribeIpamPools } from "./pagination/DescribeIpamPoolsPaginator";
|
|
816
819
|
import { paginateDescribeIpamPrefixListResolvers } from "./pagination/DescribeIpamPrefixListResolversPaginator";
|
|
817
820
|
import { paginateDescribeIpamPrefixListResolverTargets, } from "./pagination/DescribeIpamPrefixListResolverTargetsPaginator";
|
|
@@ -1315,6 +1318,7 @@ const commands = {
|
|
|
1315
1318
|
DescribeIpamByoasnCommand,
|
|
1316
1319
|
DescribeIpamExternalResourceVerificationTokensCommand,
|
|
1317
1320
|
DescribeIpamPoliciesCommand,
|
|
1321
|
+
DescribeIpamPoolAllocationsCommand,
|
|
1318
1322
|
DescribeIpamPoolsCommand,
|
|
1319
1323
|
DescribeIpamPrefixListResolversCommand,
|
|
1320
1324
|
DescribeIpamPrefixListResolverTargetsCommand,
|
|
@@ -1608,6 +1612,7 @@ const commands = {
|
|
|
1608
1612
|
ModifyIpamCommand,
|
|
1609
1613
|
ModifyIpamPolicyAllocationRulesCommand,
|
|
1610
1614
|
ModifyIpamPoolCommand,
|
|
1615
|
+
ModifyIpamPoolAllocationCommand,
|
|
1611
1616
|
ModifyIpamPrefixListResolverCommand,
|
|
1612
1617
|
ModifyIpamPrefixListResolverTargetCommand,
|
|
1613
1618
|
ModifyIpamResourceCidrCommand,
|
|
@@ -1789,6 +1794,7 @@ const paginators = {
|
|
|
1789
1794
|
paginateDescribeInstanceTypeOfferings,
|
|
1790
1795
|
paginateDescribeInstanceTypes,
|
|
1791
1796
|
paginateDescribeInternetGateways,
|
|
1797
|
+
paginateDescribeIpamPoolAllocations,
|
|
1792
1798
|
paginateDescribeIpamPools,
|
|
1793
1799
|
paginateDescribeIpamPrefixListResolvers,
|
|
1794
1800
|
paginateDescribeIpamPrefixListResolverTargets,
|
package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamPoolAllocationsCommand.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DescribeIpamPoolAllocations$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DescribeIpamPoolAllocationsCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonEC2", "DescribeIpamPoolAllocations", {})
|
|
13
|
+
.n("EC2Client", "DescribeIpamPoolAllocationsCommand")
|
|
14
|
+
.sc(DescribeIpamPoolAllocations$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { ModifyIpamPoolAllocation$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ModifyIpamPoolAllocationCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonEC2", "ModifyIpamPoolAllocation", {})
|
|
13
|
+
.n("EC2Client", "ModifyIpamPoolAllocationCommand")
|
|
14
|
+
.sc(ModifyIpamPoolAllocation$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -338,6 +338,7 @@ export * from "./DescribeInternetGatewaysCommand";
|
|
|
338
338
|
export * from "./DescribeIpamByoasnCommand";
|
|
339
339
|
export * from "./DescribeIpamExternalResourceVerificationTokensCommand";
|
|
340
340
|
export * from "./DescribeIpamPoliciesCommand";
|
|
341
|
+
export * from "./DescribeIpamPoolAllocationsCommand";
|
|
341
342
|
export * from "./DescribeIpamPoolsCommand";
|
|
342
343
|
export * from "./DescribeIpamPrefixListResolverTargetsCommand";
|
|
343
344
|
export * from "./DescribeIpamPrefixListResolversCommand";
|
|
@@ -630,6 +631,7 @@ export * from "./ModifyInstanceNetworkPerformanceOptionsCommand";
|
|
|
630
631
|
export * from "./ModifyInstancePlacementCommand";
|
|
631
632
|
export * from "./ModifyIpamCommand";
|
|
632
633
|
export * from "./ModifyIpamPolicyAllocationRulesCommand";
|
|
634
|
+
export * from "./ModifyIpamPoolAllocationCommand";
|
|
633
635
|
export * from "./ModifyIpamPoolCommand";
|
|
634
636
|
export * from "./ModifyIpamPrefixListResolverCommand";
|
|
635
637
|
export * from "./ModifyIpamPrefixListResolverTargetCommand";
|
|
@@ -64,6 +64,7 @@ export const ResourceType = {
|
|
|
64
64
|
ipam_external_resource_verification_token: "ipam-external-resource-verification-token",
|
|
65
65
|
ipam_policy: "ipam-policy",
|
|
66
66
|
ipam_pool: "ipam-pool",
|
|
67
|
+
ipam_pool_allocation: "ipam-pool-allocation",
|
|
67
68
|
ipam_prefix_list_resolver: "ipam-prefix-list-resolver",
|
|
68
69
|
ipam_prefix_list_resolver_target: "ipam-prefix-list-resolver-target",
|
|
69
70
|
ipam_resource_discovery: "ipam-resource-discovery",
|
package/node_modules/@aws-sdk/client-ec2/dist-es/pagination/DescribeIpamPoolAllocationsPaginator.js
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { DescribeIpamPoolAllocationsCommand, } from "../commands/DescribeIpamPoolAllocationsCommand";
|
|
3
|
+
import { EC2Client } from "../EC2Client";
|
|
4
|
+
export const paginateDescribeIpamPoolAllocations = createPaginator(EC2Client, DescribeIpamPoolAllocationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -48,6 +48,7 @@ export * from "./DescribeInstanceTopologyPaginator";
|
|
|
48
48
|
export * from "./DescribeInstanceTypeOfferingsPaginator";
|
|
49
49
|
export * from "./DescribeInstanceTypesPaginator";
|
|
50
50
|
export * from "./DescribeInternetGatewaysPaginator";
|
|
51
|
+
export * from "./DescribeIpamPoolAllocationsPaginator";
|
|
51
52
|
export * from "./DescribeIpamPoolsPaginator";
|
|
52
53
|
export * from "./DescribeIpamPrefixListResolversPaginator";
|
|
53
54
|
export * from "./DescribeIpamPrefixListResolverTargetsPaginator";
|
|
@@ -1527,6 +1527,9 @@ const _DIOAA = "DisableIpamOrganizationAdminAccount";
|
|
|
1527
1527
|
const _DIOAAR = "DisableIpamOrganizationAdminAccountRequest";
|
|
1528
1528
|
const _DIOAARi = "DisableIpamOrganizationAdminAccountResult";
|
|
1529
1529
|
const _DIP = "DeleteIpamPolicy";
|
|
1530
|
+
const _DIPA = "DescribeIpamPoolAllocations";
|
|
1531
|
+
const _DIPAR = "DescribeIpamPoolAllocationsRequest";
|
|
1532
|
+
const _DIPARe = "DescribeIpamPoolAllocationsResult";
|
|
1530
1533
|
const _DIPC = "DeprovisionIpamPoolCidr";
|
|
1531
1534
|
const _DIPCR = "DeprovisionIpamPoolCidrRequest";
|
|
1532
1535
|
const _DIPCRe = "DeprovisionIpamPoolCidrResult";
|
|
@@ -3229,7 +3232,8 @@ const _IP = "InstancePort";
|
|
|
3229
3232
|
const _IPA = "IpamPoolAllocation";
|
|
3230
3233
|
const _IPAAC = "IpamPoolAllocationAllowedCidrs";
|
|
3231
3234
|
const _IPADC = "IpamPoolAllocationDisallowedCidrs";
|
|
3232
|
-
const _IPAI = "
|
|
3235
|
+
const _IPAI = "IpamPoolAllocationIds";
|
|
3236
|
+
const _IPAIp = "IpamPoolAllocationId";
|
|
3233
3237
|
const _IPAR = "IpamPolicyAllocationRule";
|
|
3234
3238
|
const _IPARL = "IpamPolicyAllocationRuleList";
|
|
3235
3239
|
const _IPARLR = "IpamPolicyAllocationRuleListRequest";
|
|
@@ -3889,9 +3893,12 @@ const _MINPO = "ModifyInstanceNetworkPerformanceOptions";
|
|
|
3889
3893
|
const _MINPR = "ModifyInstanceNetworkPerformanceRequest";
|
|
3890
3894
|
const _MINPRo = "ModifyInstanceNetworkPerformanceResult";
|
|
3891
3895
|
const _MIP = "ModifyInstancePlacement";
|
|
3892
|
-
const
|
|
3896
|
+
const _MIPA = "ModifyIpamPoolAllocation";
|
|
3897
|
+
const _MIPAR = "ModifyIpamPoolAllocationRequest";
|
|
3893
3898
|
const _MIPARR = "ModifyIpamPolicyAllocationRulesRequest";
|
|
3894
3899
|
const _MIPARRo = "ModifyIpamPolicyAllocationRulesResult";
|
|
3900
|
+
const _MIPARo = "ModifyIpamPoolAllocationResult";
|
|
3901
|
+
const _MIPARod = "ModifyIpamPolicyAllocationRules";
|
|
3895
3902
|
const _MIPLR = "ModifyIpamPrefixListResolver";
|
|
3896
3903
|
const _MIPLRR = "ModifyIpamPrefixListResolverRequest";
|
|
3897
3904
|
const _MIPLRRo = "ModifyIpamPrefixListResolverResult";
|
|
@@ -8493,8 +8500,8 @@ export var AllocateHostsResult$ = [3, n0, _AHRl,
|
|
|
8493
8500
|
];
|
|
8494
8501
|
export var AllocateIpamPoolCidrRequest$ = [3, n0, _AIPCR,
|
|
8495
8502
|
0,
|
|
8496
|
-
[_IPI, _DR, _Ci, _NL, _CT, _De, _PNC, _ACl, _DC],
|
|
8497
|
-
[0, 2, 0, 1, [0, 4], 0, 2, [() => IpamPoolAllocationAllowedCidrs, { [_xN]: _ACll }], [() => IpamPoolAllocationDisallowedCidrs, { [_xN]: _DCi }]], 1
|
|
8503
|
+
[_IPI, _DR, _Ci, _NL, _CT, _De, _PNC, _ACl, _DC, _TS],
|
|
8504
|
+
[0, 2, 0, 1, [0, 4], 0, 2, [() => IpamPoolAllocationAllowedCidrs, { [_xN]: _ACll }], [() => IpamPoolAllocationDisallowedCidrs, { [_xN]: _DCi }], [() => TagSpecificationList, { [_xN]: _TSa }]], 1
|
|
8498
8505
|
];
|
|
8499
8506
|
export var AllocateIpamPoolCidrResult$ = [3, n0, _AIPCRl,
|
|
8500
8507
|
0,
|
|
@@ -13569,6 +13576,18 @@ export var DescribeIpamPoliciesResult$ = [3, n0, _DIPResc,
|
|
|
13569
13576
|
[_xN]: _nTe }], [() => IpamPolicySet, { [_eQN]: `IpamPolicySet`,
|
|
13570
13577
|
[_xN]: _iPS }]]
|
|
13571
13578
|
];
|
|
13579
|
+
export var DescribeIpamPoolAllocationsRequest$ = [3, n0, _DIPAR,
|
|
13580
|
+
0,
|
|
13581
|
+
[_DR, _IPAI, _Fi, _MR, _NTe],
|
|
13582
|
+
[2, [() => ValueStringList, { [_xN]: _IPAIp }], [() => FilterList, { [_xN]: _Fil }], 1, 0]
|
|
13583
|
+
];
|
|
13584
|
+
export var DescribeIpamPoolAllocationsResult$ = [3, n0, _DIPARe,
|
|
13585
|
+
0,
|
|
13586
|
+
[_IPAp, _NTe],
|
|
13587
|
+
[[() => IpamPoolAllocationSet, { [_eQN]: `IpamPoolAllocationSet`,
|
|
13588
|
+
[_xN]: _iPAS }], [0, { [_eQN]: `NextToken`,
|
|
13589
|
+
[_xN]: _nTe }]]
|
|
13590
|
+
];
|
|
13572
13591
|
export var DescribeIpamPoolsRequest$ = [3, n0, _DIPRescr,
|
|
13573
13592
|
0,
|
|
13574
13593
|
[_DR, _Fi, _MR, _NTe, _IPIpam],
|
|
@@ -17055,7 +17074,7 @@ export var GetIpamPolicyOrganizationTargetsResult$ = [3, n0, _GIPOTRe,
|
|
|
17055
17074
|
];
|
|
17056
17075
|
export var GetIpamPoolAllocationsRequest$ = [3, n0, _GIPAR,
|
|
17057
17076
|
0,
|
|
17058
|
-
[_IPI, _DR,
|
|
17077
|
+
[_IPI, _DR, _IPAIp, _Fi, _MR, _NTe],
|
|
17059
17078
|
[0, 2, 0, [() => FilterList, { [_xN]: _Fil }], 1, 0], 1
|
|
17060
17079
|
];
|
|
17061
17080
|
export var GetIpamPoolAllocationsResult$ = [3, n0, _GIPARe,
|
|
@@ -18950,7 +18969,7 @@ export var IpamPool$ = [3, n0, _IPpam,
|
|
|
18950
18969
|
];
|
|
18951
18970
|
export var IpamPoolAllocation$ = [3, n0, _IPA,
|
|
18952
18971
|
0,
|
|
18953
|
-
[_Ci,
|
|
18972
|
+
[_Ci, _IPAIp, _De, _RIeso, _RTe, _RR, _ROe, _T],
|
|
18954
18973
|
[[0, { [_eQN]: `Cidr`,
|
|
18955
18974
|
[_xN]: _ci }], [0, { [_eQN]: `IpamPoolAllocationId`,
|
|
18956
18975
|
[_xN]: _iPAI }], [0, { [_eQN]: `Description`,
|
|
@@ -18958,7 +18977,8 @@ export var IpamPoolAllocation$ = [3, n0, _IPA,
|
|
|
18958
18977
|
[_xN]: _rIes }], [0, { [_eQN]: `ResourceType`,
|
|
18959
18978
|
[_xN]: _rTe }], [0, { [_eQN]: `ResourceRegion`,
|
|
18960
18979
|
[_xN]: _rR }], [0, { [_eQN]: `ResourceOwner`,
|
|
18961
|
-
[_xN]: _rO }]]
|
|
18980
|
+
[_xN]: _rO }], [() => TagList, { [_eQN]: `TagSet`,
|
|
18981
|
+
[_xN]: _tS }]]
|
|
18962
18982
|
];
|
|
18963
18983
|
export var IpamPoolCidr$ = [3, n0, _IPCpa,
|
|
18964
18984
|
0,
|
|
@@ -20156,9 +20176,9 @@ export var ModifyImageAttributeRequest$ = [3, n0, _MIAR,
|
|
|
20156
20176
|
];
|
|
20157
20177
|
export var ModifyInstanceAttributeRequest$ = [3, n0, _MIARo,
|
|
20158
20178
|
0,
|
|
20159
|
-
[_II, _SDC, _DASi, _DR, _At, _V, _BDMl, _DAT, _IT, _Ke, _Ra, _UDs, _IISB, _G, _EO, _SNS, _ESna],
|
|
20179
|
+
[_II, _SDC, _EOn, _DASi, _DR, _At, _V, _BDMl, _DAT, _IT, _Ke, _Ra, _UDs, _IISB, _G, _EO, _SNS, _ESna],
|
|
20160
20180
|
[[0, { [_eQN]: `InstanceId`,
|
|
20161
|
-
[_xN]: _iI }], [() => AttributeBooleanValue$, 0], [() => AttributeBooleanValue$, 0], [2, { [_eQN]: `DryRun`,
|
|
20181
|
+
[_xN]: _iI }], [() => AttributeBooleanValue$, 0], () => EnclaveOptionsRequest$, [() => AttributeBooleanValue$, 0], [2, { [_eQN]: `DryRun`,
|
|
20162
20182
|
[_xN]: _dR }], [0, { [_eQN]: `Attribute`,
|
|
20163
20183
|
[_xN]: _att }], [() => ModifyInstanceAttributeValue, { [_eQN]: `Value`,
|
|
20164
20184
|
[_xN]: _v }], [() => InstanceBlockDeviceMappingSpecificationList, { [_eQN]: `BlockDeviceMapping`,
|
|
@@ -20317,6 +20337,17 @@ export var ModifyIpamPolicyAllocationRulesResult$ = [3, n0, _MIPARRo,
|
|
|
20317
20337
|
[[() => IpamPolicyDocument$, { [_eQN]: `IpamPolicyDocument`,
|
|
20318
20338
|
[_xN]: _iPD }]]
|
|
20319
20339
|
];
|
|
20340
|
+
export var ModifyIpamPoolAllocationRequest$ = [3, n0, _MIPAR,
|
|
20341
|
+
0,
|
|
20342
|
+
[_IPAIp, _DR, _De],
|
|
20343
|
+
[0, 2, 0], 1
|
|
20344
|
+
];
|
|
20345
|
+
export var ModifyIpamPoolAllocationResult$ = [3, n0, _MIPARo,
|
|
20346
|
+
0,
|
|
20347
|
+
[_IPA],
|
|
20348
|
+
[[() => IpamPoolAllocation$, { [_eQN]: `IpamPoolAllocation`,
|
|
20349
|
+
[_xN]: _iPA }]]
|
|
20350
|
+
];
|
|
20320
20351
|
export var ModifyIpamPoolRequest$ = [3, n0, _MIPRod,
|
|
20321
20352
|
0,
|
|
20322
20353
|
[_IPI, _DR, _De, _AIu, _AMNL, _AMNLl, _ADNL, _CADNL, _AART, _RART],
|
|
@@ -22177,7 +22208,7 @@ export var ReleaseHostsResult$ = [3, n0, _RHRe,
|
|
|
22177
22208
|
];
|
|
22178
22209
|
export var ReleaseIpamPoolAllocationRequest$ = [3, n0, _RIPAR,
|
|
22179
22210
|
0,
|
|
22180
|
-
[_IPI, _Ci,
|
|
22211
|
+
[_IPI, _Ci, _IPAIp, _DR],
|
|
22181
22212
|
[0, 0, 0, 2], 3
|
|
22182
22213
|
];
|
|
22183
22214
|
export var ReleaseIpamPoolAllocationResult$ = [3, n0, _RIPARe,
|
|
@@ -25221,7 +25252,7 @@ export var VolumeDetail$ = [3, n0, _VDo,
|
|
|
25221
25252
|
];
|
|
25222
25253
|
export var VolumeModification$ = [3, n0, _VMo,
|
|
25223
25254
|
0,
|
|
25224
|
-
[_VIo, _MSod, _SMt, _TSarg, _TIar, _TVT, _TTar, _TMAE, _OSr, _OIr, _OVT, _OTri, _OMAE, _Pro, _ST, _ETnd],
|
|
25255
|
+
[_VIo, _MSod, _SMt, _TSarg, _TIar, _TVT, _TTar, _TMAE, _OSr, _OIr, _OVT, _OTri, _OMAE, _Pro, _ST, _ETnd, _Op],
|
|
25225
25256
|
[[0, { [_eQN]: `VolumeId`,
|
|
25226
25257
|
[_xN]: _vIo }], [0, { [_eQN]: `ModificationState`,
|
|
25227
25258
|
[_xN]: _mSod }], [0, { [_eQN]: `StatusMessage`,
|
|
@@ -25238,7 +25269,8 @@ export var VolumeModification$ = [3, n0, _VMo,
|
|
|
25238
25269
|
[_xN]: _oMAE }], [1, { [_eQN]: `Progress`,
|
|
25239
25270
|
[_xN]: _pro }], [4, { [_eQN]: `StartTime`,
|
|
25240
25271
|
[_xN]: _sT }], [4, { [_eQN]: `EndTime`,
|
|
25241
|
-
[_xN]: _eTn }]]
|
|
25272
|
+
[_xN]: _eTn }], [() => OperatorResponse$, { [_eQN]: `Operator`,
|
|
25273
|
+
[_xN]: _ope }]]
|
|
25242
25274
|
];
|
|
25243
25275
|
export var VolumeRecycleBinInfo$ = [3, n0, _VRBI,
|
|
25244
25276
|
0,
|
|
@@ -29549,6 +29581,9 @@ export var DescribeIpamExternalResourceVerificationTokens$ = [9, n0, _DIERVTe,
|
|
|
29549
29581
|
export var DescribeIpamPolicies$ = [9, n0, _DIPes,
|
|
29550
29582
|
0, () => DescribeIpamPoliciesRequest$, () => DescribeIpamPoliciesResult$
|
|
29551
29583
|
];
|
|
29584
|
+
export var DescribeIpamPoolAllocations$ = [9, n0, _DIPA,
|
|
29585
|
+
0, () => DescribeIpamPoolAllocationsRequest$, () => DescribeIpamPoolAllocationsResult$
|
|
29586
|
+
];
|
|
29552
29587
|
export var DescribeIpamPools$ = [9, n0, _DIPesc,
|
|
29553
29588
|
0, () => DescribeIpamPoolsRequest$, () => DescribeIpamPoolsResult$
|
|
29554
29589
|
];
|
|
@@ -30422,12 +30457,15 @@ export var ModifyInstancePlacement$ = [9, n0, _MIP,
|
|
|
30422
30457
|
export var ModifyIpam$ = [9, n0, _MIo,
|
|
30423
30458
|
0, () => ModifyIpamRequest$, () => ModifyIpamResult$
|
|
30424
30459
|
];
|
|
30425
|
-
export var ModifyIpamPolicyAllocationRules$ = [9, n0,
|
|
30460
|
+
export var ModifyIpamPolicyAllocationRules$ = [9, n0, _MIPARod,
|
|
30426
30461
|
0, () => ModifyIpamPolicyAllocationRulesRequest$, () => ModifyIpamPolicyAllocationRulesResult$
|
|
30427
30462
|
];
|
|
30428
30463
|
export var ModifyIpamPool$ = [9, n0, _MIPo,
|
|
30429
30464
|
0, () => ModifyIpamPoolRequest$, () => ModifyIpamPoolResult$
|
|
30430
30465
|
];
|
|
30466
|
+
export var ModifyIpamPoolAllocation$ = [9, n0, _MIPA,
|
|
30467
|
+
0, () => ModifyIpamPoolAllocationRequest$, () => ModifyIpamPoolAllocationResult$
|
|
30468
|
+
];
|
|
30431
30469
|
export var ModifyIpamPrefixListResolver$ = [9, n0, _MIPLR,
|
|
30432
30470
|
0, () => ModifyIpamPrefixListResolverRequest$, () => ModifyIpamPrefixListResolverResult$
|
|
30433
30471
|
];
|
|
@@ -340,6 +340,7 @@ import { type DescribeInternetGatewaysCommandInput, type DescribeInternetGateway
|
|
|
340
340
|
import { type DescribeIpamByoasnCommandInput, type DescribeIpamByoasnCommandOutput } from "./commands/DescribeIpamByoasnCommand";
|
|
341
341
|
import { type DescribeIpamExternalResourceVerificationTokensCommandInput, type DescribeIpamExternalResourceVerificationTokensCommandOutput } from "./commands/DescribeIpamExternalResourceVerificationTokensCommand";
|
|
342
342
|
import { type DescribeIpamPoliciesCommandInput, type DescribeIpamPoliciesCommandOutput } from "./commands/DescribeIpamPoliciesCommand";
|
|
343
|
+
import { type DescribeIpamPoolAllocationsCommandInput, type DescribeIpamPoolAllocationsCommandOutput } from "./commands/DescribeIpamPoolAllocationsCommand";
|
|
343
344
|
import { type DescribeIpamPoolsCommandInput, type DescribeIpamPoolsCommandOutput } from "./commands/DescribeIpamPoolsCommand";
|
|
344
345
|
import { type DescribeIpamPrefixListResolversCommandInput, type DescribeIpamPrefixListResolversCommandOutput } from "./commands/DescribeIpamPrefixListResolversCommand";
|
|
345
346
|
import { type DescribeIpamPrefixListResolverTargetsCommandInput, type DescribeIpamPrefixListResolverTargetsCommandOutput } from "./commands/DescribeIpamPrefixListResolverTargetsCommand";
|
|
@@ -632,6 +633,7 @@ import { type ModifyInstanceNetworkPerformanceOptionsCommandInput, type ModifyIn
|
|
|
632
633
|
import { type ModifyInstancePlacementCommandInput, type ModifyInstancePlacementCommandOutput } from "./commands/ModifyInstancePlacementCommand";
|
|
633
634
|
import { type ModifyIpamCommandInput, type ModifyIpamCommandOutput } from "./commands/ModifyIpamCommand";
|
|
634
635
|
import { type ModifyIpamPolicyAllocationRulesCommandInput, type ModifyIpamPolicyAllocationRulesCommandOutput } from "./commands/ModifyIpamPolicyAllocationRulesCommand";
|
|
636
|
+
import { type ModifyIpamPoolAllocationCommandInput, type ModifyIpamPoolAllocationCommandOutput } from "./commands/ModifyIpamPoolAllocationCommand";
|
|
635
637
|
import { type ModifyIpamPoolCommandInput, type ModifyIpamPoolCommandOutput } from "./commands/ModifyIpamPoolCommand";
|
|
636
638
|
import { type ModifyIpamPrefixListResolverCommandInput, type ModifyIpamPrefixListResolverCommandOutput } from "./commands/ModifyIpamPrefixListResolverCommand";
|
|
637
639
|
import { type ModifyIpamPrefixListResolverTargetCommandInput, type ModifyIpamPrefixListResolverTargetCommandOutput } from "./commands/ModifyIpamPrefixListResolverTargetCommand";
|
|
@@ -2892,6 +2894,13 @@ export interface EC2 {
|
|
|
2892
2894
|
describeIpamPolicies(args: DescribeIpamPoliciesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeIpamPoliciesCommandOutput>;
|
|
2893
2895
|
describeIpamPolicies(args: DescribeIpamPoliciesCommandInput, cb: (err: any, data?: DescribeIpamPoliciesCommandOutput) => void): void;
|
|
2894
2896
|
describeIpamPolicies(args: DescribeIpamPoliciesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeIpamPoliciesCommandOutput) => void): void;
|
|
2897
|
+
/**
|
|
2898
|
+
* @see {@link DescribeIpamPoolAllocationsCommand}
|
|
2899
|
+
*/
|
|
2900
|
+
describeIpamPoolAllocations(): Promise<DescribeIpamPoolAllocationsCommandOutput>;
|
|
2901
|
+
describeIpamPoolAllocations(args: DescribeIpamPoolAllocationsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeIpamPoolAllocationsCommandOutput>;
|
|
2902
|
+
describeIpamPoolAllocations(args: DescribeIpamPoolAllocationsCommandInput, cb: (err: any, data?: DescribeIpamPoolAllocationsCommandOutput) => void): void;
|
|
2903
|
+
describeIpamPoolAllocations(args: DescribeIpamPoolAllocationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeIpamPoolAllocationsCommandOutput) => void): void;
|
|
2895
2904
|
/**
|
|
2896
2905
|
* @see {@link DescribeIpamPoolsCommand}
|
|
2897
2906
|
*/
|
|
@@ -4786,6 +4795,12 @@ export interface EC2 {
|
|
|
4786
4795
|
modifyIpamPool(args: ModifyIpamPoolCommandInput, options?: __HttpHandlerOptions): Promise<ModifyIpamPoolCommandOutput>;
|
|
4787
4796
|
modifyIpamPool(args: ModifyIpamPoolCommandInput, cb: (err: any, data?: ModifyIpamPoolCommandOutput) => void): void;
|
|
4788
4797
|
modifyIpamPool(args: ModifyIpamPoolCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyIpamPoolCommandOutput) => void): void;
|
|
4798
|
+
/**
|
|
4799
|
+
* @see {@link ModifyIpamPoolAllocationCommand}
|
|
4800
|
+
*/
|
|
4801
|
+
modifyIpamPoolAllocation(args: ModifyIpamPoolAllocationCommandInput, options?: __HttpHandlerOptions): Promise<ModifyIpamPoolAllocationCommandOutput>;
|
|
4802
|
+
modifyIpamPoolAllocation(args: ModifyIpamPoolAllocationCommandInput, cb: (err: any, data?: ModifyIpamPoolAllocationCommandOutput) => void): void;
|
|
4803
|
+
modifyIpamPoolAllocation(args: ModifyIpamPoolAllocationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyIpamPoolAllocationCommandOutput) => void): void;
|
|
4789
4804
|
/**
|
|
4790
4805
|
* @see {@link ModifyIpamPrefixListResolverCommand}
|
|
4791
4806
|
*/
|
|
@@ -5919,6 +5934,13 @@ export interface EC2 {
|
|
|
5919
5934
|
* @returns AsyncIterable of {@link DescribeInternetGatewaysCommandOutput}.
|
|
5920
5935
|
*/
|
|
5921
5936
|
paginateDescribeInternetGateways(args?: DescribeInternetGatewaysCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeInternetGatewaysCommandOutput>;
|
|
5937
|
+
/**
|
|
5938
|
+
* @see {@link DescribeIpamPoolAllocationsCommand}
|
|
5939
|
+
* @param args - command input.
|
|
5940
|
+
* @param paginationConfig - optional pagination config.
|
|
5941
|
+
* @returns AsyncIterable of {@link DescribeIpamPoolAllocationsCommandOutput}.
|
|
5942
|
+
*/
|
|
5943
|
+
paginateDescribeIpamPoolAllocations(args?: DescribeIpamPoolAllocationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeIpamPoolAllocationsCommandOutput>;
|
|
5922
5944
|
/**
|
|
5923
5945
|
* @see {@link DescribeIpamPoolsCommand}
|
|
5924
5946
|
* @param args - command input.
|
|
@@ -7013,8 +7035,58 @@ export interface EC2 {
|
|
|
7013
7035
|
}
|
|
7014
7036
|
/**
|
|
7015
7037
|
* <fullname>Amazon Elastic Compute Cloud</fullname>
|
|
7016
|
-
* <p>
|
|
7017
|
-
*
|
|
7038
|
+
* <p>This is the <i>Amazon EC2 API Reference</i>. It provides descriptions, API request
|
|
7039
|
+
* parameters, and the XML response for each of the Amazon EC2 Query API actions. Note that the
|
|
7040
|
+
* Amazon EC2 API includes actions for Amazon EC2 plus additional services, such as Amazon EBS and Amazon VPC.</p>
|
|
7041
|
+
* <p class="title">
|
|
7042
|
+
* <b>Learn more</b>
|
|
7043
|
+
* </p>
|
|
7044
|
+
* <ul>
|
|
7045
|
+
* <li>
|
|
7046
|
+
* <p>To learn about using the Query API, see
|
|
7047
|
+
* <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-low-level-api.html">Using the API for Amazon EC2</a>.</p>
|
|
7048
|
+
* </li>
|
|
7049
|
+
* <li>
|
|
7050
|
+
* <p>To learn about the permissions required to call an Amazon EC2 API action, see
|
|
7051
|
+
* <a href="https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonec2.html">Actions, resources, and condition keys for Amazon EC2</a>.</p>
|
|
7052
|
+
* </li>
|
|
7053
|
+
* <li>
|
|
7054
|
+
* <p>To get the list of API actions by service and resource, see
|
|
7055
|
+
* <a href="https://docs.aws.amazon.com/ec2/latest/devguide/OperationList-query.html">Actions by service</a>.</p>
|
|
7056
|
+
* </li>
|
|
7057
|
+
* <li>
|
|
7058
|
+
* <p>To get the alphabetical list of API actions, see
|
|
7059
|
+
* .</p>
|
|
7060
|
+
* </li>
|
|
7061
|
+
* <li>
|
|
7062
|
+
* <p>To get descriptions of the API error codes, see
|
|
7063
|
+
* <a href="https://docs.aws.amazon.com/ec2/latest/devguide/errors-overview.html">Error codes for the Amazon EC2 API</a>.</p>
|
|
7064
|
+
* </li>
|
|
7065
|
+
* </ul>
|
|
7066
|
+
* <p>Alternatively, use one of the following methods to access the Amazon EC2 API, instead of using
|
|
7067
|
+
* the Query API directly:</p>
|
|
7068
|
+
* <ul>
|
|
7069
|
+
* <li>
|
|
7070
|
+
* <p>
|
|
7071
|
+
* <a href="https://docs.aws.amazon.com/cli/latest/reference/ec2/">Amazon Web Services CLI Command Reference - ec2 commands</a>
|
|
7072
|
+
* </p>
|
|
7073
|
+
* </li>
|
|
7074
|
+
* <li>
|
|
7075
|
+
* <p>
|
|
7076
|
+
* <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/AWS_EC2.html">CloudFormation - Amazon EC2 resource type reference</a>
|
|
7077
|
+
* </p>
|
|
7078
|
+
* </li>
|
|
7079
|
+
* <li>
|
|
7080
|
+
* <p>
|
|
7081
|
+
* <a href="https://docs.aws.amazon.com/powershell/v5/reference/items/EC2_cmdlets.html">Amazon Web Services Tools for PowerShell Cmdlet Reference - Amazon EC2 cmdlets</a>
|
|
7082
|
+
* </p>
|
|
7083
|
+
* </li>
|
|
7084
|
+
* <li>
|
|
7085
|
+
* <p>
|
|
7086
|
+
* <a href="https://builder.aws.com/build/tools">Amazon Web Services SDKs</a>
|
|
7087
|
+
* </p>
|
|
7088
|
+
* </li>
|
|
7089
|
+
* </ul>
|
|
7018
7090
|
* @public
|
|
7019
7091
|
*/
|
|
7020
7092
|
export declare class EC2 extends EC2Client implements EC2 {
|