volcengine.vepfs.FileSystem
Explore with Pulumi AI
Provides a resource to manage vepfs file system
Example Usage
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 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
})
}
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());
}
}
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",
)])
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",
}],
});
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=[volcengine.vepfs.FileSystemTagArgs(
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
The FileSystem resource accepts the following input properties:
- Capacity int
- The capacity of the vepfs file system.
- File
System stringName - The name of the vepfs file system.
- Store
Type string - The store type of the vepfs file system. Valid values:
Advance_100
,Performance
,Intelligent_Computing
. - Subnet
Id string - The subnet id of the vepfs file system.
- Description string
- 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 string
- The project of the vepfs file system.
- List<File
System Tag> - Tags.
- Capacity int
- The capacity of the vepfs file system.
- File
System stringName - The name of the vepfs file system.
- Store
Type string - The store type of the vepfs file system. Valid values:
Advance_100
,Performance
,Intelligent_Computing
. - Subnet
Id string - The subnet id of the vepfs file system.
- Description string
- 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 string
- The project of the vepfs file system.
- []File
System Tag Args - Tags.
- capacity Integer
- The capacity of the vepfs file system.
- file
System StringName - The name of the vepfs file system.
- store
Type String - The store type of the vepfs file system. Valid values:
Advance_100
,Performance
,Intelligent_Computing
. - subnet
Id String - The subnet id of the vepfs file system.
- description String
- The description info of the vepfs file system.
- enable
Restripe 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<File
System Tag> - Tags.
- capacity number
- The capacity of the vepfs file system.
- file
System stringName - The name of the vepfs file system.
- store
Type string - The store type of the vepfs file system. Valid values:
Advance_100
,Performance
,Intelligent_Computing
. - subnet
Id string - The subnet id of the vepfs file system.
- description string
- The description info of the vepfs file system.
- enable
Restripe 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.
- File
System 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[File
System Tag Args] - Tags.
- capacity Number
- The capacity of the vepfs file system.
- file
System StringName - The name of the vepfs file system.
- store
Type String - The store type of the vepfs file system. Valid values:
Advance_100
,Performance
,Intelligent_Computing
. - subnet
Id String - The subnet id of the vepfs file system.
- description String
- The description info of the vepfs file system.
- enable
Restripe 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:
- Account
Id string - The id of the account.
- Bandwidth int
- The bandwidth info of the vepfs file system.
- Charge
Status string - The charge status of the vepfs file system.
- Charge
Type string - The charge type of the vepfs file system.
- Create
Time string - The create time of the vepfs file system.
- Expire
Time string - The expire time of the vepfs file system.
- File
System stringType - The type of the vepfs file system.
- Free
Time string - The free time of the vepfs file system.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Modify stringTime - The last modify time of the vepfs file system.
- Protocol
Type string - The protocol type of the vepfs file system.
- Region
Id string - The id of the region.
- Status string
- The status of the vepfs file system.
- Stop
Service stringTime - The stop service time of the vepfs file system.
- Store
Type stringCn - The store type cn name of the vepfs file system.
- Version string
- The version info of the vepfs file system.
- Zone
Id string - The id of the zone.
- Zone
Name string - The name of the zone.
- Account
Id string - The id of the account.
- Bandwidth int
- The bandwidth info of the vepfs file system.
- Charge
Status string - The charge status of the vepfs file system.
- Charge
Type string - The charge type of the vepfs file system.
- Create
Time string - The create time of the vepfs file system.
- Expire
Time string - The expire time of the vepfs file system.
- File
System stringType - The type of the vepfs file system.
- Free
Time string - The free time of the vepfs file system.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Modify stringTime - The last modify time of the vepfs file system.
- Protocol
Type string - The protocol type of the vepfs file system.
- Region
Id string - The id of the region.
- Status string
- The status of the vepfs file system.
- Stop
Service stringTime - The stop service time of the vepfs file system.
- Store
Type stringCn - The store type cn name of the vepfs file system.
- Version string
- The version info of the vepfs file system.
- Zone
Id string - The id of the zone.
- Zone
Name string - The name of the zone.
- account
Id String - The id of the account.
- bandwidth Integer
- The bandwidth info of the vepfs file system.
- charge
Status String - The charge status of the vepfs file system.
- charge
Type String - The charge type of the vepfs file system.
- create
Time String - The create time of the vepfs file system.
- expire
Time String - The expire time of the vepfs file system.
- file
System StringType - The type of the vepfs file system.
- free
Time String - The free time of the vepfs file system.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Modify StringTime - The last modify time of the vepfs file system.
- protocol
Type String - The protocol type of the vepfs file system.
- region
Id String - The id of the region.
- status String
- The status of the vepfs file system.
- stop
Service StringTime - The stop service time of the vepfs file system.
- store
Type StringCn - The store type cn name of the vepfs file system.
- version String
- The version info of the vepfs file system.
- zone
Id String - The id of the zone.
- zone
Name String - The name of the zone.
- account
Id string - The id of the account.
- bandwidth number
- The bandwidth info of the vepfs file system.
- charge
Status string - The charge status of the vepfs file system.
- charge
Type string - The charge type of the vepfs file system.
- create
Time string - The create time of the vepfs file system.
- expire
Time string - The expire time of the vepfs file system.
- file
System stringType - The type of the vepfs file system.
- free
Time string - The free time of the vepfs file system.
- id string
- The provider-assigned unique ID for this managed resource.
- last
Modify stringTime - The last modify time of the vepfs file system.
- protocol
Type string - The protocol type of the vepfs file system.
- region
Id string - The id of the region.
- status string
- The status of the vepfs file system.
- stop
Service stringTime - The stop service time of the vepfs file system.
- store
Type stringCn - The store type cn name of the vepfs file system.
- version string
- The version info of the vepfs file system.
- zone
Id string - The id of the zone.
- zone
Name 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.
- account
Id String - The id of the account.
- bandwidth Number
- The bandwidth info of the vepfs file system.
- charge
Status String - The charge status of the vepfs file system.
- charge
Type String - The charge type of the vepfs file system.
- create
Time String - The create time of the vepfs file system.
- expire
Time String - The expire time of the vepfs file system.
- file
System StringType - The type of the vepfs file system.
- free
Time String - The free time of the vepfs file system.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Modify StringTime - The last modify time of the vepfs file system.
- protocol
Type String - The protocol type of the vepfs file system.
- region
Id String - The id of the region.
- status String
- The status of the vepfs file system.
- stop
Service StringTime - The stop service time of the vepfs file system.
- store
Type StringCn - The store type cn name of the vepfs file system.
- version String
- The version info of the vepfs file system.
- zone
Id String - The id of the zone.
- zone
Name 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) -> FileSystem
func 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)
Resource lookup is not supported in YAML
- 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.
- Account
Id 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.
- Charge
Status string - The charge status of the vepfs file system.
- Charge
Type string - The charge type of the vepfs file system.
- Create
Time string - The create time of the vepfs file system.
- Description string
- 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 string - The expire time of the vepfs file system.
- File
System stringName - The name of the vepfs file system.
- File
System stringType - The type of the vepfs file system.
- Free
Time string - The free time of the vepfs file system.
- Last
Modify stringTime - The last modify time of the vepfs file system.
- Project string
- The project of the vepfs file system.
- Protocol
Type string - The protocol type of the vepfs file system.
- Region
Id string - The id of the region.
- Status string
- The status of the vepfs file system.
- Stop
Service stringTime - The stop service time of the vepfs file system.
- Store
Type string - The store type of the vepfs file system. Valid values:
Advance_100
,Performance
,Intelligent_Computing
. - Store
Type stringCn - The store type cn name of the vepfs file system.
- Subnet
Id string - The subnet id of the vepfs file system.
- List<File
System Tag> - Tags.
- Version string
- The version info of the vepfs file system.
- Zone
Id string - The id of the zone.
- Zone
Name string - The name of the zone.
- Account
Id 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.
- Charge
Status string - The charge status of the vepfs file system.
- Charge
Type string - The charge type of the vepfs file system.
- Create
Time string - The create time of the vepfs file system.
- Description string
- 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 string - The expire time of the vepfs file system.
- File
System stringName - The name of the vepfs file system.
- File
System stringType - The type of the vepfs file system.
- Free
Time string - The free time of the vepfs file system.
- Last
Modify stringTime - The last modify time of the vepfs file system.
- Project string
- The project of the vepfs file system.
- Protocol
Type string - The protocol type of the vepfs file system.
- Region
Id string - The id of the region.
- Status string
- The status of the vepfs file system.
- Stop
Service stringTime - The stop service time of the vepfs file system.
- Store
Type string - The store type of the vepfs file system. Valid values:
Advance_100
,Performance
,Intelligent_Computing
. - Store
Type stringCn - The store type cn name of the vepfs file system.
- Subnet
Id string - The subnet id of the vepfs file system.
- []File
System Tag Args - Tags.
- Version string
- The version info of the vepfs file system.
- Zone
Id string - The id of the zone.
- Zone
Name string - The name of the zone.
- account
Id 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.
- charge
Status String - The charge status of the vepfs file system.
- charge
Type String - The charge type of the vepfs file system.
- create
Time String - The create time of the vepfs file system.
- description String
- The description info of the vepfs file system.
- enable
Restripe Boolean - Whether to enable data balance after capacity expansion. This filed is valid only when expanding capacity.
- expire
Time String - The expire time of the vepfs file system.
- file
System StringName - The name of the vepfs file system.
- file
System StringType - The type of the vepfs file system.
- free
Time String - The free time of the vepfs file system.
- last
Modify StringTime - The last modify time of the vepfs file system.
- project String
- The project of the vepfs file system.
- protocol
Type String - The protocol type of the vepfs file system.
- region
Id String - The id of the region.
- status String
- The status of the vepfs file system.
- stop
Service StringTime - The stop service time of the vepfs file system.
- store
Type String - The store type of the vepfs file system. Valid values:
Advance_100
,Performance
,Intelligent_Computing
. - store
Type StringCn - The store type cn name of the vepfs file system.
- subnet
Id String - The subnet id of the vepfs file system.
- List<File
System Tag> - Tags.
- version String
- The version info of the vepfs file system.
- zone
Id String - The id of the zone.
- zone
Name String - The name of the zone.
- account
Id 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.
- charge
Status string - The charge status of the vepfs file system.
- charge
Type string - The charge type of the vepfs file system.
- create
Time string - The create time of the vepfs file system.
- description string
- The description info of the vepfs file system.
- enable
Restripe boolean - Whether to enable data balance after capacity expansion. This filed is valid only when expanding capacity.
- expire
Time string - The expire time of the vepfs file system.
- file
System stringName - The name of the vepfs file system.
- file
System stringType - The type of the vepfs file system.
- free
Time string - The free time of the vepfs file system.
- last
Modify stringTime - The last modify time of the vepfs file system.
- project string
- The project of the vepfs file system.
- protocol
Type string - The protocol type of the vepfs file system.
- region
Id string - The id of the region.
- status string
- The status of the vepfs file system.
- stop
Service stringTime - The stop service time of the vepfs file system.
- store
Type string - The store type of the vepfs file system. Valid values:
Advance_100
,Performance
,Intelligent_Computing
. - store
Type stringCn - The store type cn name of the vepfs file system.
- subnet
Id string - The subnet id of the vepfs file system.
- File
System Tag[] - Tags.
- version string
- The version info of the vepfs file system.
- zone
Id string - The id of the zone.
- zone
Name 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[File
System 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.
- account
Id 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.
- charge
Status String - The charge status of the vepfs file system.
- charge
Type String - The charge type of the vepfs file system.
- create
Time String - The create time of the vepfs file system.
- description String
- The description info of the vepfs file system.
- enable
Restripe Boolean - Whether to enable data balance after capacity expansion. This filed is valid only when expanding capacity.
- expire
Time String - The expire time of the vepfs file system.
- file
System StringName - The name of the vepfs file system.
- file
System StringType - The type of the vepfs file system.
- free
Time String - The free time of the vepfs file system.
- last
Modify StringTime - The last modify time of the vepfs file system.
- project String
- The project of the vepfs file system.
- protocol
Type String - The protocol type of the vepfs file system.
- region
Id String - The id of the region.
- status String
- The status of the vepfs file system.
- stop
Service StringTime - The stop service time of the vepfs file system.
- store
Type String - The store type of the vepfs file system. Valid values:
Advance_100
,Performance
,Intelligent_Computing
. - store
Type StringCn - The store type cn name of the vepfs file system.
- subnet
Id String - The subnet id of the vepfs file system.
- List<Property Map>
- Tags.
- version String
- The version info of the vepfs file system.
- zone
Id String - The id of the zone.
- zone
Name 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
volcengine
Terraform Provider.