published on Monday, Jun 15, 2026 by Volcengine
published on Monday, Jun 15, 2026 by Volcengine
Fileset details
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as volcenginecc from "@volcengine/pulumi-volcenginecc";
const vEPFSFilesetDemo = new volcenginecc.vepfs.Fileset("VEPFSFilesetDemo", {
filesetName: "ccapi-test",
fileSystemId: "vepfs-cnbj81448xxxxx",
filesetPathOnCreate: "/test1/",
});
import pulumi
import pulumi_volcenginecc as volcenginecc
v_epfs_fileset_demo = volcenginecc.vepfs.Fileset("VEPFSFilesetDemo",
fileset_name="ccapi-test",
file_system_id="vepfs-cnbj81448xxxxx",
fileset_path_on_create="/test1/")
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/volcengine/pulumi-volcenginecc/sdk/go/volcenginecc/vepfs"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := vepfs.NewFileset(ctx, "VEPFSFilesetDemo", &vepfs.FilesetArgs{
FilesetName: pulumi.String("ccapi-test"),
FileSystemId: pulumi.String("vepfs-cnbj81448xxxxx"),
FilesetPathOnCreate: pulumi.String("/test1/"),
})
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 vEPFSFilesetDemo = new Volcenginecc.Vepfs.Fileset("VEPFSFilesetDemo", new()
{
FilesetName = "ccapi-test",
FileSystemId = "vepfs-cnbj81448xxxxx",
FilesetPathOnCreate = "/test1/",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.volcengine.volcenginecc.vepfs.Fileset;
import com.volcengine.volcenginecc.vepfs.FilesetArgs;
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 vEPFSFilesetDemo = new Fileset("vEPFSFilesetDemo", FilesetArgs.builder()
.filesetName("ccapi-test")
.fileSystemId("vepfs-cnbj81448xxxxx")
.filesetPathOnCreate("/test1/")
.build());
}
}
resources:
vEPFSFilesetDemo:
type: volcenginecc:vepfs:Fileset
name: VEPFSFilesetDemo
properties:
filesetName: ccapi-test
fileSystemId: vepfs-cnbj81448xxxxx
filesetPathOnCreate: /test1/
Example coming soon!
Create Fileset Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Fileset(name: string, args: FilesetArgs, opts?: CustomResourceOptions);@overload
def Fileset(resource_name: str,
args: FilesetArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Fileset(resource_name: str,
opts: Optional[ResourceOptions] = None,
file_system_id: Optional[str] = None,
fileset_name: Optional[str] = None,
fileset_path_on_create: Optional[str] = None,
bandwidth_qos: Optional[int] = None,
capacity_limit: Optional[int] = None,
file_limit: Optional[int] = None,
iops_qos: Optional[int] = None)func NewFileset(ctx *Context, name string, args FilesetArgs, opts ...ResourceOption) (*Fileset, error)public Fileset(string name, FilesetArgs args, CustomResourceOptions? opts = null)
public Fileset(String name, FilesetArgs args)
public Fileset(String name, FilesetArgs args, CustomResourceOptions options)
type: volcenginecc:vepfs:Fileset
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "volcenginecc_vepfs_fileset" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args FilesetArgs
- 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 FilesetArgs
- 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 FilesetArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FilesetArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args FilesetArgs
- 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 filesetResource = new Volcenginecc.Vepfs.Fileset("filesetResource", new()
{
FileSystemId = "string",
FilesetName = "string",
FilesetPathOnCreate = "string",
BandwidthQos = 0,
CapacityLimit = 0,
FileLimit = 0,
IopsQos = 0,
});
example, err := vepfs.NewFileset(ctx, "filesetResource", &vepfs.FilesetArgs{
FileSystemId: pulumi.String("string"),
FilesetName: pulumi.String("string"),
FilesetPathOnCreate: pulumi.String("string"),
BandwidthQos: pulumi.Int(0),
CapacityLimit: pulumi.Int(0),
FileLimit: pulumi.Int(0),
IopsQos: pulumi.Int(0),
})
resource "volcenginecc_vepfs_fileset" "filesetResource" {
file_system_id = "string"
fileset_name = "string"
fileset_path_on_create = "string"
bandwidth_qos = 0
capacity_limit = 0
file_limit = 0
iops_qos = 0
}
var filesetResource = new Fileset("filesetResource", FilesetArgs.builder()
.fileSystemId("string")
.filesetName("string")
.filesetPathOnCreate("string")
.bandwidthQos(0)
.capacityLimit(0)
.fileLimit(0)
.iopsQos(0)
.build());
fileset_resource = volcenginecc.vepfs.Fileset("filesetResource",
file_system_id="string",
fileset_name="string",
fileset_path_on_create="string",
bandwidth_qos=0,
capacity_limit=0,
file_limit=0,
iops_qos=0)
const filesetResource = new volcenginecc.vepfs.Fileset("filesetResource", {
fileSystemId: "string",
filesetName: "string",
filesetPathOnCreate: "string",
bandwidthQos: 0,
capacityLimit: 0,
fileLimit: 0,
iopsQos: 0,
});
type: volcenginecc:vepfs:Fileset
properties:
bandwidthQos: 0
capacityLimit: 0
fileLimit: 0
fileSystemId: string
filesetName: string
filesetPathOnCreate: string
iopsQos: 0
Fileset 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 Fileset resource accepts the following input properties:
- File
System stringId - File system ID
- Fileset
Name string - Fileset name
- Fileset
Path stringOn Create - Fileset absolute path at creation
- Bandwidth
Qos int - Bandwidth Qos
- Capacity
Limit int - Capacity quota limit (GiB)
- File
Limit int - File or directory quota. A value of
0means no file or directory quota is set - Iops
Qos int - IOPS Qos。
- File
System stringId - File system ID
- Fileset
Name string - Fileset name
- Fileset
Path stringOn Create - Fileset absolute path at creation
- Bandwidth
Qos int - Bandwidth Qos
- Capacity
Limit int - Capacity quota limit (GiB)
- File
Limit int - File or directory quota. A value of
0means no file or directory quota is set - Iops
Qos int - IOPS Qos。
- file_
system_ stringid - File system ID
- fileset_
name string - Fileset name
- fileset_
path_ stringon_ create - Fileset absolute path at creation
- bandwidth_
qos number - Bandwidth Qos
- capacity_
limit number - Capacity quota limit (GiB)
- file_
limit number - File or directory quota. A value of
0means no file or directory quota is set - iops_
qos number - IOPS Qos。
- file
System StringId - File system ID
- fileset
Name String - Fileset name
- fileset
Path StringOn Create - Fileset absolute path at creation
- bandwidth
Qos Integer - Bandwidth Qos
- capacity
Limit Integer - Capacity quota limit (GiB)
- file
Limit Integer - File or directory quota. A value of
0means no file or directory quota is set - iops
Qos Integer - IOPS Qos。
- file
System stringId - File system ID
- fileset
Name string - Fileset name
- fileset
Path stringOn Create - Fileset absolute path at creation
- bandwidth
Qos number - Bandwidth Qos
- capacity
Limit number - Capacity quota limit (GiB)
- file
Limit number - File or directory quota. A value of
0means no file or directory quota is set - iops
Qos number - IOPS Qos。
- file_
system_ strid - File system ID
- fileset_
name str - Fileset name
- fileset_
path_ stron_ create - Fileset absolute path at creation
- bandwidth_
qos int - Bandwidth Qos
- capacity_
limit int - Capacity quota limit (GiB)
- file_
limit int - File or directory quota. A value of
0means no file or directory quota is set - iops_
qos int - IOPS Qos。
- file
System StringId - File system ID
- fileset
Name String - Fileset name
- fileset
Path StringOn Create - Fileset absolute path at creation
- bandwidth
Qos Number - Bandwidth Qos
- capacity
Limit Number - Capacity quota limit (GiB)
- file
Limit Number - File or directory quota. A value of
0means no file or directory quota is set - iops
Qos Number - IOPS Qos。
Outputs
All input properties are implicitly available as output properties. Additionally, the Fileset resource produces the following output properties:
- Capacity
Used int - Used capacity (GiB)
- Create
Time string - Fileset creation time
- File
Used int - Used file count
- Fileset
Id string - Fileset ID。
- Fileset
Path string - Fileset absolute path
- Id string
- The provider-assigned unique ID for this managed resource.
- Max
Inode intNum - Fileset inode limit
- Status string
- Fileset status. The possible values are: -
Creating: Creating -CreateError: Creation failed -Running: Running -Updating: Updating -UpdateError: Update failed -Deleting: Deleting -DeleteError: Deletion failed -Deleted: Deleted -Error: Error
- Capacity
Used int - Used capacity (GiB)
- Create
Time string - Fileset creation time
- File
Used int - Used file count
- Fileset
Id string - Fileset ID。
- Fileset
Path string - Fileset absolute path
- Id string
- The provider-assigned unique ID for this managed resource.
- Max
Inode intNum - Fileset inode limit
- Status string
- Fileset status. The possible values are: -
Creating: Creating -CreateError: Creation failed -Running: Running -Updating: Updating -UpdateError: Update failed -Deleting: Deleting -DeleteError: Deletion failed -Deleted: Deleted -Error: Error
- capacity_
used number - Used capacity (GiB)
- create_
time string - Fileset creation time
- file_
used number - Used file count
- fileset_
id string - Fileset ID。
- fileset_
path string - Fileset absolute path
- id string
- The provider-assigned unique ID for this managed resource.
- max_
inode_ numbernum - Fileset inode limit
- status string
- Fileset status. The possible values are: -
Creating: Creating -CreateError: Creation failed -Running: Running -Updating: Updating -UpdateError: Update failed -Deleting: Deleting -DeleteError: Deletion failed -Deleted: Deleted -Error: Error
- capacity
Used Integer - Used capacity (GiB)
- create
Time String - Fileset creation time
- file
Used Integer - Used file count
- fileset
Id String - Fileset ID。
- fileset
Path String - Fileset absolute path
- id String
- The provider-assigned unique ID for this managed resource.
- max
Inode IntegerNum - Fileset inode limit
- status String
- Fileset status. The possible values are: -
Creating: Creating -CreateError: Creation failed -Running: Running -Updating: Updating -UpdateError: Update failed -Deleting: Deleting -DeleteError: Deletion failed -Deleted: Deleted -Error: Error
- capacity
Used number - Used capacity (GiB)
- create
Time string - Fileset creation time
- file
Used number - Used file count
- fileset
Id string - Fileset ID。
- fileset
Path string - Fileset absolute path
- id string
- The provider-assigned unique ID for this managed resource.
- max
Inode numberNum - Fileset inode limit
- status string
- Fileset status. The possible values are: -
Creating: Creating -CreateError: Creation failed -Running: Running -Updating: Updating -UpdateError: Update failed -Deleting: Deleting -DeleteError: Deletion failed -Deleted: Deleted -Error: Error
- capacity_
used int - Used capacity (GiB)
- create_
time str - Fileset creation time
- file_
used int - Used file count
- fileset_
id str - Fileset ID。
- fileset_
path str - Fileset absolute path
- id str
- The provider-assigned unique ID for this managed resource.
- max_
inode_ intnum - Fileset inode limit
- status str
- Fileset status. The possible values are: -
Creating: Creating -CreateError: Creation failed -Running: Running -Updating: Updating -UpdateError: Update failed -Deleting: Deleting -DeleteError: Deletion failed -Deleted: Deleted -Error: Error
- capacity
Used Number - Used capacity (GiB)
- create
Time String - Fileset creation time
- file
Used Number - Used file count
- fileset
Id String - Fileset ID。
- fileset
Path String - Fileset absolute path
- id String
- The provider-assigned unique ID for this managed resource.
- max
Inode NumberNum - Fileset inode limit
- status String
- Fileset status. The possible values are: -
Creating: Creating -CreateError: Creation failed -Running: Running -Updating: Updating -UpdateError: Update failed -Deleting: Deleting -DeleteError: Deletion failed -Deleted: Deleted -Error: Error
Look up Existing Fileset Resource
Get an existing Fileset 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?: FilesetState, opts?: CustomResourceOptions): Fileset@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
bandwidth_qos: Optional[int] = None,
capacity_limit: Optional[int] = None,
capacity_used: Optional[int] = None,
create_time: Optional[str] = None,
file_limit: Optional[int] = None,
file_system_id: Optional[str] = None,
file_used: Optional[int] = None,
fileset_id: Optional[str] = None,
fileset_name: Optional[str] = None,
fileset_path: Optional[str] = None,
fileset_path_on_create: Optional[str] = None,
iops_qos: Optional[int] = None,
max_inode_num: Optional[int] = None,
status: Optional[str] = None) -> Filesetfunc GetFileset(ctx *Context, name string, id IDInput, state *FilesetState, opts ...ResourceOption) (*Fileset, error)public static Fileset Get(string name, Input<string> id, FilesetState? state, CustomResourceOptions? opts = null)public static Fileset get(String name, Output<String> id, FilesetState state, CustomResourceOptions options)resources: _: type: volcenginecc:vepfs:Fileset get: id: ${id}import {
to = volcenginecc_vepfs_fileset.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Bandwidth
Qos int - Bandwidth Qos
- Capacity
Limit int - Capacity quota limit (GiB)
- Capacity
Used int - Used capacity (GiB)
- Create
Time string - Fileset creation time
- File
Limit int - File or directory quota. A value of
0means no file or directory quota is set - File
System stringId - File system ID
- File
Used int - Used file count
- Fileset
Id string - Fileset ID。
- Fileset
Name string - Fileset name
- Fileset
Path string - Fileset absolute path
- Fileset
Path stringOn Create - Fileset absolute path at creation
- Iops
Qos int - IOPS Qos。
- Max
Inode intNum - Fileset inode limit
- Status string
- Fileset status. The possible values are: -
Creating: Creating -CreateError: Creation failed -Running: Running -Updating: Updating -UpdateError: Update failed -Deleting: Deleting -DeleteError: Deletion failed -Deleted: Deleted -Error: Error
- Bandwidth
Qos int - Bandwidth Qos
- Capacity
Limit int - Capacity quota limit (GiB)
- Capacity
Used int - Used capacity (GiB)
- Create
Time string - Fileset creation time
- File
Limit int - File or directory quota. A value of
0means no file or directory quota is set - File
System stringId - File system ID
- File
Used int - Used file count
- Fileset
Id string - Fileset ID。
- Fileset
Name string - Fileset name
- Fileset
Path string - Fileset absolute path
- Fileset
Path stringOn Create - Fileset absolute path at creation
- Iops
Qos int - IOPS Qos。
- Max
Inode intNum - Fileset inode limit
- Status string
- Fileset status. The possible values are: -
Creating: Creating -CreateError: Creation failed -Running: Running -Updating: Updating -UpdateError: Update failed -Deleting: Deleting -DeleteError: Deletion failed -Deleted: Deleted -Error: Error
- bandwidth_
qos number - Bandwidth Qos
- capacity_
limit number - Capacity quota limit (GiB)
- capacity_
used number - Used capacity (GiB)
- create_
time string - Fileset creation time
- file_
limit number - File or directory quota. A value of
0means no file or directory quota is set - file_
system_ stringid - File system ID
- file_
used number - Used file count
- fileset_
id string - Fileset ID。
- fileset_
name string - Fileset name
- fileset_
path string - Fileset absolute path
- fileset_
path_ stringon_ create - Fileset absolute path at creation
- iops_
qos number - IOPS Qos。
- max_
inode_ numbernum - Fileset inode limit
- status string
- Fileset status. The possible values are: -
Creating: Creating -CreateError: Creation failed -Running: Running -Updating: Updating -UpdateError: Update failed -Deleting: Deleting -DeleteError: Deletion failed -Deleted: Deleted -Error: Error
- bandwidth
Qos Integer - Bandwidth Qos
- capacity
Limit Integer - Capacity quota limit (GiB)
- capacity
Used Integer - Used capacity (GiB)
- create
Time String - Fileset creation time
- file
Limit Integer - File or directory quota. A value of
0means no file or directory quota is set - file
System StringId - File system ID
- file
Used Integer - Used file count
- fileset
Id String - Fileset ID。
- fileset
Name String - Fileset name
- fileset
Path String - Fileset absolute path
- fileset
Path StringOn Create - Fileset absolute path at creation
- iops
Qos Integer - IOPS Qos。
- max
Inode IntegerNum - Fileset inode limit
- status String
- Fileset status. The possible values are: -
Creating: Creating -CreateError: Creation failed -Running: Running -Updating: Updating -UpdateError: Update failed -Deleting: Deleting -DeleteError: Deletion failed -Deleted: Deleted -Error: Error
- bandwidth
Qos number - Bandwidth Qos
- capacity
Limit number - Capacity quota limit (GiB)
- capacity
Used number - Used capacity (GiB)
- create
Time string - Fileset creation time
- file
Limit number - File or directory quota. A value of
0means no file or directory quota is set - file
System stringId - File system ID
- file
Used number - Used file count
- fileset
Id string - Fileset ID。
- fileset
Name string - Fileset name
- fileset
Path string - Fileset absolute path
- fileset
Path stringOn Create - Fileset absolute path at creation
- iops
Qos number - IOPS Qos。
- max
Inode numberNum - Fileset inode limit
- status string
- Fileset status. The possible values are: -
Creating: Creating -CreateError: Creation failed -Running: Running -Updating: Updating -UpdateError: Update failed -Deleting: Deleting -DeleteError: Deletion failed -Deleted: Deleted -Error: Error
- bandwidth_
qos int - Bandwidth Qos
- capacity_
limit int - Capacity quota limit (GiB)
- capacity_
used int - Used capacity (GiB)
- create_
time str - Fileset creation time
- file_
limit int - File or directory quota. A value of
0means no file or directory quota is set - file_
system_ strid - File system ID
- file_
used int - Used file count
- fileset_
id str - Fileset ID。
- fileset_
name str - Fileset name
- fileset_
path str - Fileset absolute path
- fileset_
path_ stron_ create - Fileset absolute path at creation
- iops_
qos int - IOPS Qos。
- max_
inode_ intnum - Fileset inode limit
- status str
- Fileset status. The possible values are: -
Creating: Creating -CreateError: Creation failed -Running: Running -Updating: Updating -UpdateError: Update failed -Deleting: Deleting -DeleteError: Deletion failed -Deleted: Deleted -Error: Error
- bandwidth
Qos Number - Bandwidth Qos
- capacity
Limit Number - Capacity quota limit (GiB)
- capacity
Used Number - Used capacity (GiB)
- create
Time String - Fileset creation time
- file
Limit Number - File or directory quota. A value of
0means no file or directory quota is set - file
System StringId - File system ID
- file
Used Number - Used file count
- fileset
Id String - Fileset ID。
- fileset
Name String - Fileset name
- fileset
Path String - Fileset absolute path
- fileset
Path StringOn Create - Fileset absolute path at creation
- iops
Qos Number - IOPS Qos。
- max
Inode NumberNum - Fileset inode limit
- status String
- Fileset status. The possible values are: -
Creating: Creating -CreateError: Creation failed -Running: Running -Updating: Updating -UpdateError: Update failed -Deleting: Deleting -DeleteError: Deletion failed -Deleted: Deleted -Error: Error
Import
$ pulumi import volcenginecc:vepfs/fileset:Fileset example "file_system_id|fileset_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
volcengineccTerraform Provider.
published on Monday, Jun 15, 2026 by Volcengine