import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * List access paths for a share belonging to 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", * }); * const accessPaths = efs.then(efs => ovh.getStorageEfsShareAccessPaths({ * serviceName: efs.serviceName, * shareId: "XXX", * })); * ``` */ export declare function getStorageEfsShareAccessPaths(args: GetStorageEfsShareAccessPathsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getStorageEfsShareAccessPaths. */ export interface GetStorageEfsShareAccessPathsArgs { /** * Service name */ serviceName: string; /** * Share ID */ shareId: string; } /** * A collection of values returned by getStorageEfsShareAccessPaths. */ export interface GetStorageEfsShareAccessPathsResult { readonly accessPaths: outputs.GetStorageEfsShareAccessPathsAccessPath[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Service name */ readonly serviceName: string; /** * Share ID */ readonly shareId: string; } /** * List access paths for a share belonging to 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", * }); * const accessPaths = efs.then(efs => ovh.getStorageEfsShareAccessPaths({ * serviceName: efs.serviceName, * shareId: "XXX", * })); * ``` */ export declare function getStorageEfsShareAccessPathsOutput(args: GetStorageEfsShareAccessPathsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getStorageEfsShareAccessPaths. */ export interface GetStorageEfsShareAccessPathsOutputArgs { /** * Service name */ serviceName: pulumi.Input; /** * Share ID */ shareId: pulumi.Input; }