import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ImportHypervisorConfigurationInput, ImportHypervisorConfigurationOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ImportHypervisorConfigurationCommand}. */ export interface ImportHypervisorConfigurationCommandInput extends ImportHypervisorConfigurationInput { } /** * @public * * The output of {@link ImportHypervisorConfigurationCommand}. */ export interface ImportHypervisorConfigurationCommandOutput extends ImportHypervisorConfigurationOutput, __MetadataBearer { } declare const ImportHypervisorConfigurationCommand_base: { new (input: ImportHypervisorConfigurationCommandInput): import("@smithy/core/client").CommandImpl; new (input: ImportHypervisorConfigurationCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Connect to a hypervisor by importing its configuration.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { BackupGatewayClient, ImportHypervisorConfigurationCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import * // const { BackupGatewayClient, ImportHypervisorConfigurationCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import * // import type { BackupGatewayClientConfig } from "@aws-sdk/client-backup-gateway"; * const config = {}; // type is BackupGatewayClientConfig * const client = new BackupGatewayClient(config); * const input = { // ImportHypervisorConfigurationInput * Name: "STRING_VALUE", // required * Host: "STRING_VALUE", // required * Username: "STRING_VALUE", * Password: "STRING_VALUE", * KmsKeyArn: "STRING_VALUE", * Tags: [ // Tags * { // Tag * Key: "STRING_VALUE", // required * Value: "STRING_VALUE", // required * }, * ], * }; * const command = new ImportHypervisorConfigurationCommand(input); * const response = await client.send(command); * // { // ImportHypervisorConfigurationOutput * // HypervisorArn: "STRING_VALUE", * // }; * * ``` * * @param ImportHypervisorConfigurationCommandInput - {@link ImportHypervisorConfigurationCommandInput} * @returns {@link ImportHypervisorConfigurationCommandOutput} * @see {@link ImportHypervisorConfigurationCommandInput} for command's `input` shape. * @see {@link ImportHypervisorConfigurationCommandOutput} for command's `response` shape. * @see {@link BackupGatewayClientResolvedConfig | config} for BackupGatewayClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

The operation cannot proceed because you have insufficient permissions.

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

The operation cannot proceed because it is not supported.

* * @throws {@link InternalServerException} (server fault) *

The operation did not succeed because an internal error occurred. Try again later.

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

TPS has been limited to protect against intentional or unintentional high request volumes.

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

The operation did not succeed because a validation error occurred.

* * @throws {@link BackupGatewayServiceException} *

Base exception class for all service exceptions from BackupGateway service.

* * * @public */ export declare class ImportHypervisorConfigurationCommand extends ImportHypervisorConfigurationCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ImportHypervisorConfigurationInput; output: ImportHypervisorConfigurationOutput; }; sdk: { input: ImportHypervisorConfigurationCommandInput; output: ImportHypervisorConfigurationCommandOutput; }; }; }