1. Packages
  2. Packages
  3. Volcenginecc Provider
  4. API Docs
  5. filenas
  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

    The file system provides file storage services through the standard NFS protocol for remote network file access. After creating a mount point in the management console, you can access the file system on your client as needed using the standard POSIX interface

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as volcenginecc from "@volcengine/pulumi-volcenginecc";
    
    const fileNASInstanceDemo = new volcenginecc.filenas.Instance("FileNASInstanceDemo", {
        fileSystemName: "FileNASInstanceDemo",
        capacity: {
            total: 105,
        },
        chargeType: "PayAsYouGo",
        fileSystemType: "Extreme",
        protocolType: "NFS",
        zoneId: "cn-beijing-x",
    });
    
    import pulumi
    import pulumi_volcenginecc as volcenginecc
    
    file_nas_instance_demo = volcenginecc.filenas.Instance("FileNASInstanceDemo",
        file_system_name="FileNASInstanceDemo",
        capacity={
            "total": 105,
        },
        charge_type="PayAsYouGo",
        file_system_type="Extreme",
        protocol_type="NFS",
        zone_id="cn-beijing-x")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/volcengine/pulumi-volcenginecc/sdk/go/volcenginecc/filenas"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := filenas.NewInstance(ctx, "FileNASInstanceDemo", &filenas.InstanceArgs{
    			FileSystemName: pulumi.String("FileNASInstanceDemo"),
    			Capacity: &filenas.InstanceCapacityArgs{
    				Total: pulumi.Float64(105),
    			},
    			ChargeType:     pulumi.String("PayAsYouGo"),
    			FileSystemType: pulumi.String("Extreme"),
    			ProtocolType:   pulumi.String("NFS"),
    			ZoneId:         pulumi.String("cn-beijing-x"),
    		})
    		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 fileNASInstanceDemo = new Volcenginecc.Filenas.Instance("FileNASInstanceDemo", new()
        {
            FileSystemName = "FileNASInstanceDemo",
            Capacity = new Volcenginecc.Filenas.Inputs.InstanceCapacityArgs
            {
                Total = 105,
            },
            ChargeType = "PayAsYouGo",
            FileSystemType = "Extreme",
            ProtocolType = "NFS",
            ZoneId = "cn-beijing-x",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.volcengine.volcenginecc.filenas.Instance;
    import com.volcengine.volcenginecc.filenas.InstanceArgs;
    import com.pulumi.volcenginecc.filenas.inputs.InstanceCapacityArgs;
    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 fileNASInstanceDemo = new Instance("fileNASInstanceDemo", InstanceArgs.builder()
                .fileSystemName("FileNASInstanceDemo")
                .capacity(InstanceCapacityArgs.builder()
                    .total(105.0)
                    .build())
                .chargeType("PayAsYouGo")
                .fileSystemType("Extreme")
                .protocolType("NFS")
                .zoneId("cn-beijing-x")
                .build());
    
        }
    }
    
    resources:
      fileNASInstanceDemo:
        type: volcenginecc:filenas:Instance
        name: FileNASInstanceDemo
        properties:
          fileSystemName: FileNASInstanceDemo
          capacity:
            total: 105
          chargeType: PayAsYouGo
          fileSystemType: Extreme
          protocolType: NFS
          zoneId: cn-beijing-x
    

    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,
                 charge_type: Optional[str] = None,
                 file_system_name: Optional[str] = None,
                 file_system_type: Optional[str] = None,
                 protocol_type: Optional[str] = None,
                 zone_id: Optional[str] = None,
                 cache_performance: Optional[InstanceCachePerformanceArgs] = None,
                 capacity: Optional[InstanceCapacityArgs] = None,
                 description: Optional[str] = None,
                 project_name: Optional[str] = None,
                 snapshot_id: Optional[str] = None,
                 storage_type: Optional[str] = None,
                 tags: Optional[Sequence[InstanceTagArgs]] = 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:filenas: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:

    ChargeType string
    Billing type. Value: PayAsYouGo, indicates pay-as-you-go billing
    FileSystemName string
    File system name
    FileSystemType string
    File system type. Possible values: Extreme: NAS Extreme type; Capacity: NAS Capacity type; Cache: NAS Cache type
    ProtocolType string
    File system protocol type. Value: NFS, indicates NFS protocol, commonly used for Linux clients
    ZoneId string
    Availability Zone ID
    CachePerformance Volcengine.InstanceCachePerformance
    Cache performance information
    Capacity Volcengine.InstanceCapacity
    File system capacity
    Description string
    Description
    ProjectName string
    Project, default value is the Default project
    SnapshotId string
    Snapshot ID used at creation. If this parameter is provided, the file system will be created from the snapshot
    StorageType string
    Storage type. Value: Standard, indicates standard type
    Tags List<Volcengine.InstanceTag>
    ChargeType string
    Billing type. Value: PayAsYouGo, indicates pay-as-you-go billing
    FileSystemName string
    File system name
    FileSystemType string
    File system type. Possible values: Extreme: NAS Extreme type; Capacity: NAS Capacity type; Cache: NAS Cache type
    ProtocolType string
    File system protocol type. Value: NFS, indicates NFS protocol, commonly used for Linux clients
    ZoneId string
    Availability Zone ID
    CachePerformance InstanceCachePerformanceArgs
    Cache performance information
    Capacity InstanceCapacityArgs
    File system capacity
    Description string
    Description
    ProjectName string
    Project, default value is the Default project
    SnapshotId string
    Snapshot ID used at creation. If this parameter is provided, the file system will be created from the snapshot
    StorageType string
    Storage type. Value: Standard, indicates standard type
    Tags []InstanceTagArgs
    chargeType String
    Billing type. Value: PayAsYouGo, indicates pay-as-you-go billing
    fileSystemName String
    File system name
    fileSystemType String
    File system type. Possible values: Extreme: NAS Extreme type; Capacity: NAS Capacity type; Cache: NAS Cache type
    protocolType String
    File system protocol type. Value: NFS, indicates NFS protocol, commonly used for Linux clients
    zoneId String
    Availability Zone ID
    cachePerformance InstanceCachePerformance
    Cache performance information
    capacity InstanceCapacity
    File system capacity
    description String
    Description
    projectName String
    Project, default value is the Default project
    snapshotId String
    Snapshot ID used at creation. If this parameter is provided, the file system will be created from the snapshot
    storageType String
    Storage type. Value: Standard, indicates standard type
    tags List<InstanceTag>
    chargeType string
    Billing type. Value: PayAsYouGo, indicates pay-as-you-go billing
    fileSystemName string
    File system name
    fileSystemType string
    File system type. Possible values: Extreme: NAS Extreme type; Capacity: NAS Capacity type; Cache: NAS Cache type
    protocolType string
    File system protocol type. Value: NFS, indicates NFS protocol, commonly used for Linux clients
    zoneId string
    Availability Zone ID
    cachePerformance InstanceCachePerformance
    Cache performance information
    capacity InstanceCapacity
    File system capacity
    description string
    Description
    projectName string
    Project, default value is the Default project
    snapshotId string
    Snapshot ID used at creation. If this parameter is provided, the file system will be created from the snapshot
    storageType string
    Storage type. Value: Standard, indicates standard type
    tags InstanceTag[]
    charge_type str
    Billing type. Value: PayAsYouGo, indicates pay-as-you-go billing
    file_system_name str
    File system name
    file_system_type str
    File system type. Possible values: Extreme: NAS Extreme type; Capacity: NAS Capacity type; Cache: NAS Cache type
    protocol_type str
    File system protocol type. Value: NFS, indicates NFS protocol, commonly used for Linux clients
    zone_id str
    Availability Zone ID
    cache_performance InstanceCachePerformanceArgs
    Cache performance information
    capacity InstanceCapacityArgs
    File system capacity
    description str
    Description
    project_name str
    Project, default value is the Default project
    snapshot_id str
    Snapshot ID used at creation. If this parameter is provided, the file system will be created from the snapshot
    storage_type str
    Storage type. Value: Standard, indicates standard type
    tags Sequence[InstanceTagArgs]
    chargeType String
    Billing type. Value: PayAsYouGo, indicates pay-as-you-go billing
    fileSystemName String
    File system name
    fileSystemType String
    File system type. Possible values: Extreme: NAS Extreme type; Capacity: NAS Capacity type; Cache: NAS Cache type
    protocolType String
    File system protocol type. Value: NFS, indicates NFS protocol, commonly used for Linux clients
    zoneId String
    Availability Zone ID
    cachePerformance Property Map
    Cache performance information
    capacity Property Map
    File system capacity
    description String
    Description
    projectName String
    Project, default value is the Default project
    snapshotId String
    Snapshot ID used at creation. If this parameter is provided, the file system will be created from the snapshot
    storageType String
    Storage type. Value: Standard, indicates standard type
    tags List<Property Map>

    Outputs

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

    CreateTime string
    Creation time
    FileSystemId string
    File system ID
    Id string
    The provider-assigned unique ID for this managed resource.
    SnapshotCount int
    Number of snapshots
    Status string
    File system status. Possible values: Unknown: Status unknown. Running: File system running. Creating: File system being created. Expanding: File system being upgraded. Error: File system error. Deleting: File system being deleted. DeleteError: File system deletion failed. Deleted: File system deleted. Stopped: File system stopped.
    UpdateTime string
    Update time
    ZoneName string
    Availability Zone name
    CreateTime string
    Creation time
    FileSystemId string
    File system ID
    Id string
    The provider-assigned unique ID for this managed resource.
    SnapshotCount int
    Number of snapshots
    Status string
    File system status. Possible values: Unknown: Status unknown. Running: File system running. Creating: File system being created. Expanding: File system being upgraded. Error: File system error. Deleting: File system being deleted. DeleteError: File system deletion failed. Deleted: File system deleted. Stopped: File system stopped.
    UpdateTime string
    Update time
    ZoneName string
    Availability Zone name
    createTime String
    Creation time
    fileSystemId String
    File system ID
    id String
    The provider-assigned unique ID for this managed resource.
    snapshotCount Integer
    Number of snapshots
    status String
    File system status. Possible values: Unknown: Status unknown. Running: File system running. Creating: File system being created. Expanding: File system being upgraded. Error: File system error. Deleting: File system being deleted. DeleteError: File system deletion failed. Deleted: File system deleted. Stopped: File system stopped.
    updateTime String
    Update time
    zoneName String
    Availability Zone name
    createTime string
    Creation time
    fileSystemId string
    File system ID
    id string
    The provider-assigned unique ID for this managed resource.
    snapshotCount number
    Number of snapshots
    status string
    File system status. Possible values: Unknown: Status unknown. Running: File system running. Creating: File system being created. Expanding: File system being upgraded. Error: File system error. Deleting: File system being deleted. DeleteError: File system deletion failed. Deleted: File system deleted. Stopped: File system stopped.
    updateTime string
    Update time
    zoneName string
    Availability Zone name
    create_time str
    Creation time
    file_system_id str
    File system ID
    id str
    The provider-assigned unique ID for this managed resource.
    snapshot_count int
    Number of snapshots
    status str
    File system status. Possible values: Unknown: Status unknown. Running: File system running. Creating: File system being created. Expanding: File system being upgraded. Error: File system error. Deleting: File system being deleted. DeleteError: File system deletion failed. Deleted: File system deleted. Stopped: File system stopped.
    update_time str
    Update time
    zone_name str
    Availability Zone name
    createTime String
    Creation time
    fileSystemId String
    File system ID
    id String
    The provider-assigned unique ID for this managed resource.
    snapshotCount Number
    Number of snapshots
    status String
    File system status. Possible values: Unknown: Status unknown. Running: File system running. Creating: File system being created. Expanding: File system being upgraded. Error: File system error. Deleting: File system being deleted. DeleteError: File system deletion failed. Deleted: File system deleted. Stopped: File system stopped.
    updateTime String
    Update time
    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,
            cache_performance: Optional[InstanceCachePerformanceArgs] = None,
            capacity: Optional[InstanceCapacityArgs] = None,
            charge_type: Optional[str] = None,
            create_time: Optional[str] = None,
            description: Optional[str] = None,
            file_system_id: Optional[str] = None,
            file_system_name: Optional[str] = None,
            file_system_type: Optional[str] = None,
            project_name: Optional[str] = None,
            protocol_type: Optional[str] = None,
            snapshot_count: Optional[int] = None,
            snapshot_id: Optional[str] = None,
            status: Optional[str] = None,
            storage_type: Optional[str] = None,
            tags: Optional[Sequence[InstanceTagArgs]] = None,
            update_time: Optional[str] = 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:filenas: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:
    CachePerformance Volcengine.InstanceCachePerformance
    Cache performance information
    Capacity Volcengine.InstanceCapacity
    File system capacity
    ChargeType string
    Billing type. Value: PayAsYouGo, indicates pay-as-you-go billing
    CreateTime string
    Creation time
    Description string
    Description
    FileSystemId string
    File system ID
    FileSystemName string
    File system name
    FileSystemType string
    File system type. Possible values: Extreme: NAS Extreme type; Capacity: NAS Capacity type; Cache: NAS Cache type
    ProjectName string
    Project, default value is the Default project
    ProtocolType string
    File system protocol type. Value: NFS, indicates NFS protocol, commonly used for Linux clients
    SnapshotCount int
    Number of snapshots
    SnapshotId string
    Snapshot ID used at creation. If this parameter is provided, the file system will be created from the snapshot
    Status string
    File system status. Possible values: Unknown: Status unknown. Running: File system running. Creating: File system being created. Expanding: File system being upgraded. Error: File system error. Deleting: File system being deleted. DeleteError: File system deletion failed. Deleted: File system deleted. Stopped: File system stopped.
    StorageType string
    Storage type. Value: Standard, indicates standard type
    Tags List<Volcengine.InstanceTag>
    UpdateTime string
    Update time
    ZoneId string
    Availability Zone ID
    ZoneName string
    Availability Zone name
    CachePerformance InstanceCachePerformanceArgs
    Cache performance information
    Capacity InstanceCapacityArgs
    File system capacity
    ChargeType string
    Billing type. Value: PayAsYouGo, indicates pay-as-you-go billing
    CreateTime string
    Creation time
    Description string
    Description
    FileSystemId string
    File system ID
    FileSystemName string
    File system name
    FileSystemType string
    File system type. Possible values: Extreme: NAS Extreme type; Capacity: NAS Capacity type; Cache: NAS Cache type
    ProjectName string
    Project, default value is the Default project
    ProtocolType string
    File system protocol type. Value: NFS, indicates NFS protocol, commonly used for Linux clients
    SnapshotCount int
    Number of snapshots
    SnapshotId string
    Snapshot ID used at creation. If this parameter is provided, the file system will be created from the snapshot
    Status string
    File system status. Possible values: Unknown: Status unknown. Running: File system running. Creating: File system being created. Expanding: File system being upgraded. Error: File system error. Deleting: File system being deleted. DeleteError: File system deletion failed. Deleted: File system deleted. Stopped: File system stopped.
    StorageType string
    Storage type. Value: Standard, indicates standard type
    Tags []InstanceTagArgs
    UpdateTime string
    Update time
    ZoneId string
    Availability Zone ID
    ZoneName string
    Availability Zone name
    cachePerformance InstanceCachePerformance
    Cache performance information
    capacity InstanceCapacity
    File system capacity
    chargeType String
    Billing type. Value: PayAsYouGo, indicates pay-as-you-go billing
    createTime String
    Creation time
    description String
    Description
    fileSystemId String
    File system ID
    fileSystemName String
    File system name
    fileSystemType String
    File system type. Possible values: Extreme: NAS Extreme type; Capacity: NAS Capacity type; Cache: NAS Cache type
    projectName String
    Project, default value is the Default project
    protocolType String
    File system protocol type. Value: NFS, indicates NFS protocol, commonly used for Linux clients
    snapshotCount Integer
    Number of snapshots
    snapshotId String
    Snapshot ID used at creation. If this parameter is provided, the file system will be created from the snapshot
    status String
    File system status. Possible values: Unknown: Status unknown. Running: File system running. Creating: File system being created. Expanding: File system being upgraded. Error: File system error. Deleting: File system being deleted. DeleteError: File system deletion failed. Deleted: File system deleted. Stopped: File system stopped.
    storageType String
    Storage type. Value: Standard, indicates standard type
    tags List<InstanceTag>
    updateTime String
    Update time
    zoneId String
    Availability Zone ID
    zoneName String
    Availability Zone name
    cachePerformance InstanceCachePerformance
    Cache performance information
    capacity InstanceCapacity
    File system capacity
    chargeType string
    Billing type. Value: PayAsYouGo, indicates pay-as-you-go billing
    createTime string
    Creation time
    description string
    Description
    fileSystemId string
    File system ID
    fileSystemName string
    File system name
    fileSystemType string
    File system type. Possible values: Extreme: NAS Extreme type; Capacity: NAS Capacity type; Cache: NAS Cache type
    projectName string
    Project, default value is the Default project
    protocolType string
    File system protocol type. Value: NFS, indicates NFS protocol, commonly used for Linux clients
    snapshotCount number
    Number of snapshots
    snapshotId string
    Snapshot ID used at creation. If this parameter is provided, the file system will be created from the snapshot
    status string
    File system status. Possible values: Unknown: Status unknown. Running: File system running. Creating: File system being created. Expanding: File system being upgraded. Error: File system error. Deleting: File system being deleted. DeleteError: File system deletion failed. Deleted: File system deleted. Stopped: File system stopped.
    storageType string
    Storage type. Value: Standard, indicates standard type
    tags InstanceTag[]
    updateTime string
    Update time
    zoneId string
    Availability Zone ID
    zoneName string
    Availability Zone name
    cache_performance InstanceCachePerformanceArgs
    Cache performance information
    capacity InstanceCapacityArgs
    File system capacity
    charge_type str
    Billing type. Value: PayAsYouGo, indicates pay-as-you-go billing
    create_time str
    Creation time
    description str
    Description
    file_system_id str
    File system ID
    file_system_name str
    File system name
    file_system_type str
    File system type. Possible values: Extreme: NAS Extreme type; Capacity: NAS Capacity type; Cache: NAS Cache type
    project_name str
    Project, default value is the Default project
    protocol_type str
    File system protocol type. Value: NFS, indicates NFS protocol, commonly used for Linux clients
    snapshot_count int
    Number of snapshots
    snapshot_id str
    Snapshot ID used at creation. If this parameter is provided, the file system will be created from the snapshot
    status str
    File system status. Possible values: Unknown: Status unknown. Running: File system running. Creating: File system being created. Expanding: File system being upgraded. Error: File system error. Deleting: File system being deleted. DeleteError: File system deletion failed. Deleted: File system deleted. Stopped: File system stopped.
    storage_type str
    Storage type. Value: Standard, indicates standard type
    tags Sequence[InstanceTagArgs]
    update_time str
    Update time
    zone_id str
    Availability Zone ID
    zone_name str
    Availability Zone name
    cachePerformance Property Map
    Cache performance information
    capacity Property Map
    File system capacity
    chargeType String
    Billing type. Value: PayAsYouGo, indicates pay-as-you-go billing
    createTime String
    Creation time
    description String
    Description
    fileSystemId String
    File system ID
    fileSystemName String
    File system name
    fileSystemType String
    File system type. Possible values: Extreme: NAS Extreme type; Capacity: NAS Capacity type; Cache: NAS Cache type
    projectName String
    Project, default value is the Default project
    protocolType String
    File system protocol type. Value: NFS, indicates NFS protocol, commonly used for Linux clients
    snapshotCount Number
    Number of snapshots
    snapshotId String
    Snapshot ID used at creation. If this parameter is provided, the file system will be created from the snapshot
    status String
    File system status. Possible values: Unknown: Status unknown. Running: File system running. Creating: File system being created. Expanding: File system being upgraded. Error: File system error. Deleting: File system being deleted. DeleteError: File system deletion failed. Deleted: File system deleted. Stopped: File system stopped.
    storageType String
    Storage type. Value: Standard, indicates standard type
    tags List<Property Map>
    updateTime String
    Update time
    zoneId String
    Availability Zone ID
    zoneName String
    Availability Zone name

    Supporting Types

    InstanceCachePerformance, InstanceCachePerformanceArgs

    CacheBandwidth int
    Provisioned bandwidth, used to increase file system bandwidth
    CacheBandwidth int
    Provisioned bandwidth, used to increase file system bandwidth
    cacheBandwidth Integer
    Provisioned bandwidth, used to increase file system bandwidth
    cacheBandwidth number
    Provisioned bandwidth, used to increase file system bandwidth
    cache_bandwidth int
    Provisioned bandwidth, used to increase file system bandwidth
    cacheBandwidth Number
    Provisioned bandwidth, used to increase file system bandwidth

    InstanceCapacity, InstanceCapacityArgs

    Total double
    Total available file system capacity, in GiB
    Used double
    Used file system capacity, in MiB
    Total float64
    Total available file system capacity, in GiB
    Used float64
    Used file system capacity, in MiB
    total Double
    Total available file system capacity, in GiB
    used Double
    Used file system capacity, in MiB
    total number
    Total available file system capacity, in GiB
    used number
    Used file system capacity, in MiB
    total float
    Total available file system capacity, in GiB
    used float
    Used file system capacity, in MiB
    total Number
    Total available file system capacity, in GiB
    used Number
    Used file system capacity, in MiB

    InstanceTag, InstanceTagArgs

    Key string
    Tag key
    Type string
    Tag type
    Value string
    Tag value
    Key string
    Tag key
    Type string
    Tag type
    Value string
    Tag value
    key String
    Tag key
    type String
    Tag type
    value String
    Tag value
    key string
    Tag key
    type string
    Tag type
    value string
    Tag value
    key str
    Tag key
    type str
    Tag type
    value str
    Tag value
    key String
    Tag key
    type String
    Tag type
    value String
    Tag value

    Import

    $ pulumi import volcenginecc:filenas/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.