volcengine.vepfs.FileSystem
Explore with Pulumi AI
Provides a resource to manage vepfs file system
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",
    }],
});
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",
    )])
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
		}
		_, 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
		}
		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",
            },
        },
    });
});
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 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());
    }
}
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
Create FileSystem Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new FileSystem(name: string, args: FileSystemArgs, opts?: CustomResourceOptions);@overload
def FileSystem(resource_name: str,
               args: FileSystemArgs,
               opts: Optional[ResourceOptions] = None)
@overload
def FileSystem(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               capacity: Optional[int] = None,
               file_system_name: Optional[str] = None,
               store_type: Optional[str] = None,
               subnet_id: Optional[str] = None,
               description: Optional[str] = None,
               enable_restripe: Optional[bool] = None,
               project: Optional[str] = None,
               tags: Optional[Sequence[FileSystemTagArgs]] = None)func NewFileSystem(ctx *Context, name string, args FileSystemArgs, opts ...ResourceOption) (*FileSystem, error)public FileSystem(string name, FileSystemArgs args, CustomResourceOptions? opts = null)
public FileSystem(String name, FileSystemArgs args)
public FileSystem(String name, FileSystemArgs args, CustomResourceOptions options)
type: volcengine:vepfs:FileSystem
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 FileSystemArgs
- 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 FileSystemArgs
- 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 FileSystemArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FileSystemArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args FileSystemArgs
- 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 examplefileSystemResourceResourceFromVepfsfileSystem = new Volcengine.Vepfs.FileSystem("examplefileSystemResourceResourceFromVepfsfileSystem", new()
{
    Capacity = 0,
    FileSystemName = "string",
    StoreType = "string",
    SubnetId = "string",
    Description = "string",
    EnableRestripe = false,
    Project = "string",
    Tags = new[]
    {
        new Volcengine.Vepfs.Inputs.FileSystemTagArgs
        {
            Key = "string",
            Value = "string",
        },
    },
});
example, err := vepfs.NewFileSystem(ctx, "examplefileSystemResourceResourceFromVepfsfileSystem", &vepfs.FileSystemArgs{
	Capacity:       pulumi.Int(0),
	FileSystemName: pulumi.String("string"),
	StoreType:      pulumi.String("string"),
	SubnetId:       pulumi.String("string"),
	Description:    pulumi.String("string"),
	EnableRestripe: pulumi.Bool(false),
	Project:        pulumi.String("string"),
	Tags: vepfs.FileSystemTagArray{
		&vepfs.FileSystemTagArgs{
			Key:   pulumi.String("string"),
			Value: pulumi.String("string"),
		},
	},
})
var examplefileSystemResourceResourceFromVepfsfileSystem = new FileSystem("examplefileSystemResourceResourceFromVepfsfileSystem", FileSystemArgs.builder()
    .capacity(0)
    .fileSystemName("string")
    .storeType("string")
    .subnetId("string")
    .description("string")
    .enableRestripe(false)
    .project("string")
    .tags(FileSystemTagArgs.builder()
        .key("string")
        .value("string")
        .build())
    .build());
examplefile_system_resource_resource_from_vepfsfile_system = volcengine.vepfs.FileSystem("examplefileSystemResourceResourceFromVepfsfileSystem",
    capacity=0,
    file_system_name="string",
    store_type="string",
    subnet_id="string",
    description="string",
    enable_restripe=False,
    project="string",
    tags=[{
        "key": "string",
        "value": "string",
    }])
const examplefileSystemResourceResourceFromVepfsfileSystem = new volcengine.vepfs.FileSystem("examplefileSystemResourceResourceFromVepfsfileSystem", {
    capacity: 0,
    fileSystemName: "string",
    storeType: "string",
    subnetId: "string",
    description: "string",
    enableRestripe: false,
    project: "string",
    tags: [{
        key: "string",
        value: "string",
    }],
});
type: volcengine:vepfs:FileSystem
properties:
    capacity: 0
    description: string
    enableRestripe: false
    fileSystemName: string
    project: string
    storeType: string
    subnetId: string
    tags:
        - key: string
          value: string
