1. Packages
  2. Volcengine
  3. API Docs
  4. vepfs
  5. FileSystems
Volcengine v0.0.27 published on Tuesday, Dec 10, 2024 by Volcengine

volcengine.vepfs.FileSystems

Explore with Pulumi AI

Volcengine v0.0.27 published on Tuesday, Dec 10, 2024 by Volcengine

Use this data source to query detailed information of vepfs file systems

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as volcengine from "@pulumi/volcengine";
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 fooFileSystems = volcengine.vepfs.FileSystemsOutput({
    ids: [fooFileSystem.id],
});
Copy
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_file_systems = volcengine.vepfs.file_systems_output(ids=[foo_file_system.id])
Copy
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
		}
		_ = vepfs.FileSystemsOutput(ctx, vepfs.FileSystemsOutputArgs{
			Ids: pulumi.StringArray{
				fooFileSystem.ID(),
			},
		}, nil)
		return nil
	})
}
Copy
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 fooFileSystems = Volcengine.Vepfs.FileSystems.Invoke(new()
    {
        Ids = new[]
        {
            fooFileSystem.Id,
        },
    });

});
Copy
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.VepfsFunctions;
import com.pulumi.volcengine.vepfs.inputs.FileSystemsArgs;
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());

        final var fooFileSystems = VepfsFunctions.FileSystems(FileSystemsArgs.builder()
            .ids(fooFileSystem.id())
            .build());

    }
}
Copy
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
variables:
  fooFileSystems:
    fn::invoke:
      Function: volcengine:vepfs:FileSystems
      Arguments:
        ids:
          - ${fooFileSystem.id}
Copy

Using FileSystems

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function fileSystems(args: FileSystemsArgs, opts?: InvokeOptions): Promise<FileSystemsResult>
function fileSystemsOutput(args: FileSystemsOutputArgs, opts?: InvokeOptions): Output<FileSystemsResult>
Copy
def file_systems(file_system_name: Optional[str] = None,
                 ids: Optional[Sequence[str]] = None,
                 name_regex: Optional[str] = None,
                 output_file: Optional[str] = None,
                 project: Optional[str] = None,
                 statuses: Optional[Sequence[str]] = None,
                 store_type: Optional[str] = None,
                 zone_id: Optional[str] = None,
                 opts: Optional[InvokeOptions] = None) -> FileSystemsResult
def file_systems_output(file_system_name: Optional[pulumi.Input[str]] = None,
                 ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                 name_regex: Optional[pulumi.Input[str]] = None,
                 output_file: Optional[pulumi.Input[str]] = None,
                 project: Optional[pulumi.Input[str]] = None,
                 statuses: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                 store_type: Optional[pulumi.Input[str]] = None,
                 zone_id: Optional[pulumi.Input[str]] = None,
                 opts: Optional[InvokeOptions] = None) -> Output[FileSystemsResult]
