Volcengine v0.0.38 published on Friday, Oct 31, 2025 by Volcengine
Volcengine v0.0.38 published on Friday, Oct 31, 2025 by Volcengine
Use this data source to query detailed information of nas mount points
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as volcengine from "@pulumi/volcengine";
import * as volcengine from "@volcengine/pulumi";
const fooZones = volcengine.nas.getZones({});
const fooVpc = new volcengine.vpc.Vpc("fooVpc", {
vpcName: "acc-test-project1",
cidrBlock: "172.16.0.0/16",
});
const fooSubnet = new volcengine.vpc.Subnet("fooSubnet", {
subnetName: "acc-subnet-test-2",
cidrBlock: "172.16.0.0/24",
zoneId: fooZones.then(fooZones => fooZones.zones?.[0]?.id),
vpcId: fooVpc.id,
});
const fooPermissionGroup = new volcengine.nas.PermissionGroup("fooPermissionGroup", {
permissionGroupName: "acc-test",
description: "acctest",
permissionRules: [
{
cidrIp: "*",
rwMode: "RW",
useMode: "All_squash",
},
{
cidrIp: "192.168.0.0",
rwMode: "RO",
useMode: "All_squash",
},
],
});
const fooFileSystem = new volcengine.nas.FileSystem("fooFileSystem", {
fileSystemName: "acc-test-fs",
description: "acc-test",
zoneId: fooZones.then(fooZones => fooZones.zones?.[0]?.id),
capacity: 103,
projectName: "default",
tags: [{
key: "k1",
value: "v1",
}],
});
const fooMountPoint = new volcengine.nas.MountPoint("fooMountPoint", {
fileSystemId: fooFileSystem.id,
mountPointName: "acc-test",
permissionGroupId: fooPermissionGroup.id,
subnetId: fooSubnet.id,
});
const fooMountPoints = volcengine.nas.getMountPointsOutput({
fileSystemId: fooFileSystem.id,
mountPointId: fooMountPoint.mountPointId,
});
import pulumi
import pulumi_volcengine as volcengine
foo_zones = volcengine.nas.get_zones()
foo_vpc = volcengine.vpc.Vpc("fooVpc",
vpc_name="acc-test-project1",
cidr_block="172.16.0.0/16")
foo_subnet = volcengine.vpc.Subnet("fooSubnet",
subnet_name="acc-subnet-test-2",
cidr_block="172.16.0.0/24",
zone_id=foo_zones.zones[0].id,
vpc_id=foo_vpc.id)
foo_permission_group = volcengine.nas.PermissionGroup("fooPermissionGroup",
permission_group_name="acc-test",
description="acctest",
permission_rules=[
volcengine.nas.PermissionGroupPermissionRuleArgs(
cidr_ip="*",
rw_mode="RW",
use_mode="All_squash",
),
volcengine.nas.PermissionGroupPermissionRuleArgs(
cidr_ip="192.168.0.0",
rw_mode="RO",
use_mode="All_squash",
),
])
foo_file_system = volcengine.nas.FileSystem("fooFileSystem",
file_system_name="acc-test-fs",
description="acc-test",
zone_id=foo_zones.zones[0].id,
capacity=103,
project_name="default",
tags=[volcengine.nas.FileSystemTagArgs(
key="k1",
value="v1",
)])
foo_mount_point = volcengine.nas.MountPoint("fooMountPoint",
file_system_id=foo_file_system.id,
mount_point_name="acc-test",
permission_group_id=foo_permission_group.id,
subnet_id=foo_subnet.id)
foo_mount_points = volcengine.nas.get_mount_points_output(file_system_id=foo_file_system.id,
mount_point_id=foo_mount_point.mount_point_id)
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/nas"
"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/vpc"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
fooZones, err := nas.GetZones(ctx, nil, nil)
if err != nil {
return err
}
fooVpc, err := vpc.NewVpc(ctx, "fooVpc", &vpc.VpcArgs{
VpcName: pulumi.String("acc-test-project1"),
CidrBlock: pulumi.String("172.16.0.0/16"),
})
if err != nil {
return err
}
fooSubnet, err := vpc.NewSubnet(ctx, "fooSubnet", &vpc.SubnetArgs{
SubnetName: pulumi.String("acc-subnet-test-2"),
CidrBlock: pulumi.String("172.16.0.0/24"),
ZoneId: pulumi.String(fooZones.Zones[0].Id),
VpcId: fooVpc.ID(),
})
if err != nil {
return err
}
fooPermissionGroup, err := nas.NewPermissionGroup(ctx, "fooPermissionGroup", &nas.PermissionGroupArgs{
PermissionGroupName: pulumi.String("acc-test"),
Description: pulumi.String("acctest"),
PermissionRules: nas.PermissionGroupPermissionRuleArray{
&nas.PermissionGroupPermissionRuleArgs{
CidrIp: pulumi.String("*"),
RwMode: pulumi.String("RW"),
UseMode: pulumi.String("All_squash"),
},
&nas.PermissionGroupPermissionRuleArgs{
CidrIp: pulumi.String("192.168.0.0"),
RwMode: pulumi.String("RO"),
UseMode: pulumi.String("All_squash"),
},
},
})
if err != nil {
return err
}
fooFileSystem, err := nas.NewFileSystem(ctx, "fooFileSystem", &nas.FileSystemArgs{
FileSystemName: pulumi.String("acc-test-fs"),
Description: pulumi.String("acc-test"),
ZoneId: pulumi.String(fooZones.Zones[0].Id),
Capacity: pulumi.Int(103),
ProjectName: pulumi.String("default"),
Tags: nas.FileSystemTagArray{
&nas.FileSystemTagArgs{
Key: pulumi.String("k1"),
Value: pulumi.String("v1"),
},
},
})
if err != nil {
return err
}
fooMountPoint, err := nas.NewMountPoint(ctx, "fooMountPoint", &nas.MountPointArgs{
FileSystemId: fooFileSystem.ID(),
MountPointName: pulumi.String("acc-test"),
PermissionGroupId: fooPermissionGroup.ID(),
SubnetId: fooSubnet.ID(),
})
if err != nil {
return err
}
_ = nas.GetMountPointsOutput(ctx, nas.GetMountPointsOutputArgs{
FileSystemId: fooFileSystem.ID(),
MountPointId: fooMountPoint.MountPointId,
}, nil)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Volcengine = Pulumi.Volcengine;
return await Deployment.RunAsync(() =>
{
var fooZones = Volcengine.Nas.GetZones.Invoke();
var fooVpc = new Volcengine.Vpc.Vpc("fooVpc", new()
{
VpcName = "acc-test-project1",
CidrBlock = "172.16.0.0/16",
});
var fooSubnet = new Volcengine.Vpc.Subnet("fooSubnet", new()
{
SubnetName = "acc-subnet-test-2",
CidrBlock = "172.16.0.0/24",
ZoneId = fooZones.Apply(getZonesResult => getZonesResult.Zones[0]?.Id),
VpcId = fooVpc.Id,
});
var fooPermissionGroup = new Volcengine.Nas.PermissionGroup("fooPermissionGroup", new()
{
PermissionGroupName = "acc-test",
Description = "acctest",
PermissionRules = new[]
{
new Volcengine.Nas.Inputs.PermissionGroupPermissionRuleArgs
{
CidrIp = "*",
RwMode = "RW",
UseMode = "All_squash",
},
new Volcengine.Nas.Inputs.PermissionGroupPermissionRuleArgs
{
CidrIp = "192.168.0.0",
RwMode = "RO",
UseMode = "All_squash",
},
},
});
var fooFileSystem = new Volcengine.Nas.FileSystem("fooFileSystem", new()
{
FileSystemName = "acc-test-fs",
Description = "acc-test",
ZoneId = fooZones.Apply(getZonesResult => getZonesResult.Zones[0]?.Id),
Capacity = 103,
ProjectName = "default",
Tags = new[]
{
new Volcengine.Nas.Inputs.FileSystemTagArgs
{
Key = "k1",
Value = "v1",
},
},
});
var fooMountPoint = new Volcengine.Nas.MountPoint("fooMountPoint", new()
{
FileSystemId = fooFileSystem.Id,
MountPointName = "acc-test",
PermissionGroupId = fooPermissionGroup.Id,
SubnetId = fooSubnet.Id,
});
var fooMountPoints = Volcengine.Nas.GetMountPoints.Invoke(new()
{
FileSystemId = fooFileSystem.Id,
MountPointId = fooMountPoint.MountPointId,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.volcengine.nas.NasFunctions;
import com.pulumi.volcengine.nas.inputs.GetZonesArgs;
import com.pulumi.volcengine.vpc.Vpc;
import com.pulumi.volcengine.vpc.VpcArgs;
import com.pulumi.volcengine.vpc.Subnet;
import com.pulumi.volcengine.vpc.SubnetArgs;
import com.pulumi.volcengine.nas.PermissionGroup;
import com.pulumi.volcengine.nas.PermissionGroupArgs;
import com.pulumi.volcengine.nas.inputs.PermissionGroupPermissionRuleArgs;
import com.pulumi.volcengine.nas.FileSystem;
import com.pulumi.volcengine.nas.FileSystemArgs;
import com.pulumi.volcengine.nas.inputs.FileSystemTagArgs;
import com.pulumi.volcengine.nas.MountPoint;
import com.pulumi.volcengine.nas.MountPointArgs;
import com.pulumi.volcengine.nas.inputs.GetMountPointsArgs;
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) {
final var fooZones = NasFunctions.getZones();
var fooVpc = new Vpc("fooVpc", VpcArgs.builder()
.vpcName("acc-test-project1")
.cidrBlock("172.16.0.0/16")
.build());
var fooSubnet = new Subnet("fooSubnet", SubnetArgs.builder()
.subnetName("acc-subnet-test-2")
.cidrBlock("172.16.0.0/24")
.zoneId(fooZones.applyValue(getZonesResult -> getZonesResult.zones()[0].id()))
.vpcId(fooVpc.id())
.build());
var fooPermissionGroup = new PermissionGroup("fooPermissionGroup", PermissionGroupArgs.builder()
.permissionGroupName("acc-test")
.description("acctest")
.permissionRules(
PermissionGroupPermissionRuleArgs.builder()
.cidrIp("*")
.rwMode("RW")
.useMode("All_squash")
.build(),
PermissionGroupPermissionRuleArgs.builder()
.cidrIp("192.168.0.0")
.rwMode("RO")
.useMode("All_squash")
.build())
.build());
var fooFileSystem = new FileSystem("fooFileSystem", FileSystemArgs.builder()
.fileSystemName("acc-test-fs")
.description("acc-test")
.zoneId(fooZones.applyValue(getZonesResult -> getZonesResult.zones()[0].id()))
.capacity(103)
.projectName("default")
.tags(FileSystemTagArgs.builder()
.key("k1")
.value("v1")
.build())
.build());
var fooMountPoint = new MountPoint("fooMountPoint", MountPointArgs.builder()
.fileSystemId(fooFileSystem.id())
.mountPointName("acc-test")
.permissionGroupId(fooPermissionGroup.id())
.subnetId(fooSubnet.id())
.build());
final var fooMountPoints = NasFunctions.getMountPoints(GetMountPointsArgs.builder()
.fileSystemId(fooFileSystem.id())
.mountPointId(fooMountPoint.mountPointId())
.build());
}
}
resources:
fooVpc:
type: volcengine:vpc:Vpc
properties:
vpcName: acc-test-project1
cidrBlock: 172.16.0.0/16
fooSubnet:
type: volcengine:vpc:Subnet
properties:
subnetName: acc-subnet-test-2
cidrBlock: 172.16.0.0/24
zoneId: ${fooZones.zones[0].id}
vpcId: ${fooVpc.id}
fooPermissionGroup:
type: volcengine:nas:PermissionGroup
properties:
permissionGroupName: acc-test
description: acctest
permissionRules:
- cidrIp: '*'
rwMode: RW
useMode: All_squash
- cidrIp: 192.168.0.0
rwMode: RO
useMode: All_squash
fooFileSystem:
type: volcengine:nas:FileSystem
properties:
fileSystemName: acc-test-fs
description: acc-test
zoneId: ${fooZones.zones[0].id}
capacity: 103
projectName: default
tags:
- key: k1
value: v1
fooMountPoint:
type: volcengine:nas:MountPoint
properties:
fileSystemId: ${fooFileSystem.id}
mountPointName: acc-test
permissionGroupId: ${fooPermissionGroup.id}
subnetId: ${fooSubnet.id}
variables:
fooZones:
fn::invoke:
Function: volcengine:nas:getZones
Arguments: {}
fooMountPoints:
fn::invoke:
Function: volcengine:nas:getMountPoints
Arguments:
fileSystemId: ${fooFileSystem.id}
mountPointId: ${fooMountPoint.mountPointId}
Using getMountPoints
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getMountPoints(args: GetMountPointsArgs, opts?: InvokeOptions): Promise<GetMountPointsResult>
function getMountPointsOutput(args: GetMountPointsOutputArgs, opts?: InvokeOptions): Output<GetMountPointsResult>def get_mount_points(file_system_id: Optional[str] = None,
mount_point_id: Optional[str] = None,
mount_point_name: Optional[str] = None,
output_file: Optional[str] = None,
vpc_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetMountPointsResult
def get_mount_points_output(file_system_id: Optional[pulumi.Input[str]] = None,
mount_point_id: Optional[pulumi.Input[str]] = None,
mount_point_name: Optional[pulumi.Input[str]] = None,
output_file: Optional[pulumi.Input[str]] = None,
vpc_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetMountPointsResult]func GetMountPoints(ctx *Context, args *GetMountPointsArgs, opts ...InvokeOption) (*GetMountPointsResult, error)
func GetMountPointsOutput(ctx *Context, args *GetMountPointsOutputArgs, opts ...InvokeOption) GetMountPointsResultOutput> Note: This function is named GetMountPoints in the Go SDK.
public static class GetMountPoints
{
public static Task<GetMountPointsResult> InvokeAsync(GetMountPointsArgs args, InvokeOptions? opts = null)
public static Output<GetMountPointsResult> Invoke(GetMountPointsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetMountPointsResult> getMountPoints(GetMountPointsArgs args, InvokeOptions options)
public static Output<GetMountPointsResult> getMountPoints(GetMountPointsArgs args, InvokeOptions options)
fn::invoke:
function: volcengine:nas/getMountPoints:getMountPoints
arguments:
# arguments dictionaryThe following arguments are supported:
- File
System stringId - The id of the file system.
- Mount
Point stringId - The id of the mount point.
- Mount
Point stringName - The name of the mount point.
- Output
File string - File name where to save data source results.
- Vpc
Id string - The id of the vpc.
- File
System stringId - The id of the file system.
- Mount
Point stringId - The id of the mount point.
- Mount
Point stringName - The name of the mount point.
- Output
File string - File name where to save data source results.
- Vpc
Id string - The id of the vpc.
- file
System StringId - The id of the file system.
- mount
Point StringId - The id of the mount point.
- mount
Point StringName - The name of the mount point.
- output
File String - File name where to save data source results.
- vpc
Id String - The id of the vpc.
- file
System stringId - The id of the file system.
- mount
Point stringId - The id of the mount point.
- mount
Point stringName - The name of the mount point.
- output
File string - File name where to save data source results.
- vpc
Id string - The id of the vpc.
- file_
system_ strid - The id of the file system.
- mount_
point_ strid - The id of the mount point.
- mount_
point_ strname - The name of the mount point.
- output_
file str - File name where to save data source results.
- vpc_
id str - The id of the vpc.
- file
System StringId - The id of the file system.
- mount
Point StringId - The id of the mount point.
- mount
Point StringName - The name of the mount point.
- output
File String - File name where to save data source results.
- vpc
Id String - The id of the vpc.
getMountPoints Result
The following output properties are available:
- File
System stringId - The id of the file system.
- Id string
- The provider-assigned unique ID for this managed resource.
- Mount
Points List<GetMount Points Mount Point> - The list of the mount point.
- Total
Count int - The total count of nas mount points query.
- Mount
Point stringId - The id of the mount point.
- Mount
Point stringName - The name of the mount point.
- Output
File string - Vpc
Id string - The id of the vpc.
- File
System stringId - The id of the file system.
- Id string
- The provider-assigned unique ID for this managed resource.
- Mount
Points []GetMount Points Mount Point - The list of the mount point.
- Total
Count int - The total count of nas mount points query.
- Mount
Point stringId - The id of the mount point.
- Mount
Point stringName - The name of the mount point.
- Output
File string - Vpc
Id string - The id of the vpc.
- file
System StringId - The id of the file system.
- id String
- The provider-assigned unique ID for this managed resource.
- mount
Points List<GetMount Points Mount Point> - The list of the mount point.
- total
Count Integer - The total count of nas mount points query.
- mount
Point StringId - The id of the mount point.
- mount
Point StringName - The name of the mount point.
- output
File String - vpc
Id String - The id of the vpc.
- file
System stringId - The id of the file system.
- id string
- The provider-assigned unique ID for this managed resource.
- mount
Points GetMount Points Mount Point[] - The list of the mount point.
- total
Count number - The total count of nas mount points query.
- mount
Point stringId - The id of the mount point.
- mount
Point stringName - The name of the mount point.
- output
File string - vpc
Id string - The id of the vpc.
- file_
system_ strid - The id of the file system.
- id str
- The provider-assigned unique ID for this managed resource.
- mount_
points Sequence[GetMount Points Mount Point] - The list of the mount point.
- total_
count int - The total count of nas mount points query.
- mount_
point_ strid - The id of the mount point.
- mount_
point_ strname - The name of the mount point.
- output_
file str - vpc_
id str - The id of the vpc.
- file
System StringId - The id of the file system.
- id String
- The provider-assigned unique ID for this managed resource.
- mount
Points List<Property Map> - The list of the mount point.
- total
Count Number - The total count of nas mount points query.
- mount
Point StringId - The id of the mount point.
- mount
Point StringName - The name of the mount point.
- output
File String - vpc
Id String - The id of the vpc.
Supporting Types
GetMountPointsMountPoint
- Create
Time string - The creation time of the permission group.
- Domain string
- The dns address.
- Ip string
- The address of the mount point.
- Mount
Point stringId - The id of the mount point.
- Mount
Point stringName - The name of the mount point.
- Permission
Groups List<GetMount Points Mount Point Permission Group> - The struct of the permission group.
- Status string
- The status of the mount point.
- Subnet
Id string - The id of the subnet.
- Subnet
Name string - The name of the subnet.
- Update
Time string - The update time of the mount point.
- Vpc
Id string - The id of the vpc.
- Vpc
Name string - The name of the vpc.
- Create
Time string - The creation time of the permission group.
- Domain string
- The dns address.
- Ip string
- The address of the mount point.
- Mount
Point stringId - The id of the mount point.
- Mount
Point stringName - The name of the mount point.
- Permission
Groups []GetMount Points Mount Point Permission Group - The struct of the permission group.
- Status string
- The status of the mount point.
- Subnet
Id string - The id of the subnet.
- Subnet
Name string - The name of the subnet.
- Update
Time string - The update time of the mount point.
- Vpc
Id string - The id of the vpc.
- Vpc
Name string - The name of the vpc.
- create
Time String - The creation time of the permission group.
- domain String
- The dns address.
- ip String
- The address of the mount point.
- mount
Point StringId - The id of the mount point.
- mount
Point StringName - The name of the mount point.
- permission
Groups List<GetMount Points Mount Point Permission Group> - The struct of the permission group.
- status String
- The status of the mount point.
- subnet
Id String - The id of the subnet.
- subnet
Name String - The name of the subnet.
- update
Time String - The update time of the mount point.
- vpc
Id String - The id of the vpc.
- vpc
Name String - The name of the vpc.
- create
Time string - The creation time of the permission group.
- domain string
- The dns address.
- ip string
- The address of the mount point.
- mount
Point stringId - The id of the mount point.
- mount
Point stringName - The name of the mount point.
- permission
Groups GetMount Points Mount Point Permission Group[] - The struct of the permission group.
- status string
- The status of the mount point.
- subnet
Id string - The id of the subnet.
- subnet
Name string - The name of the subnet.
- update
Time string - The update time of the mount point.
- vpc
Id string - The id of the vpc.
- vpc
Name string - The name of the vpc.
- create_
time str - The creation time of the permission group.
- domain str
- The dns address.
- ip str
- The address of the mount point.
- mount_
point_ strid - The id of the mount point.
- mount_
point_ strname - The name of the mount point.
- permission_
groups Sequence[GetMount Points Mount Point Permission Group] - The struct of the permission group.
- status str
- The status of the mount point.
- subnet_
id str - The id of the subnet.
- subnet_
name str - The name of the subnet.
- update_
time str - The update time of the mount point.
- vpc_
id str - The id of the vpc.
- vpc_
name str - The name of the vpc.
- create
Time String - The creation time of the permission group.
- domain String
- The dns address.
- ip String
- The address of the mount point.
- mount
Point StringId - The id of the mount point.
- mount
Point StringName - The name of the mount point.
- permission
Groups List<Property Map> - The struct of the permission group.
- status String
- The status of the mount point.
- subnet
Id String - The id of the subnet.
- subnet
Name String - The name of the subnet.
- update
Time String - The update time of the mount point.
- vpc
Id String - The id of the vpc.
- vpc
Name String - The name of the vpc.
GetMountPointsMountPointPermissionGroup
- Create
Time string - The creation time of the permission group.
- Description string
- The description of the permission group.
- File
System intCount - The number of the file system.
- File
System stringType - The file system type of the permission group.
- Mount
Points List<GetMount Points Mount Point Permission Group Mount Point> - The list of the mount point.
- Permission
Group stringId - The id of the permission group.
- Permission
Group stringName - The name of the permission group.
- Permission
Rule intCount - The number of the permission rule.
- Create
Time string - The creation time of the permission group.
- Description string
- The description of the permission group.
- File
System intCount - The number of the file system.
- File
System stringType - The file system type of the permission group.
- Mount
Points []GetMount Points Mount Point Permission Group Mount Point - The list of the mount point.
- Permission
Group stringId - The id of the permission group.
- Permission
Group stringName - The name of the permission group.
- Permission
Rule intCount - The number of the permission rule.
- create
Time String - The creation time of the permission group.
- description String
- The description of the permission group.
- file
System IntegerCount - The number of the file system.
- file
System StringType - The file system type of the permission group.
- mount
Points List<GetMount Points Mount Point Permission Group Mount Point> - The list of the mount point.
- permission
Group StringId - The id of the permission group.
- permission
Group StringName - The name of the permission group.
- permission
Rule IntegerCount - The number of the permission rule.
- create
Time string - The creation time of the permission group.
- description string
- The description of the permission group.
- file
System numberCount - The number of the file system.
- file
System stringType - The file system type of the permission group.
- mount
Points GetMount Points Mount Point Permission Group Mount Point[] - The list of the mount point.
- permission
Group stringId - The id of the permission group.
- permission
Group stringName - The name of the permission group.
- permission
Rule numberCount - The number of the permission rule.
- create_
time str - The creation time of the permission group.
- description str
- The description of the permission group.
- file_
system_ intcount - The number of the file system.
- file_
system_ strtype - The file system type of the permission group.
- mount_
points Sequence[GetMount Points Mount Point Permission Group Mount Point] - The list of the mount point.
- permission_
group_ strid - The id of the permission group.
- permission_
group_ strname - The name of the permission group.
- permission_
rule_ intcount - The number of the permission rule.
- create
Time String - The creation time of the permission group.
- description String
- The description of the permission group.
- file
System NumberCount - The number of the file system.
- file
System StringType - The file system type of the permission group.
- mount
Points List<Property Map> - The list of the mount point.
- permission
Group StringId - The id of the permission group.
- permission
Group StringName - The name of the permission group.
- permission
Rule NumberCount - The number of the permission rule.
GetMountPointsMountPointPermissionGroupMountPoint
- File
System stringId - The id of the file system.
- Mount
Point stringId - The id of the mount point.
- Mount
Point stringName - The name of the mount point.
- File
System stringId - The id of the file system.
- Mount
Point stringId - The id of the mount point.
- Mount
Point stringName - The name of the mount point.
- file
System StringId - The id of the file system.
- mount
Point StringId - The id of the mount point.
- mount
Point StringName - The name of the mount point.
- file
System stringId - The id of the file system.
- mount
Point stringId - The id of the mount point.
- mount
Point stringName - The name of the mount point.
- file_
system_ strid - The id of the file system.
- mount_
point_ strid - The id of the mount point.
- mount_
point_ strname - The name of the mount point.
- file
System StringId - The id of the file system.
- mount
Point StringId - The id of the mount point.
- mount
Point StringName - The name of the mount point.
Package Details
- Repository
- volcengine volcengine/pulumi-volcengine
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
volcengineTerraform Provider.
Volcengine v0.0.38 published on Friday, Oct 31, 2025 by Volcengine
