import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Data Source schema for Volcengine::FileNAS::MountPoint */ export declare function getMountPoint(args: GetMountPointArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getMountPoint. */ export interface GetMountPointArgs { /** * Uniquely identifies the resource. */ id: string; } /** * A collection of values returned by getMountPoint. */ export interface GetMountPointResult { /** * Client information. */ readonly clients: outputs.filenas.GetMountPointClient[]; /** * Mount point creation time. */ readonly createdTime: string; /** * DNS address. */ readonly domain: string; /** * File system ID. */ readonly fileSystemId: string; /** * Uniquely identifies the resource. */ readonly id: string; /** * Mount point address. */ readonly ip: string; /** * Mount point ID. */ readonly mountPointId: string; /** * Mount point name. */ readonly mountPointName: string; /** * Permission group information bound to the mount point. */ readonly permissionGroup: outputs.filenas.GetMountPointPermissionGroup; /** * Permission group ID. */ readonly permissionGroupId: string; /** * Mount point status. Values: Running: Running. Creating: Creating. Updating: Updating. Error: Error. Deleting: Deleting. DeleteError: Delete error. Deleted: Deleted. Stopped: Stopped. */ readonly status: string; /** * Subnet ID. */ readonly subnetId: string; /** * Subnet name. */ readonly subnetName: string; /** * Mount point update time. */ readonly updatedTime: string; /** * Private network ID. */ readonly vpcId: string; /** * Private network name. */ readonly vpcName: string; } /** * Data Source schema for Volcengine::FileNAS::MountPoint */ export declare function getMountPointOutput(args: GetMountPointOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getMountPoint. */ export interface GetMountPointOutputArgs { /** * Uniquely identifies the resource. */ id: pulumi.Input; }