import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Mount point is the connection point for the NAS file system in a network environment. The NAS file system must be mounted on a compute node to enable data access and storage. Mounting is the operation that connects the compute node to the NAS file system. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcenginecc from "@volcengine/pulumi-volcenginecc"; * * const fileNASMountPointDemo = new volcenginecc.filenas.MountPoint("FileNASMountPointDemo", { * fileSystemId: "enas-cnbja0f8*****", * mountPointName: "test-1", * permissionGroupId: "pgroup-01bc1182", * subnetId: "subnet-btepcsc5*****", * vpcId: "vpc-3nr6adcn064u8931*****", * }); * ``` * * ## Import * * ```sh * $ pulumi import volcenginecc:filenas/mountPoint:MountPoint example "file_system_id|mount_point_id" * ``` */ export declare class MountPoint extends pulumi.CustomResource { /** * Get an existing MountPoint resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: MountPointState, opts?: pulumi.CustomResourceOptions): MountPoint; /** * Returns true if the given object is an instance of MountPoint. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is MountPoint; readonly clients: pulumi.Output; /** * Mount point creation time. */ readonly createdTime: pulumi.Output; /** * DNS address. */ readonly domain: pulumi.Output; /** * File system ID. */ readonly fileSystemId: pulumi.Output; /** * Mount point address. */ readonly ip: pulumi.Output; /** * Mount point ID. */ readonly mountPointId: pulumi.Output; /** * Mount point name. */ readonly mountPointName: pulumi.Output; /** * Permission group information bound to the mount point. */ readonly permissionGroup: pulumi.Output; /** * Permission group ID. */ readonly permissionGroupId: pulumi.Output; /** * Mount point status. Values: Running: Running. Creating: Creating. Updating: Updating. Error: Error. Deleting: Deleting. DeleteError: Delete error. Deleted: Deleted. Stopped: Stopped. */ readonly status: pulumi.Output; /** * Subnet ID. */ readonly subnetId: pulumi.Output; /** * Subnet name. */ readonly subnetName: pulumi.Output; /** * Mount point update time. */ readonly updatedTime: pulumi.Output; /** * Private network ID. */ readonly vpcId: pulumi.Output; /** * Private network name. */ readonly vpcName: pulumi.Output; /** * Create a MountPoint resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: MountPointArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering MountPoint resources. */ export interface MountPointState { clients?: pulumi.Input[]>; /** * Mount point creation time. */ createdTime?: pulumi.Input; /** * DNS address. */ domain?: pulumi.Input; /** * File system ID. */ fileSystemId?: pulumi.Input; /** * Mount point address. */ ip?: pulumi.Input; /** * Mount point ID. */ mountPointId?: pulumi.Input; /** * Mount point name. */ mountPointName?: pulumi.Input; /** * Permission group information bound to the mount point. */ permissionGroup?: pulumi.Input; /** * Permission group ID. */ permissionGroupId?: pulumi.Input; /** * Mount point status. Values: Running: Running. Creating: Creating. Updating: Updating. Error: Error. Deleting: Deleting. DeleteError: Delete error. Deleted: Deleted. Stopped: Stopped. */ status?: pulumi.Input; /** * Subnet ID. */ subnetId?: pulumi.Input; /** * Subnet name. */ subnetName?: pulumi.Input; /** * Mount point update time. */ updatedTime?: pulumi.Input; /** * Private network ID. */ vpcId?: pulumi.Input; /** * Private network name. */ vpcName?: pulumi.Input; } /** * The set of arguments for constructing a MountPoint resource. */ export interface MountPointArgs { /** * File system ID. */ fileSystemId: pulumi.Input; /** * Mount point name. */ mountPointName: pulumi.Input; /** * Permission group ID. */ permissionGroupId: pulumi.Input; /** * Subnet ID. */ subnetId: pulumi.Input; /** * Private network ID. */ vpcId: pulumi.Input; }