1. Packages
  2. Bytepluscc Provider
  3. API Docs
  4. filenas
  5. MountPoint
Viewing docs for bytepluscc v0.0.16
published on Monday, Mar 9, 2026 by Byteplus
bytepluscc logo
Viewing docs for bytepluscc v0.0.16
published on Monday, Mar 9, 2026 by Byteplus

    挂载点是 NAS 文件系统在网络环境中的连接点。NAS 文件系统需要挂载在计算节点中才能完成数据的访问与存储。挂载是将计算节点与 NAS 文件系统相连接的操作。

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as bytepluscc from "@byteplus/pulumi-bytepluscc";
    
    const fileNASMountPointDemo = new bytepluscc.filenas.MountPoint("FileNASMountPointDemo", {
        fileSystemId: "enas-cnbja0f8*****",
        mountPointName: "test-1",
        permissionGroupId: "pgroup-01bc1182",
        subnetId: "subnet-btepcsc5*****",
        vpcId: "vpc-3nr6adcn064u8931*****",
    });
    
    import pulumi
    import pulumi_bytepluscc as bytepluscc
    
    file_nas_mount_point_demo = bytepluscc.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/byteplus-sdk/pulumi-bytepluscc/sdk/go/bytepluscc/filenas"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    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 Bytepluscc = Byteplus.Pulumi.Bytepluscc;
    
    return await Deployment.RunAsync(() => 
    {
        var fileNASMountPointDemo = new Bytepluscc.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.byteplus.bytepluscc.filenas.MountPoint;
    import com.byteplus.bytepluscc.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: bytepluscc: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: bytepluscc: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 Bytepluscc.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 = bytepluscc.filenas.MountPoint("mountPointResource",
        file_system_id="string",
        mount_point_name="string",
        permission_group_id="string",
        subnet_id="string",
        vpc_id="string")
    
    const mountPointResource = new bytepluscc.filenas.MountPoint("mountPointResource", {
        fileSystemId: "string",
        mountPointName: "string",
        permissionGroupId: "string",
        subnetId: "string",
        vpcId: "string",
    });
    
    type: bytepluscc: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
    文件系统 ID。
    MountPointName string
    挂载点名称。
    PermissionGroupId string
    权限组 ID。
    SubnetId string
    子网 ID。
    VpcId string
    私有网络 ID。
    FileSystemId string
    文件系统 ID。
    MountPointName string
    挂载点名称。
    PermissionGroupId string
    权限组 ID。
    SubnetId string
    子网 ID。
    VpcId string
    私有网络 ID。
    fileSystemId String
    文件系统 ID。
    mountPointName String
    挂载点名称。
    permissionGroupId String
    权限组 ID。
    subnetId String
    子网 ID。
    vpcId String
    私有网络 ID。
    fileSystemId string
    文件系统 ID。
    mountPointName string
    挂载点名称。
    permissionGroupId string
    权限组 ID。
    subnetId string
    子网 ID。
    vpcId string
    私有网络 ID。
    file_system_id str
    文件系统 ID。
    mount_point_name str
    挂载点名称。
    permission_group_id str
    权限组 ID。
    subnet_id str
    子网 ID。
    vpc_id str
    私有网络 ID。
    fileSystemId String
    文件系统 ID。
    mountPointName String
    挂载点名称。
    permissionGroupId String
    权限组 ID。
    subnetId String
    子网 ID。
    vpcId String
    私有网络 ID。

    Outputs

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

    Clients List<Byteplus.MountPointClient>
    CreatedTime string
    挂载点创建时间。
    Domain string
    DNS 地址。
    Id string
    The provider-assigned unique ID for this managed resource.
    Ip string
    挂载点地址。
    MountPointId string
    挂载点 ID。
    PermissionGroup Byteplus.MountPointPermissionGroup
    挂载点绑定的权限组信息。
    Status string
    挂载点状态。取值:Running:运行中。Creating:创建中。Updating:更新中。Error:异常。Deleting:删除中。DeleteError:删除异常。Deleted:已删除。Stopped:已停止。
    SubnetName string
    子网名称。
    UpdatedTime string
    挂载点更新时间。
    VpcName string
    私有网络名称。
    Clients []MountPointClient
    CreatedTime string
    挂载点创建时间。
    Domain string
    DNS 地址。
    Id string
    The provider-assigned unique ID for this managed resource.
    Ip string
    挂载点地址。
    MountPointId string
    挂载点 ID。
    PermissionGroup MountPointPermissionGroup
    挂载点绑定的权限组信息。
    Status string
    挂载点状态。取值:Running:运行中。Creating:创建中。Updating:更新中。Error:异常。Deleting:删除中。DeleteError:删除异常。Deleted:已删除。Stopped:已停止。
    SubnetName string
    子网名称。
    UpdatedTime string
    挂载点更新时间。
    VpcName string
    私有网络名称。
    clients List<MountPointClient>
    createdTime String
    挂载点创建时间。
    domain String
    DNS 地址。
    id String
    The provider-assigned unique ID for this managed resource.
    ip String
    挂载点地址。
    mountPointId String
    挂载点 ID。
    permissionGroup MountPointPermissionGroup
    挂载点绑定的权限组信息。
    status String
    挂载点状态。取值:Running:运行中。Creating:创建中。Updating:更新中。Error:异常。Deleting:删除中。DeleteError:删除异常。Deleted:已删除。Stopped:已停止。
    subnetName String
    子网名称。
    updatedTime String
    挂载点更新时间。
    vpcName String
    私有网络名称。
    clients MountPointClient[]
    createdTime string
    挂载点创建时间。
    domain string
    DNS 地址。
    id string
    The provider-assigned unique ID for this managed resource.
    ip string
    挂载点地址。
    mountPointId string
    挂载点 ID。
    permissionGroup MountPointPermissionGroup
    挂载点绑定的权限组信息。
    status string
    挂载点状态。取值:Running:运行中。Creating:创建中。Updating:更新中。Error:异常。Deleting:删除中。DeleteError:删除异常。Deleted:已删除。Stopped:已停止。
    subnetName string
    子网名称。
    updatedTime string
    挂载点更新时间。
    vpcName string
    私有网络名称。
    clients Sequence[MountPointClient]
    created_time str
    挂载点创建时间。
    domain str
    DNS 地址。
    id str
    The provider-assigned unique ID for this managed resource.
    ip str
    挂载点地址。
    mount_point_id str
    挂载点 ID。
    permission_group MountPointPermissionGroup
    挂载点绑定的权限组信息。
    status str
    挂载点状态。取值:Running:运行中。Creating:创建中。Updating:更新中。Error:异常。Deleting:删除中。DeleteError:删除异常。Deleted:已删除。Stopped:已停止。
    subnet_name str
    子网名称。
    updated_time str
    挂载点更新时间。
    vpc_name str
    私有网络名称。
    clients List<Property Map>
    createdTime String
    挂载点创建时间。
    domain String
    DNS 地址。
    id String
    The provider-assigned unique ID for this managed resource.
    ip String
    挂载点地址。
    mountPointId String
    挂载点 ID。
    permissionGroup Property Map
    挂载点绑定的权限组信息。
    status String
    挂载点状态。取值:Running:运行中。Creating:创建中。Updating:更新中。Error:异常。Deleting:删除中。DeleteError:删除异常。Deleted:已删除。Stopped:已停止。
    subnetName String
    子网名称。
    updatedTime String
    挂载点更新时间。
    vpcName String
    私有网络名称。

    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: bytepluscc: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<Byteplus.MountPointClient>
    CreatedTime string
    挂载点创建时间。
    Domain string
    DNS 地址。
    FileSystemId string
    文件系统 ID。
    Ip string
    挂载点地址。
    MountPointId string
    挂载点 ID。
    MountPointName string
    挂载点名称。
    PermissionGroup Byteplus.MountPointPermissionGroup
    挂载点绑定的权限组信息。
    PermissionGroupId string
    权限组 ID。
    Status string
    挂载点状态。取值:Running:运行中。Creating:创建中。Updating:更新中。Error:异常。Deleting:删除中。DeleteError:删除异常。Deleted:已删除。Stopped:已停止。
    SubnetId string
    子网 ID。
    SubnetName string
    子网名称。
    UpdatedTime string
    挂载点更新时间。
    VpcId string
    私有网络 ID。
    VpcName string
    私有网络名称。
    Clients []MountPointClientArgs
    CreatedTime string
    挂载点创建时间。
    Domain string
    DNS 地址。
    FileSystemId string
    文件系统 ID。
    Ip string
    挂载点地址。
    MountPointId string
    挂载点 ID。
    MountPointName string
    挂载点名称。
    PermissionGroup MountPointPermissionGroupArgs
    挂载点绑定的权限组信息。
    PermissionGroupId string
    权限组 ID。
    Status string
    挂载点状态。取值:Running:运行中。Creating:创建中。Updating:更新中。Error:异常。Deleting:删除中。DeleteError:删除异常。Deleted:已删除。Stopped:已停止。
    SubnetId string
    子网 ID。
    SubnetName string
    子网名称。
    UpdatedTime string
    挂载点更新时间。
    VpcId string
    私有网络 ID。
    VpcName string
    私有网络名称。
    clients List<MountPointClient>
    createdTime String
    挂载点创建时间。
    domain String
    DNS 地址。
    fileSystemId String
    文件系统 ID。
    ip String
    挂载点地址。
    mountPointId String
    挂载点 ID。
    mountPointName String
    挂载点名称。
    permissionGroup MountPointPermissionGroup
    挂载点绑定的权限组信息。
    permissionGroupId String
    权限组 ID。
    status String
    挂载点状态。取值:Running:运行中。Creating:创建中。Updating:更新中。Error:异常。Deleting:删除中。DeleteError:删除异常。Deleted:已删除。Stopped:已停止。
    subnetId String
    子网 ID。
    subnetName String
    子网名称。
    updatedTime String
    挂载点更新时间。
    vpcId String
    私有网络 ID。
    vpcName String
    私有网络名称。
    clients MountPointClient[]
    createdTime string
    挂载点创建时间。
    domain string
    DNS 地址。
    fileSystemId string
    文件系统 ID。
    ip string
    挂载点地址。
    mountPointId string
    挂载点 ID。
    mountPointName string
    挂载点名称。
    permissionGroup MountPointPermissionGroup
    挂载点绑定的权限组信息。
    permissionGroupId string
    权限组 ID。
    status string
    挂载点状态。取值:Running:运行中。Creating:创建中。Updating:更新中。Error:异常。Deleting:删除中。DeleteError:删除异常。Deleted:已删除。Stopped:已停止。
    subnetId string
    子网 ID。
    subnetName string
    子网名称。
    updatedTime string
    挂载点更新时间。
    vpcId string
    私有网络 ID。
    vpcName string
    私有网络名称。
    clients Sequence[MountPointClientArgs]
    created_time str
    挂载点创建时间。
    domain str
    DNS 地址。
    file_system_id str
    文件系统 ID。
    ip str
    挂载点地址。
    mount_point_id str
    挂载点 ID。
    mount_point_name str
    挂载点名称。
    permission_group MountPointPermissionGroupArgs
    挂载点绑定的权限组信息。
    permission_group_id str
    权限组 ID。
    status str
    挂载点状态。取值:Running:运行中。Creating:创建中。Updating:更新中。Error:异常。Deleting:删除中。DeleteError:删除异常。Deleted:已删除。Stopped:已停止。
    subnet_id str
    子网 ID。
    subnet_name str
    子网名称。
    updated_time str
    挂载点更新时间。
    vpc_id str
    私有网络 ID。
    vpc_name str
    私有网络名称。
    clients List<Property Map>
    createdTime String
    挂载点创建时间。
    domain String
    DNS 地址。
    fileSystemId String
    文件系统 ID。
    ip String
    挂载点地址。
    mountPointId String
    挂载点 ID。
    mountPointName String
    挂载点名称。
    permissionGroup Property Map
    挂载点绑定的权限组信息。
    permissionGroupId String
    权限组 ID。
    status String
    挂载点状态。取值:Running:运行中。Creating:创建中。Updating:更新中。Error:异常。Deleting:删除中。DeleteError:删除异常。Deleted:已删除。Stopped:已停止。
    subnetId String
    子网 ID。
    subnetName String
    子网名称。
    updatedTime String
    挂载点更新时间。
    vpcId String
    私有网络 ID。
    vpcName String
    私有网络名称。

    Supporting Types

    MountPointClient, MountPointClientArgs

    Ip string
    客户端的私有网络 IP 地址。
    ProtocolVersion string
    挂载协议版本号。取值:NFSv3。
    VpcName string
    私有网络名称。
    Ip string
    客户端的私有网络 IP 地址。
    ProtocolVersion string
    挂载协议版本号。取值:NFSv3。
    VpcName string
    私有网络名称。
    ip String
    客户端的私有网络 IP 地址。
    protocolVersion String
    挂载协议版本号。取值:NFSv3。
    vpcName String
    私有网络名称。
    ip string
    客户端的私有网络 IP 地址。
    protocolVersion string
    挂载协议版本号。取值:NFSv3。
    vpcName string
    私有网络名称。
    ip str
    客户端的私有网络 IP 地址。
    protocol_version str
    挂载协议版本号。取值:NFSv3。
    vpc_name str
    私有网络名称。
    ip String
    客户端的私有网络 IP 地址。
    protocolVersion String
    挂载协议版本号。取值:NFSv3。
    vpcName String
    私有网络名称。

    MountPointPermissionGroup, MountPointPermissionGroupArgs

    CreateTime string
    权限组创建时间。
    Description string
    权限组描述信息。
    FileSystemCount int
    关联该权限组的文件系统数量。
    FileSystemType string
    文件系统类型。取值说明如下:Extreme:NAS 极速型。Capacity:NAS 容量型。Cache:NAS 缓存型。
    MountPoints List<Byteplus.MountPointPermissionGroupMountPoint>
    PermissionGroupName string
    权限组名称。
    PermissionRuleCount int
    权限规则数量。
    CreateTime string
    权限组创建时间。
    Description string
    权限组描述信息。
    FileSystemCount int
    关联该权限组的文件系统数量。
    FileSystemType string
    文件系统类型。取值说明如下:Extreme:NAS 极速型。Capacity:NAS 容量型。Cache:NAS 缓存型。
    MountPoints []MountPointPermissionGroupMountPoint
    PermissionGroupName string
    权限组名称。
    PermissionRuleCount int
    权限规则数量。
    createTime String
    权限组创建时间。
    description String
    权限组描述信息。
    fileSystemCount Integer
    关联该权限组的文件系统数量。
    fileSystemType String
    文件系统类型。取值说明如下:Extreme:NAS 极速型。Capacity:NAS 容量型。Cache:NAS 缓存型。
    mountPoints List<MountPointPermissionGroupMountPoint>
    permissionGroupName String
    权限组名称。
    permissionRuleCount Integer
    权限规则数量。
    createTime string
    权限组创建时间。
    description string
    权限组描述信息。
    fileSystemCount number
    关联该权限组的文件系统数量。
    fileSystemType string
    文件系统类型。取值说明如下:Extreme:NAS 极速型。Capacity:NAS 容量型。Cache:NAS 缓存型。
    mountPoints MountPointPermissionGroupMountPoint[]
    permissionGroupName string
    权限组名称。
    permissionRuleCount number
    权限规则数量。
    create_time str
    权限组创建时间。
    description str
    权限组描述信息。
    file_system_count int
    关联该权限组的文件系统数量。
    file_system_type str
    文件系统类型。取值说明如下:Extreme:NAS 极速型。Capacity:NAS 容量型。Cache:NAS 缓存型。
    mount_points Sequence[MountPointPermissionGroupMountPoint]
    permission_group_name str
    权限组名称。
    permission_rule_count int
    权限规则数量。
    createTime String
    权限组创建时间。
    description String
    权限组描述信息。
    fileSystemCount Number
    关联该权限组的文件系统数量。
    fileSystemType String
    文件系统类型。取值说明如下:Extreme:NAS 极速型。Capacity:NAS 容量型。Cache:NAS 缓存型。
    mountPoints List<Property Map>
    permissionGroupName String
    权限组名称。
    permissionRuleCount Number
    权限规则数量。

    MountPointPermissionGroupMountPoint, MountPointPermissionGroupMountPointArgs

    FileSystemId string
    文件系统 ID。
    MountPointId string
    挂载点 ID。
    MountPointName string
    挂载点名称。
    FileSystemId string
    文件系统 ID。
    MountPointId string
    挂载点 ID。
    MountPointName string
    挂载点名称。
    fileSystemId String
    文件系统 ID。
    mountPointId String
    挂载点 ID。
    mountPointName String
    挂载点名称。
    fileSystemId string
    文件系统 ID。
    mountPointId string
    挂载点 ID。
    mountPointName string
    挂载点名称。
    file_system_id str
    文件系统 ID。
    mount_point_id str
    挂载点 ID。
    mount_point_name str
    挂载点名称。
    fileSystemId String
    文件系统 ID。
    mountPointId String
    挂载点 ID。
    mountPointName String
    挂载点名称。

    Import

    $ pulumi import bytepluscc:filenas/mountPoint:MountPoint example "file_system_id|mount_point_id"
    

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

    Package Details

    Repository
    bytepluscc byteplus-sdk/pulumi-bytepluscc
    License
    MPL-2.0
    Notes
    This Pulumi package is based on the bytepluscc Terraform Provider.
    bytepluscc logo
    Viewing docs for bytepluscc v0.0.16
    published on Monday, Mar 9, 2026 by Byteplus
      Try Pulumi Cloud free. Your team will thank you.