import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Get a file storage snapshot (NFS share snapshot) in a public cloud project. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const snapshot = ovh.getCloudStorageFileShareSnapshot({ * serviceName: "", * id: "00000000-0000-0000-0000-000000000000", * }); * ``` */ export declare function getCloudStorageFileShareSnapshot(args: GetCloudStorageFileShareSnapshotArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCloudStorageFileShareSnapshot. */ export interface GetCloudStorageFileShareSnapshotArgs { /** * The ID of the snapshot. */ id: string; /** * The id of the public cloud project. */ serviceName: string; } /** * A collection of values returned by getCloudStorageFileShareSnapshot. */ export interface GetCloudStorageFileShareSnapshotResult { /** * Computed hash representing the current target specification value. */ readonly checksum: string; /** * Creation date of the snapshot. */ readonly createdAt: string; /** * Current state of the file storage snapshot: */ readonly currentState: outputs.GetCloudStorageFileShareSnapshotCurrentState; /** * Snapshot description. */ readonly description: string; readonly id: string; /** * Snapshot name. */ readonly name: string; /** * Snapshot readiness in the system (`CREATING`, `DELETING`, `ERROR`, `OUT_OF_SYNC`, `READY`, `UPDATING`). */ readonly resourceStatus: string; readonly serviceName: string; /** * ID of the snapshotted file share. */ readonly shareId: string; /** * Last update date of the snapshot. */ readonly updatedAt: string; } /** * Get a file storage snapshot (NFS share snapshot) in a public cloud project. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const snapshot = ovh.getCloudStorageFileShareSnapshot({ * serviceName: "", * id: "00000000-0000-0000-0000-000000000000", * }); * ``` */ export declare function getCloudStorageFileShareSnapshotOutput(args: GetCloudStorageFileShareSnapshotOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCloudStorageFileShareSnapshot. */ export interface GetCloudStorageFileShareSnapshotOutputArgs { /** * The ID of the snapshot. */ id: pulumi.Input; /** * The id of the public cloud project. */ serviceName: pulumi.Input; }