1. Packages
  2. Volcenginecc Provider
  3. API Docs
  4. vepfs
  5. Instance
volcenginecc v0.0.11 published on Thursday, Dec 4, 2025 by Volcengine
volcenginecc logo
volcenginecc v0.0.11 published on Thursday, Dec 4, 2025 by Volcengine

    文件存储 vePFS 是推出的一种高吞吐、低延时、可扩展并行的文件系统服务,满足高性能计算场景下高吞吐低延时的数据读写需求,可广泛应用于 HPC 高性能计算、AI 人工智能训练或推理、能源勘探、工业仿真、影视渲染、生命科学、气象分析等场景。同时,vePFS 提供一键化部署及配套监控报警能力,免去部署、维护费用的同时,最大化提升您的业务效率。

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as volcenginecc from "@volcengine/pulumi-volcenginecc";
    
    const vEPFSInstanceDemo = new volcenginecc.vepfs.Instance("VEPFSInstanceDemo", {
        fileSystemName: "VEPFSInstanceDemo",
        zoneId: "cn-beijing-a",
        chargeType: "PayAsYouGo",
        fileSystemType: "VePFS",
        storeType: "Advance_100",
        protocolType: "VePFS",
        projectName: "default",
        capacity: 8,
        vpcId: "vpc-3nqt4kq87xn28931eclxxxxx",
        subnetId: "subnet-1a0zgr5e7hslc8nvepkxxxxxx",
        versionNumber: "1.4.0",
        enableRestripe: true,
        tags: [{
            key: "env",
            value: "test",
        }],
    });
    
    import pulumi
    import pulumi_volcenginecc as volcenginecc
    
    v_epfs_instance_demo = volcenginecc.vepfs.Instance("VEPFSInstanceDemo",
        file_system_name="VEPFSInstanceDemo",
        zone_id="cn-beijing-a",
        charge_type="PayAsYouGo",
        file_system_type="VePFS",
        store_type="Advance_100",
        protocol_type="VePFS",
        project_name="default",
        capacity=8,
        vpc_id="vpc-3nqt4kq87xn28931eclxxxxx",
        subnet_id="subnet-1a0zgr5e7hslc8nvepkxxxxxx",
        version_number="1.4.0",
        enable_restripe=True,
        tags=[{
            "key": "env",
            "value": "test",
        }])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/volcengine/pulumi-volcenginecc/sdk/go/volcenginecc/vepfs"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := vepfs.NewInstance(ctx, "VEPFSInstanceDemo", &vepfs.InstanceArgs{
    			FileSystemName: pulumi.String("VEPFSInstanceDemo"),
    			ZoneId:         pulumi.String("cn-beijing-a"),
    			ChargeType:     pulumi.String("PayAsYouGo"),
    			FileSystemType: pulumi.String("VePFS"),
    			StoreType:      pulumi.String("Advance_100"),
    			ProtocolType:   pulumi.String("VePFS"),
    			ProjectName:    pulumi.String("default"),
    			Capacity:       pulumi.Int(8),
    			VpcId:          pulumi.String("vpc-3nqt4kq87xn28931eclxxxxx"),
    			SubnetId:       pulumi.String("subnet-1a0zgr5e7hslc8nvepkxxxxxx"),
    			VersionNumber:  pulumi.String("1.4.0"),
    			EnableRestripe: pulumi.Bool(true),
    			Tags: vepfs.InstanceTagArray{
    				&vepfs.InstanceTagArgs{
    					Key:   pulumi.String("env"),
    					Value: pulumi.String("test"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Volcenginecc = Volcengine.Pulumi.Volcenginecc;
    
    return await Deployment.RunAsync(() => 
    {
        var vEPFSInstanceDemo = new Volcenginecc.Vepfs.Instance("VEPFSInstanceDemo", new()
        {
            FileSystemName = "VEPFSInstanceDemo",
            ZoneId = "cn-beijing-a",
            ChargeType = "PayAsYouGo",
            FileSystemType = "VePFS",
            StoreType = "Advance_100",
            ProtocolType = "VePFS",
            ProjectName = "default",
            Capacity = 8,
            VpcId = "vpc-3nqt4kq87xn28931eclxxxxx",
            SubnetId = "subnet-1a0zgr5e7hslc8nvepkxxxxxx",
            VersionNumber = "1.4.0",
            EnableRestripe = true,
            Tags = new[]
            {
                new Volcenginecc.Vepfs.Inputs.InstanceTagArgs
                {
                    Key = "env",
                    Value = "test",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.volcengine.volcenginecc.vepfs.Instance;
    import com.volcengine.volcenginecc.vepfs.InstanceArgs;
    import com.pulumi.volcenginecc.vepfs.inputs.InstanceTagArgs;
    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 vEPFSInstanceDemo = new Instance("vEPFSInstanceDemo", InstanceArgs.builder()
                .fileSystemName("VEPFSInstanceDemo")
                .zoneId("cn-beijing-a")
                .chargeType("PayAsYouGo")
                .fileSystemType("VePFS")
                .storeType("Advance_100")
                .protocolType("VePFS")
                .projectName("default")
                .capacity(8)
                .vpcId("vpc-3nqt4kq87xn28931eclxxxxx")
                .subnetId("subnet-1a0zgr5e7hslc8nvepkxxxxxx")
                .versionNumber("1.4.0")
                .enableRestripe(true)
                .tags(InstanceTagArgs.builder()
                    .key("env")
                    .value("test")
                    .build())
                .build());
    
        }
    }
    
    resources:
      vEPFSInstanceDemo:
        type: volcenginecc:vepfs:Instance
        name: VEPFSInstanceDemo
        properties:
          fileSystemName: VEPFSInstanceDemo
          zoneId: cn-beijing-a
          chargeType: PayAsYouGo
          fileSystemType: VePFS
          storeType: Advance_100
          protocolType: VePFS
          projectName: default
          capacity: 8
          vpcId: vpc-3nqt4kq87xn28931eclxxxxx
          subnetId: subnet-1a0zgr5e7hslc8nvepkxxxxxx
          versionNumber: 1.4.0
          enableRestripe: true
          tags:
            - key: env
              value: test
    

    Create Instance Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Instance(name: string, args: InstanceArgs, opts?: CustomResourceOptions);
    @overload
    def Instance(resource_name: str,
                 args: InstanceArgs,
                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def Instance(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 file_system_name: Optional[str] = None,
                 zone_id: Optional[str] = None,
                 store_type: Optional[str] = None,
                 capacity: Optional[int] = None,
                 project_name: Optional[str] = None,
                 file_system_type: Optional[str] = None,
                 enable_restripe: Optional[bool] = None,
                 protocol_type: Optional[str] = None,
                 description: Optional[str] = None,
                 subnet_id: Optional[str] = None,
                 tags: Optional[Sequence[InstanceTagArgs]] = None,
                 version_number: Optional[str] = None,
                 vpc_id: Optional[str] = None,
                 charge_type: Optional[str] = None)
    func NewInstance(ctx *Context, name string, args InstanceArgs, opts ...ResourceOption) (*Instance, error)
    public Instance(string name, InstanceArgs args, CustomResourceOptions? opts = null)
    public Instance(String name, InstanceArgs args)
    public Instance(String name, InstanceArgs args, CustomResourceOptions options)
    
    type: volcenginecc:vepfs:Instance
    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 InstanceArgs
    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 InstanceArgs
    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 InstanceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args InstanceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args InstanceArgs
    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 exampleinstanceResourceResourceFromVepfsinstance = new Volcenginecc.Vepfs.Instance("exampleinstanceResourceResourceFromVepfsinstance", new()
    {
        FileSystemName = "string",
        ZoneId = "string",
        StoreType = "string",
        Capacity = 0,
        ProjectName = "string",
        FileSystemType = "string",
        EnableRestripe = false,
        ProtocolType = "string",
        Description = "string",
        SubnetId = "string",
        Tags = new[]
        {
            new Volcenginecc.Vepfs.Inputs.InstanceTagArgs
            {
                Key = "string",
                Value = "string",
            },
        },
        VersionNumber = "string",
        VpcId = "string",
        ChargeType = "string",
    });
    
    example, err := vepfs.NewInstance(ctx, "exampleinstanceResourceResourceFromVepfsinstance", &vepfs.InstanceArgs{
    	FileSystemName: pulumi.String("string"),
    	ZoneId:         pulumi.String("string"),
    	StoreType:      pulumi.String("string"),
    	Capacity:       pulumi.Int(0),
    	ProjectName:    pulumi.String("string"),
    	FileSystemType: pulumi.String("string"),
    	EnableRestripe: pulumi.Bool(false),
    	ProtocolType:   pulumi.String("string"),
    	Description:    pulumi.String("string"),
    	SubnetId:       pulumi.String("string"),
    	Tags: vepfs.InstanceTagArray{
    		&vepfs.InstanceTagArgs{
    			Key:   pulumi.String("string"),
    			Value: pulumi.String("string"),
    		},
    	},
    	VersionNumber: pulumi.String("string"),
    	VpcId:         pulumi.String("string"),
    	ChargeType:    pulumi.String("string"),
    })
    
    var exampleinstanceResourceResourceFromVepfsinstance = new com.volcengine.volcenginecc.vepfs.Instance("exampleinstanceResourceResourceFromVepfsinstance", com.volcengine.volcenginecc.vepfs.InstanceArgs.builder()
        .fileSystemName("string")
        .zoneId("string")
        .storeType("string")
        .capacity(0)
        .projectName("string")
        .fileSystemType("string")
        .enableRestripe(false)
        .protocolType("string")
        .description("string")
        .subnetId("string")
        .tags(InstanceTagArgs.builder()
            .key("string")
            .value("string")
            .build())
        .versionNumber("string")
        .vpcId("string")
        .chargeType("string")
        .build());
    
    exampleinstance_resource_resource_from_vepfsinstance = volcenginecc.vepfs.Instance("exampleinstanceResourceResourceFromVepfsinstance",
        file_system_name="string",
        zone_id="string",
        store_type="string",
        capacity=0,
        project_name="string",
        file_system_type="string",
        enable_restripe=False,
        protocol_type="string",
        description="string",
        subnet_id="string",
        tags=[{
            "key": "string",
            "value": "string",
        }],
        version_number="string",
        vpc_id="string",
        charge_type="string")
    
    const exampleinstanceResourceResourceFromVepfsinstance = new volcenginecc.vepfs.Instance("exampleinstanceResourceResourceFromVepfsinstance", {
        fileSystemName: "string",
        zoneId: "string",
        storeType: "string",
        capacity: 0,
        projectName: "string",
        fileSystemType: "string",
        enableRestripe: false,
        protocolType: "string",
        description: "string",
        subnetId: "string",
        tags: [{
            key: "string",
            value: "string",
        }],
        versionNumber: "string",
        vpcId: "string",
        chargeType: "string",
    });
    
    type: volcenginecc:vepfs:Instance
    properties:
        capacity: 0
        chargeType: string
        description: string
        enableRestripe: false
        fileSystemName: string
        fileSystemType: string
        projectName: string
        protocolType: string
        storeType: string
        subnetId: string
        tags:
            - key: string
              value: string
        versionNumber: string
        vpcId: string
        zoneId: string
    

    Instance 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 Instance resource accepts the following input properties:

    Capacity int
    文件系统容量,单位为 TiB。
    FileSystemName string
    文件系统名称。命名规范如下:只能以中文或英文开头。只能包含中文、字母、数字、半角句号(.)、下划线(_)或中划线(-)。长度需要在 1~128 个字符内。
    StoreType string
    文件系统规格,取值说明如下:Advance100:100MB/s/TiB。Performance:性能版。IntelligentComputing:智算版。
    ZoneId string
    可用区 ID。
    ChargeType string
    计费类型。取值说明如下:PayAsYouGo:按量计费。
    Description string
    文件系统描述信息。
    EnableRestripe bool
    扩容后是否开启数据均衡,取值说明如下:true:扩容后立即开启数据均衡。false:扩容后不开启数据均衡。注意:仅 100MB/s/TiB 规格的文件系统支持数据均衡功能。由于数据均衡过程会消耗存储节点的网络和磁盘带宽,导致文件系统的性能下降,建议您评估业务需求,谨慎开启。数据均衡的时间主要受存量数据量的影响,如果您的存量数据较多,均衡的时间可能会较长,根据扩容容量大小和文件系统状态,此过程可能需要花费数小时至 2 天的时间,建议您在业务低峰期开启并耐心等待。
    FileSystemType string
    文件系统类型,默认为 VePFS。
    ProjectName string
    文件系统所属项目,默认为 default。
    ProtocolType string
    协议类型,默认为 VePFS。
    SubnetId string
    子网 ID。子网必须属于所选的可用区。
    Tags List<Volcengine.InstanceTag>
    VersionNumber string
    文件系统版本号。
    VpcId string
    私有网络 ID。
    Capacity int
    文件系统容量,单位为 TiB。
    FileSystemName string
    文件系统名称。命名规范如下:只能以中文或英文开头。只能包含中文、字母、数字、半角句号(.)、下划线(_)或中划线(-)。长度需要在 1~128 个字符内。
    StoreType string
    文件系统规格,取值说明如下:Advance100:100MB/s/TiB。Performance:性能版。IntelligentComputing:智算版。
    ZoneId string
    可用区 ID。
    ChargeType string
    计费类型。取值说明如下:PayAsYouGo:按量计费。
    Description string
    文件系统描述信息。
    EnableRestripe bool
    扩容后是否开启数据均衡,取值说明如下:true:扩容后立即开启数据均衡。false:扩容后不开启数据均衡。注意:仅 100MB/s/TiB 规格的文件系统支持数据均衡功能。由于数据均衡过程会消耗存储节点的网络和磁盘带宽,导致文件系统的性能下降,建议您评估业务需求,谨慎开启。数据均衡的时间主要受存量数据量的影响,如果您的存量数据较多,均衡的时间可能会较长,根据扩容容量大小和文件系统状态,此过程可能需要花费数小时至 2 天的时间,建议您在业务低峰期开启并耐心等待。
    FileSystemType string
    文件系统类型,默认为 VePFS。
    ProjectName string
    文件系统所属项目,默认为 default。
    ProtocolType string
    协议类型,默认为 VePFS。
    SubnetId string
    子网 ID。子网必须属于所选的可用区。
    Tags []InstanceTagArgs
    VersionNumber string
    文件系统版本号。
    VpcId string
    私有网络 ID。
    capacity Integer
    文件系统容量,单位为 TiB。
    fileSystemName String
    文件系统名称。命名规范如下:只能以中文或英文开头。只能包含中文、字母、数字、半角句号(.)、下划线(_)或中划线(-)。长度需要在 1~128 个字符内。
    storeType String
    文件系统规格,取值说明如下:Advance100:100MB/s/TiB。Performance:性能版。IntelligentComputing:智算版。
    zoneId String
    可用区 ID。
    chargeType String
    计费类型。取值说明如下:PayAsYouGo:按量计费。
    description String
    文件系统描述信息。
    enableRestripe Boolean
    扩容后是否开启数据均衡,取值说明如下:true:扩容后立即开启数据均衡。false:扩容后不开启数据均衡。注意:仅 100MB/s/TiB 规格的文件系统支持数据均衡功能。由于数据均衡过程会消耗存储节点的网络和磁盘带宽,导致文件系统的性能下降,建议您评估业务需求,谨慎开启。数据均衡的时间主要受存量数据量的影响,如果您的存量数据较多,均衡的时间可能会较长,根据扩容容量大小和文件系统状态,此过程可能需要花费数小时至 2 天的时间,建议您在业务低峰期开启并耐心等待。
    fileSystemType String
    文件系统类型,默认为 VePFS。
    projectName String
    文件系统所属项目,默认为 default。
    protocolType String
    协议类型,默认为 VePFS。
    subnetId String
    子网 ID。子网必须属于所选的可用区。
    tags List<InstanceTag>
    versionNumber String
    文件系统版本号。
    vpcId String
    私有网络 ID。
    capacity number
    文件系统容量,单位为 TiB。
    fileSystemName string
    文件系统名称。命名规范如下:只能以中文或英文开头。只能包含中文、字母、数字、半角句号(.)、下划线(_)或中划线(-)。长度需要在 1~128 个字符内。
    storeType string
    文件系统规格,取值说明如下:Advance100:100MB/s/TiB。Performance:性能版。IntelligentComputing:智算版。
    zoneId string
    可用区 ID。
    chargeType string
    计费类型。取值说明如下:PayAsYouGo:按量计费。
    description string
    文件系统描述信息。
    enableRestripe boolean
    扩容后是否开启数据均衡,取值说明如下:true:扩容后立即开启数据均衡。false:扩容后不开启数据均衡。注意:仅 100MB/s/TiB 规格的文件系统支持数据均衡功能。由于数据均衡过程会消耗存储节点的网络和磁盘带宽,导致文件系统的性能下降,建议您评估业务需求,谨慎开启。数据均衡的时间主要受存量数据量的影响,如果您的存量数据较多,均衡的时间可能会较长,根据扩容容量大小和文件系统状态,此过程可能需要花费数小时至 2 天的时间,建议您在业务低峰期开启并耐心等待。
    fileSystemType string
    文件系统类型,默认为 VePFS。
    projectName string
    文件系统所属项目,默认为 default。
    protocolType string
    协议类型,默认为 VePFS。
    subnetId string
    子网 ID。子网必须属于所选的可用区。
    tags InstanceTag[]
    versionNumber string
    文件系统版本号。
    vpcId string
    私有网络 ID。
    capacity int
    文件系统容量,单位为 TiB。
    file_system_name str
    文件系统名称。命名规范如下:只能以中文或英文开头。只能包含中文、字母、数字、半角句号(.)、下划线(_)或中划线(-)。长度需要在 1~128 个字符内。
    store_type str
    文件系统规格,取值说明如下:Advance100:100MB/s/TiB。Performance:性能版。IntelligentComputing:智算版。
    zone_id str
    可用区 ID。
    charge_type str
    计费类型。取值说明如下:PayAsYouGo:按量计费。
    description str
    文件系统描述信息。
    enable_restripe bool
    扩容后是否开启数据均衡,取值说明如下:true:扩容后立即开启数据均衡。false:扩容后不开启数据均衡。注意:仅 100MB/s/TiB 规格的文件系统支持数据均衡功能。由于数据均衡过程会消耗存储节点的网络和磁盘带宽,导致文件系统的性能下降,建议您评估业务需求,谨慎开启。数据均衡的时间主要受存量数据量的影响,如果您的存量数据较多,均衡的时间可能会较长,根据扩容容量大小和文件系统状态,此过程可能需要花费数小时至 2 天的时间,建议您在业务低峰期开启并耐心等待。
    file_system_type str
    文件系统类型,默认为 VePFS。
    project_name str
    文件系统所属项目,默认为 default。
    protocol_type str
    协议类型,默认为 VePFS。
    subnet_id str
    子网 ID。子网必须属于所选的可用区。
    tags Sequence[InstanceTagArgs]
    version_number str
    文件系统版本号。
    vpc_id str
    私有网络 ID。
    capacity Number
    文件系统容量,单位为 TiB。
    fileSystemName String
    文件系统名称。命名规范如下:只能以中文或英文开头。只能包含中文、字母、数字、半角句号(.)、下划线(_)或中划线(-)。长度需要在 1~128 个字符内。
    storeType String
    文件系统规格,取值说明如下:Advance100:100MB/s/TiB。Performance:性能版。IntelligentComputing:智算版。
    zoneId String
    可用区 ID。
    chargeType String
    计费类型。取值说明如下:PayAsYouGo:按量计费。
    description String
    文件系统描述信息。
    enableRestripe Boolean
    扩容后是否开启数据均衡,取值说明如下:true:扩容后立即开启数据均衡。false:扩容后不开启数据均衡。注意:仅 100MB/s/TiB 规格的文件系统支持数据均衡功能。由于数据均衡过程会消耗存储节点的网络和磁盘带宽,导致文件系统的性能下降,建议您评估业务需求,谨慎开启。数据均衡的时间主要受存量数据量的影响,如果您的存量数据较多,均衡的时间可能会较长,根据扩容容量大小和文件系统状态,此过程可能需要花费数小时至 2 天的时间,建议您在业务低峰期开启并耐心等待。
    fileSystemType String
    文件系统类型,默认为 VePFS。
    projectName String
    文件系统所属项目,默认为 default。
    protocolType String
    协议类型,默认为 VePFS。
    subnetId String
    子网 ID。子网必须属于所选的可用区。
    tags List<Property Map>
    versionNumber String
    文件系统版本号。
    vpcId String
    私有网络 ID。

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Instance resource produces the following output properties:

    AccountId string
    账户ID。
    Bandwidth int
    vePFS 文件系统吞吐上限。
    CapacityInfo Volcengine.InstanceCapacityInfo
    容量信息。
    ChargeStatus string
    计费状态,默认为 Normal,表示正常计费。
    CreatedTime string
    创建时间。
    ExpireTime string
    过期时间。
    FileSystemId string
    文件系统 ID。
    FreeTime string
    文件系统释放时间。
    Id string
    The provider-assigned unique ID for this managed resource.
    ReadBandwidth int
    读带宽值, 单位MB/s。
    SecurityGroupId string
    生成的辅助网卡所在的安全组ID。
    Status string
    文件系统状态。取值说明如下:Running:实例运行中。Creating:实例创建中。CreateError:实例创建失败。Updating:实例更新中。UpdateError:实例更新失败。Expanding:实例扩容中。ExpandError:实例扩容失败。Deleting:实例删除中。DeleteError:实例删除失败。Stopped:实例已关停。Error:实例处于错误状态。
    StopServiceTime string
    文件系统关停时间。
    StoreTypeCn string
    文件系统规格中文名称,支持如下:100MB/s/TiB。性能版。智算版。
    StoreTypeEn string
    存储类型英文名。
    UpdatedTime string
    文件系统更新时间。
    WriteBandwidth int
    写带宽值, 单位MB/s。
    ZoneName string
    可用区名称。
    AccountId string
    账户ID。
    Bandwidth int
    vePFS 文件系统吞吐上限。
    CapacityInfo InstanceCapacityInfo
    容量信息。
    ChargeStatus string
    计费状态,默认为 Normal,表示正常计费。
    CreatedTime string
    创建时间。
    ExpireTime string
    过期时间。
    FileSystemId string
    文件系统 ID。
    FreeTime string
    文件系统释放时间。
    Id string
    The provider-assigned unique ID for this managed resource.
    ReadBandwidth int
    读带宽值, 单位MB/s。
    SecurityGroupId string
    生成的辅助网卡所在的安全组ID。
    Status string
    文件系统状态。取值说明如下:Running:实例运行中。Creating:实例创建中。CreateError:实例创建失败。Updating:实例更新中。UpdateError:实例更新失败。Expanding:实例扩容中。ExpandError:实例扩容失败。Deleting:实例删除中。DeleteError:实例删除失败。Stopped:实例已关停。Error:实例处于错误状态。
    StopServiceTime string
    文件系统关停时间。
    StoreTypeCn string
    文件系统规格中文名称,支持如下:100MB/s/TiB。性能版。智算版。
    StoreTypeEn string
    存储类型英文名。
    UpdatedTime string
    文件系统更新时间。
    WriteBandwidth int
    写带宽值, 单位MB/s。
    ZoneName string
    可用区名称。
    accountId String
    账户ID。
    bandwidth Integer
    vePFS 文件系统吞吐上限。
    capacityInfo InstanceCapacityInfo
    容量信息。
    chargeStatus String
    计费状态,默认为 Normal,表示正常计费。
    createdTime String
    创建时间。
    expireTime String
    过期时间。
    fileSystemId String
    文件系统 ID。
    freeTime String
    文件系统释放时间。
    id String
    The provider-assigned unique ID for this managed resource.
    readBandwidth Integer
    读带宽值, 单位MB/s。
    securityGroupId String
    生成的辅助网卡所在的安全组ID。
    status String
    文件系统状态。取值说明如下:Running:实例运行中。Creating:实例创建中。CreateError:实例创建失败。Updating:实例更新中。UpdateError:实例更新失败。Expanding:实例扩容中。ExpandError:实例扩容失败。Deleting:实例删除中。DeleteError:实例删除失败。Stopped:实例已关停。Error:实例处于错误状态。
    stopServiceTime String
    文件系统关停时间。
    storeTypeCn String
    文件系统规格中文名称,支持如下:100MB/s/TiB。性能版。智算版。
    storeTypeEn String
    存储类型英文名。
    updatedTime String
    文件系统更新时间。
    writeBandwidth Integer
    写带宽值, 单位MB/s。
    zoneName String
    可用区名称。
    accountId string
    账户ID。
    bandwidth number
    vePFS 文件系统吞吐上限。
    capacityInfo InstanceCapacityInfo
    容量信息。
    chargeStatus string
    计费状态,默认为 Normal,表示正常计费。
    createdTime string
    创建时间。
    expireTime string
    过期时间。
    fileSystemId string
    文件系统 ID。
    freeTime string
    文件系统释放时间。
    id string
    The provider-assigned unique ID for this managed resource.
    readBandwidth number
    读带宽值, 单位MB/s。
    securityGroupId string
    生成的辅助网卡所在的安全组ID。
    status string
    文件系统状态。取值说明如下:Running:实例运行中。Creating:实例创建中。CreateError:实例创建失败。Updating:实例更新中。UpdateError:实例更新失败。Expanding:实例扩容中。ExpandError:实例扩容失败。Deleting:实例删除中。DeleteError:实例删除失败。Stopped:实例已关停。Error:实例处于错误状态。
    stopServiceTime string
    文件系统关停时间。
    storeTypeCn string
    文件系统规格中文名称,支持如下:100MB/s/TiB。性能版。智算版。
    storeTypeEn string
    存储类型英文名。
    updatedTime string
    文件系统更新时间。
    writeBandwidth number
    写带宽值, 单位MB/s。
    zoneName string
    可用区名称。
    account_id str
    账户ID。
    bandwidth int
    vePFS 文件系统吞吐上限。
    capacity_info InstanceCapacityInfo
    容量信息。
    charge_status str
    计费状态,默认为 Normal,表示正常计费。
    created_time str
    创建时间。
    expire_time str
    过期时间。
    file_system_id str
    文件系统 ID。
    free_time str
    文件系统释放时间。
    id str
    The provider-assigned unique ID for this managed resource.
    read_bandwidth int
    读带宽值, 单位MB/s。
    security_group_id str
    生成的辅助网卡所在的安全组ID。
    status str
    文件系统状态。取值说明如下:Running:实例运行中。Creating:实例创建中。CreateError:实例创建失败。Updating:实例更新中。UpdateError:实例更新失败。Expanding:实例扩容中。ExpandError:实例扩容失败。Deleting:实例删除中。DeleteError:实例删除失败。Stopped:实例已关停。Error:实例处于错误状态。
    stop_service_time str
    文件系统关停时间。
    store_type_cn str
    文件系统规格中文名称,支持如下:100MB/s/TiB。性能版。智算版。
    store_type_en str
    存储类型英文名。
    updated_time str
    文件系统更新时间。
    write_bandwidth int
    写带宽值, 单位MB/s。
    zone_name str
    可用区名称。
    accountId String
    账户ID。
    bandwidth Number
    vePFS 文件系统吞吐上限。
    capacityInfo Property Map
    容量信息。
    chargeStatus String
    计费状态,默认为 Normal,表示正常计费。
    createdTime String
    创建时间。
    expireTime String
    过期时间。
    fileSystemId String
    文件系统 ID。
    freeTime String
    文件系统释放时间。
    id String
    The provider-assigned unique ID for this managed resource.
    readBandwidth Number
    读带宽值, 单位MB/s。
    securityGroupId String
    生成的辅助网卡所在的安全组ID。
    status String
    文件系统状态。取值说明如下:Running:实例运行中。Creating:实例创建中。CreateError:实例创建失败。Updating:实例更新中。UpdateError:实例更新失败。Expanding:实例扩容中。ExpandError:实例扩容失败。Deleting:实例删除中。DeleteError:实例删除失败。Stopped:实例已关停。Error:实例处于错误状态。
    stopServiceTime String
    文件系统关停时间。
    storeTypeCn String
    文件系统规格中文名称,支持如下:100MB/s/TiB。性能版。智算版。
    storeTypeEn String
    存储类型英文名。
    updatedTime String
    文件系统更新时间。
    writeBandwidth Number
    写带宽值, 单位MB/s。
    zoneName String
    可用区名称。

    Look up Existing Instance Resource

    Get an existing Instance 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?: InstanceState, opts?: CustomResourceOptions): Instance
    @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,
            capacity_info: Optional[InstanceCapacityInfoArgs] = None,
            charge_status: Optional[str] = None,
            charge_type: Optional[str] = None,
            created_time: Optional[str] = None,
            description: Optional[str] = None,
            enable_restripe: Optional[bool] = None,
            expire_time: Optional[str] = None,
            file_system_id: Optional[str] = None,
            file_system_name: Optional[str] = None,
            file_system_type: Optional[str] = None,
            free_time: Optional[str] = None,
            project_name: Optional[str] = None,
            protocol_type: Optional[str] = None,
            read_bandwidth: Optional[int] = None,
            security_group_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,
            store_type_en: Optional[str] = None,
            subnet_id: Optional[str] = None,
            tags: Optional[Sequence[InstanceTagArgs]] = None,
            updated_time: Optional[str] = None,
            version_number: Optional[str] = None,
            vpc_id: Optional[str] = None,
            write_bandwidth: Optional[int] = None,
            zone_id: Optional[str] = None,
            zone_name: Optional[str] = None) -> Instance
    func GetInstance(ctx *Context, name string, id IDInput, state *InstanceState, opts ...ResourceOption) (*Instance, error)
    public static Instance Get(string name, Input<string> id, InstanceState? state, CustomResourceOptions? opts = null)
    public static Instance get(String name, Output<String> id, InstanceState state, CustomResourceOptions options)
    resources:  _:    type: volcenginecc:vepfs:Instance    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.
    The following state arguments are supported:
    AccountId string
    账户ID。
    Bandwidth int
    vePFS 文件系统吞吐上限。
    Capacity int
    文件系统容量,单位为 TiB。
    CapacityInfo Volcengine.InstanceCapacityInfo
    容量信息。
    ChargeStatus string
    计费状态,默认为 Normal,表示正常计费。
    ChargeType string
    计费类型。取值说明如下:PayAsYouGo:按量计费。
    CreatedTime string
    创建时间。
    Description string
    文件系统描述信息。
    EnableRestripe bool
    扩容后是否开启数据均衡,取值说明如下:true:扩容后立即开启数据均衡。false:扩容后不开启数据均衡。注意:仅 100MB/s/TiB 规格的文件系统支持数据均衡功能。由于数据均衡过程会消耗存储节点的网络和磁盘带宽,导致文件系统的性能下降,建议您评估业务需求,谨慎开启。数据均衡的时间主要受存量数据量的影响,如果您的存量数据较多,均衡的时间可能会较长,根据扩容容量大小和文件系统状态,此过程可能需要花费数小时至 2 天的时间,建议您在业务低峰期开启并耐心等待。
    ExpireTime string
    过期时间。
    FileSystemId string
    文件系统 ID。
    FileSystemName string
    文件系统名称。命名规范如下:只能以中文或英文开头。只能包含中文、字母、数字、半角句号(.)、下划线(_)或中划线(-)。长度需要在 1~128 个字符内。
    FileSystemType string
    文件系统类型,默认为 VePFS。
    FreeTime string
    文件系统释放时间。
    ProjectName string
    文件系统所属项目,默认为 default。
    ProtocolType string
    协议类型,默认为 VePFS。
    ReadBandwidth int
    读带宽值, 单位MB/s。
    SecurityGroupId string
    生成的辅助网卡所在的安全组ID。
    Status string
    文件系统状态。取值说明如下:Running:实例运行中。Creating:实例创建中。CreateError:实例创建失败。Updating:实例更新中。UpdateError:实例更新失败。Expanding:实例扩容中。ExpandError:实例扩容失败。Deleting:实例删除中。DeleteError:实例删除失败。Stopped:实例已关停。Error:实例处于错误状态。
    StopServiceTime string
    文件系统关停时间。
    StoreType string
    文件系统规格,取值说明如下:Advance100:100MB/s/TiB。Performance:性能版。IntelligentComputing:智算版。
    StoreTypeCn string
    文件系统规格中文名称,支持如下:100MB/s/TiB。性能版。智算版。
    StoreTypeEn string
    存储类型英文名。
    SubnetId string
    子网 ID。子网必须属于所选的可用区。
    Tags List<Volcengine.InstanceTag>
    UpdatedTime string
    文件系统更新时间。
    VersionNumber string
    文件系统版本号。
    VpcId string
    私有网络 ID。
    WriteBandwidth int
    写带宽值, 单位MB/s。
    ZoneId string
    可用区 ID。
    ZoneName string
    可用区名称。
    AccountId string
    账户ID。
    Bandwidth int
    vePFS 文件系统吞吐上限。
    Capacity int
    文件系统容量,单位为 TiB。
    CapacityInfo InstanceCapacityInfoArgs
    容量信息。
    ChargeStatus string
    计费状态,默认为 Normal,表示正常计费。
    ChargeType string
    计费类型。取值说明如下:PayAsYouGo:按量计费。
    CreatedTime string
    创建时间。
    Description string
    文件系统描述信息。
    EnableRestripe bool
    扩容后是否开启数据均衡,取值说明如下:true:扩容后立即开启数据均衡。false:扩容后不开启数据均衡。注意:仅 100MB/s/TiB 规格的文件系统支持数据均衡功能。由于数据均衡过程会消耗存储节点的网络和磁盘带宽,导致文件系统的性能下降,建议您评估业务需求,谨慎开启。数据均衡的时间主要受存量数据量的影响,如果您的存量数据较多,均衡的时间可能会较长,根据扩容容量大小和文件系统状态,此过程可能需要花费数小时至 2 天的时间,建议您在业务低峰期开启并耐心等待。
    ExpireTime string
    过期时间。
    FileSystemId string
    文件系统 ID。
    FileSystemName string
    文件系统名称。命名规范如下:只能以中文或英文开头。只能包含中文、字母、数字、半角句号(.)、下划线(_)或中划线(-)。长度需要在 1~128 个字符内。
    FileSystemType string
    文件系统类型,默认为 VePFS。
    FreeTime string
    文件系统释放时间。
    ProjectName string
    文件系统所属项目,默认为 default。
    ProtocolType string
    协议类型,默认为 VePFS。
    ReadBandwidth int
    读带宽值, 单位MB/s。
    SecurityGroupId string
    生成的辅助网卡所在的安全组ID。
    Status string
    文件系统状态。取值说明如下:Running:实例运行中。Creating:实例创建中。CreateError:实例创建失败。Updating:实例更新中。UpdateError:实例更新失败。Expanding:实例扩容中。ExpandError:实例扩容失败。Deleting:实例删除中。DeleteError:实例删除失败。Stopped:实例已关停。Error:实例处于错误状态。
    StopServiceTime string
    文件系统关停时间。
    StoreType string
    文件系统规格,取值说明如下:Advance100:100MB/s/TiB。Performance:性能版。IntelligentComputing:智算版。
    StoreTypeCn string
    文件系统规格中文名称,支持如下:100MB/s/TiB。性能版。智算版。
    StoreTypeEn string
    存储类型英文名。
    SubnetId string
    子网 ID。子网必须属于所选的可用区。
    Tags []InstanceTagArgs
    UpdatedTime string
    文件系统更新时间。
    VersionNumber string
    文件系统版本号。
    VpcId string
    私有网络 ID。
    WriteBandwidth int
    写带宽值, 单位MB/s。
    ZoneId string
    可用区 ID。
    ZoneName string
    可用区名称。
    accountId String
    账户ID。
    bandwidth Integer
    vePFS 文件系统吞吐上限。
    capacity Integer
    文件系统容量,单位为 TiB。
    capacityInfo InstanceCapacityInfo
    容量信息。
    chargeStatus String
    计费状态,默认为 Normal,表示正常计费。
    chargeType String
    计费类型。取值说明如下:PayAsYouGo:按量计费。
    createdTime String
    创建时间。
    description String
    文件系统描述信息。
    enableRestripe Boolean
    扩容后是否开启数据均衡,取值说明如下:true:扩容后立即开启数据均衡。false:扩容后不开启数据均衡。注意:仅 100MB/s/TiB 规格的文件系统支持数据均衡功能。由于数据均衡过程会消耗存储节点的网络和磁盘带宽,导致文件系统的性能下降,建议您评估业务需求,谨慎开启。数据均衡的时间主要受存量数据量的影响,如果您的存量数据较多,均衡的时间可能会较长,根据扩容容量大小和文件系统状态,此过程可能需要花费数小时至 2 天的时间,建议您在业务低峰期开启并耐心等待。
    expireTime String
    过期时间。
    fileSystemId String
    文件系统 ID。
    fileSystemName String
    文件系统名称。命名规范如下:只能以中文或英文开头。只能包含中文、字母、数字、半角句号(.)、下划线(_)或中划线(-)。长度需要在 1~128 个字符内。
    fileSystemType String
    文件系统类型,默认为 VePFS。
    freeTime String
    文件系统释放时间。
    projectName String
    文件系统所属项目,默认为 default。
    protocolType String
    协议类型,默认为 VePFS。
    readBandwidth Integer
    读带宽值, 单位MB/s。
    securityGroupId String
    生成的辅助网卡所在的安全组ID。
    status String
    文件系统状态。取值说明如下:Running:实例运行中。Creating:实例创建中。CreateError:实例创建失败。Updating:实例更新中。UpdateError:实例更新失败。Expanding:实例扩容中。ExpandError:实例扩容失败。Deleting:实例删除中。DeleteError:实例删除失败。Stopped:实例已关停。Error:实例处于错误状态。
    stopServiceTime String
    文件系统关停时间。
    storeType String
    文件系统规格,取值说明如下:Advance100:100MB/s/TiB。Performance:性能版。IntelligentComputing:智算版。
    storeTypeCn String
    文件系统规格中文名称,支持如下:100MB/s/TiB。性能版。智算版。
    storeTypeEn String
    存储类型英文名。
    subnetId String
    子网 ID。子网必须属于所选的可用区。
    tags List<InstanceTag>
    updatedTime String
    文件系统更新时间。
    versionNumber String
    文件系统版本号。
    vpcId String
    私有网络 ID。
    writeBandwidth Integer
    写带宽值, 单位MB/s。
    zoneId String
    可用区 ID。
    zoneName String
    可用区名称。
    accountId string
    账户ID。
    bandwidth number
    vePFS 文件系统吞吐上限。
    capacity number
    文件系统容量,单位为 TiB。
    capacityInfo InstanceCapacityInfo
    容量信息。
    chargeStatus string
    计费状态,默认为 Normal,表示正常计费。
    chargeType string
    计费类型。取值说明如下:PayAsYouGo:按量计费。
    createdTime string
    创建时间。
    description string
    文件系统描述信息。
    enableRestripe boolean
    扩容后是否开启数据均衡,取值说明如下:true:扩容后立即开启数据均衡。false:扩容后不开启数据均衡。注意:仅 100MB/s/TiB 规格的文件系统支持数据均衡功能。由于数据均衡过程会消耗存储节点的网络和磁盘带宽,导致文件系统的性能下降,建议您评估业务需求,谨慎开启。数据均衡的时间主要受存量数据量的影响,如果您的存量数据较多,均衡的时间可能会较长,根据扩容容量大小和文件系统状态,此过程可能需要花费数小时至 2 天的时间,建议您在业务低峰期开启并耐心等待。
    expireTime string
    过期时间。
    fileSystemId string
    文件系统 ID。
    fileSystemName string
    文件系统名称。命名规范如下:只能以中文或英文开头。只能包含中文、字母、数字、半角句号(.)、下划线(_)或中划线(-)。长度需要在 1~128 个字符内。
    fileSystemType string
    文件系统类型,默认为 VePFS。
    freeTime string
    文件系统释放时间。
    projectName string
    文件系统所属项目,默认为 default。
    protocolType string
    协议类型,默认为 VePFS。
    readBandwidth number
    读带宽值, 单位MB/s。
    securityGroupId string
    生成的辅助网卡所在的安全组ID。
    status string
    文件系统状态。取值说明如下:Running:实例运行中。Creating:实例创建中。CreateError:实例创建失败。Updating:实例更新中。UpdateError:实例更新失败。Expanding:实例扩容中。ExpandError:实例扩容失败。Deleting:实例删除中。DeleteError:实例删除失败。Stopped:实例已关停。Error:实例处于错误状态。
    stopServiceTime string
    文件系统关停时间。
    storeType string
    文件系统规格,取值说明如下:Advance100:100MB/s/TiB。Performance:性能版。IntelligentComputing:智算版。
    storeTypeCn string
    文件系统规格中文名称,支持如下:100MB/s/TiB。性能版。智算版。
    storeTypeEn string
    存储类型英文名。
    subnetId string
    子网 ID。子网必须属于所选的可用区。
    tags InstanceTag[]
    updatedTime string
    文件系统更新时间。
    versionNumber string
    文件系统版本号。
    vpcId string
    私有网络 ID。
    writeBandwidth number
    写带宽值, 单位MB/s。
    zoneId string
    可用区 ID。
    zoneName string
    可用区名称。
    account_id str
    账户ID。
    bandwidth int
    vePFS 文件系统吞吐上限。
    capacity int
    文件系统容量,单位为 TiB。
    capacity_info InstanceCapacityInfoArgs
    容量信息。
    charge_status str
    计费状态,默认为 Normal,表示正常计费。
    charge_type str
    计费类型。取值说明如下:PayAsYouGo:按量计费。
    created_time str
    创建时间。
    description str
    文件系统描述信息。
    enable_restripe bool
    扩容后是否开启数据均衡,取值说明如下:true:扩容后立即开启数据均衡。false:扩容后不开启数据均衡。注意:仅 100MB/s/TiB 规格的文件系统支持数据均衡功能。由于数据均衡过程会消耗存储节点的网络和磁盘带宽,导致文件系统的性能下降,建议您评估业务需求,谨慎开启。数据均衡的时间主要受存量数据量的影响,如果您的存量数据较多,均衡的时间可能会较长,根据扩容容量大小和文件系统状态,此过程可能需要花费数小时至 2 天的时间,建议您在业务低峰期开启并耐心等待。
    expire_time str
    过期时间。
    file_system_id str
    文件系统 ID。
    file_system_name str
    文件系统名称。命名规范如下:只能以中文或英文开头。只能包含中文、字母、数字、半角句号(.)、下划线(_)或中划线(-)。长度需要在 1~128 个字符内。
    file_system_type str
    文件系统类型,默认为 VePFS。
    free_time str
    文件系统释放时间。
    project_name str
    文件系统所属项目,默认为 default。
    protocol_type str
    协议类型,默认为 VePFS。
    read_bandwidth int
    读带宽值, 单位MB/s。
    security_group_id str
    生成的辅助网卡所在的安全组ID。
    status str
    文件系统状态。取值说明如下:Running:实例运行中。Creating:实例创建中。CreateError:实例创建失败。Updating:实例更新中。UpdateError:实例更新失败。Expanding:实例扩容中。ExpandError:实例扩容失败。Deleting:实例删除中。DeleteError:实例删除失败。Stopped:实例已关停。Error:实例处于错误状态。
    stop_service_time str
    文件系统关停时间。
    store_type str
    文件系统规格,取值说明如下:Advance100:100MB/s/TiB。Performance:性能版。IntelligentComputing:智算版。
    store_type_cn str
    文件系统规格中文名称,支持如下:100MB/s/TiB。性能版。智算版。
    store_type_en str
    存储类型英文名。
    subnet_id str
    子网 ID。子网必须属于所选的可用区。
    tags Sequence[InstanceTagArgs]
    updated_time str
    文件系统更新时间。
    version_number str
    文件系统版本号。
    vpc_id str
    私有网络 ID。
    write_bandwidth int
    写带宽值, 单位MB/s。
    zone_id str
    可用区 ID。
    zone_name str
    可用区名称。
    accountId String
    账户ID。
    bandwidth Number
    vePFS 文件系统吞吐上限。
    capacity Number
    文件系统容量,单位为 TiB。
    capacityInfo Property Map
    容量信息。
    chargeStatus String
    计费状态,默认为 Normal,表示正常计费。
    chargeType String
    计费类型。取值说明如下:PayAsYouGo:按量计费。
    createdTime String
    创建时间。
    description String
    文件系统描述信息。
    enableRestripe Boolean
    扩容后是否开启数据均衡,取值说明如下:true:扩容后立即开启数据均衡。false:扩容后不开启数据均衡。注意:仅 100MB/s/TiB 规格的文件系统支持数据均衡功能。由于数据均衡过程会消耗存储节点的网络和磁盘带宽,导致文件系统的性能下降,建议您评估业务需求,谨慎开启。数据均衡的时间主要受存量数据量的影响,如果您的存量数据较多,均衡的时间可能会较长,根据扩容容量大小和文件系统状态,此过程可能需要花费数小时至 2 天的时间,建议您在业务低峰期开启并耐心等待。
    expireTime String
    过期时间。
    fileSystemId String
    文件系统 ID。
    fileSystemName String
    文件系统名称。命名规范如下:只能以中文或英文开头。只能包含中文、字母、数字、半角句号(.)、下划线(_)或中划线(-)。长度需要在 1~128 个字符内。
    fileSystemType String
    文件系统类型,默认为 VePFS。
    freeTime String
    文件系统释放时间。
    projectName String
    文件系统所属项目,默认为 default。
    protocolType String
    协议类型,默认为 VePFS。
    readBandwidth Number
    读带宽值, 单位MB/s。
    securityGroupId String
    生成的辅助网卡所在的安全组ID。
    status String
    文件系统状态。取值说明如下:Running:实例运行中。Creating:实例创建中。CreateError:实例创建失败。Updating:实例更新中。UpdateError:实例更新失败。Expanding:实例扩容中。ExpandError:实例扩容失败。Deleting:实例删除中。DeleteError:实例删除失败。Stopped:实例已关停。Error:实例处于错误状态。
    stopServiceTime String
    文件系统关停时间。
    storeType String
    文件系统规格,取值说明如下:Advance100:100MB/s/TiB。Performance:性能版。IntelligentComputing:智算版。
    storeTypeCn String
    文件系统规格中文名称,支持如下:100MB/s/TiB。性能版。智算版。
    storeTypeEn String
    存储类型英文名。
    subnetId String
    子网 ID。子网必须属于所选的可用区。
    tags List<Property Map>
    updatedTime String
    文件系统更新时间。
    versionNumber String
    文件系统版本号。
    vpcId String
    私有网络 ID。
    writeBandwidth Number
    写带宽值, 单位MB/s。
    zoneId String
    可用区 ID。
    zoneName String
    可用区名称。

    Supporting Types

    InstanceCapacityInfo, InstanceCapacityInfoArgs

    TotalTiB int
    文件系统总容量,单位为 TiB。
    UsedGiB int
    已使用容量(GiB)。
    TotalTiB int
    文件系统总容量,单位为 TiB。
    UsedGiB int
    已使用容量(GiB)。
    totalTiB Integer
    文件系统总容量,单位为 TiB。
    usedGiB Integer
    已使用容量(GiB)。
    totalTiB number
    文件系统总容量,单位为 TiB。
    usedGiB number
    已使用容量(GiB)。
    total_ti_b int
    文件系统总容量,单位为 TiB。
    used_gi_b int
    已使用容量(GiB)。
    totalTiB Number
    文件系统总容量,单位为 TiB。
    usedGiB Number
    已使用容量(GiB)。

    InstanceTag, InstanceTagArgs

    Key string
    用户标签的标签键。
    Value string
    用户标签的标签值。
    Key string
    用户标签的标签键。
    Value string
    用户标签的标签值。
    key String
    用户标签的标签键。
    value String
    用户标签的标签值。
    key string
    用户标签的标签键。
    value string
    用户标签的标签值。
    key str
    用户标签的标签键。
    value str
    用户标签的标签值。
    key String
    用户标签的标签键。
    value String
    用户标签的标签值。

    Import

    $ pulumi import volcenginecc:vepfs/instance:Instance example "file_system_id"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    volcenginecc volcengine/pulumi-volcenginecc
    License
    MPL-2.0
    Notes
    This Pulumi package is based on the volcenginecc Terraform Provider.
    volcenginecc logo
    volcenginecc v0.0.11 published on Thursday, Dec 4, 2025 by Volcengine
      Meet Neo: Your AI Platform Teammate