import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * List the backups of a block storage volume in a public cloud project. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const backups = ovh.getCloudStorageBlockVolumeBackups({ * serviceName: "xxxxxxxxx", * region: "GRA9", * volumeId: volume.id, * }); * ``` */ export declare function getCloudStorageBlockVolumeBackups(args: GetCloudStorageBlockVolumeBackupsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCloudStorageBlockVolumeBackups. */ export interface GetCloudStorageBlockVolumeBackupsArgs { /** * The region where the backups reside. */ region: string; /** * The id of the public cloud project. */ serviceName: string; /** * The ID of the volume whose backups to list. */ volumeId: string; } /** * A collection of values returned by getCloudStorageBlockVolumeBackups. */ export interface GetCloudStorageBlockVolumeBackupsResult { /** * List of backups for the volume: */ readonly backups: outputs.GetCloudStorageBlockVolumeBackupsBackup[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Region. */ readonly region: string; readonly serviceName: string; /** * ID of the backed-up volume. */ readonly volumeId: string; } /** * List the backups of a block storage volume in a public cloud project. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const backups = ovh.getCloudStorageBlockVolumeBackups({ * serviceName: "xxxxxxxxx", * region: "GRA9", * volumeId: volume.id, * }); * ``` */ export declare function getCloudStorageBlockVolumeBackupsOutput(args: GetCloudStorageBlockVolumeBackupsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCloudStorageBlockVolumeBackups. */ export interface GetCloudStorageBlockVolumeBackupsOutputArgs { /** * The region where the backups reside. */ region: pulumi.Input; /** * The id of the public cloud project. */ serviceName: pulumi.Input; /** * The ID of the volume whose backups to list. */ volumeId: pulumi.Input; }