1. Registry
  2. Packages
  3. Volcenginecc Provider
  4. API Docs
  5. efs
  6. MountPoint
Viewing docs for volcenginecc v0.0.57
published on Monday, Aug 24, 2026 by Volcengine
volcenginecc logo
Viewing docs for volcenginecc v0.0.57
published on Monday, Aug 24, 2026 by Volcengine

    EFS file storage mount point, used to mount the file system on the client within the specified VPC and subnet

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as volcenginecc from "@volcengine/pulumi-volcenginecc";
    
    const primaryEfsMountpointCase1 = new volcenginecc.efs.MountPoint("primary_efs_mountpoint_case_1", {
        fileSystemId: "vol-1234567890abcdef",
        mountPointName: "test-dx-full",
        permissionGroupId: "pgroup-default",
        vpcId: "vpc-1234567890abcdef",
        subnetId: "subnet-1234567890abcdef",
    });
    
    import pulumi
    import pulumi_volcenginecc as volcenginecc
    
    primary_efs_mountpoint_case1 = volcenginecc.efs.MountPoint("primary_efs_mountpoint_case_1",
        file_system_id="vol-1234567890abcdef",
        mount_point_name="test-dx-full",
        permission_group_id="pgroup-default",
        vpc_id="vpc-1234567890abcdef",
        subnet_id="subnet-1234567890abcdef")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/volcengine/pulumi-volcenginecc/sdk/go/volcenginecc/efs"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := efs.NewMountPoint(ctx, "primary_efs_mountpoint_case_1", &efs.MountPointArgs{
    			FileSystemId:      pulumi.String("vol-1234567890abcdef"),
    			MountPointName:    pulumi.String("test-dx-full"),
    			PermissionGroupId: pulumi.String("pgroup-default"),
    			VpcId:             pulumi.String("vpc-1234567890abcdef"),
    			SubnetId:          pulumi.String("subnet-1234567890abcdef"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Volcenginecc = Volcengine.Pulumi.Volcenginecc;
    
    return await Deployment.RunAsync(() => 
    {
        var primaryEfsMountpointCase1 = new Volcenginecc.Efs.MountPoint("primary_efs_mountpoint_case_1", new()
        {
            FileSystemId = "vol-1234567890abcdef",
            MountPointName = "test-dx-full",
            PermissionGroupId = "pgroup-default",
            VpcId = "vpc-1234567890abcdef",
            SubnetId = "subnet-1234567890abcdef",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.volcengine.volcenginecc.efs.MountPoint;
    import com.volcengine.volcenginecc.efs.MountPointArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var primaryEfsMountpointCase1 = new MountPoint("primaryEfsMountpointCase1", MountPointArgs.builder()
                .fileSystemId("vol-1234567890abcdef")
                .mountPointName("test-dx-full")
                .permissionGroupId("pgroup-default")
                .vpcId("vpc-1234567890abcdef")
                .subnetId("subnet-1234567890abcdef")
                .build());
    
        }
    }
    
    resources:
      primaryEfsMountpointCase1:
        type: volcenginecc:efs:MountPoint
        name: primary_efs_mountpoint_case_1
        properties:
          fileSystemId: vol-1234567890abcdef
          mountPointName: test-dx-full
          permissionGroupId: pgroup-default
          vpcId: vpc-1234567890abcdef
          subnetId: subnet-1234567890abcdef
    
    pulumi {
      required_providers {
        volcenginecc = {
          source = "pulumi/volcenginecc"
        }
      }
    }
    
    resource "volcenginecc_efs_mountpoint" "primary_efs_mountpoint_case_1" {
      file_system_id      = "vol-1234567890abcdef"
      mount_point_name    = "test-dx-full"
      permission_group_id = "pgroup-default"
      vpc_id              = "vpc-1234567890abcdef"
      subnet_id           = "subnet-1234567890abcdef"
    }
    

    Create MountPoint Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new MountPoint(name: string, args: MountPointArgs, opts?: CustomResourceOptions);
    @overload
    def MountPoint(resource_name: str,
                   args: MountPointArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def MountPoint(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   file_system_id: Optional[str] = None,
                   mount_point_name: Optional[str] = None,
                   permission_group_id: Optional[str] = None,
                   vpc_id: Optional[str] = None,
                   subnet_id: Optional[str] = None)
    func NewMountPoint(ctx *Context, name string, args MountPointArgs, opts ...ResourceOption) (*MountPoint, error)
    public MountPoint(string name, MountPointArgs args, CustomResourceOptions? opts = null)
    public MountPoint(String name, MountPointArgs args)
    public MountPoint(String name, MountPointArgs args, CustomResourceOptions options)
    
    type: volcenginecc:efs:MountPoint
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "volcenginecc_efs_mount_point" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args MountPointArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args MountPointArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args MountPointArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args MountPointArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args MountPointArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var mountPointResource = new Volcenginecc.Efs.MountPoint("mountPointResource", new()
    {
        FileSystemId = "string",
        MountPointName = "string",
        PermissionGroupId = "string",
        VpcId = "string",
        SubnetId = "string",
    });
    
    example, err := efs.NewMountPoint(ctx, "mountPointResource", &efs.MountPointArgs{
    	FileSystemId:      pulumi.String("string"),
    	MountPointName:    pulumi.String("string"),
    	PermissionGroupId: pulumi.String("string"),
    	VpcId:             pulumi.String("string"),
    	SubnetId:          pulumi.String("string"),
    })
    
    resource "volcenginecc_efs_mount_point" "mountPointResource" {
      lifecycle {
        create_before_destroy = true
      }
      file_system_id      = "string"
      mount_point_name    = "string"
      permission_group_id = "string"
      vpc_id              = "string"
      subnet_id           = "string"
    }
    
    var mountPointResource = new com.volcengine.volcenginecc.efs.MountPoint("mountPointResource", com.volcengine.volcenginecc.efs.MountPointArgs.builder()
        .fileSystemId("string")
        .mountPointName("string")
        .permissionGroupId("string")
        .vpcId("string")
        .subnetId("string")
        .build());
    
    mount_point_resource = volcenginecc.efs.MountPoint("mountPointResource",
        file_system_id="string",
        mount_point_name="string",
        permission_group_id="string",
        vpc_id="string",
        subnet_id="string")
    
    const mountPointResource = new volcenginecc.efs.MountPoint("mountPointResource", {
        fileSystemId: "string",
        mountPointName: "string",
        permissionGroupId: "string",
        vpcId: "string",
        subnetId: "string",
    });
    
    type: volcenginecc:efs:MountPoint
    properties:
        fileSystemId: string
        mountPointName: string
        permissionGroupId: string
        subnetId: string
        vpcId: string
    

    MountPoint Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The MountPoint resource accepts the following input properties:

    FileSystemId string
    ID of the associated file system
    MountPointName string
    Name of the mount point
    PermissionGroupId string
    ID of the permission group bound to the mount point
    VpcId string
    ID of the VPC associated with the mount point
    SubnetId string
    ID of the subnet associated with the mount point
    FileSystemId string
    ID of the associated file system
    MountPointName string
    Name of the mount point
    PermissionGroupId string
    ID of the permission group bound to the mount point
    VpcId string
    ID of the VPC associated with the mount point
    SubnetId string
    ID of the subnet associated with the mount point
    file_system_id string
    ID of the associated file system
    mount_point_name string
    Name of the mount point
    permission_group_id string
    ID of the permission group bound to the mount point
    vpc_id string
    ID of the VPC associated with the mount point
    subnet_id string
    ID of the subnet associated with the mount point
    fileSystemId String
    ID of the associated file system
    mountPointName String
    Name of the mount point
    permissionGroupId String
    ID of the permission group bound to the mount point
    vpcId String
    ID of the VPC associated with the mount point
    subnetId String
    ID of the subnet associated with the mount point
    fileSystemId string
    ID of the associated file system
    mountPointName string
    Name of the mount point
    permissionGroupId string
    ID of the permission group bound to the mount point
    vpcId string
    ID of the VPC associated with the mount point
    subnetId string
    ID of the subnet associated with the mount point
    file_system_id str
    ID of the associated file system
    mount_point_name str
    Name of the mount point
    permission_group_id str
    ID of the permission group bound to the mount point
    vpc_id str
    ID of the VPC associated with the mount point
    subnet_id str
    ID of the subnet associated with the mount point
    fileSystemId String
    ID of the associated file system
    mountPointName String
    Name of the mount point
    permissionGroupId String
    ID of the permission group bound to the mount point
    vpcId String
    ID of the VPC associated with the mount point
    subnetId String
    ID of the subnet associated with the mount point

    Outputs

    All input properties are implicitly available as output properties. Additionally, the MountPoint resource produces the following output properties:

    CreateTime string
    Creation time of the mount point
    Domain string
    Domain name of the mount point
    Id string
    The provider-assigned unique ID for this managed resource.
    Ip string
    IP address of the mount point
    MountPointId string
    ID of the mount point
    PermissionGroupName string
    Name of the permission group bound to the mount point
    Status string
    Status of the mount point. Creating: In progress; Running: Available; Updating: In progress; Deleting: In progress; CreateError: Creation failed; DeleteError: Deletion failed; Disabled: Disabled; Unknown: Unknown
    SubnetName string
    Name of the subnet associated with the mount point
    UpdateTime string
    Last update time of the mount point
    VpcName string
    Name of the VPC associated with the mount point
    ZoneId string
    ID of the availability zone associated with the mount point
    ZoneName string
    Name of the availability zone associated with the mount point
    CreateTime string
    Creation time of the mount point
    Domain string
    Domain name of the mount point
    Id string
    The provider-assigned unique ID for this managed resource.
    Ip string
    IP address of the mount point
    MountPointId string
    ID of the mount point
    PermissionGroupName string
    Name of the permission group bound to the mount point
    Status string
    Status of the mount point. Creating: In progress; Running: Available; Updating: In progress; Deleting: In progress; CreateError: Creation failed; DeleteError: Deletion failed; Disabled: Disabled; Unknown: Unknown
    SubnetName string
    Name of the subnet associated with the mount point
    UpdateTime string
    Last update time of the mount point
    VpcName string
    Name of the VPC associated with the mount point
    ZoneId string
    ID of the availability zone associated with the mount point
    ZoneName string
    Name of the availability zone associated with the mount point
    create_time string
    Creation time of the mount point
    domain string
    Domain name of the mount point
    id string
    The provider-assigned unique ID for this managed resource.
    ip string
    IP address of the mount point
    mount_point_id string
    ID of the mount point
    permission_group_name string
    Name of the permission group bound to the mount point
    status string
    Status of the mount point. Creating: In progress; Running: Available; Updating: In progress; Deleting: In progress; CreateError: Creation failed; DeleteError: Deletion failed; Disabled: Disabled; Unknown: Unknown
    subnet_name string
    Name of the subnet associated with the mount point
    update_time string
    Last update time of the mount point
    vpc_name string
    Name of the VPC associated with the mount point
    zone_id string
    ID of the availability zone associated with the mount point
    zone_name string
    Name of the availability zone associated with the mount point
    createTime String
    Creation time of the mount point
    domain String
    Domain name of the mount point
    id String
    The provider-assigned unique ID for this managed resource.
    ip String
    IP address of the mount point
    mountPointId String
    ID of the mount point
    permissionGroupName String
    Name of the permission group bound to the mount point
    status String
    Status of the mount point. Creating: In progress; Running: Available; Updating: In progress; Deleting: In progress; CreateError: Creation failed; DeleteError: Deletion failed; Disabled: Disabled; Unknown: Unknown
    subnetName String
    Name of the subnet associated with the mount point
    updateTime String
    Last update time of the mount point
    vpcName String
    Name of the VPC associated with the mount point
    zoneId String
    ID of the availability zone associated with the mount point
    zoneName String
    Name of the availability zone associated with the mount point
    createTime string
    Creation time of the mount point
    domain string
    Domain name of the mount point
    id string
    The provider-assigned unique ID for this managed resource.
    ip string
    IP address of the mount point
    mountPointId string
    ID of the mount point
    permissionGroupName string
    Name of the permission group bound to the mount point
    status string
    Status of the mount point. Creating: In progress; Running: Available; Updating: In progress; Deleting: In progress; CreateError: Creation failed; DeleteError: Deletion failed; Disabled: Disabled; Unknown: Unknown
    subnetName string
    Name of the subnet associated with the mount point
    updateTime string
    Last update time of the mount point
    vpcName string
    Name of the VPC associated with the mount point
    zoneId string
    ID of the availability zone associated with the mount point
    zoneName string
    Name of the availability zone associated with the mount point
    create_time str
    Creation time of the mount point
    domain str
    Domain name of the mount point
    id str
    The provider-assigned unique ID for this managed resource.
    ip str
    IP address of the mount point
    mount_point_id str
    ID of the mount point
    permission_group_name str
    Name of the permission group bound to the mount point
    status str
    Status of the mount point. Creating: In progress; Running: Available; Updating: In progress; Deleting: In progress; CreateError: Creation failed; DeleteError: Deletion failed; Disabled: Disabled; Unknown: Unknown
    subnet_name str
    Name of the subnet associated with the mount point
    update_time str
    Last update time of the mount point
    vpc_name str
    Name of the VPC associated with the mount point
    zone_id str
    ID of the availability zone associated with the mount point
    zone_name str
    Name of the availability zone associated with the mount point
    createTime String
    Creation time of the mount point
    domain String
    Domain name of the mount point
    id String
    The provider-assigned unique ID for this managed resource.
    ip String
    IP address of the mount point
    mountPointId String
    ID of the mount point
    permissionGroupName String
    Name of the permission group bound to the mount point
    status String
    Status of the mount point. Creating: In progress; Running: Available; Updating: In progress; Deleting: In progress; CreateError: Creation failed; DeleteError: Deletion failed; Disabled: Disabled; Unknown: Unknown
    subnetName String
    Name of the subnet associated with the mount point
    updateTime String
    Last update time of the mount point
    vpcName String
    Name of the VPC associated with the mount point
    zoneId String
    ID of the availability zone associated with the mount point
    zoneName String
    Name of the availability zone associated with the mount point

    Look up Existing MountPoint Resource

    Get an existing MountPoint resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: MountPointState, opts?: CustomResourceOptions): MountPoint
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            create_time: Optional[str] = None,
            domain: Optional[str] = None,
            file_system_id: Optional[str] = None,
            ip: Optional[str] = None,
            mount_point_id: Optional[str] = None,
            mount_point_name: Optional[str] = None,
            permission_group_id: Optional[str] = None,
            permission_group_name: Optional[str] = None,
            status: Optional[str] = None,
            subnet_id: Optional[str] = None,
            subnet_name: Optional[str] = None,
            update_time: Optional[str] = None,
            vpc_id: Optional[str] = None,
            vpc_name: Optional[str] = None,
            zone_id: Optional[str] = None,
            zone_name: Optional[str] = None) -> MountPoint
    func GetMountPoint(ctx *Context, name string, id IDInput, state *MountPointState, opts ...ResourceOption) (*MountPoint, error)
    public static MountPoint Get(string name, Input<string> id, MountPointState? state, CustomResourceOptions? opts = null)
    public static MountPoint get(String name, Output<String> id, MountPointState state, CustomResourceOptions options)
    resources:  _:    type: volcenginecc:efs:MountPoint    get:      id: ${id}
    import {
      to = volcenginecc_efs_mount_point.example
      id = "${id}"
    }
    
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CreateTime string
    Creation time of the mount point
    Domain string
    Domain name of the mount point
    FileSystemId string
    ID of the associated file system
    Ip string
    IP address of the mount point
    MountPointId string
    ID of the mount point
    MountPointName string
    Name of the mount point
    PermissionGroupId string
    ID of the permission group bound to the mount point
    PermissionGroupName string
    Name of the permission group bound to the mount point
    Status string
    Status of the mount point. Creating: In progress; Running: Available; Updating: In progress; Deleting: In progress; CreateError: Creation failed; DeleteError: Deletion failed; Disabled: Disabled; Unknown: Unknown
    SubnetId string
    ID of the subnet associated with the mount point
    SubnetName string
    Name of the subnet associated with the mount point
    UpdateTime string
    Last update time of the mount point
    VpcId string
    ID of the VPC associated with the mount point
    VpcName string
    Name of the VPC associated with the mount point
    ZoneId string
    ID of the availability zone associated with the mount point
    ZoneName string
    Name of the availability zone associated with the mount point
    CreateTime string
    Creation time of the mount point
    Domain string
    Domain name of the mount point
    FileSystemId string
    ID of the associated file system
    Ip string
    IP address of the mount point
    MountPointId string
    ID of the mount point
    MountPointName string
    Name of the mount point
    PermissionGroupId string
    ID of the permission group bound to the mount point
    PermissionGroupName string
    Name of the permission group bound to the mount point
    Status string
    Status of the mount point. Creating: In progress; Running: Available; Updating: In progress; Deleting: In progress; CreateError: Creation failed; DeleteError: Deletion failed; Disabled: Disabled; Unknown: Unknown
    SubnetId string
    ID of the subnet associated with the mount point
    SubnetName string
    Name of the subnet associated with the mount point
    UpdateTime string
    Last update time of the mount point
    VpcId string
    ID of the VPC associated with the mount point
    VpcName string
    Name of the VPC associated with the mount point
    ZoneId string
    ID of the availability zone associated with the mount point
    ZoneName string
    Name of the availability zone associated with the mount point
    create_time string
    Creation time of the mount point
    domain string
    Domain name of the mount point
    file_system_id string
    ID of the associated file system
    ip string
    IP address of the mount point
    mount_point_id string
    ID of the mount point
    mount_point_name string
    Name of the mount point
    permission_group_id string
    ID of the permission group bound to the mount point
    permission_group_name string
    Name of the permission group bound to the mount point
    status string
    Status of the mount point. Creating: In progress; Running: Available; Updating: In progress; Deleting: In progress; CreateError: Creation failed; DeleteError: Deletion failed; Disabled: Disabled; Unknown: Unknown
    subnet_id string
    ID of the subnet associated with the mount point
    subnet_name string
    Name of the subnet associated with the mount point
    update_time string
    Last update time of the mount point
    vpc_id string
    ID of the VPC associated with the mount point
    vpc_name string
    Name of the VPC associated with the mount point
    zone_id string
    ID of the availability zone associated with the mount point
    zone_name string
    Name of the availability zone associated with the mount point
    createTime String
    Creation time of the mount point
    domain String
    Domain name of the mount point
    fileSystemId String
    ID of the associated file system
    ip String
    IP address of the mount point
    mountPointId String
    ID of the mount point
    mountPointName String
    Name of the mount point
    permissionGroupId String
    ID of the permission group bound to the mount point
    permissionGroupName String
    Name of the permission group bound to the mount point
    status String
    Status of the mount point. Creating: In progress; Running: Available; Updating: In progress; Deleting: In progress; CreateError: Creation failed; DeleteError: Deletion failed; Disabled: Disabled; Unknown: Unknown
    subnetId String
    ID of the subnet associated with the mount point
    subnetName String
    Name of the subnet associated with the mount point
    updateTime String
    Last update time of the mount point
    vpcId String
    ID of the VPC associated with the mount point
    vpcName String
    Name of the VPC associated with the mount point
    zoneId String
    ID of the availability zone associated with the mount point
    zoneName String
    Name of the availability zone associated with the mount point
    createTime string
    Creation time of the mount point
    domain string
    Domain name of the mount point
    fileSystemId string
    ID of the associated file system
    ip string
    IP address of the mount point
    mountPointId string
    ID of the mount point
    mountPointName string
    Name of the mount point
    permissionGroupId string
    ID of the permission group bound to the mount point
    permissionGroupName string
    Name of the permission group bound to the mount point
    status string
    Status of the mount point. Creating: In progress; Running: Available; Updating: In progress; Deleting: In progress; CreateError: Creation failed; DeleteError: Deletion failed; Disabled: Disabled; Unknown: Unknown
    subnetId string
    ID of the subnet associated with the mount point
    subnetName string
    Name of the subnet associated with the mount point
    updateTime string
    Last update time of the mount point
    vpcId string
    ID of the VPC associated with the mount point
    vpcName string
    Name of the VPC associated with the mount point
    zoneId string
    ID of the availability zone associated with the mount point
    zoneName string
    Name of the availability zone associated with the mount point
    create_time str
    Creation time of the mount point
    domain str
    Domain name of the mount point
    file_system_id str
    ID of the associated file system
    ip str
    IP address of the mount point
    mount_point_id str
    ID of the mount point
    mount_point_name str
    Name of the mount point
    permission_group_id str
    ID of the permission group bound to the mount point
    permission_group_name str
    Name of the permission group bound to the mount point
    status str
    Status of the mount point. Creating: In progress; Running: Available; Updating: In progress; Deleting: In progress; CreateError: Creation failed; DeleteError: Deletion failed; Disabled: Disabled; Unknown: Unknown
    subnet_id str
    ID of the subnet associated with the mount point
    subnet_name str
    Name of the subnet associated with the mount point
    update_time str
    Last update time of the mount point
    vpc_id str
    ID of the VPC associated with the mount point
    vpc_name str
    Name of the VPC associated with the mount point
    zone_id str
    ID of the availability zone associated with the mount point
    zone_name str
    Name of the availability zone associated with the mount point
    createTime String
    Creation time of the mount point
    domain String
    Domain name of the mount point
    fileSystemId String
    ID of the associated file system
    ip String
    IP address of the mount point
    mountPointId String
    ID of the mount point
    mountPointName String
    Name of the mount point
    permissionGroupId String
    ID of the permission group bound to the mount point
    permissionGroupName String
    Name of the permission group bound to the mount point
    status String
    Status of the mount point. Creating: In progress; Running: Available; Updating: In progress; Deleting: In progress; CreateError: Creation failed; DeleteError: Deletion failed; Disabled: Disabled; Unknown: Unknown
    subnetId String
    ID of the subnet associated with the mount point
    subnetName String
    Name of the subnet associated with the mount point
    updateTime String
    Last update time of the mount point
    vpcId String
    ID of the VPC associated with the mount point
    vpcName String
    Name of the VPC associated with the mount point
    zoneId String
    ID of the availability zone associated with the mount point
    zoneName String
    Name of the availability zone associated with the mount point

    Import

    $ pulumi import volcenginecc:efs/mountPoint:MountPoint example "file_system_id|mount_point_id"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    volcenginecc volcengine/pulumi-volcenginecc
    License
    MPL-2.0
    Notes
    This Pulumi package is based on the volcenginecc Terraform Provider.
    volcenginecc logo
    Viewing docs for volcenginecc v0.0.57
    published on Monday, Aug 24, 2026 by Volcengine

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial