文件存储 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。
- File
System stringName - 文件系统名称。命名规范如下:只能以中文或英文开头。只能包含中文、字母、数字、半角句号(.)、下划线(_)或中划线(-)。长度需要在 1~128 个字符内。
- Store
Type string - 文件系统规格,取值说明如下:Advance100:100MB/s/TiB。Performance:性能版。IntelligentComputing:智算版。
- Zone
Id string - 可用区 ID。
- Charge
Type string - 计费类型。取值说明如下:PayAsYouGo:按量计费。
- Description string
- 文件系统描述信息。
- Enable
Restripe bool - 扩容后是否开启数据均衡,取值说明如下:true:扩容后立即开启数据均衡。false:扩容后不开启数据均衡。注意:仅 100MB/s/TiB 规格的文件系统支持数据均衡功能。由于数据均衡过程会消耗存储节点的网络和磁盘带宽,导致文件系统的性能下降,建议您评估业务需求,谨慎开启。数据均衡的时间主要受存量数据量的影响,如果您的存量数据较多,均衡的时间可能会较长,根据扩容容量大小和文件系统状态,此过程可能需要花费数小时至 2 天的时间,建议您在业务低峰期开启并耐心等待。
- File
System stringType - 文件系统类型,默认为 VePFS。
- Project
Name string - 文件系统所属项目,默认为 default。
- Protocol
Type string - 协议类型,默认为 VePFS。
- Subnet
Id string - 子网 ID。子网必须属于所选的可用区。
-
List<Volcengine.
Instance Tag> - Version
Number string - 文件系统版本号。
- Vpc
Id string - 私有网络 ID。
- Capacity int
- 文件系统容量,单位为 TiB。
- File
System stringName - 文件系统名称。命名规范如下:只能以中文或英文开头。只能包含中文、字母、数字、半角句号(.)、下划线(_)或中划线(-)。长度需要在 1~128 个字符内。
- Store
Type string - 文件系统规格,取值说明如下:Advance100:100MB/s/TiB。Performance:性能版。IntelligentComputing:智算版。
- Zone
Id string - 可用区 ID。
- Charge
Type string - 计费类型。取值说明如下:PayAsYouGo:按量计费。
- Description string
- 文件系统描述信息。
- Enable
Restripe bool - 扩容后是否开启数据均衡,取值说明如下:true:扩容后立即开启数据均衡。false:扩容后不开启数据均衡。注意:仅 100MB/s/TiB 规格的文件系统支持数据均衡功能。由于数据均衡过程会消耗存储节点的网络和磁盘带宽,导致文件系统的性能下降,建议您评估业务需求,谨慎开启。数据均衡的时间主要受存量数据量的影响,如果您的存量数据较多,均衡的时间可能会较长,根据扩容容量大小和文件系统状态,此过程可能需要花费数小时至 2 天的时间,建议您在业务低峰期开启并耐心等待。
- File
System stringType - 文件系统类型,默认为 VePFS。
- Project
Name string - 文件系统所属项目,默认为 default。
- Protocol
Type string - 协议类型,默认为 VePFS。
- Subnet
Id string - 子网 ID。子网必须属于所选的可用区。
-
[]Instance
Tag Args - Version
Number string - 文件系统版本号。
- Vpc
Id string - 私有网络 ID。
- capacity Integer
- 文件系统容量,单位为 TiB。
- file
System StringName - 文件系统名称。命名规范如下:只能以中文或英文开头。只能包含中文、字母、数字、半角句号(.)、下划线(_)或中划线(-)。长度需要在 1~128 个字符内。
- store
Type String - 文件系统规格,取值说明如下:Advance100:100MB/s/TiB。Performance:性能版。IntelligentComputing:智算版。
- zone
Id String - 可用区 ID。
- charge
Type String - 计费类型。取值说明如下:PayAsYouGo:按量计费。
- description String
- 文件系统描述信息。
- enable
Restripe Boolean - 扩容后是否开启数据均衡,取值说明如下:true:扩容后立即开启数据均衡。false:扩容后不开启数据均衡。注意:仅 100MB/s/TiB 规格的文件系统支持数据均衡功能。由于数据均衡过程会消耗存储节点的网络和磁盘带宽,导致文件系统的性能下降,建议您评估业务需求,谨慎开启。数据均衡的时间主要受存量数据量的影响,如果您的存量数据较多,均衡的时间可能会较长,根据扩容容量大小和文件系统状态,此过程可能需要花费数小时至 2 天的时间,建议您在业务低峰期开启并耐心等待。
- file
System StringType - 文件系统类型,默认为 VePFS。
- project
Name String - 文件系统所属项目,默认为 default。
- protocol
Type String - 协议类型,默认为 VePFS。
- subnet
Id String - 子网 ID。子网必须属于所选的可用区。
-
List<Instance
Tag> - version
Number String - 文件系统版本号。
- vpc
Id String - 私有网络 ID。
- capacity number
- 文件系统容量,单位为 TiB。
- file
System stringName - 文件系统名称。命名规范如下:只能以中文或英文开头。只能包含中文、字母、数字、半角句号(.)、下划线(_)或中划线(-)。长度需要在 1~128 个字符内。
- store
Type string - 文件系统规格,取值说明如下:Advance100:100MB/s/TiB。Performance:性能版。IntelligentComputing:智算版。
- zone
Id string - 可用区 ID。
- charge
Type string - 计费类型。取值说明如下:PayAsYouGo:按量计费。
- description string
- 文件系统描述信息。
- enable
Restripe boolean - 扩容后是否开启数据均衡,取值说明如下:true:扩容后立即开启数据均衡。false:扩容后不开启数据均衡。注意:仅 100MB/s/TiB 规格的文件系统支持数据均衡功能。由于数据均衡过程会消耗存储节点的网络和磁盘带宽,导致文件系统的性能下降,建议您评估业务需求,谨慎开启。数据均衡的时间主要受存量数据量的影响,如果您的存量数据较多,均衡的时间可能会较长,根据扩容容量大小和文件系统状态,此过程可能需要花费数小时至 2 天的时间,建议您在业务低峰期开启并耐心等待。
- file
System stringType - 文件系统类型,默认为 VePFS。
- project
Name string - 文件系统所属项目,默认为 default。
- protocol
Type string - 协议类型,默认为 VePFS。
- subnet
Id string - 子网 ID。子网必须属于所选的可用区。
-
Instance
Tag[] - version
Number string - 文件系统版本号。
- vpc
Id string - 私有网络 ID。
- capacity int
- 文件系统容量,单位为 TiB。
- file_
system_ strname - 文件系统名称。命名规范如下:只能以中文或英文开头。只能包含中文、字母、数字、半角句号(.)、下划线(_)或中划线(-)。长度需要在 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_ strtype - 文件系统类型,默认为 VePFS。
- project_
name str - 文件系统所属项目,默认为 default。
- protocol_
type str - 协议类型,默认为 VePFS。
- subnet_
id str - 子网 ID。子网必须属于所选的可用区。
-
Sequence[Instance
Tag Args] - version_
number str - 文件系统版本号。
- vpc_
id str - 私有网络 ID。
- capacity Number
- 文件系统容量,单位为 TiB。
- file
System StringName - 文件系统名称。命名规范如下:只能以中文或英文开头。只能包含中文、字母、数字、半角句号(.)、下划线(_)或中划线(-)。长度需要在 1~128 个字符内。
- store
Type String - 文件系统规格,取值说明如下:Advance100:100MB/s/TiB。Performance:性能版。IntelligentComputing:智算版。
- zone
Id String - 可用区 ID。
- charge
Type String - 计费类型。取值说明如下:PayAsYouGo:按量计费。
- description String
- 文件系统描述信息。
- enable
Restripe Boolean - 扩容后是否开启数据均衡,取值说明如下:true:扩容后立即开启数据均衡。false:扩容后不开启数据均衡。注意:仅 100MB/s/TiB 规格的文件系统支持数据均衡功能。由于数据均衡过程会消耗存储节点的网络和磁盘带宽,导致文件系统的性能下降,建议您评估业务需求,谨慎开启。数据均衡的时间主要受存量数据量的影响,如果您的存量数据较多,均衡的时间可能会较长,根据扩容容量大小和文件系统状态,此过程可能需要花费数小时至 2 天的时间,建议您在业务低峰期开启并耐心等待。
- file
System StringType - 文件系统类型,默认为 VePFS。
- project
Name String - 文件系统所属项目,默认为 default。
- protocol
Type String - 协议类型,默认为 VePFS。
- subnet
Id String - 子网 ID。子网必须属于所选的可用区。
- List<Property Map>
- version
Number String - 文件系统版本号。
- vpc
Id String - 私有网络 ID。
Outputs
All input properties are implicitly available as output properties. Additionally, the Instance resource produces the following output properties:
- Account
Id string - 账户ID。
- Bandwidth int
- vePFS 文件系统吞吐上限。
- Capacity
Info Volcengine.Instance Capacity Info - 容量信息。
- Charge
Status string - 计费状态,默认为 Normal,表示正常计费。
- Created
Time string - 创建时间。
- Expire
Time string - 过期时间。
- File
System stringId - 文件系统 ID。
- Free
Time string - 文件系统释放时间。
- Id string
- The provider-assigned unique ID for this managed resource.
- Read
Bandwidth int - 读带宽值, 单位MB/s。
- Security
Group stringId - 生成的辅助网卡所在的安全组ID。
- Status string
- 文件系统状态。取值说明如下:Running:实例运行中。Creating:实例创建中。CreateError:实例创建失败。Updating:实例更新中。UpdateError:实例更新失败。Expanding:实例扩容中。ExpandError:实例扩容失败。Deleting:实例删除中。DeleteError:实例删除失败。Stopped:实例已关停。Error:实例处于错误状态。
- Stop
Service stringTime - 文件系统关停时间。
- Store
Type stringCn - 文件系统规格中文名称,支持如下:100MB/s/TiB。性能版。智算版。
- Store
Type stringEn - 存储类型英文名。
- Updated
Time string - 文件系统更新时间。
- Write
Bandwidth int - 写带宽值, 单位MB/s。
- Zone
Name string - 可用区名称。
- Account
Id string - 账户ID。
- Bandwidth int
- vePFS 文件系统吞吐上限。
- Capacity
Info InstanceCapacity Info - 容量信息。
- Charge
Status string - 计费状态,默认为 Normal,表示正常计费。
- Created
Time string - 创建时间。
- Expire
Time string - 过期时间。
- File
System stringId - 文件系统 ID。
- Free
Time string - 文件系统释放时间。
- Id string
- The provider-assigned unique ID for this managed resource.
- Read
Bandwidth int - 读带宽值, 单位MB/s。
- Security
Group stringId - 生成的辅助网卡所在的安全组ID。
- Status string
- 文件系统状态。取值说明如下:Running:实例运行中。Creating:实例创建中。CreateError:实例创建失败。Updating:实例更新中。UpdateError:实例更新失败。Expanding:实例扩容中。ExpandError:实例扩容失败。Deleting:实例删除中。DeleteError:实例删除失败。Stopped:实例已关停。Error:实例处于错误状态。
- Stop
Service stringTime - 文件系统关停时间。
- Store
Type stringCn - 文件系统规格中文名称,支持如下:100MB/s/TiB。性能版。智算版。
- Store
Type stringEn - 存储类型英文名。
- Updated
Time string - 文件系统更新时间。
- Write
Bandwidth int - 写带宽值, 单位MB/s。
- Zone
Name string - 可用区名称。
- account
Id String - 账户ID。
- bandwidth Integer
- vePFS 文件系统吞吐上限。
- capacity
Info InstanceCapacity Info - 容量信息。
- charge
Status String - 计费状态,默认为 Normal,表示正常计费。
- created
Time String - 创建时间。
- expire
Time String - 过期时间。
- file
System StringId - 文件系统 ID。
- free
Time String - 文件系统释放时间。
- id String
- The provider-assigned unique ID for this managed resource.
- read
Bandwidth Integer - 读带宽值, 单位MB/s。
- security
Group StringId - 生成的辅助网卡所在的安全组ID。
- status String
- 文件系统状态。取值说明如下:Running:实例运行中。Creating:实例创建中。CreateError:实例创建失败。Updating:实例更新中。UpdateError:实例更新失败。Expanding:实例扩容中。ExpandError:实例扩容失败。Deleting:实例删除中。DeleteError:实例删除失败。Stopped:实例已关停。Error:实例处于错误状态。
- stop
Service StringTime - 文件系统关停时间。
- store
Type StringCn - 文件系统规格中文名称,支持如下:100MB/s/TiB。性能版。智算版。
- store
Type StringEn - 存储类型英文名。
- updated
Time String - 文件系统更新时间。
- write
Bandwidth Integer - 写带宽值, 单位MB/s。
- zone
Name String - 可用区名称。
- account
Id string - 账户ID。
- bandwidth number
- vePFS 文件系统吞吐上限。
- capacity
Info InstanceCapacity Info - 容量信息。
- charge
Status string - 计费状态,默认为 Normal,表示正常计费。
- created
Time string - 创建时间。
- expire
Time string - 过期时间。
- file
System stringId - 文件系统 ID。
- free
Time string - 文件系统释放时间。
- id string
- The provider-assigned unique ID for this managed resource.
- read
Bandwidth number - 读带宽值, 单位MB/s。
- security
Group stringId - 生成的辅助网卡所在的安全组ID。
- status string
- 文件系统状态。取值说明如下:Running:实例运行中。Creating:实例创建中。CreateError:实例创建失败。Updating:实例更新中。UpdateError:实例更新失败。Expanding:实例扩容中。ExpandError:实例扩容失败。Deleting:实例删除中。DeleteError:实例删除失败。Stopped:实例已关停。Error:实例处于错误状态。
- stop
Service stringTime - 文件系统关停时间。
- store
Type stringCn - 文件系统规格中文名称,支持如下:100MB/s/TiB。性能版。智算版。
- store
Type stringEn - 存储类型英文名。
- updated
Time string - 文件系统更新时间。
- write
Bandwidth number - 写带宽值, 单位MB/s。
- zone
Name string - 可用区名称。
- account_
id str - 账户ID。
- bandwidth int
- vePFS 文件系统吞吐上限。
- capacity_
info InstanceCapacity Info - 容量信息。
- charge_
status str - 计费状态,默认为 Normal,表示正常计费。
- created_
time str - 创建时间。
- expire_
time str - 过期时间。
- file_
system_ strid - 文件系统 ID。
- free_
time str - 文件系统释放时间。
- id str
- The provider-assigned unique ID for this managed resource.
- read_
bandwidth int - 读带宽值, 单位MB/s。
- security_
group_ strid - 生成的辅助网卡所在的安全组ID。
- status str
- 文件系统状态。取值说明如下:Running:实例运行中。Creating:实例创建中。CreateError:实例创建失败。Updating:实例更新中。UpdateError:实例更新失败。Expanding:实例扩容中。ExpandError:实例扩容失败。Deleting:实例删除中。DeleteError:实例删除失败。Stopped:实例已关停。Error:实例处于错误状态。
- stop_
service_ strtime - 文件系统关停时间。
- store_
type_ strcn - 文件系统规格中文名称,支持如下:100MB/s/TiB。性能版。智算版。
- store_
type_ stren - 存储类型英文名。
- updated_
time str - 文件系统更新时间。
- write_
bandwidth int - 写带宽值, 单位MB/s。
- zone_
name str - 可用区名称。
- account
Id String - 账户ID。
- bandwidth Number
- vePFS 文件系统吞吐上限。
- capacity
Info Property Map - 容量信息。
- charge
Status String - 计费状态,默认为 Normal,表示正常计费。
- created
Time String - 创建时间。
- expire
Time String - 过期时间。
- file
System StringId - 文件系统 ID。
- free
Time String - 文件系统释放时间。
- id String
- The provider-assigned unique ID for this managed resource.
- read
Bandwidth Number - 读带宽值, 单位MB/s。
- security
Group StringId - 生成的辅助网卡所在的安全组ID。
- status String
- 文件系统状态。取值说明如下:Running:实例运行中。Creating:实例创建中。CreateError:实例创建失败。Updating:实例更新中。UpdateError:实例更新失败。Expanding:实例扩容中。ExpandError:实例扩容失败。Deleting:实例删除中。DeleteError:实例删除失败。Stopped:实例已关停。Error:实例处于错误状态。
- stop
Service StringTime - 文件系统关停时间。
- store
Type StringCn - 文件系统规格中文名称,支持如下:100MB/s/TiB。性能版。智算版。
- store
Type StringEn - 存储类型英文名。
- updated
Time String - 文件系统更新时间。
- write
Bandwidth Number - 写带宽值, 单位MB/s。
- zone
Name 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) -> Instancefunc 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.
- Account
Id string - 账户ID。
- Bandwidth int
- vePFS 文件系统吞吐上限。
- Capacity int
- 文件系统容量,单位为 TiB。
- Capacity
Info Volcengine.Instance Capacity Info - 容量信息。
- Charge
Status string - 计费状态,默认为 Normal,表示正常计费。
- Charge
Type string - 计费类型。取值说明如下:PayAsYouGo:按量计费。
- Created
Time string - 创建时间。
- Description string
- 文件系统描述信息。
- Enable
Restripe bool - 扩容后是否开启数据均衡,取值说明如下:true:扩容后立即开启数据均衡。false:扩容后不开启数据均衡。注意:仅 100MB/s/TiB 规格的文件系统支持数据均衡功能。由于数据均衡过程会消耗存储节点的网络和磁盘带宽,导致文件系统的性能下降,建议您评估业务需求,谨慎开启。数据均衡的时间主要受存量数据量的影响,如果您的存量数据较多,均衡的时间可能会较长,根据扩容容量大小和文件系统状态,此过程可能需要花费数小时至 2 天的时间,建议您在业务低峰期开启并耐心等待。
- Expire
Time string - 过期时间。
- File
System stringId - 文件系统 ID。
- File
System stringName - 文件系统名称。命名规范如下:只能以中文或英文开头。只能包含中文、字母、数字、半角句号(.)、下划线(_)或中划线(-)。长度需要在 1~128 个字符内。
- File
System stringType - 文件系统类型,默认为 VePFS。
- Free
Time string - 文件系统释放时间。
- Project
Name string - 文件系统所属项目,默认为 default。
- Protocol
Type string - 协议类型,默认为 VePFS。
- Read
Bandwidth int - 读带宽值, 单位MB/s。
- Security
Group stringId - 生成的辅助网卡所在的安全组ID。
- Status string
- 文件系统状态。取值说明如下:Running:实例运行中。Creating:实例创建中。CreateError:实例创建失败。Updating:实例更新中。UpdateError:实例更新失败。Expanding:实例扩容中。ExpandError:实例扩容失败。Deleting:实例删除中。DeleteError:实例删除失败。Stopped:实例已关停。Error:实例处于错误状态。
- Stop
Service stringTime - 文件系统关停时间。
- Store
Type string - 文件系统规格,取值说明如下:Advance100:100MB/s/TiB。Performance:性能版。IntelligentComputing:智算版。
- Store
Type stringCn - 文件系统规格中文名称,支持如下:100MB/s/TiB。性能版。智算版。
- Store
Type stringEn - 存储类型英文名。
- Subnet
Id string - 子网 ID。子网必须属于所选的可用区。
-
List<Volcengine.
Instance Tag> - Updated
Time string - 文件系统更新时间。
- Version
Number string - 文件系统版本号。
- Vpc
Id string - 私有网络 ID。
- Write
Bandwidth int - 写带宽值, 单位MB/s。
- Zone
Id string - 可用区 ID。
- Zone
Name string - 可用区名称。
- Account
Id string - 账户ID。
- Bandwidth int
- vePFS 文件系统吞吐上限。
- Capacity int
- 文件系统容量,单位为 TiB。
- Capacity
Info InstanceCapacity Info Args - 容量信息。
- Charge
Status string - 计费状态,默认为 Normal,表示正常计费。
- Charge
Type string - 计费类型。取值说明如下:PayAsYouGo:按量计费。
- Created
Time string - 创建时间。
- Description string
- 文件系统描述信息。
- Enable
Restripe bool - 扩容后是否开启数据均衡,取值说明如下:true:扩容后立即开启数据均衡。false:扩容后不开启数据均衡。注意:仅 100MB/s/TiB 规格的文件系统支持数据均衡功能。由于数据均衡过程会消耗存储节点的网络和磁盘带宽,导致文件系统的性能下降,建议您评估业务需求,谨慎开启。数据均衡的时间主要受存量数据量的影响,如果您的存量数据较多,均衡的时间可能会较长,根据扩容容量大小和文件系统状态,此过程可能需要花费数小时至 2 天的时间,建议您在业务低峰期开启并耐心等待。
- Expire
Time string - 过期时间。
- File
System stringId - 文件系统 ID。
- File
System stringName - 文件系统名称。命名规范如下:只能以中文或英文开头。只能包含中文、字母、数字、半角句号(.)、下划线(_)或中划线(-)。长度需要在 1~128 个字符内。
- File
System stringType - 文件系统类型,默认为 VePFS。
- Free
Time string - 文件系统释放时间。
- Project
Name string - 文件系统所属项目,默认为 default。
- Protocol
Type string - 协议类型,默认为 VePFS。
- Read
Bandwidth int - 读带宽值, 单位MB/s。
- Security
Group stringId - 生成的辅助网卡所在的安全组ID。
- Status string
- 文件系统状态。取值说明如下:Running:实例运行中。Creating:实例创建中。CreateError:实例创建失败。Updating:实例更新中。UpdateError:实例更新失败。Expanding:实例扩容中。ExpandError:实例扩容失败。Deleting:实例删除中。DeleteError:实例删除失败。Stopped:实例已关停。Error:实例处于错误状态。
- Stop
Service stringTime - 文件系统关停时间。
- Store
Type string - 文件系统规格,取值说明如下:Advance100:100MB/s/TiB。Performance:性能版。IntelligentComputing:智算版。
- Store
Type stringCn - 文件系统规格中文名称,支持如下:100MB/s/TiB。性能版。智算版。
- Store
Type stringEn - 存储类型英文名。
- Subnet
Id string - 子网 ID。子网必须属于所选的可用区。
-
[]Instance
Tag Args - Updated
Time string - 文件系统更新时间。
- Version
Number string - 文件系统版本号。
- Vpc
Id string - 私有网络 ID。
- Write
Bandwidth int - 写带宽值, 单位MB/s。
- Zone
Id string - 可用区 ID。
- Zone
Name string - 可用区名称。
- account
Id String - 账户ID。
- bandwidth Integer
- vePFS 文件系统吞吐上限。
- capacity Integer
- 文件系统容量,单位为 TiB。
- capacity
Info InstanceCapacity Info - 容量信息。
- charge
Status String - 计费状态,默认为 Normal,表示正常计费。
- charge
Type String - 计费类型。取值说明如下:PayAsYouGo:按量计费。
- created
Time String - 创建时间。
- description String
- 文件系统描述信息。
- enable
Restripe Boolean - 扩容后是否开启数据均衡,取值说明如下:true:扩容后立即开启数据均衡。false:扩容后不开启数据均衡。注意:仅 100MB/s/TiB 规格的文件系统支持数据均衡功能。由于数据均衡过程会消耗存储节点的网络和磁盘带宽,导致文件系统的性能下降,建议您评估业务需求,谨慎开启。数据均衡的时间主要受存量数据量的影响,如果您的存量数据较多,均衡的时间可能会较长,根据扩容容量大小和文件系统状态,此过程可能需要花费数小时至 2 天的时间,建议您在业务低峰期开启并耐心等待。
- expire
Time String - 过期时间。
- file
System StringId - 文件系统 ID。
- file
System StringName - 文件系统名称。命名规范如下:只能以中文或英文开头。只能包含中文、字母、数字、半角句号(.)、下划线(_)或中划线(-)。长度需要在 1~128 个字符内。
- file
System StringType - 文件系统类型,默认为 VePFS。
- free
Time String - 文件系统释放时间。
- project
Name String - 文件系统所属项目,默认为 default。
- protocol
Type String - 协议类型,默认为 VePFS。
- read
Bandwidth Integer - 读带宽值, 单位MB/s。
- security
Group StringId - 生成的辅助网卡所在的安全组ID。
- status String
- 文件系统状态。取值说明如下:Running:实例运行中。Creating:实例创建中。CreateError:实例创建失败。Updating:实例更新中。UpdateError:实例更新失败。Expanding:实例扩容中。ExpandError:实例扩容失败。Deleting:实例删除中。DeleteError:实例删除失败。Stopped:实例已关停。Error:实例处于错误状态。
- stop
Service StringTime - 文件系统关停时间。
- store
Type String - 文件系统规格,取值说明如下:Advance100:100MB/s/TiB。Performance:性能版。IntelligentComputing:智算版。
- store
Type StringCn - 文件系统规格中文名称,支持如下:100MB/s/TiB。性能版。智算版。
- store
Type StringEn - 存储类型英文名。
- subnet
Id String - 子网 ID。子网必须属于所选的可用区。
-
List<Instance
Tag> - updated
Time String - 文件系统更新时间。
- version
Number String - 文件系统版本号。
- vpc
Id String - 私有网络 ID。
- write
Bandwidth Integer - 写带宽值, 单位MB/s。
- zone
Id String - 可用区 ID。
- zone
Name String - 可用区名称。
- account
Id string - 账户ID。
- bandwidth number
- vePFS 文件系统吞吐上限。
- capacity number
- 文件系统容量,单位为 TiB。
- capacity
Info InstanceCapacity Info - 容量信息。
- charge
Status string - 计费状态,默认为 Normal,表示正常计费。
- charge
Type string - 计费类型。取值说明如下:PayAsYouGo:按量计费。
- created
Time string - 创建时间。
- description string
- 文件系统描述信息。
- enable
Restripe boolean - 扩容后是否开启数据均衡,取值说明如下:true:扩容后立即开启数据均衡。false:扩容后不开启数据均衡。注意:仅 100MB/s/TiB 规格的文件系统支持数据均衡功能。由于数据均衡过程会消耗存储节点的网络和磁盘带宽,导致文件系统的性能下降,建议您评估业务需求,谨慎开启。数据均衡的时间主要受存量数据量的影响,如果您的存量数据较多,均衡的时间可能会较长,根据扩容容量大小和文件系统状态,此过程可能需要花费数小时至 2 天的时间,建议您在业务低峰期开启并耐心等待。
- expire
Time string - 过期时间。
- file
System stringId - 文件系统 ID。
- file
System stringName - 文件系统名称。命名规范如下:只能以中文或英文开头。只能包含中文、字母、数字、半角句号(.)、下划线(_)或中划线(-)。长度需要在 1~128 个字符内。
- file
System stringType - 文件系统类型,默认为 VePFS。
- free
Time string - 文件系统释放时间。
- project
Name string - 文件系统所属项目,默认为 default。
- protocol
Type string - 协议类型,默认为 VePFS。
- read
Bandwidth number - 读带宽值, 单位MB/s。
- security
Group stringId - 生成的辅助网卡所在的安全组ID。
- status string
- 文件系统状态。取值说明如下:Running:实例运行中。Creating:实例创建中。CreateError:实例创建失败。Updating:实例更新中。UpdateError:实例更新失败。Expanding:实例扩容中。ExpandError:实例扩容失败。Deleting:实例删除中。DeleteError:实例删除失败。Stopped:实例已关停。Error:实例处于错误状态。
- stop
Service stringTime - 文件系统关停时间。
- store
Type string - 文件系统规格,取值说明如下:Advance100:100MB/s/TiB。Performance:性能版。IntelligentComputing:智算版。
- store
Type stringCn - 文件系统规格中文名称,支持如下:100MB/s/TiB。性能版。智算版。
- store
Type stringEn - 存储类型英文名。
- subnet
Id string - 子网 ID。子网必须属于所选的可用区。
-
Instance
Tag[] - updated
Time string - 文件系统更新时间。
- version
Number string - 文件系统版本号。
- vpc
Id string - 私有网络 ID。
- write
Bandwidth number - 写带宽值, 单位MB/s。
- zone
Id string - 可用区 ID。
- zone
Name string - 可用区名称。
- account_
id str - 账户ID。
- bandwidth int
- vePFS 文件系统吞吐上限。
- capacity int
- 文件系统容量,单位为 TiB。
- capacity_
info InstanceCapacity Info Args - 容量信息。
- 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_ strid - 文件系统 ID。
- file_
system_ strname - 文件系统名称。命名规范如下:只能以中文或英文开头。只能包含中文、字母、数字、半角句号(.)、下划线(_)或中划线(-)。长度需要在 1~128 个字符内。
- file_
system_ strtype - 文件系统类型,默认为 VePFS。
- free_
time str - 文件系统释放时间。
- project_
name str - 文件系统所属项目,默认为 default。
- protocol_
type str - 协议类型,默认为 VePFS。
- read_
bandwidth int - 读带宽值, 单位MB/s。
- security_
group_ strid - 生成的辅助网卡所在的安全组ID。
- status str
- 文件系统状态。取值说明如下:Running:实例运行中。Creating:实例创建中。CreateError:实例创建失败。Updating:实例更新中。UpdateError:实例更新失败。Expanding:实例扩容中。ExpandError:实例扩容失败。Deleting:实例删除中。DeleteError:实例删除失败。Stopped:实例已关停。Error:实例处于错误状态。
- stop_
service_ strtime - 文件系统关停时间。
- store_
type str - 文件系统规格,取值说明如下:Advance100:100MB/s/TiB。Performance:性能版。IntelligentComputing:智算版。
- store_
type_ strcn - 文件系统规格中文名称,支持如下:100MB/s/TiB。性能版。智算版。
- store_
type_ stren - 存储类型英文名。
- subnet_
id str - 子网 ID。子网必须属于所选的可用区。
-
Sequence[Instance
Tag Args] - updated_
time str - 文件系统更新时间。
- version_
number str - 文件系统版本号。
- vpc_
id str - 私有网络 ID。
- write_
bandwidth int - 写带宽值, 单位MB/s。
- zone_
id str - 可用区 ID。
- zone_
name str - 可用区名称。
- account
Id String - 账户ID。
- bandwidth Number
- vePFS 文件系统吞吐上限。
- capacity Number
- 文件系统容量,单位为 TiB。
- capacity
Info Property Map - 容量信息。
- charge
Status String - 计费状态,默认为 Normal,表示正常计费。
- charge
Type String - 计费类型。取值说明如下:PayAsYouGo:按量计费。
- created
Time String - 创建时间。
- description String
- 文件系统描述信息。
- enable
Restripe Boolean - 扩容后是否开启数据均衡,取值说明如下:true:扩容后立即开启数据均衡。false:扩容后不开启数据均衡。注意:仅 100MB/s/TiB 规格的文件系统支持数据均衡功能。由于数据均衡过程会消耗存储节点的网络和磁盘带宽,导致文件系统的性能下降,建议您评估业务需求,谨慎开启。数据均衡的时间主要受存量数据量的影响,如果您的存量数据较多,均衡的时间可能会较长,根据扩容容量大小和文件系统状态,此过程可能需要花费数小时至 2 天的时间,建议您在业务低峰期开启并耐心等待。
- expire
Time String - 过期时间。
- file
System StringId - 文件系统 ID。
- file
System StringName - 文件系统名称。命名规范如下:只能以中文或英文开头。只能包含中文、字母、数字、半角句号(.)、下划线(_)或中划线(-)。长度需要在 1~128 个字符内。
- file
System StringType - 文件系统类型,默认为 VePFS。
- free
Time String - 文件系统释放时间。
- project
Name String - 文件系统所属项目,默认为 default。
- protocol
Type String - 协议类型,默认为 VePFS。
- read
Bandwidth Number - 读带宽值, 单位MB/s。
- security
Group StringId - 生成的辅助网卡所在的安全组ID。
- status String
- 文件系统状态。取值说明如下:Running:实例运行中。Creating:实例创建中。CreateError:实例创建失败。Updating:实例更新中。UpdateError:实例更新失败。Expanding:实例扩容中。ExpandError:实例扩容失败。Deleting:实例删除中。DeleteError:实例删除失败。Stopped:实例已关停。Error:实例处于错误状态。
- stop
Service StringTime - 文件系统关停时间。
- store
Type String - 文件系统规格,取值说明如下:Advance100:100MB/s/TiB。Performance:性能版。IntelligentComputing:智算版。
- store
Type StringCn - 文件系统规格中文名称,支持如下:100MB/s/TiB。性能版。智算版。
- store
Type StringEn - 存储类型英文名。
- subnet
Id String - 子网 ID。子网必须属于所选的可用区。
- List<Property Map>
- updated
Time String - 文件系统更新时间。
- version
Number String - 文件系统版本号。
- vpc
Id String - 私有网络 ID。
- write
Bandwidth Number - 写带宽值, 单位MB/s。
- zone
Id String - 可用区 ID。
- zone
Name String - 可用区名称。
Supporting Types
InstanceCapacityInfo, InstanceCapacityInfoArgs
- total_
ti_ intb - 文件系统总容量,单位为 TiB。
- used_
gi_ intb - 已使用容量(GiB)。
InstanceTag, InstanceTagArgs
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
volcengineccTerraform Provider.
