import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticLoadBalancingV2Client"; import type { ModifyIpPoolsInput, ModifyIpPoolsOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ModifyIpPoolsCommand}. */ export interface ModifyIpPoolsCommandInput extends ModifyIpPoolsInput { } /** * @public * * The output of {@link ModifyIpPoolsCommand}. */ export interface ModifyIpPoolsCommandOutput extends ModifyIpPoolsOutput, __MetadataBearer { } declare const ModifyIpPoolsCommand_base: { new (input: ModifyIpPoolsCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: ModifyIpPoolsCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

[Application Load Balancers] Modify the IP pool associated to a load balancer.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ElasticLoadBalancingV2Client, ModifyIpPoolsCommand } from "@aws-sdk/client-elastic-load-balancing-v2"; // ES Modules import * // const { ElasticLoadBalancingV2Client, ModifyIpPoolsCommand } = require("@aws-sdk/client-elastic-load-balancing-v2"); // CommonJS import * // import type { ElasticLoadBalancingV2ClientConfig } from "@aws-sdk/client-elastic-load-balancing-v2"; * const config = {}; // type is ElasticLoadBalancingV2ClientConfig * const client = new ElasticLoadBalancingV2Client(config); * const input = { // ModifyIpPoolsInput * LoadBalancerArn: "STRING_VALUE", // required * IpamPools: { // IpamPools * Ipv4IpamPoolId: "STRING_VALUE", * }, * RemoveIpamPools: [ // RemoveIpamPools * "ipv4", * ], * }; * const command = new ModifyIpPoolsCommand(input); * const response = await client.send(command); * // { // ModifyIpPoolsOutput * // IpamPools: { // IpamPools * // Ipv4IpamPoolId: "STRING_VALUE", * // }, * // }; * * ``` * * @param ModifyIpPoolsCommandInput - {@link ModifyIpPoolsCommandInput} * @returns {@link ModifyIpPoolsCommandOutput} * @see {@link ModifyIpPoolsCommandInput} for command's `input` shape. * @see {@link ModifyIpPoolsCommandOutput} for command's `response` shape. * @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape. * * @throws {@link LoadBalancerNotFoundException} (client fault) *

The specified load balancer does not exist.

* * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* * * @public */ export declare class ModifyIpPoolsCommand extends ModifyIpPoolsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ModifyIpPoolsInput; output: ModifyIpPoolsOutput; }; sdk: { input: ModifyIpPoolsCommandInput; output: ModifyIpPoolsCommandOutput; }; }; }