import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * List the file storage share networks in a public cloud project. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const networks = ovh.getCloudStorageFileShareNetworks({ * serviceName: "", * }); * ``` * * Filter the share networks by region: * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const networks = ovh.getCloudStorageFileShareNetworks({ * serviceName: "", * region: "GRA9", * }); * ``` */ export declare function getCloudStorageFileShareNetworks(args: GetCloudStorageFileShareNetworksArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCloudStorageFileShareNetworks. */ export interface GetCloudStorageFileShareNetworksArgs { /** * If set, only share networks located in this region are returned. */ region?: string; /** * The id of the public cloud project. */ serviceName: string; } /** * A collection of values returned by getCloudStorageFileShareNetworks. */ export interface GetCloudStorageFileShareNetworksResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Region. */ readonly region?: string; readonly serviceName: string; /** * List of share networks: */ readonly shareNetworks: outputs.GetCloudStorageFileShareNetworksShareNetwork[]; } /** * List the file storage share networks in a public cloud project. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const networks = ovh.getCloudStorageFileShareNetworks({ * serviceName: "", * }); * ``` * * Filter the share networks by region: * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const networks = ovh.getCloudStorageFileShareNetworks({ * serviceName: "", * region: "GRA9", * }); * ``` */ export declare function getCloudStorageFileShareNetworksOutput(args: GetCloudStorageFileShareNetworksOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCloudStorageFileShareNetworks. */ export interface GetCloudStorageFileShareNetworksOutputArgs { /** * If set, only share networks located in this region are returned. */ region?: pulumi.Input; /** * The id of the public cloud project. */ serviceName: pulumi.Input; }