FileSystem 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 FileSystem resource accepts the following input properties:
- Capacity int
- The capacity of the vepfs file system.
- FileSystem stringName 
- The name of the vepfs file system.
- StoreType string
- The store type of the vepfs file system. Valid values: Advance_100,Performance,Intelligent_Computing.
- SubnetId string
- The subnet id of the vepfs file system.
- Description string
- The description info of the vepfs file system.
- EnableRestripe bool
- Whether to enable data balance after capacity expansion. This filed is valid only when expanding capacity.
- Project string
- The project of the vepfs file system.
- 
List<FileSystem Tag> 
- Tags.
- Capacity int
- The capacity of the vepfs file system.
- FileSystem stringName 
- The name of the vepfs file system.
- StoreType string
- The store type of the vepfs file system. Valid values: Advance_100,Performance,Intelligent_Computing.
- SubnetId string
- The subnet id of the vepfs file system.
- Description string
- The description info of the vepfs file system.
- EnableRestripe bool
- Whether to enable data balance after capacity expansion. This filed is valid only when expanding capacity.
- Project string
- The project of the vepfs file system.
- 
[]FileSystem Tag Args 
- Tags.
- capacity Integer
- The capacity of the vepfs file system.
- fileSystem StringName 
- The name of the vepfs file system.
- storeType String
- The store type of the vepfs file system. Valid values: Advance_100,Performance,Intelligent_Computing.
- subnetId String
- The subnet id of the vepfs file system.
- description String
- The description info of the vepfs file system.
- enableRestripe Boolean
- Whether to enable data balance after capacity expansion. This filed is valid only when expanding capacity.
- project String
- The project of the vepfs file system.
- 
List<FileSystem Tag> 
- Tags.
- capacity number
- The capacity of the vepfs file system.
- fileSystem stringName 
- The name of the vepfs file system.
- storeType string
- The store type of the vepfs file system. Valid values: Advance_100,Performance,Intelligent_Computing.
- subnetId string
- The subnet id of the vepfs file system.
- description string
- The description info of the vepfs file system.
- enableRestripe boolean
- Whether to enable data balance after capacity expansion. This filed is valid only when expanding capacity.
- project string
- The project of the vepfs file system.
- 
FileSystem Tag[] 
- Tags.
- capacity int
- The capacity of the vepfs file system.
- file_system_ strname 
- The name of the vepfs file system.
- store_type str
- The store type of the vepfs file system. Valid values: Advance_100,Performance,Intelligent_Computing.
- subnet_id str
- The subnet id of the vepfs file system.
- description str
- The description info of the vepfs file system.
- enable_restripe bool
- Whether to enable data balance after capacity expansion. This filed is valid only when expanding capacity.
- project str
- The project of the vepfs file system.
- 
Sequence[FileSystem Tag Args] 
- Tags.
- capacity Number
- The capacity of the vepfs file system.
- fileSystem StringName 
- The name of the vepfs file system.
- storeType String
- The store type of the vepfs file system. Valid values: Advance_100,Performance,Intelligent_Computing.
- subnetId String
- The subnet id of the vepfs file system.
- description String
- The description info of the vepfs file system.
- enableRestripe Boolean
- Whether to enable data balance after capacity expansion. This filed is valid only when expanding capacity.
- project String
- The project of the vepfs file system.
- List<Property Map>
- Tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the FileSystem resource produces the following output properties:
- AccountId string
- The id of the account.
- Bandwidth int
- The bandwidth info of the vepfs file system.
- ChargeStatus string
- The charge status of the vepfs file system.
- ChargeType string
- The charge type of the vepfs file system.
- CreateTime string
- The create time of the vepfs file system.
- ExpireTime string
- The expire time of the vepfs file system.
- FileSystem stringType 
- The type of the vepfs file system.
- FreeTime string
- The free time of the vepfs file system.
- Id string
- The provider-assigned unique ID for this managed resource.
- LastModify stringTime 
- The last modify time of the vepfs file system.
- ProtocolType string
- The protocol type of the vepfs file system.
- RegionId string
- The id of the region.
- Status string
- The status of the vepfs file system.
- StopService stringTime 
- The stop service time of the vepfs file system.
- StoreType stringCn 
- The store type cn name of the vepfs file system.
- Version string
- The version info of the vepfs file system.
- ZoneId string
- The id of the zone.
- ZoneName string
- The name of the zone.
- AccountId string
- The id of the account.
- Bandwidth int
- The bandwidth info of the vepfs file system.
- ChargeStatus string
- The charge status of the vepfs file system.
- ChargeType string
- The charge type of the vepfs file system.
- CreateTime string
- The create time of the vepfs file system.
- ExpireTime string
- The expire time of the vepfs file system.
- FileSystem stringType 
- The type of the vepfs file system.
- FreeTime string
- The free time of the vepfs file system.
- Id string
- The provider-assigned unique ID for this managed resource.
- LastModify stringTime 
- The last modify time of the vepfs file system.
- ProtocolType string
- The protocol type of the vepfs file system.
- RegionId string
- The id of the region.
- Status string
- The status of the vepfs file system.
- StopService stringTime 
- The stop service time of the vepfs file system.
- StoreType stringCn 
- The store type cn name of the vepfs file system.
- Version string
- The version info of the vepfs file system.
- ZoneId string
- The id of the zone.
- ZoneName string
- The name of the zone.
- accountId String
- The id of the account.
- bandwidth Integer
- The bandwidth info of the vepfs file system.
- chargeStatus String
- The charge status of the vepfs file system.
- chargeType String
- The charge type of the vepfs file system.
- createTime String
- The create time of the vepfs file system.
- expireTime String
- The expire time of the vepfs file system.
- fileSystem StringType 
- The type of the vepfs file system.
- freeTime String
- The free time of the vepfs file system.
- id String
- The provider-assigned unique ID for this managed resource.
- lastModify StringTime 
- The last modify time of the vepfs file system.
- protocolType String
- The protocol type of the vepfs file system.
- regionId String
- The id of the region.
- status String
- The status of the vepfs file system.
- stopService StringTime 
- The stop service time of the vepfs file system.
- storeType StringCn 
- The store type cn name of the vepfs file system.
- version String
- The version info of the vepfs file system.
- zoneId String
- The id of the zone.
- zoneName String
- The name of the zone.
- accountId string
- The id of the account.
- bandwidth number
- The bandwidth info of the vepfs file system.
- chargeStatus string
- The charge status of the vepfs file system.
- chargeType string
- The charge type of the vepfs file system.
- createTime string
- The create time of the vepfs file system.
- expireTime string
- The expire time of the vepfs file system.
- fileSystem stringType 
- The type of the vepfs file system.
- freeTime string
- The free time of the vepfs file system.
- id string
- The provider-assigned unique ID for this managed resource.
- lastModify stringTime 
- The last modify time of the vepfs file system.
- protocolType string
- The protocol type of the vepfs file system.
- regionId string
- The id of the region.
- status string
- The status of the vepfs file system.
- stopService stringTime 
- The stop service time of the vepfs file system.
- storeType stringCn 
- The store type cn name of the vepfs file system.
- version string
- The version info of the vepfs file system.
- zoneId string
- The id of the zone.
- zoneName string
- The name of the zone.
- account_id str
- The id of the account.
- bandwidth int
- The bandwidth info of the vepfs file system.
- charge_status str
- The charge status of the vepfs file system.
- charge_type str
- The charge type of the vepfs file system.
- create_time str
- The create time of the vepfs file system.
- expire_time str
- The expire time of the vepfs file system.
- file_system_ strtype 
- The type of the vepfs file system.
- free_time str
- The free time of the vepfs file system.
- id str
- The provider-assigned unique ID for this managed resource.
- last_modify_ strtime 
- The last modify time of the vepfs file system.
- protocol_type str
- The protocol type of the vepfs file system.
- region_id str
- The id of the region.
- status str
- The status of the vepfs file system.
- stop_service_ strtime 
- The stop service time of the vepfs file system.
- store_type_ strcn 
- The store type cn name of the vepfs file system.
- version str
- The version info of the vepfs file system.
- zone_id str
- The id of the zone.
- zone_name str
- The name of the zone.
- accountId String
- The id of the account.
- bandwidth Number
- The bandwidth info of the vepfs file system.
- chargeStatus String
- The charge status of the vepfs file system.
- chargeType String
- The charge type of the vepfs file system.
- createTime String
- The create time of the vepfs file system.
- expireTime String
- The expire time of the vepfs file system.
- fileSystem StringType 
- The type of the vepfs file system.
- freeTime String
- The free time of the vepfs file system.
- id String
- The provider-assigned unique ID for this managed resource.
- lastModify StringTime 
- The last modify time of the vepfs file system.
- protocolType String
- The protocol type of the vepfs file system.
- regionId String
- The id of the region.
- status String
- The status of the vepfs file system.
- stopService StringTime 
- The stop service time of the vepfs file system.
- storeType StringCn 
- The store type cn name of the vepfs file system.
- version String
- The version info of the vepfs file system.
- zoneId String
- The id of the zone.
- zoneName String
- The name of the zone.
Look up Existing FileSystem Resource
Get an existing FileSystem 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?: FileSystemState, opts?: CustomResourceOptions): FileSystem@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        account_id: Optional[str] = None,
        bandwidth: Optional[int] = None,
        capacity: Optional[int] = None,
        charge_status: Optional[str] = None,
        charge_type: Optional[str] = None,
        create_time: Optional[str] = None,
        description: Optional[str] = None,
        enable_restripe: Optional[bool] = None,
        expire_time: Optional[str] = None,
        file_system_name: Optional[str] = None,
        file_system_type: Optional[str] = None,
        free_time: Optional[str] = None,
        last_modify_time: Optional[str] = None,
        project: Optional[str] = None,
        protocol_type: Optional[str] = None,
        region_id: Optional[str] = None,
        status: Optional[str] = None,
        stop_service_time: Optional[str] = None,
        store_type: Optional[str] = None,
        store_type_cn: Optional[str] = None,
        subnet_id: Optional[str] = None,
        tags: Optional[Sequence[FileSystemTagArgs]] = None,
        version: Optional[str] = None,
        zone_id: Optional[str] = None,
        zone_name: Optional[str] = None) -> FileSystemfunc GetFileSystem(ctx *Context, name string, id IDInput, state *FileSystemState, opts ...ResourceOption) (*FileSystem, error)public static FileSystem Get(string name, Input<string> id, FileSystemState? state, CustomResourceOptions? opts = null)public static FileSystem get(String name, Output<String> id, FileSystemState state, CustomResourceOptions options)resources:  _:    type: volcengine:vepfs:FileSystem    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.
