volcengine.vepfs.Fileset
Explore with Pulumi AI
Provides a resource to manage vepfs fileset
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Volcengine = Pulumi.Volcengine;
return await Deployment.RunAsync(() =>
{
var fooVpc = new Volcengine.Vpc.Vpc("fooVpc", new()
{
VpcName = "acc-test-vpc",
CidrBlock = "172.16.0.0/16",
});
var fooSubnet = new Volcengine.Vpc.Subnet("fooSubnet", new()
{
SubnetName = "acc-test-subnet",
CidrBlock = "172.16.0.0/24",
ZoneId = "cn-beijing-a",
VpcId = fooVpc.Id,
});
var fooFileSystem = new Volcengine.Vepfs.FileSystem("fooFileSystem", new()
{
FileSystemName = "acc-test-file-system",
SubnetId = fooSubnet.Id,
StoreType = "Advance_100",
Description = "tf-test",
Capacity = 12,
Project = "default",
EnableRestripe = false,
Tags = new[]
{
new Volcengine.Vepfs.Inputs.FileSystemTagArgs
{
Key = "k1",
Value = "v1",
},
},
});
var fooFileset = new Volcengine.Vepfs.Fileset("fooFileset", new()
{
FileSystemId = fooFileSystem.Id,
FilesetName = "acc-test-fileset",
FilesetPath = "/tf-test/",
MaxIops = 100,
MaxBandwidth = 10,
FileLimit = 20,
CapacityLimit = 30,
});
});
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/vepfs"
"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/vpc"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
fooVpc, err := vpc.NewVpc(ctx, "fooVpc", &vpc.VpcArgs{
VpcName: pulumi.String("acc-test-vpc"),
CidrBlock: pulumi.String("172.16.0.0/16"),
})
if err != nil {
return err
}
fooSubnet, err := vpc.NewSubnet(ctx, "fooSubnet", &vpc.SubnetArgs{
SubnetName: pulumi.String("acc-test-subnet"),
CidrBlock: pulumi.String("172.16.0.0/24"),
ZoneId: pulumi.String("cn-beijing-a"),
VpcId: fooVpc.ID(),
})
if err != nil {
return err
}
fooFileSystem, err := vepfs.NewFileSystem(ctx, "fooFileSystem", &vepfs.FileSystemArgs{
FileSystemName: pulumi.String("acc-test-file-system"),
SubnetId: fooSubnet.ID(),
StoreType: pulumi.String("Advance_100"),
Description: pulumi.String("tf-test"),
Capacity: pulumi.Int(12),
Project: pulumi.String("default"),
EnableRestripe: pulumi.Bool(false),
Tags: vepfs.FileSystemTagArray{
&vepfs.FileSystemTagArgs{
Key: pulumi.String("k1"),
Value: pulumi.String("v1"),
},
},
})
if err != nil {
return err
}
_, err = vepfs.NewFileset(ctx, "fooFileset", &vepfs.FilesetArgs{
FileSystemId: fooFileSystem.ID(),
FilesetName: pulumi.String("acc-test-fileset"),
FilesetPath: pulumi.String("/tf-test/"),
MaxIops: pulumi.Int(100),
MaxBandwidth: pulumi.Int(10),
FileLimit: pulumi.Int(20),
CapacityLimit: pulumi.Int(30),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.volcengine.vpc.Vpc;
import com.pulumi.volcengine.vpc.VpcArgs;
import com.pulumi.volcengine.vpc.Subnet;
import com.pulumi.volcengine.vpc.SubnetArgs;
import com.pulumi.volcengine.vepfs.FileSystem;
import com.pulumi.volcengine.vepfs.FileSystemArgs;
import com.pulumi.volcengine.vepfs.inputs.FileSystemTagArgs;
import com.pulumi.volcengine.vepfs.Fileset;
import com.pulumi.volcengine.vepfs.FilesetArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var fooVpc = new Vpc("fooVpc", VpcArgs.builder()
.vpcName("acc-test-vpc")
.cidrBlock("172.16.0.0/16")
.build());
var fooSubnet = new Subnet("fooSubnet", SubnetArgs.builder()
.subnetName("acc-test-subnet")
.cidrBlock("172.16.0.0/24")
.zoneId("cn-beijing-a")
.vpcId(fooVpc.id())
.build());
var fooFileSystem = new FileSystem("fooFileSystem", FileSystemArgs.builder()
.fileSystemName("acc-test-file-system")
.subnetId(fooSubnet.id())
.storeType("Advance_100")
.description("tf-test")
.capacity(12)
.project("default")
.enableRestripe(false)
.tags(FileSystemTagArgs.builder()
.key("k1")
.value("v1")
.build())
.build());
var fooFileset = new Fileset("fooFileset", FilesetArgs.builder()
.fileSystemId(fooFileSystem.id())
.filesetName("acc-test-fileset")
.filesetPath("/tf-test/")
.maxIops(100)
.maxBandwidth(10)
.fileLimit(20)
.capacityLimit(30)
.build());
}
}
import pulumi
import pulumi_volcengine as volcengine
foo_vpc = volcengine.vpc.Vpc("fooVpc",
vpc_name="acc-test-vpc",
cidr_block="172.16.0.0/16")
foo_subnet = volcengine.vpc.Subnet("fooSubnet",
subnet_name="acc-test-subnet",
cidr_block="172.16.0.0/24",
zone_id="cn-beijing-a",
vpc_id=foo_vpc.id)
foo_file_system = volcengine.vepfs.FileSystem("fooFileSystem",
file_system_name="acc-test-file-system",
subnet_id=foo_subnet.id,
store_type="Advance_100",
description="tf-test",
capacity=12,
project="default",
enable_restripe=False,
tags=[volcengine.vepfs.FileSystemTagArgs(
key="k1",
value="v1",
)])
foo_fileset = volcengine.vepfs.Fileset("fooFileset",
file_system_id=foo_file_system.id,
fileset_name="acc-test-fileset",
fileset_path="/tf-test/",
max_iops=100,
max_bandwidth=10,
file_limit=20,
capacity_limit=30)
import * as pulumi from "@pulumi/pulumi";
import * as volcengine from "@volcengine/pulumi";
const fooVpc = new volcengine.vpc.Vpc("fooVpc", {
vpcName: "acc-test-vpc",
cidrBlock: "172.16.0.0/16",
});
const fooSubnet = new volcengine.vpc.Subnet("fooSubnet", {
subnetName: "acc-test-subnet",
cidrBlock: "172.16.0.0/24",
zoneId: "cn-beijing-a",
vpcId: fooVpc.id,
});
const fooFileSystem = new volcengine.vepfs.FileSystem("fooFileSystem", {
fileSystemName: "acc-test-file-system",
subnetId: fooSubnet.id,
storeType: "Advance_100",
description: "tf-test",
capacity: 12,
project: "default",
enableRestripe: false,
tags: [{
key: "k1",
value: "v1",
}],
});
const fooFileset = new volcengine.vepfs.Fileset("fooFileset", {
fileSystemId: fooFileSystem.id,
filesetName: "acc-test-fileset",
filesetPath: "/tf-test/",
maxIops: 100,
maxBandwidth: 10,
fileLimit: 20,
capacityLimit: 30,
});
resources:
fooVpc:
type: volcengine:vpc:Vpc
properties:
vpcName: acc-test-vpc
cidrBlock: 172.16.0.0/16
fooSubnet:
type: volcengine:vpc:Subnet
properties:
subnetName: acc-test-subnet
cidrBlock: 172.16.0.0/24
zoneId: cn-beijing-a
vpcId: ${fooVpc.id}
fooFileSystem:
type: volcengine:vepfs:FileSystem
properties:
fileSystemName: acc-test-file-system
subnetId: ${fooSubnet.id}
storeType: Advance_100
description: tf-test
capacity: 12
project: default
enableRestripe: false
tags:
- key: k1
value: v1
fooFileset:
type: volcengine:vepfs:Fileset
properties:
fileSystemId: ${fooFileSystem.id}
filesetName: acc-test-fileset
filesetPath: /tf-test/
maxIops: 100
maxBandwidth: 10
fileLimit: 20
capacityLimit: 30
Create Fileset Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Fileset(name: string, args: FilesetArgs, opts?: CustomResourceOptions);
@overload
def Fileset(resource_name: str,
args: FilesetArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Fileset(resource_name: str,
opts: Optional[ResourceOptions] = None,
file_system_id: Optional[str] = None,
fileset_name: Optional[str] = None,
fileset_path: Optional[str] = None,
capacity_limit: Optional[int] = None,
file_limit: Optional[int] = None,
max_bandwidth: Optional[int] = None,
max_iops: Optional[int] = None)
func NewFileset(ctx *Context, name string, args FilesetArgs, opts ...ResourceOption) (*Fileset, error)
public Fileset(string name, FilesetArgs args, CustomResourceOptions? opts = null)
public Fileset(String name, FilesetArgs args)
public Fileset(String name, FilesetArgs args, CustomResourceOptions options)
type: volcengine:vepfs:Fileset
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 FilesetArgs
- 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 FilesetArgs
- 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 FilesetArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FilesetArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args FilesetArgs
- 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 filesetResource = new Volcengine.Vepfs.Fileset("filesetResource", new()
{
FileSystemId = "string",
FilesetName = "string",
FilesetPath = "string",
CapacityLimit = 0,
FileLimit = 0,
MaxBandwidth = 0,
MaxIops = 0,
});
example, err := vepfs.NewFileset(ctx, "filesetResource", &vepfs.FilesetArgs{
FileSystemId: pulumi.String("string"),
FilesetName: pulumi.String("string"),
FilesetPath: pulumi.String("string"),
CapacityLimit: pulumi.Int(0),
FileLimit: pulumi.Int(0),
MaxBandwidth: pulumi.Int(0),
MaxIops: pulumi.Int(0),
})
var filesetResource = new Fileset("filesetResource", FilesetArgs.builder()
.fileSystemId("string")
.filesetName("string")
.filesetPath("string")
.capacityLimit(0)
.fileLimit(0)
.maxBandwidth(0)
.maxIops(0)
.build());
fileset_resource = volcengine.vepfs.Fileset("filesetResource",
file_system_id="string",
fileset_name="string",
fileset_path="string",
capacity_limit=0,
file_limit=0,
max_bandwidth=0,
max_iops=0)
const filesetResource = new volcengine.vepfs.Fileset("filesetResource", {
fileSystemId: "string",
filesetName: "string",
filesetPath: "string",
capacityLimit: 0,
fileLimit: 0,
maxBandwidth: 0,
maxIops: 0,
});
type: volcengine:vepfs:Fileset
properties:
capacityLimit: 0
fileLimit: 0
fileSystemId: string
filesetName: string
filesetPath: string
maxBandwidth: 0
maxIops: 0
Fileset Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Fileset resource accepts the following input properties:
- File
System stringId - The id of the vepfs file system.
- Fileset
Name string - The name of the vepfs fileset.
- Fileset
Path string - The path of the vepfs fileset.
- Capacity
Limit int - The capacity limit of the vepfs fileset. Unit: Gib.
- File
Limit int - The file number limit of the vepfs fileset.
- Max
Bandwidth int - The max bandwidth qos limit of the vepfs fileset. Unit: MB/s.
- Max
Iops int - The max IOPS qos limit of the vepfs fileset.
- File
System stringId - The id of the vepfs file system.
- Fileset
Name string - The name of the vepfs fileset.
- Fileset
Path string - The path of the vepfs fileset.
- Capacity
Limit int - The capacity limit of the vepfs fileset. Unit: Gib.
- File
Limit int - The file number limit of the vepfs fileset.
- Max
Bandwidth int - The max bandwidth qos limit of the vepfs fileset. Unit: MB/s.
- Max
Iops int - The max IOPS qos limit of the vepfs fileset.
- file
System StringId - The id of the vepfs file system.
- fileset
Name String - The name of the vepfs fileset.
- fileset
Path String - The path of the vepfs fileset.
- capacity
Limit Integer - The capacity limit of the vepfs fileset. Unit: Gib.
- file
Limit Integer - The file number limit of the vepfs fileset.
- max
Bandwidth Integer - The max bandwidth qos limit of the vepfs fileset. Unit: MB/s.
- max
Iops Integer - The max IOPS qos limit of the vepfs fileset.
- file
System stringId - The id of the vepfs file system.
- fileset
Name string - The name of the vepfs fileset.
- fileset
Path string - The path of the vepfs fileset.
- capacity
Limit number - The capacity limit of the vepfs fileset. Unit: Gib.
- file
Limit number - The file number limit of the vepfs fileset.
- max
Bandwidth number - The max bandwidth qos limit of the vepfs fileset. Unit: MB/s.
- max
Iops number - The max IOPS qos limit of the vepfs fileset.
- file_
system_ strid - The id of the vepfs file system.
- fileset_
name str - The name of the vepfs fileset.
- fileset_
path str - The path of the vepfs fileset.
- capacity_
limit int - The capacity limit of the vepfs fileset. Unit: Gib.
- file_
limit int - The file number limit of the vepfs fileset.
- max_
bandwidth int - The max bandwidth qos limit of the vepfs fileset. Unit: MB/s.
- max_
iops int - The max IOPS qos limit of the vepfs fileset.
- file
System StringId - The id of the vepfs file system.
- fileset
Name String - The name of the vepfs fileset.
- fileset
Path String - The path of the vepfs fileset.
- capacity
Limit Number - The capacity limit of the vepfs fileset. Unit: Gib.
- file
Limit Number - The file number limit of the vepfs fileset.
- max
Bandwidth Number - The max bandwidth qos limit of the vepfs fileset. Unit: MB/s.
- max
Iops Number - The max IOPS qos limit of the vepfs fileset.
Outputs
All input properties are implicitly available as output properties. Additionally, the Fileset resource produces the following output properties:
- Capacity
Used int - The used capacity of the vepfs fileset. Unit: GiB.
- Create
Time string - The create time of the vepfs fileset.
- File
Used int - The used file number of the vepfs fileset.
- Id string
- The provider-assigned unique ID for this managed resource.
- Max
Inode intNum - The max number of inode in the vepfs fileset.
- Status string
- The status of the vepfs fileset.
- Capacity
Used int - The used capacity of the vepfs fileset. Unit: GiB.
- Create
Time string - The create time of the vepfs fileset.
- File
Used int - The used file number of the vepfs fileset.
- Id string
- The provider-assigned unique ID for this managed resource.
- Max
Inode intNum - The max number of inode in the vepfs fileset.
- Status string
- The status of the vepfs fileset.
- capacity
Used Integer - The used capacity of the vepfs fileset. Unit: GiB.
- create
Time String - The create time of the vepfs fileset.
- file
Used Integer - The used file number of the vepfs fileset.
- id String
- The provider-assigned unique ID for this managed resource.
- max
Inode IntegerNum - The max number of inode in the vepfs fileset.
- status String
- The status of the vepfs fileset.
- capacity
Used number - The used capacity of the vepfs fileset. Unit: GiB.
- create
Time string - The create time of the vepfs fileset.
- file
Used number - The used file number of the vepfs fileset.
- id string
- The provider-assigned unique ID for this managed resource.
- max
Inode numberNum - The max number of inode in the vepfs fileset.
- status string
- The status of the vepfs fileset.
- capacity_
used int - The used capacity of the vepfs fileset. Unit: GiB.
- create_
time str - The create time of the vepfs fileset.
- file_
used int - The used file number of the vepfs fileset.
- id str
- The provider-assigned unique ID for this managed resource.
- max_
inode_ intnum - The max number of inode in the vepfs fileset.
- status str
- The status of the vepfs fileset.
- capacity
Used Number - The used capacity of the vepfs fileset. Unit: GiB.
- create
Time String - The create time of the vepfs fileset.
- file
Used Number - The used file number of the vepfs fileset.
- id String
- The provider-assigned unique ID for this managed resource.
- max
Inode NumberNum - The max number of inode in the vepfs fileset.
- status String
- The status of the vepfs fileset.
Look up Existing Fileset Resource
Get an existing Fileset 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?: FilesetState, opts?: CustomResourceOptions): Fileset
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
capacity_limit: Optional[int] = None,
capacity_used: Optional[int] = None,
create_time: Optional[str] = None,
file_limit: Optional[int] = None,
file_system_id: Optional[str] = None,
file_used: Optional[int] = None,
fileset_name: Optional[str] = None,
fileset_path: Optional[str] = None,
max_bandwidth: Optional[int] = None,
max_inode_num: Optional[int] = None,
max_iops: Optional[int] = None,
status: Optional[str] = None) -> Fileset
func GetFileset(ctx *Context, name string, id IDInput, state *FilesetState, opts ...ResourceOption) (*Fileset, error)
public static Fileset Get(string name, Input<string> id, FilesetState? state, CustomResourceOptions? opts = null)
public static Fileset get(String name, Output<String> id, FilesetState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Capacity
Limit int - The capacity limit of the vepfs fileset. Unit: Gib.
- Capacity
Used int - The used capacity of the vepfs fileset. Unit: GiB.
- Create
Time string - The create time of the vepfs fileset.
- File
Limit int - The file number limit of the vepfs fileset.
- File
System stringId - The id of the vepfs file system.
- File
Used int - The used file number of the vepfs fileset.
- Fileset
Name string - The name of the vepfs fileset.
- Fileset
Path string - The path of the vepfs fileset.
- Max
Bandwidth int - The max bandwidth qos limit of the vepfs fileset. Unit: MB/s.
- Max
Inode intNum - The max number of inode in the vepfs fileset.
- Max
Iops int - The max IOPS qos limit of the vepfs fileset.
- Status string
- The status of the vepfs fileset.
- Capacity
Limit int - The capacity limit of the vepfs fileset. Unit: Gib.
- Capacity
Used int - The used capacity of the vepfs fileset. Unit: GiB.
- Create
Time string - The create time of the vepfs fileset.
- File
Limit int - The file number limit of the vepfs fileset.
- File
System stringId - The id of the vepfs file system.
- File
Used int - The used file number of the vepfs fileset.
- Fileset
Name string - The name of the vepfs fileset.
- Fileset
Path string - The path of the vepfs fileset.
- Max
Bandwidth int - The max bandwidth qos limit of the vepfs fileset. Unit: MB/s.
- Max
Inode intNum - The max number of inode in the vepfs fileset.
- Max
Iops int - The max IOPS qos limit of the vepfs fileset.
- Status string
- The status of the vepfs fileset.
- capacity
Limit Integer - The capacity limit of the vepfs fileset. Unit: Gib.
- capacity
Used Integer - The used capacity of the vepfs fileset. Unit: GiB.
- create
Time String - The create time of the vepfs fileset.
- file
Limit Integer - The file number limit of the vepfs fileset.
- file
System StringId - The id of the vepfs file system.
- file
Used Integer - The used file number of the vepfs fileset.
- fileset
Name String - The name of the vepfs fileset.
- fileset
Path String - The path of the vepfs fileset.
- max
Bandwidth Integer - The max bandwidth qos limit of the vepfs fileset. Unit: MB/s.
- max
Inode IntegerNum - The max number of inode in the vepfs fileset.
- max
Iops Integer - The max IOPS qos limit of the vepfs fileset.
- status String
- The status of the vepfs fileset.
- capacity
Limit number - The capacity limit of the vepfs fileset. Unit: Gib.
- capacity
Used number - The used capacity of the vepfs fileset. Unit: GiB.
- create
Time string - The create time of the vepfs fileset.
- file
Limit number - The file number limit of the vepfs fileset.
- file
System stringId - The id of the vepfs file system.
- file
Used number - The used file number of the vepfs fileset.
- fileset
Name string - The name of the vepfs fileset.
- fileset
Path string - The path of the vepfs fileset.
- max
Bandwidth number - The max bandwidth qos limit of the vepfs fileset. Unit: MB/s.
- max
Inode numberNum - The max number of inode in the vepfs fileset.
- max
Iops number - The max IOPS qos limit of the vepfs fileset.
- status string
- The status of the vepfs fileset.
- capacity_
limit int - The capacity limit of the vepfs fileset. Unit: Gib.
- capacity_
used int - The used capacity of the vepfs fileset. Unit: GiB.
- create_
time str - The create time of the vepfs fileset.
- file_
limit int - The file number limit of the vepfs fileset.
- file_
system_ strid - The id of the vepfs file system.
- file_
used int - The used file number of the vepfs fileset.
- fileset_
name str - The name of the vepfs fileset.
- fileset_
path str - The path of the vepfs fileset.
- max_
bandwidth int - The max bandwidth qos limit of the vepfs fileset. Unit: MB/s.
- max_
inode_ intnum - The max number of inode in the vepfs fileset.
- max_
iops int - The max IOPS qos limit of the vepfs fileset.
- status str
- The status of the vepfs fileset.
- capacity
Limit Number - The capacity limit of the vepfs fileset. Unit: Gib.
- capacity
Used Number - The used capacity of the vepfs fileset. Unit: GiB.
- create
Time String - The create time of the vepfs fileset.
- file
Limit Number - The file number limit of the vepfs fileset.
- file
System StringId - The id of the vepfs file system.
- file
Used Number - The used file number of the vepfs fileset.
- fileset
Name String - The name of the vepfs fileset.
- fileset
Path String - The path of the vepfs fileset.
- max
Bandwidth Number - The max bandwidth qos limit of the vepfs fileset. Unit: MB/s.
- max
Inode NumberNum - The max number of inode in the vepfs fileset.
- max
Iops Number - The max IOPS qos limit of the vepfs fileset.
- status String
- The status of the vepfs fileset.
Import
VepfsFileset can be imported using the file_system_id:fileset_id, e.g.
$ pulumi import volcengine:vepfs/fileset:Fileset default file_system_id:fileset_id
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- volcengine volcengine/pulumi-volcengine
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
volcengine
Terraform Provider.