@cdklabs/cdk-ssm-documents 0.0.61 → 0.0.62
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +12 -12
- package/lib/construct/synth-utils.js +1 -1
- package/lib/document/automation-document.js +1 -1
- package/lib/document/command-document.js +1 -1
- package/lib/document/document-builder.js +2 -2
- package/lib/document/ssm-document.js +1 -1
- package/lib/domain/aws-service.js +1 -1
- package/lib/domain/choice.js +1 -1
- package/lib/domain/data-type.js +1 -1
- package/lib/domain/enum/install-action.js +2 -2
- package/lib/domain/enum/install-uninstall-repair.js +2 -2
- package/lib/domain/enum/installation-type.js +2 -2
- package/lib/domain/enum/package-name.js +2 -2
- package/lib/domain/input.js +1 -1
- package/lib/domain/operation.js +1 -1
- package/lib/domain/platform.js +1 -1
- package/lib/domain/precondition.js +1 -1
- package/lib/incident-response/incident-response.js +3 -3
- package/lib/interface/approve-hook.js +2 -2
- package/lib/interface/auth-method.js +3 -3
- package/lib/interface/aws-invoker.js +2 -2
- package/lib/interface/downloadable-content.js +8 -8
- package/lib/interface/environment.js +3 -3
- package/lib/interface/execute-automation-hook/api-execute-automation-hook.js +1 -1
- package/lib/interface/observer.js +1 -1
- package/lib/interface/on-failure.js +6 -6
- package/lib/interface/pause-hook.js +2 -2
- package/lib/interface/run-command-hook/api-run-command-hook.js +1 -1
- package/lib/interface/run-document-location.js +2 -2
- package/lib/interface/sleep-hook.js +2 -2
- package/lib/interface/step-ref.js +1 -1
- package/lib/interface/variables/boolean-variable.js +2 -2
- package/lib/interface/variables/map-list-variable.js +2 -2
- package/lib/interface/variables/number-variable.js +2 -2
- package/lib/interface/variables/secure-string-variable.js +4 -4
- package/lib/interface/variables/string-list-variable.js +2 -2
- package/lib/interface/variables/string-map-variable.js +2 -2
- package/lib/interface/variables/string-variable.js +4 -4
- package/lib/interface/variables/variable.js +2 -2
- package/lib/interface/webhook.js +1 -1
- package/lib/parent-steps/automation/approve-step.js +1 -1
- package/lib/parent-steps/automation/assert-aws-resource-step.js +1 -1
- package/lib/parent-steps/automation/aws-api-step.js +1 -1
- package/lib/parent-steps/automation/branch-step.js +1 -1
- package/lib/parent-steps/automation/change-instance-state-step.js +3 -3
- package/lib/parent-steps/automation/copy-image-step.js +1 -1
- package/lib/parent-steps/automation/create-image-step.js +1 -1
- package/lib/parent-steps/automation/create-stack-step.js +3 -3
- package/lib/parent-steps/automation/create-tags-step.js +3 -3
- package/lib/parent-steps/automation/delete-image-step.js +1 -1
- package/lib/parent-steps/automation/delete-stack-step.js +1 -1
- package/lib/parent-steps/automation/execute-automation-step.js +1 -1
- package/lib/parent-steps/automation/execute-script-step.js +5 -5
- package/lib/parent-steps/automation/execute-state-machine-step.js +1 -1
- package/lib/parent-steps/automation/invoke-lambda-function-step.js +1 -1
- package/lib/parent-steps/automation/invoke-webhook-step.js +1 -1
- package/lib/parent-steps/automation/pause-step.js +1 -1
- package/lib/parent-steps/automation/run-command-step.js +3 -3
- package/lib/parent-steps/automation/run-instance-step.js +1 -1
- package/lib/parent-steps/automation/sleep-step.js +1 -1
- package/lib/parent-steps/automation/update-variable.js +1 -1
- package/lib/parent-steps/automation/wait-for-resource-step.js +1 -1
- package/lib/parent-steps/automation-step.js +1 -1
- package/lib/parent-steps/command/applications-step.js +1 -1
- package/lib/parent-steps/command/configure-docker-step.js +1 -1
- package/lib/parent-steps/command/configure-package-step.js +1 -1
- package/lib/parent-steps/command/domain-join-step.js +1 -1
- package/lib/parent-steps/command/download-content-step.js +1 -1
- package/lib/parent-steps/command/ps-module-step.js +1 -1
- package/lib/parent-steps/command/run-docker-action-step.js +1 -1
- package/lib/parent-steps/command/run-document-step.js +1 -1
- package/lib/parent-steps/command/run-powershell-script-step.js +1 -1
- package/lib/parent-steps/command/run-shell-script-step.js +1 -1
- package/lib/parent-steps/command/software-inventory-step.js +1 -1
- package/lib/parent-steps/command/update-agent-step.js +1 -1
- package/lib/parent-steps/command/update-ssm-agent-step.js +1 -1
- package/lib/parent-steps/command-step.js +1 -1
- package/lib/parent-steps/step.js +1 -1
- package/lib/patterns/automation/composite-step.js +2 -2
- package/lib/patterns/automation/reboot-instance-and-wait.js +1 -1
- package/lib/patterns/automation/string-step.js +1 -1
- package/lib/patterns/document/string-document.js +1 -1
- package/lib/patterns/document/timed-document.js +1 -1
- package/lib/samples/hello-world.js +1 -1
- package/lib/simulation/automation/approve-simulation.js +1 -1
- package/lib/simulation/automation/assert-aws-resource-simulation.js +1 -1
- package/lib/simulation/automation/automation-simulation-base.js +1 -1
- package/lib/simulation/automation/aws-api-simulation.js +1 -1
- package/lib/simulation/automation/branch-simulation.js +1 -1
- package/lib/simulation/automation/change-instance-state-simulation.js +1 -1
- package/lib/simulation/automation/copy-image-simulation.js +1 -1
- package/lib/simulation/automation/create-image-simulation.js +1 -1
- package/lib/simulation/automation/create-stack-simulation.js +1 -1
- package/lib/simulation/automation/create-tags-simulation.js +1 -1
- package/lib/simulation/automation/delete-image-simulation.js +1 -1
- package/lib/simulation/automation/delete-stack-simulation.js +1 -1
- package/lib/simulation/automation/execute-script-simulation.js +1 -1
- package/lib/simulation/automation/execute-state-machine-simulation.js +1 -1
- package/lib/simulation/automation/invoke-lambda-function-simulation.js +1 -1
- package/lib/simulation/automation/invoke-webhook-simulation.js +1 -1
- package/lib/simulation/automation/pause-simulation.js +1 -1
- package/lib/simulation/automation/run-command-simulation.js +1 -1
- package/lib/simulation/automation/run-instance-simulation.js +1 -1
- package/lib/simulation/automation/sleep-simulation.js +1 -1
- package/lib/simulation/automation/update-variable-simulation.js +1 -1
- package/lib/simulation/automation/wait-for-resource-simulation.js +1 -1
- package/lib/simulation/automation-step-simulation.js +1 -1
- package/lib/simulation/command/command-simulation-base.js +1 -1
- package/lib/simulation/command/ps-module-simulation.js +1 -1
- package/lib/simulation/command/run-powershell-script-simulation.js +1 -1
- package/lib/simulation/command/run-shell-script-simulation.js +1 -1
- package/lib/simulation/command-step-simulation.js +1 -1
- package/lib/simulation/document/automation-simulation.js +1 -1
- package/lib/simulation/document/command-simulation.js +1 -1
- package/lib/simulation/simulation.js +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/package.json +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 +5 -5
- package/node_modules/@aws-sdk/crc64-nvme/package.json +2 -2
- package/node_modules/@aws-sdk/credential-provider-env/package.json +5 -5
- package/node_modules/@aws-sdk/credential-provider-http/package.json +7 -7
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +12 -12
- package/node_modules/@aws-sdk/credential-provider-login/package.json +6 -6
- package/node_modules/@aws-sdk/credential-provider-node/package.json +10 -10
- 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 +5 -5
- package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +6 -6
- 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 -4
- 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 +2 -2
- 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/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 +1 -1
- 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/credential-provider-imds/package.json +2 -2
- package/node_modules/@smithy/fetch-http-handler/package.json +2 -2
- package/node_modules/@smithy/middleware-compression/package.json +2 -2
- package/node_modules/@smithy/node-http-handler/package.json +2 -2
- package/node_modules/@smithy/signature-v4/package.json +2 -2
- package/package.json +10 -10
- /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
|
@@ -62,6 +62,7 @@ import {
|
|
|
62
62
|
NatGatewayAddress,
|
|
63
63
|
OperatorResponse,
|
|
64
64
|
RouteServerAssociation,
|
|
65
|
+
Subnet,
|
|
65
66
|
SubnetIpv6CidrBlockAssociation,
|
|
66
67
|
Tag,
|
|
67
68
|
TagSpecification,
|
|
@@ -114,6 +115,16 @@ import {
|
|
|
114
115
|
ProductCode,
|
|
115
116
|
} from "./models_3";
|
|
116
117
|
import { RegisteredInstance } from "./models_4";
|
|
118
|
+
export interface DescribeSubnetsResult {
|
|
119
|
+
NextToken?: string | undefined;
|
|
120
|
+
Subnets?: Subnet[] | undefined;
|
|
121
|
+
}
|
|
122
|
+
export interface DescribeTagsRequest {
|
|
123
|
+
DryRun?: boolean | undefined;
|
|
124
|
+
Filters?: Filter[] | undefined;
|
|
125
|
+
MaxResults?: number | undefined;
|
|
126
|
+
NextToken?: string | undefined;
|
|
127
|
+
}
|
|
117
128
|
export interface TagDescription {
|
|
118
129
|
Key?: string | undefined;
|
|
119
130
|
ResourceId?: string | undefined;
|
|
@@ -461,6 +472,7 @@ export interface VolumeModification {
|
|
|
461
472
|
Progress?: number | undefined;
|
|
462
473
|
StartTime?: Date | undefined;
|
|
463
474
|
EndTime?: Date | undefined;
|
|
475
|
+
Operator?: OperatorResponse | undefined;
|
|
464
476
|
}
|
|
465
477
|
export interface DescribeVolumesModificationsResult {
|
|
466
478
|
NextToken?: string | undefined;
|
|
@@ -1652,13 +1664,3 @@ export interface CapacityManagerMonitoredTagKey {
|
|
|
1652
1664
|
CapacityManagerProvided?: boolean | undefined;
|
|
1653
1665
|
EarliestDatapointTimestamp?: Date | undefined;
|
|
1654
1666
|
}
|
|
1655
|
-
export interface GetCapacityManagerMonitoredTagKeysResult {
|
|
1656
|
-
CapacityManagerTagKeys?: CapacityManagerMonitoredTagKey[] | undefined;
|
|
1657
|
-
NextToken?: string | undefined;
|
|
1658
|
-
}
|
|
1659
|
-
export interface GetCapacityReservationUsageRequest {
|
|
1660
|
-
CapacityReservationId: string | undefined;
|
|
1661
|
-
NextToken?: string | undefined;
|
|
1662
|
-
MaxResults?: number | undefined;
|
|
1663
|
-
DryRun?: boolean | undefined;
|
|
1664
|
-
}
|
|
@@ -62,8 +62,6 @@ import {
|
|
|
62
62
|
PaymentOption,
|
|
63
63
|
PermissionGroup,
|
|
64
64
|
PlatformValues,
|
|
65
|
-
PublicIpDnsOption,
|
|
66
|
-
RouteServerPersistRoutesAction,
|
|
67
65
|
RouteServerRouteInstallationStatus,
|
|
68
66
|
RouteServerRouteStatus,
|
|
69
67
|
SelfServicePortal,
|
|
@@ -149,9 +147,21 @@ import {
|
|
|
149
147
|
import {
|
|
150
148
|
InstanceMetadataOptionsResponse,
|
|
151
149
|
InstanceStatusEvent,
|
|
152
|
-
ReservedInstancesConfiguration,
|
|
153
150
|
} from "./models_4";
|
|
154
|
-
import {
|
|
151
|
+
import {
|
|
152
|
+
CapacityManagerMonitoredTagKey,
|
|
153
|
+
RouteServerPropagation,
|
|
154
|
+
} from "./models_5";
|
|
155
|
+
export interface GetCapacityManagerMonitoredTagKeysResult {
|
|
156
|
+
CapacityManagerTagKeys?: CapacityManagerMonitoredTagKey[] | undefined;
|
|
157
|
+
NextToken?: string | undefined;
|
|
158
|
+
}
|
|
159
|
+
export interface GetCapacityReservationUsageRequest {
|
|
160
|
+
CapacityReservationId: string | undefined;
|
|
161
|
+
NextToken?: string | undefined;
|
|
162
|
+
MaxResults?: number | undefined;
|
|
163
|
+
DryRun?: boolean | undefined;
|
|
164
|
+
}
|
|
155
165
|
export interface InstanceUsage {
|
|
156
166
|
AccountId?: string | undefined;
|
|
157
167
|
UsedInstanceCount?: number | undefined;
|
|
@@ -1517,11 +1527,15 @@ export interface InstanceBlockDeviceMappingSpecification {
|
|
|
1517
1527
|
VirtualName?: string | undefined;
|
|
1518
1528
|
NoDevice?: string | undefined;
|
|
1519
1529
|
}
|
|
1530
|
+
export interface EnclaveOptionsRequest {
|
|
1531
|
+
Enabled?: boolean | undefined;
|
|
1532
|
+
}
|
|
1520
1533
|
export interface BlobAttributeValue {
|
|
1521
1534
|
Value?: Uint8Array | undefined;
|
|
1522
1535
|
}
|
|
1523
1536
|
export interface ModifyInstanceAttributeRequest {
|
|
1524
1537
|
SourceDestCheck?: AttributeBooleanValue | undefined;
|
|
1538
|
+
EnclaveOptions?: EnclaveOptionsRequest | undefined;
|
|
1525
1539
|
DisableApiStop?: AttributeBooleanValue | undefined;
|
|
1526
1540
|
DryRun?: boolean | undefined;
|
|
1527
1541
|
InstanceId: string | undefined;
|
|
@@ -1726,6 +1740,14 @@ export interface ModifyIpamPoolRequest {
|
|
|
1726
1740
|
export interface ModifyIpamPoolResult {
|
|
1727
1741
|
IpamPool?: IpamPool | undefined;
|
|
1728
1742
|
}
|
|
1743
|
+
export interface ModifyIpamPoolAllocationRequest {
|
|
1744
|
+
DryRun?: boolean | undefined;
|
|
1745
|
+
IpamPoolAllocationId: string | undefined;
|
|
1746
|
+
Description?: string | undefined;
|
|
1747
|
+
}
|
|
1748
|
+
export interface ModifyIpamPoolAllocationResult {
|
|
1749
|
+
IpamPoolAllocation?: IpamPoolAllocation | undefined;
|
|
1750
|
+
}
|
|
1729
1751
|
export interface ModifyIpamPrefixListResolverRequest {
|
|
1730
1752
|
DryRun?: boolean | undefined;
|
|
1731
1753
|
IpamPrefixListResolverId: string | undefined;
|
|
@@ -1861,26 +1883,3 @@ export interface ModifyPrivateDnsNameOptionsRequest {
|
|
|
1861
1883
|
export interface ModifyPrivateDnsNameOptionsResult {
|
|
1862
1884
|
Return?: boolean | undefined;
|
|
1863
1885
|
}
|
|
1864
|
-
export interface ModifyPublicIpDnsNameOptionsRequest {
|
|
1865
|
-
NetworkInterfaceId: string | undefined;
|
|
1866
|
-
HostnameType: PublicIpDnsOption | undefined;
|
|
1867
|
-
DryRun?: boolean | undefined;
|
|
1868
|
-
}
|
|
1869
|
-
export interface ModifyPublicIpDnsNameOptionsResult {
|
|
1870
|
-
Successful?: boolean | undefined;
|
|
1871
|
-
}
|
|
1872
|
-
export interface ModifyReservedInstancesRequest {
|
|
1873
|
-
ReservedInstancesIds: string[] | undefined;
|
|
1874
|
-
ClientToken?: string | undefined;
|
|
1875
|
-
TargetConfigurations: ReservedInstancesConfiguration[] | undefined;
|
|
1876
|
-
}
|
|
1877
|
-
export interface ModifyReservedInstancesResult {
|
|
1878
|
-
ReservedInstancesModificationId?: string | undefined;
|
|
1879
|
-
}
|
|
1880
|
-
export interface ModifyRouteServerRequest {
|
|
1881
|
-
RouteServerId: string | undefined;
|
|
1882
|
-
PersistRoutes?: RouteServerPersistRoutesAction | undefined;
|
|
1883
|
-
PersistRoutesDuration?: number | undefined;
|
|
1884
|
-
SnsNotificationsEnabled?: boolean | undefined;
|
|
1885
|
-
DryRun?: boolean | undefined;
|
|
1886
|
-
}
|
|
@@ -35,10 +35,12 @@ import {
|
|
|
35
35
|
NestedVirtualizationSpecification,
|
|
36
36
|
OperationType,
|
|
37
37
|
PayerResponsibility,
|
|
38
|
+
PublicIpDnsOption,
|
|
38
39
|
ReportInstanceReasonCodes,
|
|
39
40
|
ReportStatusType,
|
|
40
41
|
ResetFpgaImageAttributeName,
|
|
41
42
|
ResetImageAttributeName,
|
|
43
|
+
RouteServerPersistRoutesAction,
|
|
42
44
|
RuleAction,
|
|
43
45
|
SecondaryInterfaceType,
|
|
44
46
|
SecurityGroupReferencingSupportValue,
|
|
@@ -144,6 +146,7 @@ import {
|
|
|
144
146
|
NetworkInsightsAccessScopeAnalysis,
|
|
145
147
|
NetworkInsightsAnalysis,
|
|
146
148
|
PublicIpv4PoolRange,
|
|
149
|
+
ReservedInstancesConfiguration,
|
|
147
150
|
RunInstancesMonitoringEnabled,
|
|
148
151
|
ScheduledInstance,
|
|
149
152
|
SpotFleetRequestConfigData,
|
|
@@ -156,7 +159,34 @@ import {
|
|
|
156
159
|
VolumeModification,
|
|
157
160
|
VpcBlockPublicAccessOptions,
|
|
158
161
|
} from "./models_5";
|
|
159
|
-
import {
|
|
162
|
+
import {
|
|
163
|
+
CapacityReservationSpecification,
|
|
164
|
+
EnclaveOptionsRequest,
|
|
165
|
+
Purchase,
|
|
166
|
+
} from "./models_6";
|
|
167
|
+
export interface ModifyPublicIpDnsNameOptionsRequest {
|
|
168
|
+
NetworkInterfaceId: string | undefined;
|
|
169
|
+
HostnameType: PublicIpDnsOption | undefined;
|
|
170
|
+
DryRun?: boolean | undefined;
|
|
171
|
+
}
|
|
172
|
+
export interface ModifyPublicIpDnsNameOptionsResult {
|
|
173
|
+
Successful?: boolean | undefined;
|
|
174
|
+
}
|
|
175
|
+
export interface ModifyReservedInstancesRequest {
|
|
176
|
+
ReservedInstancesIds: string[] | undefined;
|
|
177
|
+
ClientToken?: string | undefined;
|
|
178
|
+
TargetConfigurations: ReservedInstancesConfiguration[] | undefined;
|
|
179
|
+
}
|
|
180
|
+
export interface ModifyReservedInstancesResult {
|
|
181
|
+
ReservedInstancesModificationId?: string | undefined;
|
|
182
|
+
}
|
|
183
|
+
export interface ModifyRouteServerRequest {
|
|
184
|
+
RouteServerId: string | undefined;
|
|
185
|
+
PersistRoutes?: RouteServerPersistRoutesAction | undefined;
|
|
186
|
+
PersistRoutesDuration?: number | undefined;
|
|
187
|
+
SnsNotificationsEnabled?: boolean | undefined;
|
|
188
|
+
DryRun?: boolean | undefined;
|
|
189
|
+
}
|
|
160
190
|
export interface ModifyRouteServerResult {
|
|
161
191
|
RouteServer?: RouteServer | undefined;
|
|
162
192
|
}
|
|
@@ -1337,9 +1367,6 @@ export interface ElasticInferenceAccelerator {
|
|
|
1337
1367
|
Type: string | undefined;
|
|
1338
1368
|
Count?: number | undefined;
|
|
1339
1369
|
}
|
|
1340
|
-
export interface EnclaveOptionsRequest {
|
|
1341
|
-
Enabled?: boolean | undefined;
|
|
1342
|
-
}
|
|
1343
1370
|
export interface HibernationOptionsRequest {
|
|
1344
1371
|
Configured?: boolean | undefined;
|
|
1345
1372
|
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeIpamPoolAllocationsCommandInput,
|
|
4
|
+
DescribeIpamPoolAllocationsCommandOutput,
|
|
5
|
+
} from "../commands/DescribeIpamPoolAllocationsCommand";
|
|
6
|
+
import { EC2PaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateDescribeIpamPoolAllocations: (
|
|
8
|
+
config: EC2PaginationConfiguration,
|
|
9
|
+
input: DescribeIpamPoolAllocationsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeIpamPoolAllocationsCommandOutput>;
|
|
@@ -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";
|
|
@@ -829,6 +829,8 @@ export declare var DescribeIpamExternalResourceVerificationTokensRequest$: Stati
|
|
|
829
829
|
export declare var DescribeIpamExternalResourceVerificationTokensResult$: StaticStructureSchema;
|
|
830
830
|
export declare var DescribeIpamPoliciesRequest$: StaticStructureSchema;
|
|
831
831
|
export declare var DescribeIpamPoliciesResult$: StaticStructureSchema;
|
|
832
|
+
export declare var DescribeIpamPoolAllocationsRequest$: StaticStructureSchema;
|
|
833
|
+
export declare var DescribeIpamPoolAllocationsResult$: StaticStructureSchema;
|
|
832
834
|
export declare var DescribeIpamPoolsRequest$: StaticStructureSchema;
|
|
833
835
|
export declare var DescribeIpamPoolsResult$: StaticStructureSchema;
|
|
834
836
|
export declare var DescribeIpamPrefixListResolversRequest$: StaticStructureSchema;
|
|
@@ -1741,6 +1743,8 @@ export declare var ModifyInstancePlacementRequest$: StaticStructureSchema;
|
|
|
1741
1743
|
export declare var ModifyInstancePlacementResult$: StaticStructureSchema;
|
|
1742
1744
|
export declare var ModifyIpamPolicyAllocationRulesRequest$: StaticStructureSchema;
|
|
1743
1745
|
export declare var ModifyIpamPolicyAllocationRulesResult$: StaticStructureSchema;
|
|
1746
|
+
export declare var ModifyIpamPoolAllocationRequest$: StaticStructureSchema;
|
|
1747
|
+
export declare var ModifyIpamPoolAllocationResult$: StaticStructureSchema;
|
|
1744
1748
|
export declare var ModifyIpamPoolRequest$: StaticStructureSchema;
|
|
1745
1749
|
export declare var ModifyIpamPoolResult$: StaticStructureSchema;
|
|
1746
1750
|
export declare var ModifyIpamPrefixListResolverRequest$: StaticStructureSchema;
|
|
@@ -2724,6 +2728,7 @@ export declare var DescribeInternetGateways$: StaticOperationSchema;
|
|
|
2724
2728
|
export declare var DescribeIpamByoasn$: StaticOperationSchema;
|
|
2725
2729
|
export declare var DescribeIpamExternalResourceVerificationTokens$: StaticOperationSchema;
|
|
2726
2730
|
export declare var DescribeIpamPolicies$: StaticOperationSchema;
|
|
2731
|
+
export declare var DescribeIpamPoolAllocations$: StaticOperationSchema;
|
|
2727
2732
|
export declare var DescribeIpamPools$: StaticOperationSchema;
|
|
2728
2733
|
export declare var DescribeIpamPrefixListResolvers$: StaticOperationSchema;
|
|
2729
2734
|
export declare var DescribeIpamPrefixListResolverTargets$: StaticOperationSchema;
|
|
@@ -3017,6 +3022,7 @@ export declare var ModifyInstancePlacement$: StaticOperationSchema;
|
|
|
3017
3022
|
export declare var ModifyIpam$: StaticOperationSchema;
|
|
3018
3023
|
export declare var ModifyIpamPolicyAllocationRules$: StaticOperationSchema;
|
|
3019
3024
|
export declare var ModifyIpamPool$: StaticOperationSchema;
|
|
3025
|
+
export declare var ModifyIpamPoolAllocation$: StaticOperationSchema;
|
|
3020
3026
|
export declare var ModifyIpamPrefixListResolver$: StaticOperationSchema;
|
|
3021
3027
|
export declare var ModifyIpamPrefixListResolverTarget$: StaticOperationSchema;
|
|
3022
3028
|
export declare var ModifyIpamResourceCidr$: StaticOperationSchema;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ec2",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ec2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1053.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-ec2",
|
|
@@ -25,18 +25,18 @@
|
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
27
27
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
28
|
-
"@aws-sdk/core": "^3.974.
|
|
29
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
30
|
-
"@aws-sdk/middleware-sdk-ec2": "^3.972.
|
|
31
|
-
"@aws-sdk/types": "^3.973.
|
|
32
|
-
"@smithy/core": "^3.24.
|
|
33
|
-
"@smithy/fetch-http-handler": "^5.4.
|
|
34
|
-
"@smithy/node-http-handler": "^4.7.
|
|
35
|
-
"@smithy/types": "^4.14.
|
|
28
|
+
"@aws-sdk/core": "^3.974.13",
|
|
29
|
+
"@aws-sdk/credential-provider-node": "^3.972.44",
|
|
30
|
+
"@aws-sdk/middleware-sdk-ec2": "^3.972.27",
|
|
31
|
+
"@aws-sdk/types": "^3.973.9",
|
|
32
|
+
"@smithy/core": "^3.24.3",
|
|
33
|
+
"@smithy/fetch-http-handler": "^5.4.3",
|
|
34
|
+
"@smithy/node-http-handler": "^4.7.3",
|
|
35
|
+
"@smithy/types": "^4.14.2",
|
|
36
36
|
"tslib": "^2.6.2"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@smithy/snapshot-testing": "^2.1.
|
|
39
|
+
"@smithy/snapshot-testing": "^2.1.3",
|
|
40
40
|
"@tsconfig/node20": "20.1.8",
|
|
41
41
|
"@types/node": "^20.14.8",
|
|
42
42
|
"concurrently": "7.0.0",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iam",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iam Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1053.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-iam",
|
|
@@ -27,17 +27,17 @@
|
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
29
29
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
30
|
-
"@aws-sdk/core": "^3.974.
|
|
31
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
32
|
-
"@aws-sdk/types": "^3.973.
|
|
33
|
-
"@smithy/core": "^3.24.
|
|
34
|
-
"@smithy/fetch-http-handler": "^5.4.
|
|
35
|
-
"@smithy/node-http-handler": "^4.7.
|
|
36
|
-
"@smithy/types": "^4.14.
|
|
30
|
+
"@aws-sdk/core": "^3.974.13",
|
|
31
|
+
"@aws-sdk/credential-provider-node": "^3.972.44",
|
|
32
|
+
"@aws-sdk/types": "^3.973.9",
|
|
33
|
+
"@smithy/core": "^3.24.3",
|
|
34
|
+
"@smithy/fetch-http-handler": "^5.4.3",
|
|
35
|
+
"@smithy/node-http-handler": "^4.7.3",
|
|
36
|
+
"@smithy/types": "^4.14.2",
|
|
37
37
|
"tslib": "^2.6.2"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@smithy/snapshot-testing": "^2.1.
|
|
40
|
+
"@smithy/snapshot-testing": "^2.1.3",
|
|
41
41
|
"@tsconfig/node20": "20.1.8",
|
|
42
42
|
"@types/node": "^20.14.8",
|
|
43
43
|
"concurrently": "7.0.0",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-lambda",
|
|
3
3
|
"description": "AWS SDK for JavaScript Lambda Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1053.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-lambda",
|
|
@@ -27,17 +27,17 @@
|
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
29
29
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
30
|
-
"@aws-sdk/core": "^3.974.
|
|
31
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
32
|
-
"@aws-sdk/types": "^3.973.
|
|
33
|
-
"@smithy/core": "^3.24.
|
|
34
|
-
"@smithy/fetch-http-handler": "^5.4.
|
|
35
|
-
"@smithy/node-http-handler": "^4.7.
|
|
36
|
-
"@smithy/types": "^4.14.
|
|
30
|
+
"@aws-sdk/core": "^3.974.13",
|
|
31
|
+
"@aws-sdk/credential-provider-node": "^3.972.44",
|
|
32
|
+
"@aws-sdk/types": "^3.973.9",
|
|
33
|
+
"@smithy/core": "^3.24.3",
|
|
34
|
+
"@smithy/fetch-http-handler": "^5.4.3",
|
|
35
|
+
"@smithy/node-http-handler": "^4.7.3",
|
|
36
|
+
"@smithy/types": "^4.14.2",
|
|
37
37
|
"tslib": "^2.6.2"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@smithy/snapshot-testing": "^2.1.
|
|
40
|
+
"@smithy/snapshot-testing": "^2.1.3",
|
|
41
41
|
"@tsconfig/node20": "20.1.8",
|
|
42
42
|
"@types/node": "^20.14.8",
|
|
43
43
|
"concurrently": "7.0.0",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-s3",
|
|
3
3
|
"description": "AWS SDK for JavaScript S3 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1053.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-s3",
|
|
@@ -30,25 +30,25 @@
|
|
|
30
30
|
"@aws-crypto/sha1-browser": "5.2.0",
|
|
31
31
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
32
32
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
33
|
-
"@aws-sdk/core": "^3.974.
|
|
34
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
35
|
-
"@aws-sdk/middleware-bucket-endpoint": "^3.972.
|
|
36
|
-
"@aws-sdk/middleware-expect-continue": "^3.972.
|
|
37
|
-
"@aws-sdk/middleware-flexible-checksums": "^3.974.
|
|
38
|
-
"@aws-sdk/middleware-location-constraint": "^3.972.
|
|
39
|
-
"@aws-sdk/middleware-sdk-s3": "^3.972.
|
|
40
|
-
"@aws-sdk/middleware-ssec": "^3.972.
|
|
41
|
-
"@aws-sdk/signature-v4-multi-region": "^3.996.
|
|
42
|
-
"@aws-sdk/types": "^3.973.
|
|
43
|
-
"@smithy/core": "^3.24.
|
|
44
|
-
"@smithy/fetch-http-handler": "^5.4.
|
|
45
|
-
"@smithy/node-http-handler": "^4.7.
|
|
46
|
-
"@smithy/types": "^4.14.
|
|
33
|
+
"@aws-sdk/core": "^3.974.13",
|
|
34
|
+
"@aws-sdk/credential-provider-node": "^3.972.44",
|
|
35
|
+
"@aws-sdk/middleware-bucket-endpoint": "^3.972.15",
|
|
36
|
+
"@aws-sdk/middleware-expect-continue": "^3.972.13",
|
|
37
|
+
"@aws-sdk/middleware-flexible-checksums": "^3.974.21",
|
|
38
|
+
"@aws-sdk/middleware-location-constraint": "^3.972.11",
|
|
39
|
+
"@aws-sdk/middleware-sdk-s3": "^3.972.42",
|
|
40
|
+
"@aws-sdk/middleware-ssec": "^3.972.11",
|
|
41
|
+
"@aws-sdk/signature-v4-multi-region": "^3.996.28",
|
|
42
|
+
"@aws-sdk/types": "^3.973.9",
|
|
43
|
+
"@smithy/core": "^3.24.3",
|
|
44
|
+
"@smithy/fetch-http-handler": "^5.4.3",
|
|
45
|
+
"@smithy/node-http-handler": "^4.7.3",
|
|
46
|
+
"@smithy/types": "^4.14.2",
|
|
47
47
|
"tslib": "^2.6.2"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@aws-sdk/signature-v4-crt": "3.
|
|
51
|
-
"@smithy/snapshot-testing": "^2.1.
|
|
50
|
+
"@aws-sdk/signature-v4-crt": "3.1053.0",
|
|
51
|
+
"@smithy/snapshot-testing": "^2.1.3",
|
|
52
52
|
"@tsconfig/node20": "20.1.8",
|
|
53
53
|
"@types/node": "^20.14.8",
|
|
54
54
|
"concurrently": "7.0.0",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sns",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sns Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1053.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-sns",
|
|
@@ -23,13 +23,13 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
25
25
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
26
|
-
"@aws-sdk/core": "^3.974.
|
|
27
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
28
|
-
"@aws-sdk/types": "^3.973.
|
|
29
|
-
"@smithy/core": "^3.24.
|
|
30
|
-
"@smithy/fetch-http-handler": "^5.4.
|
|
31
|
-
"@smithy/node-http-handler": "^4.7.
|
|
32
|
-
"@smithy/types": "^4.14.
|
|
26
|
+
"@aws-sdk/core": "^3.974.13",
|
|
27
|
+
"@aws-sdk/credential-provider-node": "^3.972.44",
|
|
28
|
+
"@aws-sdk/types": "^3.973.9",
|
|
29
|
+
"@smithy/core": "^3.24.3",
|
|
30
|
+
"@smithy/fetch-http-handler": "^5.4.3",
|
|
31
|
+
"@smithy/node-http-handler": "^4.7.3",
|
|
32
|
+
"@smithy/types": "^4.14.2",
|
|
33
33
|
"tslib": "^2.6.2"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sqs",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sqs Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1053.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-sqs",
|
|
@@ -29,18 +29,18 @@
|
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
31
31
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
32
|
-
"@aws-sdk/core": "^3.974.
|
|
33
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
34
|
-
"@aws-sdk/middleware-sdk-sqs": "^3.972.
|
|
35
|
-
"@aws-sdk/types": "^3.973.
|
|
36
|
-
"@smithy/core": "^3.24.
|
|
37
|
-
"@smithy/fetch-http-handler": "^5.4.
|
|
38
|
-
"@smithy/node-http-handler": "^4.7.
|
|
39
|
-
"@smithy/types": "^4.14.
|
|
32
|
+
"@aws-sdk/core": "^3.974.13",
|
|
33
|
+
"@aws-sdk/credential-provider-node": "^3.972.44",
|
|
34
|
+
"@aws-sdk/middleware-sdk-sqs": "^3.972.25",
|
|
35
|
+
"@aws-sdk/types": "^3.973.9",
|
|
36
|
+
"@smithy/core": "^3.24.3",
|
|
37
|
+
"@smithy/fetch-http-handler": "^5.4.3",
|
|
38
|
+
"@smithy/node-http-handler": "^4.7.3",
|
|
39
|
+
"@smithy/types": "^4.14.2",
|
|
40
40
|
"tslib": "^2.6.2"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@smithy/snapshot-testing": "^2.1.
|
|
43
|
+
"@smithy/snapshot-testing": "^2.1.3",
|
|
44
44
|
"@tsconfig/node20": "20.1.8",
|
|
45
45
|
"@types/node": "^20.14.8",
|
|
46
46
|
"concurrently": "7.0.0",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ssm",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ssm Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1053.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-ssm",
|
|
@@ -23,13 +23,13 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
25
25
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
26
|
-
"@aws-sdk/core": "^3.974.
|
|
27
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
28
|
-
"@aws-sdk/types": "^3.973.
|
|
29
|
-
"@smithy/core": "^3.24.
|
|
30
|
-
"@smithy/fetch-http-handler": "^5.4.
|
|
31
|
-
"@smithy/node-http-handler": "^4.7.
|
|
32
|
-
"@smithy/types": "^4.14.
|
|
26
|
+
"@aws-sdk/core": "^3.974.13",
|
|
27
|
+
"@aws-sdk/credential-provider-node": "^3.972.44",
|
|
28
|
+
"@aws-sdk/types": "^3.973.9",
|
|
29
|
+
"@smithy/core": "^3.24.3",
|
|
30
|
+
"@smithy/fetch-http-handler": "^5.4.3",
|
|
31
|
+
"@smithy/node-http-handler": "^4.7.3",
|
|
32
|
+
"@smithy/types": "^4.14.2",
|
|
33
33
|
"tslib": "^2.6.2"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
@@ -683,7 +683,7 @@ const parseJsonErrorBody = async (errorBody, context) => {
|
|
|
683
683
|
return value;
|
|
684
684
|
};
|
|
685
685
|
const findKey = (object, key) => Object.keys(object).find((k) => k.toLowerCase() === key.toLowerCase());
|
|
686
|
-
const sanitizeErrorCode = (rawValue
|
|
686
|
+
const sanitizeErrorCode = (rawValue) => {
|
|
687
687
|
let cleanValue = rawValue;
|
|
688
688
|
if (typeof cleanValue === "number") {
|
|
689
689
|
cleanValue = cleanValue.toString();
|
|
@@ -694,36 +694,36 @@ const sanitizeErrorCode = (rawValue, removeNamespace = true) => {
|
|
|
694
694
|
if (cleanValue.indexOf(":") >= 0) {
|
|
695
695
|
cleanValue = cleanValue.split(":")[0];
|
|
696
696
|
}
|
|
697
|
-
if (
|
|
697
|
+
if (cleanValue.indexOf("#") >= 0) {
|
|
698
698
|
cleanValue = cleanValue.split("#")[1];
|
|
699
699
|
}
|
|
700
700
|
return cleanValue;
|
|
701
701
|
};
|
|
702
702
|
const loadRestJsonErrorCode = (output, data) => {
|
|
703
|
-
return loadErrorCode(output, data,
|
|
703
|
+
return loadErrorCode(output, data, ["header", "code", "type"]);
|
|
704
704
|
};
|
|
705
|
-
const loadJsonRpcErrorCode = (output, data,
|
|
706
|
-
return loadErrorCode(output, data,
|
|
705
|
+
const loadJsonRpcErrorCode = (output, data, queryCompat = false) => {
|
|
706
|
+
return loadErrorCode(output, data, queryCompat ? ["code", "header", "type"] : ["type", "code", "header"]);
|
|
707
707
|
};
|
|
708
|
-
const loadErrorCode = ({ headers }, data,
|
|
708
|
+
const loadErrorCode = ({ headers }, data, order) => {
|
|
709
709
|
while (order.length > 0) {
|
|
710
710
|
const location = order.shift();
|
|
711
711
|
switch (location) {
|
|
712
712
|
case "header":
|
|
713
713
|
const headerKey = findKey(headers ?? {}, "x-amzn-errortype");
|
|
714
714
|
if (headerKey !== undefined) {
|
|
715
|
-
return sanitizeErrorCode(headers[headerKey]
|
|
715
|
+
return sanitizeErrorCode(headers[headerKey]);
|
|
716
716
|
}
|
|
717
717
|
break;
|
|
718
718
|
case "code":
|
|
719
719
|
const codeKey = findKey(data ?? {}, "code");
|
|
720
720
|
if (codeKey && data[codeKey] !== undefined) {
|
|
721
|
-
return sanitizeErrorCode(data[codeKey]
|
|
721
|
+
return sanitizeErrorCode(data[codeKey]);
|
|
722
722
|
}
|
|
723
723
|
break;
|
|
724
724
|
case "type":
|
|
725
725
|
if (data?.__type !== undefined) {
|
|
726
|
-
return sanitizeErrorCode(data.__type
|
|
726
|
+
return sanitizeErrorCode(data.__type);
|
|
727
727
|
}
|
|
728
728
|
break;
|
|
729
729
|
}
|
|
@@ -1164,7 +1164,7 @@ class AwsJsonRpcProtocol extends protocols.RpcProtocol {
|
|
|
1164
1164
|
if (awsQueryCompatible) {
|
|
1165
1165
|
this.mixin.setQueryCompatError(dataObject, response);
|
|
1166
1166
|
}
|
|
1167
|
-
const errorIdentifier = loadJsonRpcErrorCode(response, dataObject,
|
|
1167
|
+
const errorIdentifier = loadJsonRpcErrorCode(response, dataObject, awsQueryCompatible) ?? "Unknown";
|
|
1168
1168
|
this.mixin.compose(this.compositeErrorRegistry, errorIdentifier, this.options.defaultNamespace);
|
|
1169
1169
|
const { errorSchema, errorMetadata } = await this.mixin.getErrorSchemaOrThrowBaseException(errorIdentifier, this.options.defaultNamespace, response, dataObject, metadata, awsQueryCompatible ? this.mixin.findQueryCompatibleError : undefined);
|
|
1170
1170
|
const ns = schema.NormalizedSchema.of(errorSchema);
|
|
@@ -321,7 +321,7 @@ const parseJsonErrorBody = async (errorBody, context) => {
|
|
|
321
321
|
return value;
|
|
322
322
|
};
|
|
323
323
|
const findKey = (object, key) => Object.keys(object).find((k) => k.toLowerCase() === key.toLowerCase());
|
|
324
|
-
const sanitizeErrorCode = (rawValue
|
|
324
|
+
const sanitizeErrorCode = (rawValue) => {
|
|
325
325
|
let cleanValue = rawValue;
|
|
326
326
|
if (typeof cleanValue === "number") {
|
|
327
327
|
cleanValue = cleanValue.toString();
|
|
@@ -332,36 +332,36 @@ const sanitizeErrorCode = (rawValue, removeNamespace = true) => {
|
|
|
332
332
|
if (cleanValue.indexOf(":") >= 0) {
|
|
333
333
|
cleanValue = cleanValue.split(":")[0];
|
|
334
334
|
}
|
|
335
|
-
if (
|
|
335
|
+
if (cleanValue.indexOf("#") >= 0) {
|
|
336
336
|
cleanValue = cleanValue.split("#")[1];
|
|
337
337
|
}
|
|
338
338
|
return cleanValue;
|
|
339
339
|
};
|
|
340
340
|
const loadRestJsonErrorCode = (output, data) => {
|
|
341
|
-
return loadErrorCode(output, data,
|
|
341
|
+
return loadErrorCode(output, data, ["header", "code", "type"]);
|
|
342
342
|
};
|
|
343
|
-
const loadJsonRpcErrorCode = (output, data,
|
|
344
|
-
return loadErrorCode(output, data,
|
|
343
|
+
const loadJsonRpcErrorCode = (output, data, queryCompat = false) => {
|
|
344
|
+
return loadErrorCode(output, data, queryCompat ? ["code", "header", "type"] : ["type", "code", "header"]);
|
|
345
345
|
};
|
|
346
|
-
const loadErrorCode = ({ headers }, data,
|
|
346
|
+
const loadErrorCode = ({ headers }, data, order) => {
|
|
347
347
|
while (order.length > 0) {
|
|
348
348
|
const location = order.shift();
|
|
349
349
|
switch (location) {
|
|
350
350
|
case "header":
|
|
351
351
|
const headerKey = findKey(headers ?? {}, "x-amzn-errortype");
|
|
352
352
|
if (headerKey !== undefined) {
|
|
353
|
-
return sanitizeErrorCode(headers[headerKey]
|
|
353
|
+
return sanitizeErrorCode(headers[headerKey]);
|
|
354
354
|
}
|
|
355
355
|
break;
|
|
356
356
|
case "code":
|
|
357
357
|
const codeKey = findKey(data ?? {}, "code");
|
|
358
358
|
if (codeKey && data[codeKey] !== undefined) {
|
|
359
|
-
return sanitizeErrorCode(data[codeKey]
|
|
359
|
+
return sanitizeErrorCode(data[codeKey]);
|
|
360
360
|
}
|
|
361
361
|
break;
|
|
362
362
|
case "type":
|
|
363
363
|
if (data?.__type !== undefined) {
|
|
364
|
-
return sanitizeErrorCode(data.__type
|
|
364
|
+
return sanitizeErrorCode(data.__type);
|
|
365
365
|
}
|
|
366
366
|
break;
|
|
367
367
|
}
|
|
@@ -802,7 +802,7 @@ class AwsJsonRpcProtocol extends protocols.RpcProtocol {
|
|
|
802
802
|
if (awsQueryCompatible) {
|
|
803
803
|
this.mixin.setQueryCompatError(dataObject, response);
|
|
804
804
|
}
|
|
805
|
-
const errorIdentifier = loadJsonRpcErrorCode(response, dataObject,
|
|
805
|
+
const errorIdentifier = loadJsonRpcErrorCode(response, dataObject, awsQueryCompatible) ?? "Unknown";
|
|
806
806
|
this.mixin.compose(this.compositeErrorRegistry, errorIdentifier, this.options.defaultNamespace);
|
|
807
807
|
const { errorSchema, errorMetadata } = await this.mixin.getErrorSchemaOrThrowBaseException(errorIdentifier, this.options.defaultNamespace, response, dataObject, metadata, awsQueryCompatible ? this.mixin.findQueryCompatibleError : undefined);
|
|
808
808
|
const ns = schema.NormalizedSchema.of(errorSchema);
|