1. Packages
  2. Packages
  3. Volcenginecc Provider
  4. API Docs
  5. vepfs
  6. Instance
Viewing docs for volcenginecc v0.0.32
published on Thursday, Apr 23, 2026 by Volcengine
volcenginecc logo
Viewing docs for volcenginecc v0.0.32
published on Thursday, Apr 23, 2026 by Volcengine

    File storage vePFS is a newly launched high-throughput, low-latency, scalable parallel file system service designed to meet the high-throughput and low-latency data read/write requirements in high-performance computing scenarios. It can be widely used in HPC (high-performance computing), AI training or inference, energy exploration, industrial simulation, film rendering, life sciences, meteorological analysis, and other scenarios. vePFS also provides one-click deployment and integrated monitoring and alerting capabilities, eliminating deployment and maintenance costs while maximizing your business efficiency.

    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.

    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
    File system capacity, unit: TiB.
    FileSystemName string
    File system name. Naming rules are as follows: Must start with a Chinese or English letter. Can only contain Chinese characters, letters, numbers, period (.), underscore (_), or hyphen (-). Length must be between 1 and 128 characters.
    StoreType string
    File system specification. Value descriptions are as follows: Advance100: 100MB/s/TiB. Performance: Performance. IntelligentComputing: Intelligent Computing.
    ZoneId string
    Availability zone ID.
    ChargeType string
    Billing type. Value descriptions are as follows: PayAsYouGo: Pay-as-you-go billing.
    Description string
    File system description.
    EnableRestripe bool
    Whether to enable data balancing after expansion. Value description: true: Enable data balancing immediately after expansion. false: Do not enable data balancing after expansion. Note: Only file systems with a specification of 100MB/s/TiB support the data balancing feature. Because the data balancing process consumes the network and disk bandwidth of storage nodes and causes file system performance degradation, we recommend that you evaluate your business needs and enable with caution. The duration of data balancing mainly depends on the amount of existing data. If you have a large amount of existing data, the balancing process may take longer. Depending on the expansion size and file system status, this process may take several hours to up to 2 days. We recommend enabling it during off-peak hours and waiting patiently.
    FileSystemType string
    File system type. Default is VePFS.
    ProjectName string
    Project to which the file system belongs. Default is default.
    ProtocolType string
    Protocol type. Default is VePFS.
    SubnetId string
    Subnet ID. The subnet must belong to the selected availability zone.
    Tags List<Volcengine.InstanceTag>
    VersionNumber string
    File system version number.
    VpcId string
    Private network ID.
    Capacity int
    File system capacity, unit: TiB.
    FileSystemName string
    File system name. Naming rules are as follows: Must start with a Chinese or English letter. Can only contain Chinese characters, letters, numbers, period (.), underscore (_), or hyphen (-). Length must be between 1 and 128 characters.
    StoreType string
    File system specification. Value descriptions are as follows: Advance100: 100MB/s/TiB. Performance: Performance. IntelligentComputing: Intelligent Computing.
    ZoneId string
    Availability zone ID.
    ChargeType string
    Billing type. Value descriptions are as follows: PayAsYouGo: Pay-as-you-go billing.
    Description string
    File system description.
    EnableRestripe bool
    Whether to enable data balancing after expansion. Value description: true: Enable data balancing immediately after expansion. false: Do not enable data balancing after expansion. Note: Only file systems with a specification of 100MB/s/TiB support the data balancing feature. Because the data balancing process consumes the network and disk bandwidth of storage nodes and causes file system performance degradation, we recommend that you evaluate your business needs and enable with caution. The duration of data balancing mainly depends on the amount of existing data. If you have a large amount of existing data, the balancing process may take longer. Depending on the expansion size and file system status, this process may take several hours to up to 2 days. We recommend enabling it during off-peak hours and waiting patiently.
    FileSystemType string
    File system type. Default is VePFS.
    ProjectName string
    Project to which the file system belongs. Default is default.
    ProtocolType string
    Protocol type. Default is VePFS.
    SubnetId string
    Subnet ID. The subnet must belong to the selected availability zone.
    Tags []InstanceTagArgs
    VersionNumber string
    File system version number.
    VpcId string
    Private network ID.
    capacity Integer
    File system capacity, unit: TiB.
    fileSystemName String
    File system name. Naming rules are as follows: Must start with a Chinese or English letter. Can only contain Chinese characters, letters, numbers, period (.), underscore (_), or hyphen (-). Length must be between 1 and 128 characters.
    storeType String
    File system specification. Value descriptions are as follows: Advance100: 100MB/s/TiB. Performance: Performance. IntelligentComputing: Intelligent Computing.
    zoneId String
    Availability zone ID.
    chargeType String
    Billing type. Value descriptions are as follows: PayAsYouGo: Pay-as-you-go billing.
    description String
    File system description.
    enableRestripe Boolean
    Whether to enable data balancing after expansion. Value description: true: Enable data balancing immediately after expansion. false: Do not enable data balancing after expansion. Note: Only file systems with a specification of 100MB/s/TiB support the data balancing feature. Because the data balancing process consumes the network and disk bandwidth of storage nodes and causes file system performance degradation, we recommend that you evaluate your business needs and enable with caution. The duration of data balancing mainly depends on the amount of existing data. If you have a large amount of existing data, the balancing process may take longer. Depending on the expansion size and file system status, this process may take several hours to up to 2 days. We recommend enabling it during off-peak hours and waiting patiently.
    fileSystemType String
    File system type. Default is VePFS.
    projectName String
    Project to which the file system belongs. Default is default.
    protocolType String
    Protocol type. Default is VePFS.
    subnetId String
    Subnet ID. The subnet must belong to the selected availability zone.
    tags List<InstanceTag>
    versionNumber String
    File system version number.
    vpcId String
    Private network ID.
    capacity number
    File system capacity, unit: TiB.
    fileSystemName string
    File system name. Naming rules are as follows: Must start with a Chinese or English letter. Can only contain Chinese characters, letters, numbers, period (.), underscore (_), or hyphen (-). Length must be between 1 and 128 characters.
    storeType string
    File system specification. Value descriptions are as follows: Advance100: 100MB/s/TiB. Performance: Performance. IntelligentComputing: Intelligent Computing.
    zoneId string
    Availability zone ID.
    chargeType string
    Billing type. Value descriptions are as follows: PayAsYouGo: Pay-as-you-go billing.
    description string
    File system description.
    enableRestripe boolean
    Whether to enable data balancing after expansion. Value description: true: Enable data balancing immediately after expansion. false: Do not enable data balancing after expansion. Note: Only file systems with a specification of 100MB/s/TiB support the data balancing feature. Because the data balancing process consumes the network and disk bandwidth of storage nodes and causes file system performance degradation, we recommend that you evaluate your business needs and enable with caution. The duration of data balancing mainly depends on the amount of existing data. If you have a large amount of existing data, the balancing process may take longer. Depending on the expansion size and file system status, this process may take several hours to up to 2 days. We recommend enabling it during off-peak hours and waiting patiently.
    fileSystemType string
    File system type. Default is VePFS.
    projectName string
    Project to which the file system belongs. Default is default.
    protocolType string
    Protocol type. Default is VePFS.
    subnetId string
    Subnet ID. The subnet must belong to the selected availability zone.
    tags InstanceTag[]
    versionNumber string
    File system version number.
    vpcId string
    Private network ID.
    capacity int
    File system capacity, unit: TiB.
    file_system_name str
    File system name. Naming rules are as follows: Must start with a Chinese or English letter. Can only contain Chinese characters, letters, numbers, period (.), underscore (_), or hyphen (-). Length must be between 1 and 128 characters.
    store_type str
    File system specification. Value descriptions are as follows: Advance100: 100MB/s/TiB. Performance: Performance. IntelligentComputing: Intelligent Computing.
    zone_id str
    Availability zone ID.
    charge_type str
    Billing type. Value descriptions are as follows: PayAsYouGo: Pay-as-you-go billing.
    description str
    File system description.
    enable_restripe bool
    Whether to enable data balancing after expansion. Value description: true: Enable data balancing immediately after expansion. false: Do not enable data balancing after expansion. Note: Only file systems with a specification of 100MB/s/TiB support the data balancing feature. Because the data balancing process consumes the network and disk bandwidth of storage nodes and causes file system performance degradation, we recommend that you evaluate your business needs and enable with caution. The duration of data balancing mainly depends on the amount of existing data. If you have a large amount of existing data, the balancing process may take longer. Depending on the expansion size and file system status, this process may take several hours to up to 2 days. We recommend enabling it during off-peak hours and waiting patiently.
    file_system_type str
    File system type. Default is VePFS.
    project_name str
    Project to which the file system belongs. Default is default.
    protocol_type str
    Protocol type. Default is VePFS.
    subnet_id str
    Subnet ID. The subnet must belong to the selected availability zone.
    tags Sequence[InstanceTagArgs]
    version_number str
    File system version number.
    vpc_id str
    Private network ID.
    capacity Number
    File system capacity, unit: TiB.
    fileSystemName String
    File system name. Naming rules are as follows: Must start with a Chinese or English letter. Can only contain Chinese characters, letters, numbers, period (.), underscore (_), or hyphen (-). Length must be between 1 and 128 characters.
    storeType String
    File system specification. Value descriptions are as follows: Advance100: 100MB/s/TiB. Performance: Performance. IntelligentComputing: Intelligent Computing.
    zoneId String
    Availability zone ID.
    chargeType String
    Billing type. Value descriptions are as follows: PayAsYouGo: Pay-as-you-go billing.
    description String
    File system description.
    enableRestripe Boolean
    Whether to enable data balancing after expansion. Value description: true: Enable data balancing immediately after expansion. false: Do not enable data balancing after expansion. Note: Only file systems with a specification of 100MB/s/TiB support the data balancing feature. Because the data balancing process consumes the network and disk bandwidth of storage nodes and causes file system performance degradation, we recommend that you evaluate your business needs and enable with caution. The duration of data balancing mainly depends on the amount of existing data. If you have a large amount of existing data, the balancing process may take longer. Depending on the expansion size and file system status, this process may take several hours to up to 2 days. We recommend enabling it during off-peak hours and waiting patiently.
    fileSystemType String
    File system type. Default is VePFS.
    projectName String
    Project to which the file system belongs. Default is default.
    protocolType String
    Protocol type. Default is VePFS.
    subnetId String
    Subnet ID. The subnet must belong to the selected availability zone.
    tags List<Property Map>
    versionNumber String
    File system version number.
    vpcId String
    Private network ID.

    Outputs

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

    AccountId string
    Account ID.
    Bandwidth int
    VePFS file system throughput limit.
    CapacityInfo Volcengine.InstanceCapacityInfo
    Capacity information.
    ChargeStatus string
    Billing status. Default is Normal, indicating standard billing.
    CreatedTime string
    Creation time.
    ExpireTime string
    Expiration time.
    FileSystemId string
    File system ID.
    FreeTime string
    File system release time.
    Id string
    The provider-assigned unique ID for this managed resource.
    ReadBandwidth int
    Read bandwidth value, unit: MB/s.
    SecurityGroupId string
    Security group ID for the generated auxiliary NIC.
    Status string
    File system status. Value descriptions are as follows: Running: Instance is running. Creating: Instance is being created. CreateError: Instance creation failed. Updating: Instance is being updated. UpdateError: Instance update failed. Expanding: Instance is being expanded. ExpandError: Instance expansion failed. Deleting: Instance is being deleted. DeleteError: Instance deletion failed. Stopped: Instance is stopped. Error: Instance is in an error state.
    StopServiceTime string
    File system shutdown time.
    StoreTypeCn string
    File system specification name in Chinese. Supported options: 100MB/s/TiB. Performance. Intelligent Computing.
    StoreTypeEn string
    Storage type English name.
    UpdatedTime string
    File system update time.
    WriteBandwidth int
    Write bandwidth value, measured in MB/s.
    ZoneName string
    Availability zone name.
    AccountId string
    Account ID.
    Bandwidth int
    VePFS file system throughput limit.
    CapacityInfo InstanceCapacityInfo
    Capacity information.
    ChargeStatus string
    Billing status. Default is Normal, indicating standard billing.
    CreatedTime string
    Creation time.
    ExpireTime string
    Expiration time.
    FileSystemId string
    File system ID.
    FreeTime string
    File system release time.
    Id string
    The provider-assigned unique ID for this managed resource.
    ReadBandwidth int
    Read bandwidth value, unit: MB/s.
    SecurityGroupId string
    Security group ID for the generated auxiliary NIC.
    Status string
    File system status. Value descriptions are as follows: Running: Instance is running. Creating: Instance is being created. CreateError: Instance creation failed. Updating: Instance is being updated. UpdateError: Instance update failed. Expanding: Instance is being expanded. ExpandError: Instance expansion failed. Deleting: Instance is being deleted. DeleteError: Instance deletion failed. Stopped: Instance is stopped. Error: Instance is in an error state.
    StopServiceTime string
    File system shutdown time.
    StoreTypeCn string
    File system specification name in Chinese. Supported options: 100MB/s/TiB. Performance. Intelligent Computing.
    StoreTypeEn string
    Storage type English name.
    UpdatedTime string
    File system update time.
    WriteBandwidth int
    Write bandwidth value, measured in MB/s.
    ZoneName string
    Availability zone name.
    accountId String
    Account ID.
    bandwidth Integer
    VePFS file system throughput limit.
    capacityInfo InstanceCapacityInfo
    Capacity information.
    chargeStatus String
    Billing status. Default is Normal, indicating standard billing.
    createdTime String
    Creation time.
    expireTime String
    Expiration time.
    fileSystemId String
    File system ID.
    freeTime String
    File system release time.
    id String
    The provider-assigned unique ID for this managed resource.
    readBandwidth Integer
    Read bandwidth value, unit: MB/s.
    securityGroupId String
    Security group ID for the generated auxiliary NIC.
    status String
    File system status. Value descriptions are as follows: Running: Instance is running. Creating: Instance is being created. CreateError: Instance creation failed. Updating: Instance is being updated. UpdateError: Instance update failed. Expanding: Instance is being expanded. ExpandError: Instance expansion failed. Deleting: Instance is being deleted. DeleteError: Instance deletion failed. Stopped: Instance is stopped. Error: Instance is in an error state.
    stopServiceTime String
    File system shutdown time.
    storeTypeCn String
    File system specification name in Chinese. Supported options: 100MB/s/TiB. Performance. Intelligent Computing.
    storeTypeEn String
    Storage type English name.
    updatedTime String
    File system update time.
    writeBandwidth Integer
    Write bandwidth value, measured in MB/s.
    zoneName String
    Availability zone name.
    accountId string
    Account ID.
    bandwidth number
    VePFS file system throughput limit.
    capacityInfo InstanceCapacityInfo
    Capacity information.
    chargeStatus string
    Billing status. Default is Normal, indicating standard billing.
    createdTime string
    Creation time.
    expireTime string
    Expiration time.
    fileSystemId string
    File system ID.
    freeTime string
    File system release time.
    id string
    The provider-assigned unique ID for this managed resource.
    readBandwidth number
    Read bandwidth value, unit: MB/s.
    securityGroupId string
    Security group ID for the generated auxiliary NIC.
    status string
    File system status. Value descriptions are as follows: Running: Instance is running. Creating: Instance is being created. CreateError: Instance creation failed. Updating: Instance is being updated. UpdateError: Instance update failed. Expanding: Instance is being expanded. ExpandError: Instance expansion failed. Deleting: Instance is being deleted. DeleteError: Instance deletion failed. Stopped: Instance is stopped. Error: Instance is in an error state.
    stopServiceTime string
    File system shutdown time.
    storeTypeCn string
    File system specification name in Chinese. Supported options: 100MB/s/TiB. Performance. Intelligent Computing.
    storeTypeEn string
    Storage type English name.
    updatedTime string
    File system update time.
    writeBandwidth number
    Write bandwidth value, measured in MB/s.
    zoneName string
    Availability zone name.
    account_id str
    Account ID.
    bandwidth int
    VePFS file system throughput limit.
    capacity_info InstanceCapacityInfo
    Capacity information.
    charge_status str
    Billing status. Default is Normal, indicating standard billing.
    created_time str
    Creation time.
    expire_time str
    Expiration time.
    file_system_id str
    File system ID.
    free_time str
    File system release time.
    id str
    The provider-assigned unique ID for this managed resource.
    read_bandwidth int
    Read bandwidth value, unit: MB/s.
    security_group_id str
    Security group ID for the generated auxiliary NIC.
    status str
    File system status. Value descriptions are as follows: Running: Instance is running. Creating: Instance is being created. CreateError: Instance creation failed. Updating: Instance is being updated. UpdateError: Instance update failed. Expanding: Instance is being expanded. ExpandError: Instance expansion failed. Deleting: Instance is being deleted. DeleteError: Instance deletion failed. Stopped: Instance is stopped. Error: Instance is in an error state.
    stop_service_time str
    File system shutdown time.
    store_type_cn str
    File system specification name in Chinese. Supported options: 100MB/s/TiB. Performance. Intelligent Computing.
    store_type_en str
    Storage type English name.
    updated_time str
    File system update time.
    write_bandwidth int
    Write bandwidth value, measured in MB/s.
    zone_name str
    Availability zone name.
    accountId String
    Account ID.
    bandwidth Number
    VePFS file system throughput limit.
    capacityInfo Property Map
    Capacity information.
    chargeStatus String
    Billing status. Default is Normal, indicating standard billing.
    createdTime String
    Creation time.
    expireTime String
    Expiration time.
    fileSystemId String
    File system ID.
    freeTime String
    File system release time.
    id String
    The provider-assigned unique ID for this managed resource.
    readBandwidth Number
    Read bandwidth value, unit: MB/s.
    securityGroupId String
    Security group ID for the generated auxiliary NIC.
    status String
    File system status. Value descriptions are as follows: Running: Instance is running. Creating: Instance is being created. CreateError: Instance creation failed. Updating: Instance is being updated. UpdateError: Instance update failed. Expanding: Instance is being expanded. ExpandError: Instance expansion failed. Deleting: Instance is being deleted. DeleteError: Instance deletion failed. Stopped: Instance is stopped. Error: Instance is in an error state.
    stopServiceTime String
    File system shutdown time.
    storeTypeCn String
    File system specification name in Chinese. Supported options: 100MB/s/TiB. Performance. Intelligent Computing.
    storeTypeEn String
    Storage type English name.
    updatedTime String
    File system update time.
    writeBandwidth Number
    Write bandwidth value, measured in MB/s.
    zoneName String
    Availability zone name.

    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
    Account ID.
    Bandwidth int
    VePFS file system throughput limit.
    Capacity int
    File system capacity, unit: TiB.
    CapacityInfo Volcengine.InstanceCapacityInfo
    Capacity information.
    ChargeStatus string
    Billing status. Default is Normal, indicating standard billing.
    ChargeType string
    Billing type. Value descriptions are as follows: PayAsYouGo: Pay-as-you-go billing.
    CreatedTime string
    Creation time.
    Description string
    File system description.
    EnableRestripe bool
    Whether to enable data balancing after expansion. Value description: true: Enable data balancing immediately after expansion. false: Do not enable data balancing after expansion. Note: Only file systems with a specification of 100MB/s/TiB support the data balancing feature. Because the data balancing process consumes the network and disk bandwidth of storage nodes and causes file system performance degradation, we recommend that you evaluate your business needs and enable with caution. The duration of data balancing mainly depends on the amount of existing data. If you have a large amount of existing data, the balancing process may take longer. Depending on the expansion size and file system status, this process may take several hours to up to 2 days. We recommend enabling it during off-peak hours and waiting patiently.
    ExpireTime string
    Expiration time.
    FileSystemId string
    File system ID.
    FileSystemName string
    File system name. Naming rules are as follows: Must start with a Chinese or English letter. Can only contain Chinese characters, letters, numbers, period (.), underscore (_), or hyphen (-). Length must be between 1 and 128 characters.
    FileSystemType string
    File system type. Default is VePFS.
    FreeTime string
    File system release time.
    ProjectName string
    Project to which the file system belongs. Default is default.
    ProtocolType string
    Protocol type. Default is VePFS.
    ReadBandwidth int
    Read bandwidth value, unit: MB/s.
    SecurityGroupId string
    Security group ID for the generated auxiliary NIC.
    Status string
    File system status. Value descriptions are as follows: Running: Instance is running. Creating: Instance is being created. CreateError: Instance creation failed. Updating: Instance is being updated. UpdateError: Instance update failed. Expanding: Instance is being expanded. ExpandError: Instance expansion failed. Deleting: Instance is being deleted. DeleteError: Instance deletion failed. Stopped: Instance is stopped. Error: Instance is in an error state.
    StopServiceTime string
    File system shutdown time.
    StoreType string
    File system specification. Value descriptions are as follows: Advance100: 100MB/s/TiB. Performance: Performance. IntelligentComputing: Intelligent Computing.
    StoreTypeCn string
    File system specification name in Chinese. Supported options: 100MB/s/TiB. Performance. Intelligent Computing.
    StoreTypeEn string
    Storage type English name.
    SubnetId string
    Subnet ID. The subnet must belong to the selected availability zone.
    Tags List<Volcengine.InstanceTag>
    UpdatedTime string
    File system update time.
    VersionNumber string
    File system version number.
    VpcId string
    Private network ID.
    WriteBandwidth int
    Write bandwidth value, measured in MB/s.
    ZoneId string
    Availability zone ID.
    ZoneName string
    Availability zone name.
    AccountId string
    Account ID.
    Bandwidth int
    VePFS file system throughput limit.
    Capacity int
    File system capacity, unit: TiB.
    CapacityInfo InstanceCapacityInfoArgs
    Capacity information.
    ChargeStatus string
    Billing status. Default is Normal, indicating standard billing.
    ChargeType string
    Billing type. Value descriptions are as follows: PayAsYouGo: Pay-as-you-go billing.
    CreatedTime string
    Creation time.
    Description string
    File system description.
    EnableRestripe bool
    Whether to enable data balancing after expansion. Value description: true: Enable data balancing immediately after expansion. false: Do not enable data balancing after expansion. Note: Only file systems with a specification of 100MB/s/TiB support the data balancing feature. Because the data balancing process consumes the network and disk bandwidth of storage nodes and causes file system performance degradation, we recommend that you evaluate your business needs and enable with caution. The duration of data balancing mainly depends on the amount of existing data. If you have a large amount of existing data, the balancing process may take longer. Depending on the expansion size and file system status, this process may take several hours to up to 2 days. We recommend enabling it during off-peak hours and waiting patiently.
    ExpireTime string
    Expiration time.
    FileSystemId string
    File system ID.
    FileSystemName string
    File system name. Naming rules are as follows: Must start with a Chinese or English letter. Can only contain Chinese characters, letters, numbers, period (.), underscore (_), or hyphen (-). Length must be between 1 and 128 characters.
    FileSystemType string
    File system type. Default is VePFS.
    FreeTime string
    File system release time.
    ProjectName string
    Project to which the file system belongs. Default is default.
    ProtocolType string
    Protocol type. Default is VePFS.
    ReadBandwidth int
    Read bandwidth value, unit: MB/s.
    SecurityGroupId string
    Security group ID for the generated auxiliary NIC.
    Status string
    File system status. Value descriptions are as follows: Running: Instance is running. Creating: Instance is being created. CreateError: Instance creation failed. Updating: Instance is being updated. UpdateError: Instance update failed. Expanding: Instance is being expanded. ExpandError: Instance expansion failed. Deleting: Instance is being deleted. DeleteError: Instance deletion failed. Stopped: Instance is stopped. Error: Instance is in an error state.
    StopServiceTime string
    File system shutdown time.
    StoreType string
    File system specification. Value descriptions are as follows: Advance100: 100MB/s/TiB. Performance: Performance. IntelligentComputing: Intelligent Computing.
    StoreTypeCn string
    File system specification name in Chinese. Supported options: 100MB/s/TiB. Performance. Intelligent Computing.
    StoreTypeEn string
    Storage type English name.
    SubnetId string
    Subnet ID. The subnet must belong to the selected availability zone.
    Tags []InstanceTagArgs
    UpdatedTime string
    File system update time.
    VersionNumber string
    File system version number.
    VpcId string
    Private network ID.
    WriteBandwidth int
    Write bandwidth value, measured in MB/s.
    ZoneId string
    Availability zone ID.
    ZoneName string
    Availability zone name.
    accountId String
    Account ID.
    bandwidth Integer
    VePFS file system throughput limit.
    capacity Integer
    File system capacity, unit: TiB.
    capacityInfo InstanceCapacityInfo
    Capacity information.
    chargeStatus String
    Billing status. Default is Normal, indicating standard billing.
    chargeType String
    Billing type. Value descriptions are as follows: PayAsYouGo: Pay-as-you-go billing.
    createdTime String
    Creation time.
    description String
    File system description.
    enableRestripe Boolean
    Whether to enable data balancing after expansion. Value description: true: Enable data balancing immediately after expansion. false: Do not enable data balancing after expansion. Note: Only file systems with a specification of 100MB/s/TiB support the data balancing feature. Because the data balancing process consumes the network and disk bandwidth of storage nodes and causes file system performance degradation, we recommend that you evaluate your business needs and enable with caution. The duration of data balancing mainly depends on the amount of existing data. If you have a large amount of existing data, the balancing process may take longer. Depending on the expansion size and file system status, this process may take several hours to up to 2 days. We recommend enabling it during off-peak hours and waiting patiently.
    expireTime String
    Expiration time.
    fileSystemId String
    File system ID.
    fileSystemName String
    File system name. Naming rules are as follows: Must start with a Chinese or English letter. Can only contain Chinese characters, letters, numbers, period (.), underscore (_), or hyphen (-). Length must be between 1 and 128 characters.
    fileSystemType String
    File system type. Default is VePFS.
    freeTime String
    File system release time.
    projectName String
    Project to which the file system belongs. Default is default.
    protocolType String
    Protocol type. Default is VePFS.
    readBandwidth Integer
    Read bandwidth value, unit: MB/s.
    securityGroupId String
    Security group ID for the generated auxiliary NIC.
    status String
    File system status. Value descriptions are as follows: Running: Instance is running. Creating: Instance is being created. CreateError: Instance creation failed. Updating: Instance is being updated. UpdateError: Instance update failed. Expanding: Instance is being expanded. ExpandError: Instance expansion failed. Deleting: Instance is being deleted. DeleteError: Instance deletion failed. Stopped: Instance is stopped. Error: Instance is in an error state.
    stopServiceTime String
    File system shutdown time.
    storeType String
    File system specification. Value descriptions are as follows: Advance100: 100MB/s/TiB. Performance: Performance. IntelligentComputing: Intelligent Computing.
    storeTypeCn String
    File system specification name in Chinese. Supported options: 100MB/s/TiB. Performance. Intelligent Computing.
    storeTypeEn String
    Storage type English name.
    subnetId String
    Subnet ID. The subnet must belong to the selected availability zone.
    tags List<InstanceTag>
    updatedTime String
    File system update time.
    versionNumber String
    File system version number.
    vpcId String
    Private network ID.
    writeBandwidth Integer
    Write bandwidth value, measured in MB/s.
    zoneId String
    Availability zone ID.
    zoneName String
    Availability zone name.
    accountId string
    Account ID.
    bandwidth number
    VePFS file system throughput limit.
    capacity number
    File system capacity, unit: TiB.
    capacityInfo InstanceCapacityInfo
    Capacity information.
    chargeStatus string
    Billing status. Default is Normal, indicating standard billing.
    chargeType string
    Billing type. Value descriptions are as follows: PayAsYouGo: Pay-as-you-go billing.
    createdTime string
    Creation time.
    description string
    File system description.
    enableRestripe boolean
    Whether to enable data balancing after expansion. Value description: true: Enable data balancing immediately after expansion. false: Do not enable data balancing after expansion. Note: Only file systems with a specification of 100MB/s/TiB support the data balancing feature. Because the data balancing process consumes the network and disk bandwidth of storage nodes and causes file system performance degradation, we recommend that you evaluate your business needs and enable with caution. The duration of data balancing mainly depends on the amount of existing data. If you have a large amount of existing data, the balancing process may take longer. Depending on the expansion size and file system status, this process may take several hours to up to 2 days. We recommend enabling it during off-peak hours and waiting patiently.
    expireTime string
    Expiration time.
    fileSystemId string
    File system ID.
    fileSystemName string
    File system name. Naming rules are as follows: Must start with a Chinese or English letter. Can only contain Chinese characters, letters, numbers, period (.), underscore (_), or hyphen (-). Length must be between 1 and 128 characters.
    fileSystemType string
    File system type. Default is VePFS.
    freeTime string
    File system release time.
    projectName string
    Project to which the file system belongs. Default is default.
    protocolType string
    Protocol type. Default is VePFS.
    readBandwidth number
    Read bandwidth value, unit: MB/s.
    securityGroupId string
    Security group ID for the generated auxiliary NIC.
    status string
    File system status. Value descriptions are as follows: Running: Instance is running. Creating: Instance is being created. CreateError: Instance creation failed. Updating: Instance is being updated. UpdateError: Instance update failed. Expanding: Instance is being expanded. ExpandError: Instance expansion failed. Deleting: Instance is being deleted. DeleteError: Instance deletion failed. Stopped: Instance is stopped. Error: Instance is in an error state.
    stopServiceTime string
    File system shutdown time.
    storeType string
    File system specification. Value descriptions are as follows: Advance100: 100MB/s/TiB. Performance: Performance. IntelligentComputing: Intelligent Computing.
    storeTypeCn string
    File system specification name in Chinese. Supported options: 100MB/s/TiB. Performance. Intelligent Computing.
    storeTypeEn string
    Storage type English name.
    subnetId string
    Subnet ID. The subnet must belong to the selected availability zone.
    tags InstanceTag[]
    updatedTime string
    File system update time.
    versionNumber string
    File system version number.
    vpcId string
    Private network ID.
    writeBandwidth number
    Write bandwidth value, measured in MB/s.
    zoneId string
    Availability zone ID.
    zoneName string
    Availability zone name.
    account_id str
    Account ID.
    bandwidth int
    VePFS file system throughput limit.
    capacity int
    File system capacity, unit: TiB.
    capacity_info InstanceCapacityInfoArgs
    Capacity information.
    charge_status str
    Billing status. Default is Normal, indicating standard billing.
    charge_type str
    Billing type. Value descriptions are as follows: PayAsYouGo: Pay-as-you-go billing.
    created_time str
    Creation time.
    description str
    File system description.
    enable_restripe bool
    Whether to enable data balancing after expansion. Value description: true: Enable data balancing immediately after expansion. false: Do not enable data balancing after expansion. Note: Only file systems with a specification of 100MB/s/TiB support the data balancing feature. Because the data balancing process consumes the network and disk bandwidth of storage nodes and causes file system performance degradation, we recommend that you evaluate your business needs and enable with caution. The duration of data balancing mainly depends on the amount of existing data. If you have a large amount of existing data, the balancing process may take longer. Depending on the expansion size and file system status, this process may take several hours to up to 2 days. We recommend enabling it during off-peak hours and waiting patiently.
    expire_time str
    Expiration time.
    file_system_id str
    File system ID.
    file_system_name str
    File system name. Naming rules are as follows: Must start with a Chinese or English letter. Can only contain Chinese characters, letters, numbers, period (.), underscore (_), or hyphen (-). Length must be between 1 and 128 characters.
    file_system_type str
    File system type. Default is VePFS.
    free_time str
    File system release time.
    project_name str
    Project to which the file system belongs. Default is default.
    protocol_type str
    Protocol type. Default is VePFS.
    read_bandwidth int
    Read bandwidth value, unit: MB/s.
    security_group_id str
    Security group ID for the generated auxiliary NIC.
    status str
    File system status. Value descriptions are as follows: Running: Instance is running. Creating: Instance is being created. CreateError: Instance creation failed. Updating: Instance is being updated. UpdateError: Instance update failed. Expanding: Instance is being expanded. ExpandError: Instance expansion failed. Deleting: Instance is being deleted. DeleteError: Instance deletion failed. Stopped: Instance is stopped. Error: Instance is in an error state.
    stop_service_time str
    File system shutdown time.
    store_type str
    File system specification. Value descriptions are as follows: Advance100: 100MB/s/TiB. Performance: Performance. IntelligentComputing: Intelligent Computing.
    store_type_cn str
    File system specification name in Chinese. Supported options: 100MB/s/TiB. Performance. Intelligent Computing.
    store_type_en str
    Storage type English name.
    subnet_id str
    Subnet ID. The subnet must belong to the selected availability zone.
    tags Sequence[InstanceTagArgs]
    updated_time str
    File system update time.
    version_number str
    File system version number.
    vpc_id str
    Private network ID.
    write_bandwidth int
    Write bandwidth value, measured in MB/s.
    zone_id str
    Availability zone ID.
    zone_name str
    Availability zone name.
    accountId String
    Account ID.
    bandwidth Number
    VePFS file system throughput limit.
    capacity Number
    File system capacity, unit: TiB.
    capacityInfo Property Map
    Capacity information.
    chargeStatus String
    Billing status. Default is Normal, indicating standard billing.
    chargeType String
    Billing type. Value descriptions are as follows: PayAsYouGo: Pay-as-you-go billing.
    createdTime String
    Creation time.
    description String
    File system description.
    enableRestripe Boolean
    Whether to enable data balancing after expansion. Value description: true: Enable data balancing immediately after expansion. false: Do not enable data balancing after expansion. Note: Only file systems with a specification of 100MB/s/TiB support the data balancing feature. Because the data balancing process consumes the network and disk bandwidth of storage nodes and causes file system performance degradation, we recommend that you evaluate your business needs and enable with caution. The duration of data balancing mainly depends on the amount of existing data. If you have a large amount of existing data, the balancing process may take longer. Depending on the expansion size and file system status, this process may take several hours to up to 2 days. We recommend enabling it during off-peak hours and waiting patiently.
    expireTime String
    Expiration time.
    fileSystemId String
    File system ID.
    fileSystemName String
    File system name. Naming rules are as follows: Must start with a Chinese or English letter. Can only contain Chinese characters, letters, numbers, period (.), underscore (_), or hyphen (-). Length must be between 1 and 128 characters.
    fileSystemType String
    File system type. Default is VePFS.
    freeTime String
    File system release time.
    projectName String
    Project to which the file system belongs. Default is default.
    protocolType String
    Protocol type. Default is VePFS.
    readBandwidth Number
    Read bandwidth value, unit: MB/s.
    securityGroupId String
    Security group ID for the generated auxiliary NIC.
    status String
    File system status. Value descriptions are as follows: Running: Instance is running. Creating: Instance is being created. CreateError: Instance creation failed. Updating: Instance is being updated. UpdateError: Instance update failed. Expanding: Instance is being expanded. ExpandError: Instance expansion failed. Deleting: Instance is being deleted. DeleteError: Instance deletion failed. Stopped: Instance is stopped. Error: Instance is in an error state.
    stopServiceTime String
    File system shutdown time.
    storeType String
    File system specification. Value descriptions are as follows: Advance100: 100MB/s/TiB. Performance: Performance. IntelligentComputing: Intelligent Computing.
    storeTypeCn String
    File system specification name in Chinese. Supported options: 100MB/s/TiB. Performance. Intelligent Computing.
    storeTypeEn String
    Storage type English name.
    subnetId String
    Subnet ID. The subnet must belong to the selected availability zone.
    tags List<Property Map>
    updatedTime String
    File system update time.
    versionNumber String
    File system version number.
    vpcId String
    Private network ID.
    writeBandwidth Number
    Write bandwidth value, measured in MB/s.
    zoneId String
    Availability zone ID.
    zoneName String
    Availability zone name.

    Supporting Types

    InstanceCapacityInfo, InstanceCapacityInfoArgs

    TotalTiB int
    Total file system capacity, unit: TiB. Note: Disk balancing time varies based on cluster capacity, cluster load, and other factors. For clusters above the PiB level, expansion typically requires day-level disk balancing time. The expansion capacity becomes effective (and is billed) only after disk balancing is complete.
    UsedGiB int
    Used capacity (GiB).
    TotalTiB int
    Total file system capacity, unit: TiB. Note: Disk balancing time varies based on cluster capacity, cluster load, and other factors. For clusters above the PiB level, expansion typically requires day-level disk balancing time. The expansion capacity becomes effective (and is billed) only after disk balancing is complete.
    UsedGiB int
    Used capacity (GiB).
    totalTiB Integer
    Total file system capacity, unit: TiB. Note: Disk balancing time varies based on cluster capacity, cluster load, and other factors. For clusters above the PiB level, expansion typically requires day-level disk balancing time. The expansion capacity becomes effective (and is billed) only after disk balancing is complete.
    usedGiB Integer
    Used capacity (GiB).
    totalTiB number
    Total file system capacity, unit: TiB. Note: Disk balancing time varies based on cluster capacity, cluster load, and other factors. For clusters above the PiB level, expansion typically requires day-level disk balancing time. The expansion capacity becomes effective (and is billed) only after disk balancing is complete.
    usedGiB number
    Used capacity (GiB).
    total_ti_b int
    Total file system capacity, unit: TiB. Note: Disk balancing time varies based on cluster capacity, cluster load, and other factors. For clusters above the PiB level, expansion typically requires day-level disk balancing time. The expansion capacity becomes effective (and is billed) only after disk balancing is complete.
    used_gi_b int
    Used capacity (GiB).
    totalTiB Number
    Total file system capacity, unit: TiB. Note: Disk balancing time varies based on cluster capacity, cluster load, and other factors. For clusters above the PiB level, expansion typically requires day-level disk balancing time. The expansion capacity becomes effective (and is billed) only after disk balancing is complete.
    usedGiB Number
    Used capacity (GiB).

    InstanceTag, InstanceTagArgs

    Key string
    User tag key.
    Value string
    User tag value.
    Key string
    User tag key.
    Value string
    User tag value.
    key String
    User tag key.
    value String
    User tag value.
    key string
    User tag key.
    value string
    User tag value.
    key str
    User tag key.
    value str
    User tag value.
    key String
    User tag key.
    value String
    User tag value.

    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
    Viewing docs for volcenginecc v0.0.32
    published on Thursday, Apr 23, 2026 by Volcengine
      Try Pulumi Cloud free. Your team will thank you.