import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DisassociateIpGroupsRequest, DisassociateIpGroupsResult } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DisassociateIpGroupsCommand}. */ export interface DisassociateIpGroupsCommandInput extends DisassociateIpGroupsRequest { } /** * @public * * The output of {@link DisassociateIpGroupsCommand}. */ export interface DisassociateIpGroupsCommandOutput extends DisassociateIpGroupsResult, __MetadataBearer { } declare const DisassociateIpGroupsCommand_base: { new (input: DisassociateIpGroupsCommandInput): import("@smithy/core/client").CommandImpl; new (input: DisassociateIpGroupsCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Disassociates the specified IP access control group from the specified directory.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { WorkSpacesClient, DisassociateIpGroupsCommand } from "@aws-sdk/client-workspaces"; // ES Modules import * // const { WorkSpacesClient, DisassociateIpGroupsCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import * // import type { WorkSpacesClientConfig } from "@aws-sdk/client-workspaces"; * const config = {}; // type is WorkSpacesClientConfig * const client = new WorkSpacesClient(config); * const input = { // DisassociateIpGroupsRequest * DirectoryId: "STRING_VALUE", // required * GroupIds: [ // IpGroupIdList // required * "STRING_VALUE", * ], * }; * const command = new DisassociateIpGroupsCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DisassociateIpGroupsCommandInput - {@link DisassociateIpGroupsCommandInput} * @returns {@link DisassociateIpGroupsCommandOutput} * @see {@link DisassociateIpGroupsCommandInput} for command's `input` shape. * @see {@link DisassociateIpGroupsCommandOutput} for command's `response` shape. * @see {@link WorkSpacesClientResolvedConfig | config} for WorkSpacesClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

The user is not authorized to access a resource.

* * @throws {@link InvalidParameterValuesException} (client fault) *

One or more parameter values are not valid.

* * @throws {@link InvalidResourceStateException} (client fault) *

The state of the resource is not valid for this operation.

* * @throws {@link OperationNotSupportedException} (client fault) *

This operation is not supported.

* * @throws {@link ResourceNotFoundException} (client fault) *

The resource could not be found.

* * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* * * @public */ export declare class DisassociateIpGroupsCommand extends DisassociateIpGroupsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DisassociateIpGroupsRequest; output: {}; }; sdk: { input: DisassociateIpGroupsCommandInput; output: DisassociateIpGroupsCommandOutput; }; }; }