- AccountId string
- The id of the account.
- Bandwidth int
- The bandwidth info of the vepfs file system.
- Capacity int
- The capacity of the vepfs file system.
- ChargeStatus string
- The charge status of the vepfs file system.
- ChargeType string
- The charge type of the vepfs file system.
- CreateTime string
- The create time of the vepfs file system.
- Description string
- The description info of the vepfs file system.
- EnableRestripe bool
- Whether to enable data balance after capacity expansion. This filed is valid only when expanding capacity.
- ExpireTime string
- The expire time of the vepfs file system.
- FileSystem stringName 
- The name of the vepfs file system.
- FileSystem stringType 
- The type of the vepfs file system.
- FreeTime string
- The free time of the vepfs file system.
- LastModify stringTime 
- The last modify time of the vepfs file system.
- Project string
- The project of the vepfs file system.
- ProtocolType string
- The protocol type of the vepfs file system.
- RegionId string
- The id of the region.
- Status string
- The status of the vepfs file system.
- StopService stringTime 
- The stop service time of the vepfs file system.
- StoreType string
- The store type of the vepfs file system. Valid values: Advance_100,Performance,Intelligent_Computing.
- StoreType stringCn 
- The store type cn name of the vepfs file system.
- SubnetId string
- The subnet id of the vepfs file system.
- 
List<FileSystem Tag> 
- Tags.
- Version string
- The version info of the vepfs file system.
- ZoneId string
- The id of the zone.
- ZoneName string
- The name of the zone.
- AccountId string
- The id of the account.
- Bandwidth int
- The bandwidth info of the vepfs file system.
- Capacity int
- The capacity of the vepfs file system.
- ChargeStatus string
- The charge status of the vepfs file system.
- ChargeType string
- The charge type of the vepfs file system.
- CreateTime string
- The create time of the vepfs file system.
- Description string
- The description info of the vepfs file system.
- EnableRestripe bool
- Whether to enable data balance after capacity expansion. This filed is valid only when expanding capacity.
- ExpireTime string
- The expire time of the vepfs file system.
- FileSystem stringName 
- The name of the vepfs file system.
- FileSystem stringType 
- The type of the vepfs file system.
- FreeTime string
- The free time of the vepfs file system.
- LastModify stringTime 
- The last modify time of the vepfs file system.
- Project string
- The project of the vepfs file system.
- ProtocolType string
- The protocol type of the vepfs file system.
- RegionId string
- The id of the region.
- Status string
- The status of the vepfs file system.
- StopService stringTime 
- The stop service time of the vepfs file system.
- StoreType string
- The store type of the vepfs file system. Valid values: Advance_100,Performance,Intelligent_Computing.
- StoreType stringCn 
- The store type cn name of the vepfs file system.
- SubnetId string
- The subnet id of the vepfs file system.
- 
[]FileSystem Tag Args 
- Tags.
- Version string
- The version info of the vepfs file system.
- ZoneId string
- The id of the zone.
- ZoneName string
- The name of the zone.
- accountId String
- The id of the account.
- bandwidth Integer
- The bandwidth info of the vepfs file system.
- capacity Integer
- The capacity of the vepfs file system.
- chargeStatus String
- The charge status of the vepfs file system.
- chargeType String
- The charge type of the vepfs file system.
- createTime String
- The create time of the vepfs file system.
- description String
- The description info of the vepfs file system.
- enableRestripe Boolean
- Whether to enable data balance after capacity expansion. This filed is valid only when expanding capacity.
- expireTime String
- The expire time of the vepfs file system.
- fileSystem StringName 
- The name of the vepfs file system.
- fileSystem StringType 
- The type of the vepfs file system.
- freeTime String
- The free time of the vepfs file system.
- lastModify StringTime 
- The last modify time of the vepfs file system.
- project String
- The project of the vepfs file system.
- protocolType String
- The protocol type of the vepfs file system.
- regionId String
- The id of the region.
- status String
- The status of the vepfs file system.
- stopService StringTime 
- The stop service time of the vepfs file system.
- storeType String
- The store type of the vepfs file system. Valid values: Advance_100,Performance,Intelligent_Computing.
- storeType StringCn 
- The store type cn name of the vepfs file system.
- subnetId String
- The subnet id of the vepfs file system.
- 
List<FileSystem Tag> 
- Tags.
- version String
- The version info of the vepfs file system.
- zoneId String
- The id of the zone.
- zoneName String
- The name of the zone.
- accountId string
- The id of the account.
- bandwidth number
- The bandwidth info of the vepfs file system.
- capacity number
- The capacity of the vepfs file system.
- chargeStatus string
- The charge status of the vepfs file system.
- chargeType string
- The charge type of the vepfs file system.
- createTime string
- The create time of the vepfs file system.
- description string
- The description info of the vepfs file system.
- enableRestripe boolean
- Whether to enable data balance after capacity expansion. This filed is valid only when expanding capacity.
- expireTime string
- The expire time of the vepfs file system.
- fileSystem stringName 
- The name of the vepfs file system.
- fileSystem stringType 
- The type of the vepfs file system.
- freeTime string
- The free time of the vepfs file system.
- lastModify stringTime 
- The last modify time of the vepfs file system.
- project string
- The project of the vepfs file system.
- protocolType string
- The protocol type of the vepfs file system.
- regionId string
- The id of the region.
- status string
- The status of the vepfs file system.
- stopService stringTime 
- The stop service time of the vepfs file system.
- storeType string
- The store type of the vepfs file system. Valid values: Advance_100,Performance,Intelligent_Computing.
- storeType stringCn 
- The store type cn name of the vepfs file system.
- subnetId string
- The subnet id of the vepfs file system.
- 
FileSystem Tag[] 
- Tags.
- version string
- The version info of the vepfs file system.
- zoneId string
- The id of the zone.
- zoneName string
- The name of the zone.
- account_id str
- The id of the account.
- bandwidth int
- The bandwidth info of the vepfs file system.
- capacity int
- The capacity of the vepfs file system.
- charge_status str
- The charge status of the vepfs file system.
- charge_type str
- The charge type of the vepfs file system.
- create_time str
- The create time of the vepfs file system.
- description str
- The description info of the vepfs file system.
- enable_restripe bool
- Whether to enable data balance after capacity expansion. This filed is valid only when expanding capacity.
- expire_time str
- The expire time of the vepfs file system.
- file_system_ strname 
- The name of the vepfs file system.
- file_system_ strtype 
- The type of the vepfs file system.
- free_time str
- The free time of the vepfs file system.
- last_modify_ strtime 
- The last modify time of the vepfs file system.
- project str
- The project of the vepfs file system.
- protocol_type str
- The protocol type of the vepfs file system.
- region_id str
- The id of the region.
- status str
- The status of the vepfs file system.
- stop_service_ strtime 
- The stop service time of the vepfs file system.
- store_type str
- The store type of the vepfs file system. Valid values: Advance_100,Performance,Intelligent_Computing.
- store_type_ strcn 
- The store type cn name of the vepfs file system.
- subnet_id str
- The subnet id of the vepfs file system.
- 
Sequence[FileSystem Tag Args] 
- Tags.
- version str
- The version info of the vepfs file system.
- zone_id str
- The id of the zone.
- zone_name str
- The name of the zone.
- accountId String
- The id of the account.
- bandwidth Number
- The bandwidth info of the vepfs file system.
- capacity Number
- The capacity of the vepfs file system.
- chargeStatus String
- The charge status of the vepfs file system.
- chargeType String
- The charge type of the vepfs file system.
- createTime String
- The create time of the vepfs file system.
- description String
- The description info of the vepfs file system.
- enableRestripe Boolean
- Whether to enable data balance after capacity expansion. This filed is valid only when expanding capacity.
- expireTime String
- The expire time of the vepfs file system.
- fileSystem StringName 
- The name of the vepfs file system.
- fileSystem StringType 
- The type of the vepfs file system.
- freeTime String
- The free time of the vepfs file system.
- lastModify StringTime 
- The last modify time of the vepfs file system.
- project String
- The project of the vepfs file system.
- protocolType String
- The protocol type of the vepfs file system.
- regionId String
- The id of the region.
- status String
- The status of the vepfs file system.
- stopService StringTime 
- The stop service time of the vepfs file system.
- storeType String
- The store type of the vepfs file system. Valid values: Advance_100,Performance,Intelligent_Computing.
- storeType StringCn 
- The store type cn name of the vepfs file system.
- subnetId String
- The subnet id of the vepfs file system.
- List<Property Map>
- Tags.
- version String
- The version info of the vepfs file system.
- zoneId String
- The id of the zone.
- zoneName String
- The name of the zone.
Supporting Types
FileSystemTag, FileSystemTagArgs      
Import
VepfsFileSystem can be imported using the id, e.g.
$ pulumi import volcengine:vepfs/fileSystem:FileSystem default resource_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.