import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Get information about an EFS service. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const efs = ovh.getStorageEfs({ * serviceName: "XXX", * }); * ``` */ export declare function getStorageEfs(args: GetStorageEfsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getStorageEfs. */ export interface GetStorageEfsArgs { /** * Service name */ serviceName: string; } /** * A collection of values returned by getStorageEfs. */ export interface GetStorageEfsResult { /** * Service creation date */ readonly createdAt: string; /** * IAM resource metadata */ readonly iam: outputs.GetStorageEfsIam; /** * Service ID */ readonly id: string; /** * Service name */ readonly name: string; /** * Service performance level */ readonly performanceLevel: string; /** * Product name */ readonly product: string; /** * Service quota */ readonly quota: number; /** * Service region */ readonly region: string; /** * Service name */ readonly serviceName: string; /** * Service status */ readonly status: string; } /** * Get information about an EFS service. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const efs = ovh.getStorageEfs({ * serviceName: "XXX", * }); * ``` */ export declare function getStorageEfsOutput(args: GetStorageEfsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getStorageEfs. */ export interface GetStorageEfsOutputArgs { /** * Service name */ serviceName: pulumi.Input; }