volcengine.vepfs.Fileset
Explore with Pulumi AI
Provides a resource to manage vepfs fileset
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as volcengine from "@volcengine/pulumi";
const fooVpc = new volcengine.vpc.Vpc("fooVpc", {
    vpcName: "acc-test-vpc",
    cidrBlock: "172.16.0.0/16",
});
const fooSubnet = new volcengine.vpc.Subnet("fooSubnet", {
    subnetName: "acc-test-subnet",
    cidrBlock: "172.16.0.0/24",
    zoneId: "cn-beijing-a",
    vpcId: fooVpc.id,
});
const fooFileSystem = new volcengine.vepfs.FileSystem("fooFileSystem", {
    fileSystemName: "acc-test-file-system",
    subnetId: fooSubnet.id,
    storeType: "Advance_100",
    description: "tf-test",
    capacity: 12,
    project: "default",
    enableRestripe: false,
    tags: [{
        key: "k1",
        value: "v1",
    }],
});
const fooFileset = new volcengine.vepfs.Fileset("fooFileset", {
    fileSystemId: fooFileSystem.id,
    filesetName: "acc-test-fileset",
    filesetPath: "/tf-test/",
    maxIops: 100,
    maxBandwidth: 10,
    fileLimit: 20,
    capacityLimit: 30,
});
import pulumi
import pulumi_volcengine as volcengine
foo_vpc = volcengine.vpc.Vpc("fooVpc",
    vpc_name="acc-test-vpc",
    cidr_block="172.16.0.0/16")
foo_subnet = volcengine.vpc.Subnet("fooSubnet",
    subnet_name="acc-test-subnet",
    cidr_block="172.16.0.0/24",
    zone_id="cn-beijing-a",
    vpc_id=foo_vpc.id)
foo_file_system = volcengine.vepfs.FileSystem("fooFileSystem",
    file_system_name="acc-test-file-system",
    subnet_id=foo_subnet.id,
    store_type="Advance_100",
    description="tf-test",
    capacity=12,
    project="default",
    enable_restripe=False,
    tags=[volcengine.vepfs.FileSystemTagArgs(
        key="k1",
        value="v1",
    )])
foo_fileset = volcengine.vepfs.Fileset("fooFileset",
    file_system_id=foo_file_system.id,
    fileset_name="acc-test-fileset",
    fileset_path="/tf-test/",
    max_iops=100,
    max_bandwidth=10,
    file_limit=20,
    capacity_limit=30)