Copy
func FileSystems(ctx *Context, args *FileSystemsArgs, opts ...InvokeOption) (*FileSystemsResult, error)
func FileSystemsOutput(ctx *Context, args *FileSystemsOutputArgs, opts ...InvokeOption) FileSystemsResultOutput
Copy
public static class FileSystems 
{
    public static Task<FileSystemsResult> InvokeAsync(FileSystemsArgs args, InvokeOptions? opts = null)
    public static Output<FileSystemsResult> Invoke(FileSystemsInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<FileSystemsResult> fileSystems(FileSystemsArgs args, InvokeOptions options)
public static Output<FileSystemsResult> fileSystems(FileSystemsArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: volcengine:vepfs:FileSystems
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

FileSystemName string
The Name of Vepfs File System. This field support fuzzy query.
Ids List<string>
A list of Vepfs File System IDs.
NameRegex string
A Name Regex of Resource.
OutputFile string
File name where to save data source results.
Project string
The project of Vepfs File System.
Statuses List<string>
The query status list of Vepfs File System.
StoreType string
The Store Type of Vepfs File System.
ZoneId string
The zone id of File System.
FileSystemName string
The Name of Vepfs File System. This field support fuzzy query.
Ids []string
A list of Vepfs File System IDs.
NameRegex string
A Name Regex of Resource.
OutputFile string
File name where to save data source results.
Project string
The project of Vepfs File System.
Statuses []string
The query status list of Vepfs File System.
StoreType string
The Store Type of Vepfs File System.
ZoneId string
The zone id of File System.
fileSystemName String
The Name of Vepfs File System. This field support fuzzy query.
ids List<String>
A list of Vepfs File System IDs.
nameRegex String
A Name Regex of Resource.
outputFile String
File name where to save data source results.
project String
The project of Vepfs File System.
statuses List<String>
The query status list of Vepfs File System.
storeType String
The Store Type of Vepfs File System.
zoneId String
The zone id of File System.
fileSystemName string
The Name of Vepfs File System. This field support fuzzy query.
ids string[]
A list of Vepfs File System IDs.
nameRegex string
A Name Regex of Resource.
outputFile string
File name where to save data source results.
project string
The project of Vepfs File System.
statuses string[]
The query status list of Vepfs File System.
storeType string
The Store Type of Vepfs File System.
zoneId string
The zone id of File System.
file_system_name str
The Name of Vepfs File System. This field support fuzzy query.
ids Sequence[str]
A list of Vepfs File System IDs.
name_regex str
A Name Regex of Resource.
output_file str
File name where to save data source results.
project str
The project of Vepfs File System.
statuses Sequence[str]
The query status list of Vepfs File System.
store_type str
The Store Type of Vepfs File System.
zone_id str
The zone id of File System.
fileSystemName String
The Name of Vepfs File System. This field support fuzzy query.
ids List<String>
A list of Vepfs File System IDs.
nameRegex String
A Name Regex of Resource.
outputFile String
File name where to save data source results.
project String
The project of Vepfs File System.
statuses List<String>
The query status list of Vepfs File System.
storeType String
The Store Type of Vepfs File System.
zoneId String
The zone id of File System.

FileSystems Result

The following output properties are available:

FileSystems List<FileSystemsFileSystem>
The collection of query.
Id string
The provider-assigned unique ID for this managed resource.
TotalCount int
The total count of query.
FileSystemName string
The name of the vepfs file system.
Ids List<string>
NameRegex string
OutputFile string
Project string
The project name of the vepfs file system.
Statuses List<string>
The status of the vepfs file system.
StoreType string
The store type of the vepfs file system.
ZoneId string
The id of the zone.
FileSystems []FileSystemsFileSystem
The collection of query.
Id string
The provider-assigned unique ID for this managed resource.
TotalCount int
The total count of query.
FileSystemName string
The name of the vepfs file system.
Ids []string
NameRegex string
OutputFile string
Project string
The project name of the vepfs file system.
Statuses []string
The status of the vepfs file system.
StoreType string
The store type of the vepfs file system.
ZoneId string
The id of the zone.
fileSystems List<FileSystemsFileSystem>
The collection of query.
id String
The provider-assigned unique ID for this managed resource.
totalCount Integer
The total count of query.
fileSystemName String
The name of the vepfs file system.
ids List<String>
nameRegex String
outputFile String
project String
The project name of the vepfs file system.
statuses List<String>
The status of the vepfs file system.
storeType String
The store type of the vepfs file system.
zoneId String
The id of the zone.
fileSystems FileSystemsFileSystem[]
The collection of query.
id string
The provider-assigned unique ID for this managed resource.
totalCount number
The total count of query.
fileSystemName string
The name of the vepfs file system.
ids string[]
nameRegex string
outputFile string
project string
The project name of the vepfs file system.
statuses string[]
The status of the vepfs file system.
storeType string
The store type of the vepfs file system.
zoneId string
The id of the zone.
file_systems Sequence[FileSystemsFileSystem]
The collection of query.
id str
The provider-assigned unique ID for this managed resource.
total_count int
The total count of query.
file_system_name str
The name of the vepfs file system.
ids Sequence[str]
name_regex str
output_file str
project str
The project name of the vepfs file system.
statuses Sequence[str]
The status of the vepfs file system.
store_type str
The store type of the vepfs file system.
zone_id str
The id of the zone.
fileSystems List<Property Map>
The collection of query.
id String
The provider-assigned unique ID for this managed resource.
totalCount Number
The total count of query.
fileSystemName String
The name of the vepfs file system.
ids List<String>
nameRegex String
outputFile String
project String
The project name of the vepfs file system.
statuses List<String>
The status of the vepfs file system.
storeType String
The store type of the vepfs file system.
zoneId String
The id of the zone.

Supporting Types

FileSystemsFileSystem

AccountId This property is required. string
The id of the account.
Bandwidth This property is required. int
The bandwidth info of the vepfs file system.
CapacityInfo This property is required. FileSystemsFileSystemCapacityInfo
The capacity info of the vepfs file system.
ChargeStatus This property is required. string
The charge status of the vepfs file system.
ChargeType This property is required. string
The charge type of the vepfs file system.
CreateTime This property is required. string
The create time of the vepfs file system.
Description This property is required. string
The description of the vepfs file system.
ExpireTime This property is required. string
The expire time of the vepfs file system.
FileSystemId This property is required. string
The id of the vepfs file system.
FileSystemName This property is required. string
The Name of Vepfs File System. This field support fuzzy query.
FileSystemType This property is required. string
The type of the vepfs file system.
FreeTime This property is required. string
The free time of the vepfs file system.
Id This property is required. string
The id of the vepfs file system.
LastModifyTime This property is required. string
The last modify time of the vepfs file system.
Project This property is required. string
The project of Vepfs File System.
ProtocolType This property is required. string
The protocol type of the vepfs file system.
RegionId This property is required. string
The id of the region.
Status This property is required. string
The query status list of Vepfs File System.
StopServiceTime This property is required. string
The stop service time of the vepfs file system.
StoreType This property is required. string
The Store Type of Vepfs File System.
StoreTypeCn This property is required. string
The store type cn name of the vepfs file system.
Tags This property is required. List<FileSystemsFileSystemTag>
The tags of the vepfs file system.
Version This property is required. string
The version info of the vepfs file system.
ZoneId This property is required. string
The zone id of File System.
ZoneName This property is required. string
The name of the zone.
AccountId This property is required. string
The id of the account.
Bandwidth This property is required. int
The bandwidth info of the vepfs file system.
CapacityInfo This property is required. FileSystemsFileSystemCapacityInfo
The capacity info of the vepfs file system.
ChargeStatus This property is required. string
The charge status of the vepfs file system.
ChargeType This property is required. string
The charge type of the vepfs file system.
CreateTime This property is required. string
The create time of the vepfs file system.
Description This property is required. string
The description of the vepfs file system.
ExpireTime This property is required. string
The expire time of the vepfs file system.
FileSystemId This property is required. string
The id of the vepfs file system.
FileSystemName This property is required. string
The Name of Vepfs File System. This field support fuzzy query.
FileSystemType This property is required. string
The type of the vepfs file system.
FreeTime This property is required. string
The free time of the vepfs file system.
Id This property is required. string
The id of the vepfs file system.
LastModifyTime This property is required. string
The last modify time of the vepfs file system.
Project This property is required. string
The project of Vepfs File System.
ProtocolType This property is required. string
The protocol type of the vepfs file system.
RegionId This property is required. string
The id of the region.
Status This property is required. string
The query status list of Vepfs File System.
StopServiceTime This property is required. string
The stop service time of the vepfs file system.
StoreType This property is required. string
The Store Type of Vepfs File System.
StoreTypeCn This property is required. string
The store type cn name of the vepfs file system.
Tags This property is required. []FileSystemsFileSystemTag
The tags of the vepfs file system.
Version This property is required. string
The version info of the vepfs file system.
ZoneId This property is required. string
The zone id of File System.
ZoneName This property is required. string
The name of the zone.
accountId This property is required. String
The id of the account.
bandwidth This property is required. Integer
The bandwidth info of the vepfs file system.
capacityInfo This property is required. FileSystemsFileSystemCapacityInfo
The capacity info of the vepfs file system.
chargeStatus This property is required. String
The charge status of the vepfs file system.
chargeType This property is required. String
The charge type of the vepfs file system.
createTime This property is required. String
The create time of the vepfs file system.
description This property is required. String
The description of the vepfs file system.
expireTime This property is required. String
The expire time of the vepfs file system.
fileSystemId This property is required. String
The id of the vepfs file system.
fileSystemName This property is required. String
The Name of Vepfs File System. This field support fuzzy query.
fileSystemType This property is required. String
The type of the vepfs file system.
freeTime This property is required. String
The free time of the vepfs file system.
id This property is required. String
The id of the vepfs file system.
lastModifyTime This property is required. String
The last modify time of the vepfs file system.
project This property is required. String
The project of Vepfs File System.
protocolType This property is required. String
The protocol type of the vepfs file system.
regionId This property is required. String
The id of the region.
status This property is required. String
The query status list of Vepfs File System.
stopServiceTime This property is required. String
The stop service time of the vepfs file system.
storeType This property is required. String
The Store Type of Vepfs File System.
storeTypeCn This property is required. String
The store type cn name of the vepfs file system.
tags This property is required. List<FileSystemsFileSystemTag>
The tags of the vepfs file system.
version This property is required. String
The version info of the vepfs file system.
zoneId This property is required. String
The zone id of File System.
zoneName This property is required. String
The name of the zone.
accountId This property is required. string
The id of the account.
bandwidth This property is required. number
The bandwidth info of the vepfs file system.
capacityInfo This property is required. FileSystemsFileSystemCapacityInfo
The capacity info of the vepfs file system.
chargeStatus This property is required. string
The charge status of the vepfs file system.
chargeType This property is required. string
The charge type of the vepfs file system.
createTime This property is required. string
The create time of the vepfs file system.
description This property is required. string
The description of the vepfs file system.
expireTime This property is required. string
The expire time of the vepfs file system.
fileSystemId This property is required. string
The id of the vepfs file system.
fileSystemName This property is required. string
The Name of Vepfs File System. This field support fuzzy query.
fileSystemType This property is required. string
The type of the vepfs file system.
freeTime This property is required. string
The free time of the vepfs file system.
id This property is required. string
The id of the vepfs file system.
lastModifyTime This property is required. string
The last modify time of the vepfs file system.
project This property is required. string
The project of Vepfs File System.
protocolType This property is required. string
The protocol type of the vepfs file system.
regionId This property is required. string
The id of the region.
status This property is required. string
The query status list of Vepfs File System.
stopServiceTime This property is required. string
The stop service time of the vepfs file system.
storeType This property is required. string
The Store Type of Vepfs File System.
storeTypeCn This property is required. string
The store type cn name of the vepfs file system.
tags This property is required. FileSystemsFileSystemTag[]
The tags of the vepfs file system.
version This property is required. string
The version info of the vepfs file system.
zoneId This property is required. string
The zone id of File System.
zoneName This property is required. string
The name of the zone.
account_id This property is required. str
The id of the account.
bandwidth This property is required. int
The bandwidth info of the vepfs file system.
capacity_info This property is required. FileSystemsFileSystemCapacityInfo
The capacity info of the vepfs file system.
charge_status This property is required. str
The charge status of the vepfs file system.
charge_type This property is required. str
The charge type of the vepfs file system.
create_time This property is required. str
The create time of the vepfs file system.
description This property is required. str
The description of the vepfs file system.
expire_time This property is required. str
The expire time of the vepfs file system.
file_system_id This property is required. str
The id of the vepfs file system.
file_system_name This property is required. str
The Name of Vepfs File System. This field support fuzzy query.
file_system_type This property is required. str
The type of the vepfs file system.
free_time This property is required. str
The free time of the vepfs file system.
id This property is required. str
The id of the vepfs file system.
last_modify_time This property is required. str
The last modify time of the vepfs file system.
project This property is required. str
The project of Vepfs File System.
protocol_type This property is required. str
The protocol type of the vepfs file system.
region_id This property is required. str
The id of the region.
status This property is required. str
The query status list of Vepfs File System.
stop_service_time This property is required. str
The stop service time of the vepfs file system.
store_type This property is required. str
The Store Type of Vepfs File System.
store_type_cn This property is required. str
The store type cn name of the vepfs file system.
tags This property is required. Sequence[FileSystemsFileSystemTag]
The tags of the vepfs file system.
version This property is required. str
The version info of the vepfs file system.
zone_id This property is required. str
The zone id of File System.
zone_name This property is required. str
The name of the zone.
accountId This property is required. String
The id of the account.
bandwidth This property is required. Number
The bandwidth info of the vepfs file system.
capacityInfo This property is required. Property Map
The capacity info of the vepfs file system.
chargeStatus This property is required. String
The charge status of the vepfs file system.
chargeType This property is required. String
The charge type of the vepfs file system.
createTime This property is required. String
The create time of the vepfs file system.
description This property is required. String
The description of the vepfs file system.
expireTime This property is required. String
The expire time of the vepfs file system.
fileSystemId This property is required. String
The id of the vepfs file system.
fileSystemName This property is required. String
The Name of Vepfs File System. This field support fuzzy query.
fileSystemType This property is required. String
The type of the vepfs file system.
freeTime This property is required. String
The free time of the vepfs file system.
id This property is required. String
The id of the vepfs file system.
lastModifyTime This property is required. String
The last modify time of the vepfs file system.
project This property is required. String
The project of Vepfs File System.
protocolType This property is required. String
The protocol type of the vepfs file system.
regionId This property is required. String
The id of the region.
status This property is required. String
The query status list of Vepfs File System.
stopServiceTime This property is required. String
The stop service time of the vepfs file system.
storeType This property is required. String
The Store Type of Vepfs File System.
storeTypeCn This property is required. String
The store type cn name of the vepfs file system.
tags This property is required. List<Property Map>
The tags of the vepfs file system.
version This property is required. String
The version info of the vepfs file system.
zoneId This property is required. String
The zone id of File System.
zoneName This property is required. String
The name of the zone.

FileSystemsFileSystemCapacityInfo

TotalTib This property is required. int
The total size. Unit: TiB.
UsedGib This property is required. int
The used size. Unit: GiB.
TotalTib This property is required. int
The total size. Unit: TiB.
UsedGib This property is required. int
The used size. Unit: GiB.
totalTib This property is required. Integer
The total size. Unit: TiB.
usedGib This property is required. Integer
The used size. Unit: GiB.
totalTib This property is required. number
The total size. Unit: TiB.
usedGib This property is required. number
The used size. Unit: GiB.
total_tib This property is required. int
The total size. Unit: TiB.
used_gib This property is required. int
The used size. Unit: GiB.
totalTib This property is required. Number
The total size. Unit: TiB.
usedGib This property is required. Number
The used size. Unit: GiB.

FileSystemsFileSystemTag

Key This property is required. string
The Key of Tags.
Type This property is required. string
The Type of Tags.
Value This property is required. string
The Value of Tags.
Key This property is required. string
The Key of Tags.
Type This property is required. string
The Type of Tags.
Value This property is required. string
The Value of Tags.
key This property is required. String
The Key of Tags.
type This property is required. String
The Type of Tags.
value This property is required. String
The Value of Tags.
key This property is required. string
The Key of Tags.
type This property is required. string
The Type of Tags.
value This property is required. string
The Value of Tags.
key This property is required. str
The Key of Tags.
type This property is required. str
The Type of Tags.
value This property is required. str
The Value of Tags.
key This property is required. String
The Key of Tags.
type This property is required. String
The Type of Tags.
value This property is required. String
The Value of Tags.

Package Details

Repository
volcengine volcengine/pulumi-volcengine
License
Apache-2.0
Notes
This Pulumi package is based on the volcengine Terraform Provider.
Volcengine v0.0.27 published on Tuesday, Dec 10, 2024 by Volcengine