import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * List the file storage snapshots (NFS share snapshots) in a public cloud project. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const snapshots = ovh.getCloudStorageFileShareSnapshots({ * serviceName: "", * }); * ``` */ export declare function getCloudStorageFileShareSnapshots(args: GetCloudStorageFileShareSnapshotsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCloudStorageFileShareSnapshots. */ export interface GetCloudStorageFileShareSnapshotsArgs { /** * The id of the public cloud project. */ serviceName: string; } /** * A collection of values returned by getCloudStorageFileShareSnapshots. */ export interface GetCloudStorageFileShareSnapshotsResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly serviceName: string; /** * List of snapshots: */ readonly shareSnapshots: outputs.GetCloudStorageFileShareSnapshotsShareSnapshot[]; } /** * List the file storage snapshots (NFS share snapshots) in a public cloud project. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const snapshots = ovh.getCloudStorageFileShareSnapshots({ * serviceName: "", * }); * ``` */ export declare function getCloudStorageFileShareSnapshotsOutput(args: GetCloudStorageFileShareSnapshotsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCloudStorageFileShareSnapshots. */ export interface GetCloudStorageFileShareSnapshotsOutputArgs { /** * The id of the public cloud project. */ serviceName: pulumi.Input; }