package main
import (
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/vepfs"
	"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/vpc"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		fooVpc, err := vpc.NewVpc(ctx, "fooVpc", &vpc.VpcArgs{
			VpcName:   pulumi.String("acc-test-vpc"),
			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-test-subnet"),
			CidrBlock:  pulumi.String("172.16.0.0/24"),
			ZoneId:     pulumi.String("cn-beijing-a"),
			VpcId:      fooVpc.ID(),
		})
		if err != nil {
			return err
		}
		fooFileSystem, err := vepfs.NewFileSystem(ctx, "fooFileSystem", &vepfs.FileSystemArgs{
			FileSystemName: pulumi.String("acc-test-file-system"),
			SubnetId:       fooSubnet.ID(),
			StoreType:      pulumi.String("Advance_100"),
			Description:    pulumi.String("tf-test"),
			Capacity:       pulumi.Int(12),
			Project:        pulumi.String("default"),
			EnableRestripe: pulumi.Bool(false),
			Tags: vepfs.FileSystemTagArray{
				&vepfs.FileSystemTagArgs{
					Key:   pulumi.String("k1"),
					Value: pulumi.String("v1"),
				},
			},
		})
		if err != nil {
			return err
		}
		_, err = vepfs.NewFileset(ctx, "fooFileset", &vepfs.FilesetArgs{
			FileSystemId:  fooFileSystem.ID(),
			FilesetName:   pulumi.String("acc-test-fileset"),
			FilesetPath:   pulumi.String("/tf-test/"),
			MaxIops:       pulumi.Int(100),
			MaxBandwidth:  pulumi.Int(10),
			FileLimit:     pulumi.Int(20),
			CapacityLimit: pulumi.Int(30),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Volcengine = Pulumi.Volcengine;
return await Deployment.RunAsync(() => 
{
    var fooVpc = new Volcengine.Vpc.Vpc("fooVpc", new()
    {
        VpcName = "acc-test-vpc",
        CidrBlock = "172.16.0.0/16",
    });
    var fooSubnet = new Volcengine.Vpc.Subnet("fooSubnet", new()
    {
        SubnetName = "acc-test-subnet",
        CidrBlock = "172.16.0.0/24",
        ZoneId = "cn-beijing-a",
        VpcId = fooVpc.Id,
    });
    var fooFileSystem = new Volcengine.Vepfs.FileSystem("fooFileSystem", new()
    {
        FileSystemName = "acc-test-file-system",
        SubnetId = fooSubnet.Id,
        StoreType = "Advance_100",
        Description = "tf-test",
        Capacity = 12,
        Project = "default",
        EnableRestripe = false,
        Tags = new[]
        {
            new Volcengine.Vepfs.Inputs.FileSystemTagArgs
            {
                Key = "k1",
                Value = "v1",
            },
        },
    });
    var fooFileset = new Volcengine.Vepfs.Fileset("fooFileset", new()
    {
        FileSystemId = fooFileSystem.Id,
        FilesetName = "acc-test-fileset",
        FilesetPath = "/tf-test/",
        MaxIops = 100,
        MaxBandwidth = 10,
        FileLimit = 20,
        CapacityLimit = 30,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
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.vepfs.FileSystem;
import com.pulumi.volcengine.vepfs.FileSystemArgs;
import com.pulumi.volcengine.vepfs.inputs.FileSystemTagArgs;
import com.pulumi.volcengine.vepfs.Fileset;
import com.pulumi.volcengine.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 fooVpc = new Vpc("fooVpc", VpcArgs.builder()        
            .vpcName("acc-test-vpc")
            .cidrBlock("172.16.0.0/16")
            .build());
        var fooSubnet = new Subnet("fooSubnet", SubnetArgs.builder()        
            .subnetName("acc-test-subnet")
            .cidrBlock("172.16.0.0/24")
            .zoneId("cn-beijing-a")
            .vpcId(fooVpc.id())
            .build());
        var fooFileSystem = new FileSystem("fooFileSystem", FileSystemArgs.builder()        
            .fileSystemName("acc-test-file-system")
            .subnetId(fooSubnet.id())
            .storeType("Advance_100")
            .description("tf-test")
            .capacity(12)
            .project("default")
            .enableRestripe(false)
            .tags(FileSystemTagArgs.builder()
                .key("k1")
                .value("v1")
                .build())
            .build());
        var fooFileset = new Fileset("fooFileset", FilesetArgs.builder()        
            .fileSystemId(fooFileSystem.id())
            .filesetName("acc-test-fileset")
            .filesetPath("/tf-test/")
            .maxIops(100)
            .maxBandwidth(10)
            .fileLimit(20)
            .capacityLimit(30)
            .build());
    }
}
resources:
  fooVpc:
    type: volcengine:vpc:Vpc
    properties:
      vpcName: acc-test-vpc
      cidrBlock: 172.16.0.0/16
  fooSubnet:
    type: volcengine:vpc:Subnet
    properties:
      subnetName: acc-test-subnet
      cidrBlock: 172.16.0.0/24
      zoneId: cn-beijing-a
      vpcId: ${fooVpc.id}
  fooFileSystem:
    type: volcengine:vepfs:FileSystem
    properties:
      fileSystemName: acc-test-file-system
      subnetId: ${fooSubnet.id}
      storeType: Advance_100
      description: tf-test
      capacity: 12
      project: default
      enableRestripe: false
      tags:
        - key: k1
          value: v1
  fooFileset:
    type: volcengine:vepfs:Fileset
    properties:
      fileSystemId: ${fooFileSystem.id}
      filesetName: acc-test-fileset
      filesetPath: /tf-test/
      maxIops: 100
      maxBandwidth: 10
      fileLimit: 20
      capacityLimit: 30
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: Optional[str] = None,
            capacity_limit: Optional[int] = None,
            file_limit: Optional[int] = None,
            max_bandwidth: Optional[int] = None,
            max_iops: 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: volcengine:vepfs:Fileset
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 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 Volcengine.Vepfs.Fileset("filesetResource", new()
{
    FileSystemId = "string",
    FilesetName = "string",
    FilesetPath = "string",
    CapacityLimit = 0,
    FileLimit = 0,
    MaxBandwidth = 0,
    MaxIops = 0,
});
example, err := vepfs.NewFileset(ctx, "filesetResource", &vepfs.FilesetArgs{
	FileSystemId:  pulumi.String("string"),
	FilesetName:   pulumi.String("string"),
	FilesetPath:   pulumi.String("string"),
	CapacityLimit: pulumi.Int(0),
	FileLimit:     pulumi.Int(0),
	MaxBandwidth:  pulumi.Int(0),
	MaxIops:       pulumi.Int(0),
})
var filesetResource = new Fileset("filesetResource", FilesetArgs.builder()
    .fileSystemId("string")
    .filesetName("string")
    .filesetPath("string")
    .capacityLimit(0)
    .fileLimit(0)
    .maxBandwidth(0)
    .maxIops(0)
    .build());
fileset_resource = volcengine.vepfs.Fileset("filesetResource",
    file_system_id="string",
    fileset_name="string",
    fileset_path="string",
    capacity_limit=0,
    file_limit=0,
    max_bandwidth=0,
    max_iops=0)
const filesetResource = new volcengine.vepfs.Fileset("filesetResource", {
    fileSystemId: "string",
    filesetName: "string",
    filesetPath: "string",
    capacityLimit: 0,
    fileLimit: 0,
    maxBandwidth: 0,
    maxIops: 0,
});
type: volcengine:vepfs:Fileset
properties:
    capacityLimit: 0
    fileLimit: 0
    fileSystemId: string
    filesetName: string
    filesetPath: string
    maxBandwidth: 0
    maxIops: 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:
- FileSystem stringId 
- The id of the vepfs file system.
- FilesetName string
- The name of the vepfs fileset.
- FilesetPath string
- The path of the vepfs fileset.
- CapacityLimit int
- The capacity limit of the vepfs fileset. Unit: Gib.
- FileLimit int
- The file number limit of the vepfs fileset.
- MaxBandwidth int
- The max bandwidth qos limit of the vepfs fileset. Unit: MB/s.
- MaxIops int
- The max IOPS qos limit of the vepfs fileset.
- FileSystem stringId 
- The id of the vepfs file system.
- FilesetName string
- The name of the vepfs fileset.
- FilesetPath string
- The path of the vepfs fileset.
- CapacityLimit int
- The capacity limit of the vepfs fileset. Unit: Gib.
- FileLimit int
- The file number limit of the vepfs fileset.
- MaxBandwidth int
- The max bandwidth qos limit of the vepfs fileset. Unit: MB/s.
- MaxIops int
- The max IOPS qos limit of the vepfs fileset.
- fileSystem StringId 
- The id of the vepfs file system.
- filesetName String
- The name of the vepfs fileset.
- filesetPath String
- The path of the vepfs fileset.
- capacityLimit Integer
- The capacity limit of the vepfs fileset. Unit: Gib.
- fileLimit Integer
- The file number limit of the vepfs fileset.
- maxBandwidth Integer
- The max bandwidth qos limit of the vepfs fileset. Unit: MB/s.
- maxIops Integer
- The max IOPS qos limit of the vepfs fileset.
- fileSystem stringId 
- The id of the vepfs file system.
- filesetName string
- The name of the vepfs fileset.
- filesetPath string
- The path of the vepfs fileset.
- capacityLimit number
- The capacity limit of the vepfs fileset. Unit: Gib.
- fileLimit number
- The file number limit of the vepfs fileset.
- maxBandwidth number
- The max bandwidth qos limit of the vepfs fileset. Unit: MB/s.
- maxIops number
- The max IOPS qos limit of the vepfs fileset.
- file_system_ strid 
- The id of the vepfs file system.
- fileset_name str
- The name of the vepfs fileset.
- fileset_path str
- The path of the vepfs fileset.
- capacity_limit int
- The capacity limit of the vepfs fileset. Unit: Gib.
- file_limit int
- The file number limit of the vepfs fileset.
- max_bandwidth int
- The max bandwidth qos limit of the vepfs fileset. Unit: MB/s.
- max_iops int
- The max IOPS qos limit of the vepfs fileset.
- fileSystem StringId 
- The id of the vepfs file system.
- filesetName String
- The name of the vepfs fileset.
- filesetPath String
- The path of the vepfs fileset.
- capacityLimit Number
- The capacity limit of the vepfs fileset. Unit: Gib.
- fileLimit Number
- The file number limit of the vepfs fileset.
- maxBandwidth Number
- The max bandwidth qos limit of the vepfs fileset. Unit: MB/s.
- maxIops Number
- The max IOPS qos limit of the vepfs fileset.
Outputs
All input properties are implicitly available as output properties. Additionally, the Fileset resource produces the following output properties:
- CapacityUsed int
- The used capacity of the vepfs fileset. Unit: GiB.
- CreateTime string
- The create time of the vepfs fileset.
- FileUsed int
- The used file number of the vepfs fileset.
- Id string
- The provider-assigned unique ID for this managed resource.
- MaxInode intNum 
- The max number of inode in the vepfs fileset.
- Status string
- The status of the vepfs fileset.
- CapacityUsed int
- The used capacity of the vepfs fileset. Unit: GiB.
- CreateTime string
- The create time of the vepfs fileset.
- FileUsed int
- The used file number of the vepfs fileset.
- Id string
- The provider-assigned unique ID for this managed resource.
- MaxInode intNum 
- The max number of inode in the vepfs fileset.
- Status string
- The status of the vepfs fileset.
- capacityUsed Integer
- The used capacity of the vepfs fileset. Unit: GiB.
- createTime String
- The create time of the vepfs fileset.
- fileUsed Integer
- The used file number of the vepfs fileset.
- id String
- The provider-assigned unique ID for this managed resource.
- maxInode IntegerNum 
- The max number of inode in the vepfs fileset.
- status String
- The status of the vepfs fileset.
- capacityUsed number
- The used capacity of the vepfs fileset. Unit: GiB.
- createTime string
- The create time of the vepfs fileset.
- fileUsed number
- The used file number of the vepfs fileset.
- id string
- The provider-assigned unique ID for this managed resource.
- maxInode numberNum 
- The max number of inode in the vepfs fileset.
- status string
- The status of the vepfs fileset.
- capacity_used int
- The used capacity of the vepfs fileset. Unit: GiB.
- create_time str
- The create time of the vepfs fileset.
- file_used int
- The used file number of the vepfs fileset.
- id str
- The provider-assigned unique ID for this managed resource.
- max_inode_ intnum 
- The max number of inode in the vepfs fileset.
- status str
- The status of the vepfs fileset.
- capacityUsed Number
- The used capacity of the vepfs fileset. Unit: GiB.
- createTime String
- The create time of the vepfs fileset.
- fileUsed Number
- The used file number of the vepfs fileset.
- id String
- The provider-assigned unique ID for this managed resource.
- maxInode NumberNum 
- The max number of inode in the vepfs fileset.
- status String
- The status of the vepfs fileset.
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,
        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_name: Optional[str] = None,
        fileset_path: Optional[str] = None,
        max_bandwidth: Optional[int] = None,
        max_inode_num: Optional[int] = None,
        max_iops: 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: volcengine:vepfs:Fileset    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.
- CapacityLimit int
- The capacity limit of the vepfs fileset. Unit: Gib.
- CapacityUsed int
- The used capacity of the vepfs fileset. Unit: GiB.
- CreateTime string
- The create time of the vepfs fileset.
- FileLimit int
- The file number limit of the vepfs fileset.
- FileSystem stringId 
- The id of the vepfs file system.
- FileUsed int
- The used file number of the vepfs fileset.
- FilesetName string
- The name of the vepfs fileset.
- FilesetPath string
- The path of the vepfs fileset.
- MaxBandwidth int
- The max bandwidth qos limit of the vepfs fileset. Unit: MB/s.
- MaxInode intNum 
- The max number of inode in the vepfs fileset.
- MaxIops int
- The max IOPS qos limit of the vepfs fileset.
- Status string
- The status of the vepfs fileset.
- CapacityLimit int
- The capacity limit of the vepfs fileset. Unit: Gib.
- CapacityUsed int
- The used capacity of the vepfs fileset. Unit: GiB.
- CreateTime string
- The create time of the vepfs fileset.
- FileLimit int
- The file number limit of the vepfs fileset.
- FileSystem stringId 
- The id of the vepfs file system.
- FileUsed int
- The used file number of the vepfs fileset.
- FilesetName string
- The name of the vepfs fileset.
- FilesetPath string
- The path of the vepfs fileset.
- MaxBandwidth int
- The max bandwidth qos limit of the vepfs fileset. Unit: MB/s.
- MaxInode intNum 
- The max number of inode in the vepfs fileset.
- MaxIops int
- The max IOPS qos limit of the vepfs fileset.
- Status string
- The status of the vepfs fileset.
- capacityLimit Integer
- The capacity limit of the vepfs fileset. Unit: Gib.
- capacityUsed Integer
- The used capacity of the vepfs fileset. Unit: GiB.
- createTime String
- The create time of the vepfs fileset.
- fileLimit Integer
- The file number limit of the vepfs fileset.
- fileSystem StringId 
- The id of the vepfs file system.
- fileUsed Integer
- The used file number of the vepfs fileset.
- filesetName String
- The name of the vepfs fileset.
- filesetPath String
- The path of the vepfs fileset.
- maxBandwidth Integer
- The max bandwidth qos limit of the vepfs fileset. Unit: MB/s.
- maxInode IntegerNum 
- The max number of inode in the vepfs fileset.
- maxIops Integer
- The max IOPS qos limit of the vepfs fileset.
- status String
- The status of the vepfs fileset.
- capacityLimit number
- The capacity limit of the vepfs fileset. Unit: Gib.
- capacityUsed number
- The used capacity of the vepfs fileset. Unit: GiB.
- createTime string
- The create time of the vepfs fileset.
- fileLimit number
- The file number limit of the vepfs fileset.
- fileSystem stringId 
- The id of the vepfs file system.
- fileUsed number
- The used file number of the vepfs fileset.
- filesetName string
- The name of the vepfs fileset.
- filesetPath string
- The path of the vepfs fileset.
- maxBandwidth number
- The max bandwidth qos limit of the vepfs fileset. Unit: MB/s.
- maxInode numberNum 
- The max number of inode in the vepfs fileset.
- maxIops number
- The max IOPS qos limit of the vepfs fileset.
- status string
- The status of the vepfs fileset.
- capacity_limit int
- The capacity limit of the vepfs fileset. Unit: Gib.
- capacity_used int
- The used capacity of the vepfs fileset. Unit: GiB.
- create_time str
- The create time of the vepfs fileset.
- file_limit int
- The file number limit of the vepfs fileset.
- file_system_ strid 
- The id of the vepfs file system.
- file_used int
- The used file number of the vepfs fileset.
- fileset_name str
- The name of the vepfs fileset.
- fileset_path str
- The path of the vepfs fileset.
- max_bandwidth int
- The max bandwidth qos limit of the vepfs fileset. Unit: MB/s.
- max_inode_ intnum 
- The max number of inode in the vepfs fileset.
- max_iops int
- The max IOPS qos limit of the vepfs fileset.
- status str
- The status of the vepfs fileset.
- capacityLimit Number
- The capacity limit of the vepfs fileset. Unit: Gib.
- capacityUsed Number
- The used capacity of the vepfs fileset. Unit: GiB.
- createTime String
- The create time of the vepfs fileset.
- fileLimit Number
- The file number limit of the vepfs fileset.
- fileSystem StringId 
- The id of the vepfs file system.
- fileUsed Number
- The used file number of the vepfs fileset.
- filesetName String
- The name of the vepfs fileset.
- filesetPath String
- The path of the vepfs fileset.
- maxBandwidth Number
- The max bandwidth qos limit of the vepfs fileset. Unit: MB/s.
- maxInode NumberNum 
- The max number of inode in the vepfs fileset.
- maxIops Number
- The max IOPS qos limit of the vepfs fileset.
- status String
- The status of the vepfs fileset.
Import
VepfsFileset can be imported using the file_system_id:fileset_id, e.g.
$ pulumi import volcengine:vepfs/fileset:Fileset default file_system_id:fileset_id
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- volcengine volcengine/pulumi-volcengine
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the volcengineTerraform Provider.