import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeTapeRecoveryPointsInput, DescribeTapeRecoveryPointsOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeTapeRecoveryPointsCommand}. */ export interface DescribeTapeRecoveryPointsCommandInput extends DescribeTapeRecoveryPointsInput { } /** * @public * * The output of {@link DescribeTapeRecoveryPointsCommand}. */ export interface DescribeTapeRecoveryPointsCommandOutput extends DescribeTapeRecoveryPointsOutput, __MetadataBearer { } declare const DescribeTapeRecoveryPointsCommand_base: { new (input: DescribeTapeRecoveryPointsCommandInput): import("@smithy/core/client").CommandImpl; new (input: DescribeTapeRecoveryPointsCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Returns a list of virtual tape recovery points that are available for the specified tape * gateway.

*

A recovery point is a point-in-time view of a virtual tape at which all the data on the * virtual tape is consistent. If your gateway crashes, virtual tapes that have recovery * points can be recovered to a new gateway. This operation is only supported in the tape * gateway type.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { StorageGatewayClient, DescribeTapeRecoveryPointsCommand } from "@aws-sdk/client-storage-gateway"; // ES Modules import * // const { StorageGatewayClient, DescribeTapeRecoveryPointsCommand } = require("@aws-sdk/client-storage-gateway"); // CommonJS import * // import type { StorageGatewayClientConfig } from "@aws-sdk/client-storage-gateway"; * const config = {}; // type is StorageGatewayClientConfig * const client = new StorageGatewayClient(config); * const input = { // DescribeTapeRecoveryPointsInput * GatewayARN: "STRING_VALUE", // required * Marker: "STRING_VALUE", * Limit: Number("int"), * }; * const command = new DescribeTapeRecoveryPointsCommand(input); * const response = await client.send(command); * // { // DescribeTapeRecoveryPointsOutput * // GatewayARN: "STRING_VALUE", * // TapeRecoveryPointInfos: [ // TapeRecoveryPointInfos * // { // TapeRecoveryPointInfo * // TapeARN: "STRING_VALUE", * // TapeRecoveryPointTime: new Date("TIMESTAMP"), * // TapeSizeInBytes: Number("long"), * // TapeStatus: "STRING_VALUE", * // }, * // ], * // Marker: "STRING_VALUE", * // }; * * ``` * * @param DescribeTapeRecoveryPointsCommandInput - {@link DescribeTapeRecoveryPointsCommandInput} * @returns {@link DescribeTapeRecoveryPointsCommandOutput} * @see {@link DescribeTapeRecoveryPointsCommandInput} for command's `input` shape. * @see {@link DescribeTapeRecoveryPointsCommandOutput} for command's `response` shape. * @see {@link StorageGatewayClientResolvedConfig | config} for StorageGatewayClient's `config` shape. * * @throws {@link InternalServerError} (server fault) *

An internal server error has occurred during the request. For more information, see the * error and message fields.

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

An exception occurred because an invalid gateway request was issued to the service. For * more information, see the error and message fields.

* * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* * * @public */ export declare class DescribeTapeRecoveryPointsCommand extends DescribeTapeRecoveryPointsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeTapeRecoveryPointsInput; output: DescribeTapeRecoveryPointsOutput; }; sdk: { input: DescribeTapeRecoveryPointsCommandInput; output: DescribeTapeRecoveryPointsCommandOutput; }; }; }