1. Packages
  2. Packages
  3. Volcenginecc Provider
  4. API Docs
  5. filenas
  6. MountPoint
Viewing docs for volcenginecc v0.0.32
published on Thursday, Apr 23, 2026 by Volcengine
volcenginecc logo
Viewing docs for volcenginecc v0.0.32
published on Thursday, Apr 23, 2026 by Volcengine

    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

    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 pulumi
    import pulumi_volcenginecc as volcenginecc
    
    file_nas_mount_point_demo = volcenginecc.filenas.MountPoint("FileNASMountPointDemo",
        file_system_id="enas-cnbja0f8*****",
        mount_point_name="test-1",
        permission_group_id="pgroup-01bc1182",
        subnet_id="subnet-btepcsc5*****",
        vpc_id="vpc-3nr6adcn064u8931*****")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/volcengine/pulumi-volcenginecc/sdk/go/volcenginecc/filenas"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := filenas.NewMountPoint(ctx, "FileNASMountPointDemo", &filenas.MountPointArgs{
    			FileSystemId:      pulumi.String("enas-cnbja0f8*****"),
    			MountPointName:    pulumi.String("test-1"),
    			PermissionGroupId: pulumi.String("pgroup-01bc1182"),
    			SubnetId:          pulumi.String("subnet-btepcsc5*****"),
    			VpcId:             pulumi.String("vpc-3nr6adcn064u8931*****"),
    		})
    		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 fileNASMountPointDemo = new Volcenginecc.Filenas.MountPoint("FileNASMountPointDemo", new()
        {
            FileSystemId = "enas-cnbja0f8*****",
            MountPointName = "test-1",
            PermissionGroupId = "pgroup-01bc1182",
            SubnetId = "subnet-btepcsc5*****",
            VpcId = "vpc-3nr6adcn064u8931*****",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.volcengine.volcenginecc.filenas.MountPoint;
    import com.volcengine.volcenginecc.filenas.MountPointArgs;
    import java.util.List;
    import java.util.ArrayList;
    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 fileNASMountPointDemo = new MountPoint("fileNASMountPointDemo", MountPointArgs.builder()
                .fileSystemId("enas-cnbja0f8*****")
                .mountPointName("test-1")
                .permissionGroupId("pgroup-01bc1182")
                .subnetId("subnet-btepcsc5*****")
                .vpcId("vpc-3nr6adcn064u8931*****")
                .build());
    
        }
    }
    
    resources:
      fileNASMountPointDemo:
        type: volcenginecc:filenas:MountPoint
        name: FileNASMountPointDemo
        properties:
          fileSystemId: enas-cnbja0f8*****
          mountPointName: test-1
          permissionGroupId: pgroup-01bc1182
          subnetId: subnet-btepcsc5*****
          vpcId: vpc-3nr6adcn064u8931*****
    

    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,
                   subnet_id: Optional[str] = None,
                   vpc_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:filenas:MountPoint
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    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.Filenas.MountPoint("mountPointResource", new()
    {
        FileSystemId = "string",
        MountPointName = "string",
        PermissionGroupId = "string",
        SubnetId = "string",
        VpcId = "string",
    });
    
    example, err := filenas.NewMountPoint(ctx, "mountPointResource", &filenas.MountPointArgs{
    	FileSystemId:      pulumi.String("string"),
    	MountPointName:    pulumi.String("string"),
    	PermissionGroupId: pulumi.String("string"),
    	SubnetId:          pulumi.String("string"),
    	VpcId:             pulumi.String("string"),
    })
    
    var mountPointResource = new MountPoint("mountPointResource", MountPointArgs.builder()
        .fileSystemId("string")
        .mountPointName("string")
        .permissionGroupId("string")
        .subnetId("string")
        .vpcId("string")
        .build());
    
    mount_point_resource = volcenginecc.filenas.MountPoint("mountPointResource",
        file_system_id="string",
        mount_point_name="string",
        permission_group_id="string",
        subnet_id="string",
        vpc_id="string")
    
    const mountPointResource = new volcenginecc.filenas.MountPoint("mountPointResource", {
        fileSystemId: "string",
        mountPointName: "string",
        permissionGroupId: "string",
        subnetId: "string",
        vpcId: "string",
    });
    
    type: volcenginecc:filenas: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
    File system ID.
    MountPointName string
    Mount point name.
    PermissionGroupId string
    Permission group ID.
    SubnetId string
    Subnet ID.
    VpcId string
    Private network ID.
    FileSystemId string
    File system ID.
    MountPointName string
    Mount point name.
    PermissionGroupId string
    Permission group ID.
    SubnetId string
    Subnet ID.
    VpcId string
    Private network ID.
    fileSystemId String
    File system ID.
    mountPointName String
    Mount point name.
    permissionGroupId String
    Permission group ID.
    subnetId String
    Subnet ID.
    vpcId String
    Private network ID.
    fileSystemId string
    File system ID.
    mountPointName string
    Mount point name.
    permissionGroupId string
    Permission group ID.
    subnetId string
    Subnet ID.
    vpcId string
    Private network ID.
    file_system_id str
    File system ID.
    mount_point_name str
    Mount point name.
    permission_group_id str
    Permission group ID.
    subnet_id str
    Subnet ID.
    vpc_id str
    Private network ID.
    fileSystemId String
    File system ID.
    mountPointName String
    Mount point name.
    permissionGroupId String
    Permission group ID.
    subnetId String
    Subnet ID.
    vpcId String
    Private network ID.

    Outputs

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

    Clients List<Volcengine.MountPointClient>
    CreatedTime string
    Mount point creation time.
    Domain string
    DNS address.
    Id string
    The provider-assigned unique ID for this managed resource.
    Ip string
    Mount point address.
    MountPointId string
    Mount point ID.
    PermissionGroup Volcengine.MountPointPermissionGroup
    Permission group information bound to the mount point.
    Status string
    Mount point status. Values: Running: Running. Creating: Creating. Updating: Updating. Error: Error. Deleting: Deleting. DeleteError: Delete error. Deleted: Deleted. Stopped: Stopped.
    SubnetName string
    Subnet name.
    UpdatedTime string
    Mount point update time.
    VpcName string
    Private network name.
    Clients []MountPointClient
    CreatedTime string
    Mount point creation time.
    Domain string
    DNS address.
    Id string
    The provider-assigned unique ID for this managed resource.
    Ip string
    Mount point address.
    MountPointId string
    Mount point ID.
    PermissionGroup MountPointPermissionGroup
    Permission group information bound to the mount point.
    Status string
    Mount point status. Values: Running: Running. Creating: Creating. Updating: Updating. Error: Error. Deleting: Deleting. DeleteError: Delete error. Deleted: Deleted. Stopped: Stopped.
    SubnetName string
    Subnet name.
    UpdatedTime string
    Mount point update time.
    VpcName string
    Private network name.
    clients List<MountPointClient>
    createdTime String
    Mount point creation time.
    domain String
    DNS address.
    id String
    The provider-assigned unique ID for this managed resource.
    ip String
    Mount point address.
    mountPointId String
    Mount point ID.
    permissionGroup MountPointPermissionGroup
    Permission group information bound to the mount point.
    status String
    Mount point status. Values: Running: Running. Creating: Creating. Updating: Updating. Error: Error. Deleting: Deleting. DeleteError: Delete error. Deleted: Deleted. Stopped: Stopped.
    subnetName String
    Subnet name.
    updatedTime String
    Mount point update time.
    vpcName String
    Private network name.
    clients MountPointClient[]
    createdTime string
    Mount point creation time.
    domain string
    DNS address.
    id string
    The provider-assigned unique ID for this managed resource.
    ip string
    Mount point address.
    mountPointId string
    Mount point ID.
    permissionGroup MountPointPermissionGroup
    Permission group information bound to the mount point.
    status string
    Mount point status. Values: Running: Running. Creating: Creating. Updating: Updating. Error: Error. Deleting: Deleting. DeleteError: Delete error. Deleted: Deleted. Stopped: Stopped.
    subnetName string
    Subnet name.
    updatedTime string
    Mount point update time.
    vpcName string
    Private network name.
    clients Sequence[MountPointClient]
    created_time str
    Mount point creation time.
    domain str
    DNS address.
    id str
    The provider-assigned unique ID for this managed resource.
    ip str
    Mount point address.
    mount_point_id str
    Mount point ID.
    permission_group MountPointPermissionGroup
    Permission group information bound to the mount point.
    status str
    Mount point status. Values: Running: Running. Creating: Creating. Updating: Updating. Error: Error. Deleting: Deleting. DeleteError: Delete error. Deleted: Deleted. Stopped: Stopped.
    subnet_name str
    Subnet name.
    updated_time str
    Mount point update time.
    vpc_name str
    Private network name.
    clients List<Property Map>
    createdTime String
    Mount point creation time.
    domain String
    DNS address.
    id String
    The provider-assigned unique ID for this managed resource.
    ip String
    Mount point address.
    mountPointId String
    Mount point ID.
    permissionGroup Property Map
    Permission group information bound to the mount point.
    status String
    Mount point status. Values: Running: Running. Creating: Creating. Updating: Updating. Error: Error. Deleting: Deleting. DeleteError: Delete error. Deleted: Deleted. Stopped: Stopped.
    subnetName String
    Subnet name.
    updatedTime String
    Mount point update time.
    vpcName String
    Private network name.

    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,
            clients: Optional[Sequence[MountPointClientArgs]] = None,
            created_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: Optional[MountPointPermissionGroupArgs] = None,
            permission_group_id: Optional[str] = None,
            status: Optional[str] = None,
            subnet_id: Optional[str] = None,
            subnet_name: Optional[str] = None,
            updated_time: Optional[str] = None,
            vpc_id: Optional[str] = None,
            vpc_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:filenas:MountPoint    get:      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:
    Clients List<Volcengine.MountPointClient>
    CreatedTime string
    Mount point creation time.
    Domain string
    DNS address.
    FileSystemId string
    File system ID.
    Ip string
    Mount point address.
    MountPointId string
    Mount point ID.
    MountPointName string
    Mount point name.
    PermissionGroup Volcengine.MountPointPermissionGroup
    Permission group information bound to the mount point.
    PermissionGroupId string
    Permission group ID.
    Status string
    Mount point status. Values: Running: Running. Creating: Creating. Updating: Updating. Error: Error. Deleting: Deleting. DeleteError: Delete error. Deleted: Deleted. Stopped: Stopped.
    SubnetId string
    Subnet ID.
    SubnetName string
    Subnet name.
    UpdatedTime string
    Mount point update time.
    VpcId string
    Private network ID.
    VpcName string
    Private network name.
    Clients []MountPointClientArgs
    CreatedTime string
    Mount point creation time.
    Domain string
    DNS address.
    FileSystemId string
    File system ID.
    Ip string
    Mount point address.
    MountPointId string
    Mount point ID.
    MountPointName string
    Mount point name.
    PermissionGroup MountPointPermissionGroupArgs
    Permission group information bound to the mount point.
    PermissionGroupId string
    Permission group ID.
    Status string
    Mount point status. Values: Running: Running. Creating: Creating. Updating: Updating. Error: Error. Deleting: Deleting. DeleteError: Delete error. Deleted: Deleted. Stopped: Stopped.
    SubnetId string
    Subnet ID.
    SubnetName string
    Subnet name.
    UpdatedTime string
    Mount point update time.
    VpcId string
    Private network ID.
    VpcName string
    Private network name.
    clients List<MountPointClient>
    createdTime String
    Mount point creation time.
    domain String
    DNS address.
    fileSystemId String
    File system ID.
    ip String
    Mount point address.
    mountPointId String
    Mount point ID.
    mountPointName String
    Mount point name.
    permissionGroup MountPointPermissionGroup
    Permission group information bound to the mount point.
    permissionGroupId String
    Permission group ID.
    status String
    Mount point status. Values: Running: Running. Creating: Creating. Updating: Updating. Error: Error. Deleting: Deleting. DeleteError: Delete error. Deleted: Deleted. Stopped: Stopped.
    subnetId String
    Subnet ID.
    subnetName String
    Subnet name.
    updatedTime String
    Mount point update time.
    vpcId String
    Private network ID.
    vpcName String
    Private network name.
    clients MountPointClient[]
    createdTime string
    Mount point creation time.
    domain string
    DNS address.
    fileSystemId string
    File system ID.
    ip string
    Mount point address.
    mountPointId string
    Mount point ID.
    mountPointName string
    Mount point name.
    permissionGroup MountPointPermissionGroup
    Permission group information bound to the mount point.
    permissionGroupId string
    Permission group ID.
    status string
    Mount point status. Values: Running: Running. Creating: Creating. Updating: Updating. Error: Error. Deleting: Deleting. DeleteError: Delete error. Deleted: Deleted. Stopped: Stopped.
    subnetId string
    Subnet ID.
    subnetName string
    Subnet name.
    updatedTime string
    Mount point update time.
    vpcId string
    Private network ID.
    vpcName string
    Private network name.
    clients Sequence[MountPointClientArgs]
    created_time str
    Mount point creation time.
    domain str
    DNS address.
    file_system_id str
    File system ID.
    ip str
    Mount point address.
    mount_point_id str
    Mount point ID.
    mount_point_name str
    Mount point name.
    permission_group MountPointPermissionGroupArgs
    Permission group information bound to the mount point.
    permission_group_id str
    Permission group ID.
    status str
    Mount point status. Values: Running: Running. Creating: Creating. Updating: Updating. Error: Error. Deleting: Deleting. DeleteError: Delete error. Deleted: Deleted. Stopped: Stopped.
    subnet_id str
    Subnet ID.
    subnet_name str
    Subnet name.
    updated_time str
    Mount point update time.
    vpc_id str
    Private network ID.
    vpc_name str
    Private network name.
    clients List<Property Map>
    createdTime String
    Mount point creation time.
    domain String
    DNS address.
    fileSystemId String
    File system ID.
    ip String
    Mount point address.
    mountPointId String
    Mount point ID.
    mountPointName String
    Mount point name.
    permissionGroup Property Map
    Permission group information bound to the mount point.
    permissionGroupId String
    Permission group ID.
    status String
    Mount point status. Values: Running: Running. Creating: Creating. Updating: Updating. Error: Error. Deleting: Deleting. DeleteError: Delete error. Deleted: Deleted. Stopped: Stopped.
    subnetId String
    Subnet ID.
    subnetName String
    Subnet name.
    updatedTime String
    Mount point update time.
    vpcId String
    Private network ID.
    vpcName String
    Private network name.

    Supporting Types

    MountPointClient, MountPointClientArgs

    Ip string
    Client's private network IP address.
    ProtocolVersion string
    Mount protocol version. Value: NFSv3.
    VpcName string
    Private network name.
    Ip string
    Client's private network IP address.
    ProtocolVersion string
    Mount protocol version. Value: NFSv3.
    VpcName string
    Private network name.
    ip String
    Client's private network IP address.
    protocolVersion String
    Mount protocol version. Value: NFSv3.
    vpcName String
    Private network name.
    ip string
    Client's private network IP address.
    protocolVersion string
    Mount protocol version. Value: NFSv3.
    vpcName string
    Private network name.
    ip str
    Client's private network IP address.
    protocol_version str
    Mount protocol version. Value: NFSv3.
    vpc_name str
    Private network name.
    ip String
    Client's private network IP address.
    protocolVersion String
    Mount protocol version. Value: NFSv3.
    vpcName String
    Private network name.

    MountPointPermissionGroup, MountPointPermissionGroupArgs

    CreateTime string
    Permission group creation time.
    Description string
    Permission group description information.
    FileSystemCount int
    Number of file systems associated with this permission group.
    FileSystemType string
    File system type. Value explanation: Extreme: NAS extreme type. Capacity: NAS capacity type. Cache: NAS cache type.
    MountPoints List<Volcengine.MountPointPermissionGroupMountPoint>
    PermissionGroupName string
    Permission group name.
    PermissionRuleCount int
    Number of permission rules.
    CreateTime string
    Permission group creation time.
    Description string
    Permission group description information.
    FileSystemCount int
    Number of file systems associated with this permission group.
    FileSystemType string
    File system type. Value explanation: Extreme: NAS extreme type. Capacity: NAS capacity type. Cache: NAS cache type.
    MountPoints []MountPointPermissionGroupMountPoint
    PermissionGroupName string
    Permission group name.
    PermissionRuleCount int
    Number of permission rules.
    createTime String
    Permission group creation time.
    description String
    Permission group description information.
    fileSystemCount Integer
    Number of file systems associated with this permission group.
    fileSystemType String
    File system type. Value explanation: Extreme: NAS extreme type. Capacity: NAS capacity type. Cache: NAS cache type.
    mountPoints List<MountPointPermissionGroupMountPoint>
    permissionGroupName String
    Permission group name.
    permissionRuleCount Integer
    Number of permission rules.
    createTime string
    Permission group creation time.
    description string
    Permission group description information.
    fileSystemCount number
    Number of file systems associated with this permission group.
    fileSystemType string
    File system type. Value explanation: Extreme: NAS extreme type. Capacity: NAS capacity type. Cache: NAS cache type.
    mountPoints MountPointPermissionGroupMountPoint[]
    permissionGroupName string
    Permission group name.
    permissionRuleCount number
    Number of permission rules.
    create_time str
    Permission group creation time.
    description str
    Permission group description information.
    file_system_count int
    Number of file systems associated with this permission group.
    file_system_type str
    File system type. Value explanation: Extreme: NAS extreme type. Capacity: NAS capacity type. Cache: NAS cache type.
    mount_points Sequence[MountPointPermissionGroupMountPoint]
    permission_group_name str
    Permission group name.
    permission_rule_count int
    Number of permission rules.
    createTime String
    Permission group creation time.
    description String
    Permission group description information.
    fileSystemCount Number
    Number of file systems associated with this permission group.
    fileSystemType String
    File system type. Value explanation: Extreme: NAS extreme type. Capacity: NAS capacity type. Cache: NAS cache type.
    mountPoints List<Property Map>
    permissionGroupName String
    Permission group name.
    permissionRuleCount Number
    Number of permission rules.

    MountPointPermissionGroupMountPoint, MountPointPermissionGroupMountPointArgs

    FileSystemId string
    File system ID.
    MountPointId string
    Mount point ID.
    MountPointName string
    Mount point name.
    FileSystemId string
    File system ID.
    MountPointId string
    Mount point ID.
    MountPointName string
    Mount point name.
    fileSystemId String
    File system ID.
    mountPointId String
    Mount point ID.
    mountPointName String
    Mount point name.
    fileSystemId string
    File system ID.
    mountPointId string
    Mount point ID.
    mountPointName string
    Mount point name.
    file_system_id str
    File system ID.
    mount_point_id str
    Mount point ID.
    mount_point_name str
    Mount point name.
    fileSystemId String
    File system ID.
    mountPointId String
    Mount point ID.
    mountPointName String
    Mount point name.

    Import

    $ pulumi import volcenginecc:filenas/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.32
    published on Thursday, Apr 23, 2026 by Volcengine
      Try Pulumi Cloud free. Your team will thank you.