import * as pulumi from "@pulumi/pulumi";
/**
 * Provides a resource to manage nas mount point
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 * import * as volcengine from "@volcengine/pulumi";
 *
 * const fooZones = volcengine.nas.getZones({});
 * const fooVpc = new volcengine.vpc.Vpc("fooVpc", {
 *     vpcName: "acc-test-project1",
 *     cidrBlock: "172.16.0.0/16",
 * });
 * const fooSubnet = new volcengine.vpc.Subnet("fooSubnet", {
 *     subnetName: "acc-subnet-test-2",
 *     cidrBlock: "172.16.0.0/24",
 *     zoneId: fooZones.then(fooZones => fooZones.zones?.[0]?.id),
 *     vpcId: fooVpc.id,
 * });
 * const fooPermissionGroup = new volcengine.nas.PermissionGroup("fooPermissionGroup", {
 *     permissionGroupName: "acc-test",
 *     description: "acctest",
 *     permissionRules: [
 *         {
 *             cidrIp: "*",
 *             rwMode: "RW",
 *             useMode: "All_squash",
 *         },
 *         {
 *             cidrIp: "192.168.0.0",
 *             rwMode: "RO",
 *             useMode: "All_squash",
 *         },
 *     ],
 * });
 * const fooFileSystem = new volcengine.nas.FileSystem("fooFileSystem", {
 *     fileSystemName: "acc-test-fs",
 *     description: "acc-test",
 *     zoneId: fooZones.then(fooZones => fooZones.zones?.[0]?.id),
 *     capacity: 103,
 *     projectName: "default",
 *     tags: [{
 *         key: "k1",
 *         value: "v1",
 *     }],
 * });
 * const fooMountPoint = new volcengine.nas.MountPoint("fooMountPoint", {
 *     fileSystemId: fooFileSystem.id,
 *     mountPointName: "acc-test",
 *     permissionGroupId: fooPermissionGroup.id,
 *     subnetId: fooSubnet.id,
 * });
 * ```
 *
 * ## Import
 *
 * Nas Mount Point can be imported using the file system id and mount point id, e.g.
 *
 * ```sh
 * $ pulumi import volcengine:nas/mountPoint:MountPoint default enas-cnbj18bcb923****:mount-a6ee****
 * ```
 */
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<pulumi.ID>, 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;
    /**
     * The file system id.
     */
    readonly fileSystemId: pulumi.Output<string>;
    /**
     * The mount point id.
     */
    readonly mountPointId: pulumi.Output<string>;
    /**
     * The mount point name.
     */
    readonly mountPointName: pulumi.Output<string>;
    /**
     * The permission group id.
     */
    readonly permissionGroupId: pulumi.Output<string>;
    /**
     * The subnet id.
     */
    readonly subnetId: pulumi.Output<string>;
    /**
     * 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 {
    /**
     * The file system id.
     */
    fileSystemId?: pulumi.Input<string>;
    /**
     * The mount point id.
     */
    mountPointId?: pulumi.Input<string>;
    /**
     * The mount point name.
     */
    mountPointName?: pulumi.Input<string>;
    /**
     * The permission group id.
     */
    permissionGroupId?: pulumi.Input<string>;
    /**
     * The subnet id.
     */
    subnetId?: pulumi.Input<string>;
}
/**
 * The set of arguments for constructing a MountPoint resource.
 */
export interface MountPointArgs {
    /**
     * The file system id.
     */
    fileSystemId: pulumi.Input<string>;
    /**
     * The mount point name.
     */
    mountPointName: pulumi.Input<string>;
    /**
     * The permission group id.
     */
    permissionGroupId: pulumi.Input<string>;
    /**
     * The subnet id.
     */
    subnetId: pulumi.Input<string>;
}
