import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GetHypervisorInput, GetHypervisorOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link GetHypervisorCommand}. */ export interface GetHypervisorCommandInput extends GetHypervisorInput { } /** * @public * * The output of {@link GetHypervisorCommand}. */ export interface GetHypervisorCommandOutput extends GetHypervisorOutput, __MetadataBearer { } declare const GetHypervisorCommand_base: { new (input: GetHypervisorCommandInput): import("@smithy/core/client").CommandImpl; new (input: GetHypervisorCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

This action requests information about the specified hypervisor to which the gateway will connect. A hypervisor is hardware, software, or firmware that creates and manages virtual machines, and allocates resources to them.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { BackupGatewayClient, GetHypervisorCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import * // const { BackupGatewayClient, GetHypervisorCommand } = 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 = { // GetHypervisorInput * HypervisorArn: "STRING_VALUE", // required * }; * const command = new GetHypervisorCommand(input); * const response = await client.send(command); * // { // GetHypervisorOutput * // Hypervisor: { // HypervisorDetails * // Host: "STRING_VALUE", * // HypervisorArn: "STRING_VALUE", * // KmsKeyArn: "STRING_VALUE", * // Name: "STRING_VALUE", * // LogGroupArn: "STRING_VALUE", * // State: "STRING_VALUE", * // LastSuccessfulMetadataSyncTime: new Date("TIMESTAMP"), * // LatestMetadataSyncStatusMessage: "STRING_VALUE", * // LatestMetadataSyncStatus: "STRING_VALUE", * // }, * // }; * * ``` * * @param GetHypervisorCommandInput - {@link GetHypervisorCommandInput} * @returns {@link GetHypervisorCommandOutput} * @see {@link GetHypervisorCommandInput} for command's `input` shape. * @see {@link GetHypervisorCommandOutput} for command's `response` shape. * @see {@link BackupGatewayClientResolvedConfig | config} for BackupGatewayClient's `config` shape. * * @throws {@link ResourceNotFoundException} (client fault) *

A resource that is required for the action wasn't found.

* * @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 GetHypervisorCommand extends GetHypervisorCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetHypervisorInput; output: GetHypervisorOutput; }; sdk: { input: GetHypervisorCommandInput; output: GetHypervisorCommandOutput; }; }; }