import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Get a file storage share network in a public cloud project. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const network = ovh.getCloudStorageFileShareNetwork({ * serviceName: "", * id: "00000000-0000-0000-0000-000000000000", * }); * ``` */ export declare function getCloudStorageFileShareNetwork(args: GetCloudStorageFileShareNetworkArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCloudStorageFileShareNetwork. */ export interface GetCloudStorageFileShareNetworkArgs { /** * The ID of the share network. */ id: string; /** * The id of the public cloud project. */ serviceName: string; } /** * A collection of values returned by getCloudStorageFileShareNetwork. */ export interface GetCloudStorageFileShareNetworkResult { /** * Computed hash representing the current target specification value. */ readonly checksum: string; /** * Creation date of the share network. */ readonly createdAt: string; /** * Current state of the file storage share network: */ readonly currentState: outputs.GetCloudStorageFileShareNetworkCurrentState; /** * Share network description. */ readonly description: string; readonly id: string; /** * Current location: */ readonly location: outputs.GetCloudStorageFileShareNetworkLocation; /** * Share network name. */ readonly name: string; /** * ID of the private network. */ readonly networkId: string; /** * Share network readiness in the system (`CREATING`, `DELETING`, `ERROR`, `OUT_OF_SYNC`, `READY`, `UPDATING`). */ readonly resourceStatus: string; readonly serviceName: string; /** * ID of the subnet. */ readonly subnetId: string; /** * Last update date of the share network. */ readonly updatedAt: string; } /** * Get a file storage share network in a public cloud project. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const network = ovh.getCloudStorageFileShareNetwork({ * serviceName: "", * id: "00000000-0000-0000-0000-000000000000", * }); * ``` */ export declare function getCloudStorageFileShareNetworkOutput(args: GetCloudStorageFileShareNetworkOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCloudStorageFileShareNetwork. */ export interface GetCloudStorageFileShareNetworkOutputArgs { /** * The ID of the share network. */ id: pulumi.Input; /** * The id of the public cloud project. */ serviceName: pulumi.Input; }