published on Monday, Mar 9, 2026 by Byteplus
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:
- File
System stringId - 文件系统 ID。
- Mount
Point stringName - 挂载点名称。
- Permission
Group stringId - 权限组 ID。
- Subnet
Id string - 子网 ID。
- Vpc
Id string - 私有网络 ID。
- File
System stringId - 文件系统 ID。
- Mount
Point stringName - 挂载点名称。
- Permission
Group stringId - 权限组 ID。
- Subnet
Id string - 子网 ID。
- Vpc
Id string - 私有网络 ID。
- file
System StringId - 文件系统 ID。
- mount
Point StringName - 挂载点名称。
- permission
Group StringId - 权限组 ID。
- subnet
Id String - 子网 ID。
- vpc
Id String - 私有网络 ID。
- file
System stringId - 文件系统 ID。
- mount
Point stringName - 挂载点名称。
- permission
Group stringId - 权限组 ID。
- subnet
Id string - 子网 ID。
- vpc
Id string - 私有网络 ID。
- file_
system_ strid - 文件系统 ID。
- mount_
point_ strname - 挂载点名称。
- permission_
group_ strid - 权限组 ID。
- subnet_
id str - 子网 ID。
- vpc_
id str - 私有网络 ID。
- file
System StringId - 文件系统 ID。
- mount
Point StringName - 挂载点名称。
- permission
Group StringId - 权限组 ID。
- subnet
Id String - 子网 ID。
- vpc
Id String - 私有网络 ID。
Outputs
All input properties are implicitly available as output properties. Additionally, the MountPoint resource produces the following output properties:
- Clients
List<Byteplus.
Mount Point Client> - Created
Time string - 挂载点创建时间。
- Domain string
- DNS 地址。
- Id string
- The provider-assigned unique ID for this managed resource.
- Ip string
- 挂载点地址。
- Mount
Point stringId - 挂载点 ID。
- Permission
Group Byteplus.Mount Point Permission Group - 挂载点绑定的权限组信息。
- Status string
- 挂载点状态。取值:Running:运行中。Creating:创建中。Updating:更新中。Error:异常。Deleting:删除中。DeleteError:删除异常。Deleted:已删除。Stopped:已停止。
- Subnet
Name string - 子网名称。
- Updated
Time string - 挂载点更新时间。
- Vpc
Name string - 私有网络名称。
- Clients
[]Mount
Point Client - Created
Time string - 挂载点创建时间。
- Domain string
- DNS 地址。
- Id string
- The provider-assigned unique ID for this managed resource.
- Ip string
- 挂载点地址。
- Mount
Point stringId - 挂载点 ID。
- Permission
Group MountPoint Permission Group - 挂载点绑定的权限组信息。
- Status string
- 挂载点状态。取值:Running:运行中。Creating:创建中。Updating:更新中。Error:异常。Deleting:删除中。DeleteError:删除异常。Deleted:已删除。Stopped:已停止。
- Subnet
Name string - 子网名称。
- Updated
Time string - 挂载点更新时间。
- Vpc
Name string - 私有网络名称。
- clients
List<Mount
Point Client> - created
Time String - 挂载点创建时间。
- domain String
- DNS 地址。
- id String
- The provider-assigned unique ID for this managed resource.
- ip String
- 挂载点地址。
- mount
Point StringId - 挂载点 ID。
- permission
Group MountPoint Permission Group - 挂载点绑定的权限组信息。
- status String
- 挂载点状态。取值:Running:运行中。Creating:创建中。Updating:更新中。Error:异常。Deleting:删除中。DeleteError:删除异常。Deleted:已删除。Stopped:已停止。
- subnet
Name String - 子网名称。
- updated
Time String - 挂载点更新时间。
- vpc
Name String - 私有网络名称。
- clients
Mount
Point Client[] - created
Time string - 挂载点创建时间。
- domain string
- DNS 地址。
- id string
- The provider-assigned unique ID for this managed resource.
- ip string
- 挂载点地址。
- mount
Point stringId - 挂载点 ID。
- permission
Group MountPoint Permission Group - 挂载点绑定的权限组信息。
- status string
- 挂载点状态。取值:Running:运行中。Creating:创建中。Updating:更新中。Error:异常。Deleting:删除中。DeleteError:删除异常。Deleted:已删除。Stopped:已停止。
- subnet
Name string - 子网名称。
- updated
Time string - 挂载点更新时间。
- vpc
Name string - 私有网络名称。
- clients
Sequence[Mount
Point Client] - created_
time str - 挂载点创建时间。
- domain str
- DNS 地址。
- id str
- The provider-assigned unique ID for this managed resource.
- ip str
- 挂载点地址。
- mount_
point_ strid - 挂载点 ID。
- permission_
group MountPoint Permission Group - 挂载点绑定的权限组信息。
- status str
- 挂载点状态。取值:Running:运行中。Creating:创建中。Updating:更新中。Error:异常。Deleting:删除中。DeleteError:删除异常。Deleted:已删除。Stopped:已停止。
- subnet_
name str - 子网名称。
- updated_
time str - 挂载点更新时间。
- vpc_
name str - 私有网络名称。
- clients List<Property Map>
- created
Time String - 挂载点创建时间。
- domain String
- DNS 地址。
- id String
- The provider-assigned unique ID for this managed resource.
- ip String
- 挂载点地址。
- mount
Point StringId - 挂载点 ID。
- permission
Group Property Map - 挂载点绑定的权限组信息。
- status String
- 挂载点状态。取值:Running:运行中。Creating:创建中。Updating:更新中。Error:异常。Deleting:删除中。DeleteError:删除异常。Deleted:已删除。Stopped:已停止。
- subnet
Name String - 子网名称。
- updated
Time String - 挂载点更新时间。
- vpc
Name 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) -> MountPointfunc 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.
- Clients
List<Byteplus.
Mount Point Client> - Created
Time string - 挂载点创建时间。
- Domain string
- DNS 地址。
- File
System stringId - 文件系统 ID。
- Ip string
- 挂载点地址。
- Mount
Point stringId - 挂载点 ID。
- Mount
Point stringName - 挂载点名称。
- Permission
Group Byteplus.Mount Point Permission Group - 挂载点绑定的权限组信息。
- Permission
Group stringId - 权限组 ID。
- Status string
- 挂载点状态。取值:Running:运行中。Creating:创建中。Updating:更新中。Error:异常。Deleting:删除中。DeleteError:删除异常。Deleted:已删除。Stopped:已停止。
- Subnet
Id string - 子网 ID。
- Subnet
Name string - 子网名称。
- Updated
Time string - 挂载点更新时间。
- Vpc
Id string - 私有网络 ID。
- Vpc
Name string - 私有网络名称。
- Clients
[]Mount
Point Client Args - Created
Time string - 挂载点创建时间。
- Domain string
- DNS 地址。
- File
System stringId - 文件系统 ID。
- Ip string
- 挂载点地址。
- Mount
Point stringId - 挂载点 ID。
- Mount
Point stringName - 挂载点名称。
- Permission
Group MountPoint Permission Group Args - 挂载点绑定的权限组信息。
- Permission
Group stringId - 权限组 ID。
- Status string
- 挂载点状态。取值:Running:运行中。Creating:创建中。Updating:更新中。Error:异常。Deleting:删除中。DeleteError:删除异常。Deleted:已删除。Stopped:已停止。
- Subnet
Id string - 子网 ID。
- Subnet
Name string - 子网名称。
- Updated
Time string - 挂载点更新时间。
- Vpc
Id string - 私有网络 ID。
- Vpc
Name string - 私有网络名称。
- clients
List<Mount
Point Client> - created
Time String - 挂载点创建时间。
- domain String
- DNS 地址。
- file
System StringId - 文件系统 ID。
- ip String
- 挂载点地址。
- mount
Point StringId - 挂载点 ID。
- mount
Point StringName - 挂载点名称。
- permission
Group MountPoint Permission Group - 挂载点绑定的权限组信息。
- permission
Group StringId - 权限组 ID。
- status String
- 挂载点状态。取值:Running:运行中。Creating:创建中。Updating:更新中。Error:异常。Deleting:删除中。DeleteError:删除异常。Deleted:已删除。Stopped:已停止。
- subnet
Id String - 子网 ID。
- subnet
Name String - 子网名称。
- updated
Time String - 挂载点更新时间。
- vpc
Id String - 私有网络 ID。
- vpc
Name String - 私有网络名称。
- clients
Mount
Point Client[] - created
Time string - 挂载点创建时间。
- domain string
- DNS 地址。
- file
System stringId - 文件系统 ID。
- ip string
- 挂载点地址。
- mount
Point stringId - 挂载点 ID。
- mount
Point stringName - 挂载点名称。
- permission
Group MountPoint Permission Group - 挂载点绑定的权限组信息。
- permission
Group stringId - 权限组 ID。
- status string
- 挂载点状态。取值:Running:运行中。Creating:创建中。Updating:更新中。Error:异常。Deleting:删除中。DeleteError:删除异常。Deleted:已删除。Stopped:已停止。
- subnet
Id string - 子网 ID。
- subnet
Name string - 子网名称。
- updated
Time string - 挂载点更新时间。
- vpc
Id string - 私有网络 ID。
- vpc
Name string - 私有网络名称。
- clients
Sequence[Mount
Point Client Args] - created_
time str - 挂载点创建时间。
- domain str
- DNS 地址。
- file_
system_ strid - 文件系统 ID。
- ip str
- 挂载点地址。
- mount_
point_ strid - 挂载点 ID。
- mount_
point_ strname - 挂载点名称。
- permission_
group MountPoint Permission Group Args - 挂载点绑定的权限组信息。
- permission_
group_ strid - 权限组 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>
- created
Time String - 挂载点创建时间。
- domain String
- DNS 地址。
- file
System StringId - 文件系统 ID。
- ip String
- 挂载点地址。
- mount
Point StringId - 挂载点 ID。
- mount
Point StringName - 挂载点名称。
- permission
Group Property Map - 挂载点绑定的权限组信息。
- permission
Group StringId - 权限组 ID。
- status String
- 挂载点状态。取值:Running:运行中。Creating:创建中。Updating:更新中。Error:异常。Deleting:删除中。DeleteError:删除异常。Deleted:已删除。Stopped:已停止。
- subnet
Id String - 子网 ID。
- subnet
Name String - 子网名称。
- updated
Time String - 挂载点更新时间。
- vpc
Id String - 私有网络 ID。
- vpc
Name String - 私有网络名称。
Supporting Types
MountPointClient, MountPointClientArgs
- Ip string
- 客户端的私有网络 IP 地址。
- Protocol
Version string - 挂载协议版本号。取值:NFSv3。
- Vpc
Name string - 私有网络名称。
- Ip string
- 客户端的私有网络 IP 地址。
- Protocol
Version string - 挂载协议版本号。取值:NFSv3。
- Vpc
Name string - 私有网络名称。
- ip String
- 客户端的私有网络 IP 地址。
- protocol
Version String - 挂载协议版本号。取值:NFSv3。
- vpc
Name String - 私有网络名称。
- ip string
- 客户端的私有网络 IP 地址。
- protocol
Version string - 挂载协议版本号。取值:NFSv3。
- vpc
Name string - 私有网络名称。
- ip str
- 客户端的私有网络 IP 地址。
- protocol_
version str - 挂载协议版本号。取值:NFSv3。
- vpc_
name str - 私有网络名称。
- ip String
- 客户端的私有网络 IP 地址。
- protocol
Version String - 挂载协议版本号。取值:NFSv3。
- vpc
Name String - 私有网络名称。
MountPointPermissionGroup, MountPointPermissionGroupArgs
- Create
Time string - 权限组创建时间。
- Description string
- 权限组描述信息。
- File
System intCount - 关联该权限组的文件系统数量。
- File
System stringType - 文件系统类型。取值说明如下:Extreme:NAS 极速型。Capacity:NAS 容量型。Cache:NAS 缓存型。
- Mount
Points List<Byteplus.Mount Point Permission Group Mount Point> - Permission
Group stringName - 权限组名称。
- Permission
Rule intCount - 权限规则数量。
- Create
Time string - 权限组创建时间。
- Description string
- 权限组描述信息。
- File
System intCount - 关联该权限组的文件系统数量。
- File
System stringType - 文件系统类型。取值说明如下:Extreme:NAS 极速型。Capacity:NAS 容量型。Cache:NAS 缓存型。
- Mount
Points []MountPoint Permission Group Mount Point - Permission
Group stringName - 权限组名称。
- Permission
Rule intCount - 权限规则数量。
- create
Time String - 权限组创建时间。
- description String
- 权限组描述信息。
- file
System IntegerCount - 关联该权限组的文件系统数量。
- file
System StringType - 文件系统类型。取值说明如下:Extreme:NAS 极速型。Capacity:NAS 容量型。Cache:NAS 缓存型。
- mount
Points List<MountPoint Permission Group Mount Point> - permission
Group StringName - 权限组名称。
- permission
Rule IntegerCount - 权限规则数量。
- create
Time string - 权限组创建时间。
- description string
- 权限组描述信息。
- file
System numberCount - 关联该权限组的文件系统数量。
- file
System stringType - 文件系统类型。取值说明如下:Extreme:NAS 极速型。Capacity:NAS 容量型。Cache:NAS 缓存型。
- mount
Points MountPoint Permission Group Mount Point[] - permission
Group stringName - 权限组名称。
- permission
Rule numberCount - 权限规则数量。
- create_
time str - 权限组创建时间。
- description str
- 权限组描述信息。
- file_
system_ intcount - 关联该权限组的文件系统数量。
- file_
system_ strtype - 文件系统类型。取值说明如下:Extreme:NAS 极速型。Capacity:NAS 容量型。Cache:NAS 缓存型。
- mount_
points Sequence[MountPoint Permission Group Mount Point] - permission_
group_ strname - 权限组名称。
- permission_
rule_ intcount - 权限规则数量。
- create
Time String - 权限组创建时间。
- description String
- 权限组描述信息。
- file
System NumberCount - 关联该权限组的文件系统数量。
- file
System StringType - 文件系统类型。取值说明如下:Extreme:NAS 极速型。Capacity:NAS 容量型。Cache:NAS 缓存型。
- mount
Points List<Property Map> - permission
Group StringName - 权限组名称。
- permission
Rule NumberCount - 权限规则数量。
MountPointPermissionGroupMountPoint, MountPointPermissionGroupMountPointArgs
- File
System stringId - 文件系统 ID。
- Mount
Point stringId - 挂载点 ID。
- Mount
Point stringName - 挂载点名称。
- File
System stringId - 文件系统 ID。
- Mount
Point stringId - 挂载点 ID。
- Mount
Point stringName - 挂载点名称。
- file
System StringId - 文件系统 ID。
- mount
Point StringId - 挂载点 ID。
- mount
Point StringName - 挂载点名称。
- file
System stringId - 文件系统 ID。
- mount
Point stringId - 挂载点 ID。
- mount
Point stringName - 挂载点名称。
- file_
system_ strid - 文件系统 ID。
- mount_
point_ strid - 挂载点 ID。
- mount_
point_ strname - 挂载点名称。
- file
System StringId - 文件系统 ID。
- mount
Point StringId - 挂载点 ID。
- mount
Point StringName - 挂载点名称。
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
byteplusccTerraform Provider.
published on Monday, Mar 9, 2026 by Byteplus
