published on Monday, Mar 9, 2026 by Byteplus
published on Monday, Mar 9, 2026 by Byteplus
IPv6网关服务的运行载体,创建IPv6网关实例是进行IPv6公网配置的前提。
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as bytepluscc from "@byteplus/pulumi-bytepluscc";
const ipv6GatewayDemo = new bytepluscc.vpc.Ipv6Gateway("Ipv6GatewayDemo", {
vpcId: "vpc-3nrh1tqschwcg931exxxxx",
name: "terraform-test-2",
description: "Create by terraform",
projectName: "default",
tags: [{
key: "env",
value: "test",
}],
});
import pulumi
import pulumi_bytepluscc as bytepluscc
ipv6_gateway_demo = bytepluscc.vpc.Ipv6Gateway("Ipv6GatewayDemo",
vpc_id="vpc-3nrh1tqschwcg931exxxxx",
name="terraform-test-2",
description="Create by terraform",
project_name="default",
tags=[{
"key": "env",
"value": "test",
}])
package main
import (
"github.com/byteplus-sdk/pulumi-bytepluscc/sdk/go/bytepluscc/vpc"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := vpc.NewIpv6Gateway(ctx, "Ipv6GatewayDemo", &vpc.Ipv6GatewayArgs{
VpcId: pulumi.String("vpc-3nrh1tqschwcg931exxxxx"),
Name: pulumi.String("terraform-test-2"),
Description: pulumi.String("Create by terraform"),
ProjectName: pulumi.String("default"),
Tags: vpc.Ipv6GatewayTagArray{
&vpc.Ipv6GatewayTagArgs{
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 Bytepluscc = Byteplus.Pulumi.Bytepluscc;
return await Deployment.RunAsync(() =>
{
var ipv6GatewayDemo = new Bytepluscc.Vpc.Ipv6Gateway("Ipv6GatewayDemo", new()
{
VpcId = "vpc-3nrh1tqschwcg931exxxxx",
Name = "terraform-test-2",
Description = "Create by terraform",
ProjectName = "default",
Tags = new[]
{
new Bytepluscc.Vpc.Inputs.Ipv6GatewayTagArgs
{
Key = "env",
Value = "test",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.byteplus.bytepluscc.vpc.Ipv6Gateway;
import com.byteplus.bytepluscc.vpc.Ipv6GatewayArgs;
import com.pulumi.bytepluscc.vpc.inputs.Ipv6GatewayTagArgs;
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 ipv6GatewayDemo = new Ipv6Gateway("ipv6GatewayDemo", Ipv6GatewayArgs.builder()
.vpcId("vpc-3nrh1tqschwcg931exxxxx")
.name("terraform-test-2")
.description("Create by terraform")
.projectName("default")
.tags(Ipv6GatewayTagArgs.builder()
.key("env")
.value("test")
.build())
.build());
}
}
resources:
ipv6GatewayDemo:
type: bytepluscc:vpc:Ipv6Gateway
name: Ipv6GatewayDemo
properties:
vpcId: vpc-3nrh1tqschwcg931exxxxx
name: terraform-test-2
description: Create by terraform
projectName: default
tags:
- key: env
value: test
Create Ipv6Gateway Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Ipv6Gateway(name: string, args: Ipv6GatewayArgs, opts?: CustomResourceOptions);@overload
def Ipv6Gateway(resource_name: str,
args: Ipv6GatewayArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Ipv6Gateway(resource_name: str,
opts: Optional[ResourceOptions] = None,
vpc_id: Optional[str] = None,
description: Optional[str] = None,
name: Optional[str] = None,
project_name: Optional[str] = None,
tags: Optional[Sequence[Ipv6GatewayTagArgs]] = None)func NewIpv6Gateway(ctx *Context, name string, args Ipv6GatewayArgs, opts ...ResourceOption) (*Ipv6Gateway, error)public Ipv6Gateway(string name, Ipv6GatewayArgs args, CustomResourceOptions? opts = null)
public Ipv6Gateway(String name, Ipv6GatewayArgs args)
public Ipv6Gateway(String name, Ipv6GatewayArgs args, CustomResourceOptions options)
type: bytepluscc:vpc:Ipv6Gateway
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 Ipv6GatewayArgs
- 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 Ipv6GatewayArgs
- 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 Ipv6GatewayArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args Ipv6GatewayArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args Ipv6GatewayArgs
- 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 ipv6GatewayResource = new Bytepluscc.Vpc.Ipv6Gateway("ipv6GatewayResource", new()
{
VpcId = "string",
Description = "string",
Name = "string",
ProjectName = "string",
Tags = new[]
{
new Bytepluscc.Vpc.Inputs.Ipv6GatewayTagArgs
{
Key = "string",
Value = "string",
},
},
});
example, err := vpc.NewIpv6Gateway(ctx, "ipv6GatewayResource", &vpc.Ipv6GatewayArgs{
VpcId: pulumi.String("string"),
Description: pulumi.String("string"),
Name: pulumi.String("string"),
ProjectName: pulumi.String("string"),
Tags: vpc.Ipv6GatewayTagArray{
&vpc.Ipv6GatewayTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
})
var ipv6GatewayResource = new Ipv6Gateway("ipv6GatewayResource", Ipv6GatewayArgs.builder()
.vpcId("string")
.description("string")
.name("string")
.projectName("string")
.tags(Ipv6GatewayTagArgs.builder()
.key("string")
.value("string")
.build())
.build());
ipv6_gateway_resource = bytepluscc.vpc.Ipv6Gateway("ipv6GatewayResource",
vpc_id="string",
description="string",
name="string",
project_name="string",
tags=[{
"key": "string",
"value": "string",
}])
const ipv6GatewayResource = new bytepluscc.vpc.Ipv6Gateway("ipv6GatewayResource", {
vpcId: "string",
description: "string",
name: "string",
projectName: "string",
tags: [{
key: "string",
value: "string",
}],
});
type: bytepluscc:vpc:Ipv6Gateway
properties:
description: string
name: string
projectName: string
tags:
- key: string
value: string
vpcId: string
Ipv6Gateway 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 Ipv6Gateway resource accepts the following input properties:
- Vpc
Id string - 需关联IPv6网关实例的VPC ID。每个VPC只能关联一个IPv6网关实例,需确保待关联的VPC未关联其他IPv6网关实例。
- Description string
- IPv6网关实例的描述信息。长度限制为0~ 255个字符。不填默认为空字符串。需要以字母、中文或数字开头。可包含英文逗号(,)、点号(.)、下划线(_)、空格( )、等号(=)、短横线(-)、中文逗号(,)、中文句号(。)。
- Name string
- IPv6网关实例的名称。长度限制为1 ~ 128个字符。需要以字母、中文或数字开头,可包含点号(.)、下划线(_)和短横线(-)。不填默认为IPv6网关ID。
- Project
Name string - IPv6网关所属项目的名称。
-
List<Byteplus.
Ipv6Gateway Tag>
- Vpc
Id string - 需关联IPv6网关实例的VPC ID。每个VPC只能关联一个IPv6网关实例,需确保待关联的VPC未关联其他IPv6网关实例。
- Description string
- IPv6网关实例的描述信息。长度限制为0~ 255个字符。不填默认为空字符串。需要以字母、中文或数字开头。可包含英文逗号(,)、点号(.)、下划线(_)、空格( )、等号(=)、短横线(-)、中文逗号(,)、中文句号(。)。
- Name string
- IPv6网关实例的名称。长度限制为1 ~ 128个字符。需要以字母、中文或数字开头,可包含点号(.)、下划线(_)和短横线(-)。不填默认为IPv6网关ID。
- Project
Name string - IPv6网关所属项目的名称。
-
[]Ipv6Gateway
Tag Args
- vpc
Id String - 需关联IPv6网关实例的VPC ID。每个VPC只能关联一个IPv6网关实例,需确保待关联的VPC未关联其他IPv6网关实例。
- description String
- IPv6网关实例的描述信息。长度限制为0~ 255个字符。不填默认为空字符串。需要以字母、中文或数字开头。可包含英文逗号(,)、点号(.)、下划线(_)、空格( )、等号(=)、短横线(-)、中文逗号(,)、中文句号(。)。
- name String
- IPv6网关实例的名称。长度限制为1 ~ 128个字符。需要以字母、中文或数字开头,可包含点号(.)、下划线(_)和短横线(-)。不填默认为IPv6网关ID。
- project
Name String - IPv6网关所属项目的名称。
-
List<Ipv6Gateway
Tag>
- vpc
Id string - 需关联IPv6网关实例的VPC ID。每个VPC只能关联一个IPv6网关实例,需确保待关联的VPC未关联其他IPv6网关实例。
- description string
- IPv6网关实例的描述信息。长度限制为0~ 255个字符。不填默认为空字符串。需要以字母、中文或数字开头。可包含英文逗号(,)、点号(.)、下划线(_)、空格( )、等号(=)、短横线(-)、中文逗号(,)、中文句号(。)。
- name string
- IPv6网关实例的名称。长度限制为1 ~ 128个字符。需要以字母、中文或数字开头,可包含点号(.)、下划线(_)和短横线(-)。不填默认为IPv6网关ID。
- project
Name string - IPv6网关所属项目的名称。
-
Ipv6Gateway
Tag[]
- vpc_
id str - 需关联IPv6网关实例的VPC ID。每个VPC只能关联一个IPv6网关实例,需确保待关联的VPC未关联其他IPv6网关实例。
- description str
- IPv6网关实例的描述信息。长度限制为0~ 255个字符。不填默认为空字符串。需要以字母、中文或数字开头。可包含英文逗号(,)、点号(.)、下划线(_)、空格( )、等号(=)、短横线(-)、中文逗号(,)、中文句号(。)。
- name str
- IPv6网关实例的名称。长度限制为1 ~ 128个字符。需要以字母、中文或数字开头,可包含点号(.)、下划线(_)和短横线(-)。不填默认为IPv6网关ID。
- project_
name str - IPv6网关所属项目的名称。
-
Sequence[Ipv6Gateway
Tag Args]
- vpc
Id String - 需关联IPv6网关实例的VPC ID。每个VPC只能关联一个IPv6网关实例,需确保待关联的VPC未关联其他IPv6网关实例。
- description String
- IPv6网关实例的描述信息。长度限制为0~ 255个字符。不填默认为空字符串。需要以字母、中文或数字开头。可包含英文逗号(,)、点号(.)、下划线(_)、空格( )、等号(=)、短横线(-)、中文逗号(,)、中文句号(。)。
- name String
- IPv6网关实例的名称。长度限制为1 ~ 128个字符。需要以字母、中文或数字开头,可包含点号(.)、下划线(_)和短横线(-)。不填默认为IPv6网关ID。
- project
Name String - IPv6网关所属项目的名称。
- List<Property Map>
Outputs
All input properties are implicitly available as output properties. Additionally, the Ipv6Gateway resource produces the following output properties:
- Created
Time string - IPv6网关实例的创建时间。
- Id string
- The provider-assigned unique ID for this managed resource.
- Ipv6Gateway
Id string - IPv6网关实例的ID。
- Route
Table stringId - IPv6网关实例关联的路由表ID。
- Status string
- IPv6网关实例的运行状态。取值如下:Creating:创建中。Deleting:删除中。Available:可用。
- Updated
Time string - IPv6网关实例的修改时间。
- Created
Time string - IPv6网关实例的创建时间。
- Id string
- The provider-assigned unique ID for this managed resource.
- Ipv6Gateway
Id string - IPv6网关实例的ID。
- Route
Table stringId - IPv6网关实例关联的路由表ID。
- Status string
- IPv6网关实例的运行状态。取值如下:Creating:创建中。Deleting:删除中。Available:可用。
- Updated
Time string - IPv6网关实例的修改时间。
- created
Time String - IPv6网关实例的创建时间。
- id String
- The provider-assigned unique ID for this managed resource.
- ipv6Gateway
Id String - IPv6网关实例的ID。
- route
Table StringId - IPv6网关实例关联的路由表ID。
- status String
- IPv6网关实例的运行状态。取值如下:Creating:创建中。Deleting:删除中。Available:可用。
- updated
Time String - IPv6网关实例的修改时间。
- created
Time string - IPv6网关实例的创建时间。
- id string
- The provider-assigned unique ID for this managed resource.
- ipv6Gateway
Id string - IPv6网关实例的ID。
- route
Table stringId - IPv6网关实例关联的路由表ID。
- status string
- IPv6网关实例的运行状态。取值如下:Creating:创建中。Deleting:删除中。Available:可用。
- updated
Time string - IPv6网关实例的修改时间。
- created_
time str - IPv6网关实例的创建时间。
- id str
- The provider-assigned unique ID for this managed resource.
- ipv6_
gateway_ strid - IPv6网关实例的ID。
- route_
table_ strid - IPv6网关实例关联的路由表ID。
- status str
- IPv6网关实例的运行状态。取值如下:Creating:创建中。Deleting:删除中。Available:可用。
- updated_
time str - IPv6网关实例的修改时间。
- created
Time String - IPv6网关实例的创建时间。
- id String
- The provider-assigned unique ID for this managed resource.
- ipv6Gateway
Id String - IPv6网关实例的ID。
- route
Table StringId - IPv6网关实例关联的路由表ID。
- status String
- IPv6网关实例的运行状态。取值如下:Creating:创建中。Deleting:删除中。Available:可用。
- updated
Time String - IPv6网关实例的修改时间。
Look up Existing Ipv6Gateway Resource
Get an existing Ipv6Gateway 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?: Ipv6GatewayState, opts?: CustomResourceOptions): Ipv6Gateway@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
created_time: Optional[str] = None,
description: Optional[str] = None,
ipv6_gateway_id: Optional[str] = None,
name: Optional[str] = None,
project_name: Optional[str] = None,
route_table_id: Optional[str] = None,
status: Optional[str] = None,
tags: Optional[Sequence[Ipv6GatewayTagArgs]] = None,
updated_time: Optional[str] = None,
vpc_id: Optional[str] = None) -> Ipv6Gatewayfunc GetIpv6Gateway(ctx *Context, name string, id IDInput, state *Ipv6GatewayState, opts ...ResourceOption) (*Ipv6Gateway, error)public static Ipv6Gateway Get(string name, Input<string> id, Ipv6GatewayState? state, CustomResourceOptions? opts = null)public static Ipv6Gateway get(String name, Output<String> id, Ipv6GatewayState state, CustomResourceOptions options)resources: _: type: bytepluscc:vpc:Ipv6Gateway 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.
- Created
Time string - IPv6网关实例的创建时间。
- Description string
- IPv6网关实例的描述信息。长度限制为0~ 255个字符。不填默认为空字符串。需要以字母、中文或数字开头。可包含英文逗号(,)、点号(.)、下划线(_)、空格( )、等号(=)、短横线(-)、中文逗号(,)、中文句号(。)。
- Ipv6Gateway
Id string - IPv6网关实例的ID。
- Name string
- IPv6网关实例的名称。长度限制为1 ~ 128个字符。需要以字母、中文或数字开头,可包含点号(.)、下划线(_)和短横线(-)。不填默认为IPv6网关ID。
- Project
Name string - IPv6网关所属项目的名称。
- Route
Table stringId - IPv6网关实例关联的路由表ID。
- Status string
- IPv6网关实例的运行状态。取值如下:Creating:创建中。Deleting:删除中。Available:可用。
-
List<Byteplus.
Ipv6Gateway Tag> - Updated
Time string - IPv6网关实例的修改时间。
- Vpc
Id string - 需关联IPv6网关实例的VPC ID。每个VPC只能关联一个IPv6网关实例,需确保待关联的VPC未关联其他IPv6网关实例。
- Created
Time string - IPv6网关实例的创建时间。
- Description string
- IPv6网关实例的描述信息。长度限制为0~ 255个字符。不填默认为空字符串。需要以字母、中文或数字开头。可包含英文逗号(,)、点号(.)、下划线(_)、空格( )、等号(=)、短横线(-)、中文逗号(,)、中文句号(。)。
- Ipv6Gateway
Id string - IPv6网关实例的ID。
- Name string
- IPv6网关实例的名称。长度限制为1 ~ 128个字符。需要以字母、中文或数字开头,可包含点号(.)、下划线(_)和短横线(-)。不填默认为IPv6网关ID。
- Project
Name string - IPv6网关所属项目的名称。
- Route
Table stringId - IPv6网关实例关联的路由表ID。
- Status string
- IPv6网关实例的运行状态。取值如下:Creating:创建中。Deleting:删除中。Available:可用。
-
[]Ipv6Gateway
Tag Args - Updated
Time string - IPv6网关实例的修改时间。
- Vpc
Id string - 需关联IPv6网关实例的VPC ID。每个VPC只能关联一个IPv6网关实例,需确保待关联的VPC未关联其他IPv6网关实例。
- created
Time String - IPv6网关实例的创建时间。
- description String
- IPv6网关实例的描述信息。长度限制为0~ 255个字符。不填默认为空字符串。需要以字母、中文或数字开头。可包含英文逗号(,)、点号(.)、下划线(_)、空格( )、等号(=)、短横线(-)、中文逗号(,)、中文句号(。)。
- ipv6Gateway
Id String - IPv6网关实例的ID。
- name String
- IPv6网关实例的名称。长度限制为1 ~ 128个字符。需要以字母、中文或数字开头,可包含点号(.)、下划线(_)和短横线(-)。不填默认为IPv6网关ID。
- project
Name String - IPv6网关所属项目的名称。
- route
Table StringId - IPv6网关实例关联的路由表ID。
- status String
- IPv6网关实例的运行状态。取值如下:Creating:创建中。Deleting:删除中。Available:可用。
-
List<Ipv6Gateway
Tag> - updated
Time String - IPv6网关实例的修改时间。
- vpc
Id String - 需关联IPv6网关实例的VPC ID。每个VPC只能关联一个IPv6网关实例,需确保待关联的VPC未关联其他IPv6网关实例。
- created
Time string - IPv6网关实例的创建时间。
- description string
- IPv6网关实例的描述信息。长度限制为0~ 255个字符。不填默认为空字符串。需要以字母、中文或数字开头。可包含英文逗号(,)、点号(.)、下划线(_)、空格( )、等号(=)、短横线(-)、中文逗号(,)、中文句号(。)。
- ipv6Gateway
Id string - IPv6网关实例的ID。
- name string
- IPv6网关实例的名称。长度限制为1 ~ 128个字符。需要以字母、中文或数字开头,可包含点号(.)、下划线(_)和短横线(-)。不填默认为IPv6网关ID。
- project
Name string - IPv6网关所属项目的名称。
- route
Table stringId - IPv6网关实例关联的路由表ID。
- status string
- IPv6网关实例的运行状态。取值如下:Creating:创建中。Deleting:删除中。Available:可用。
-
Ipv6Gateway
Tag[] - updated
Time string - IPv6网关实例的修改时间。
- vpc
Id string - 需关联IPv6网关实例的VPC ID。每个VPC只能关联一个IPv6网关实例,需确保待关联的VPC未关联其他IPv6网关实例。
- created_
time str - IPv6网关实例的创建时间。
- description str
- IPv6网关实例的描述信息。长度限制为0~ 255个字符。不填默认为空字符串。需要以字母、中文或数字开头。可包含英文逗号(,)、点号(.)、下划线(_)、空格( )、等号(=)、短横线(-)、中文逗号(,)、中文句号(。)。
- ipv6_
gateway_ strid - IPv6网关实例的ID。
- name str
- IPv6网关实例的名称。长度限制为1 ~ 128个字符。需要以字母、中文或数字开头,可包含点号(.)、下划线(_)和短横线(-)。不填默认为IPv6网关ID。
- project_
name str - IPv6网关所属项目的名称。
- route_
table_ strid - IPv6网关实例关联的路由表ID。
- status str
- IPv6网关实例的运行状态。取值如下:Creating:创建中。Deleting:删除中。Available:可用。
-
Sequence[Ipv6Gateway
Tag Args] - updated_
time str - IPv6网关实例的修改时间。
- vpc_
id str - 需关联IPv6网关实例的VPC ID。每个VPC只能关联一个IPv6网关实例,需确保待关联的VPC未关联其他IPv6网关实例。
- created
Time String - IPv6网关实例的创建时间。
- description String
- IPv6网关实例的描述信息。长度限制为0~ 255个字符。不填默认为空字符串。需要以字母、中文或数字开头。可包含英文逗号(,)、点号(.)、下划线(_)、空格( )、等号(=)、短横线(-)、中文逗号(,)、中文句号(。)。
- ipv6Gateway
Id String - IPv6网关实例的ID。
- name String
- IPv6网关实例的名称。长度限制为1 ~ 128个字符。需要以字母、中文或数字开头,可包含点号(.)、下划线(_)和短横线(-)。不填默认为IPv6网关ID。
- project
Name String - IPv6网关所属项目的名称。
- route
Table StringId - IPv6网关实例关联的路由表ID。
- status String
- IPv6网关实例的运行状态。取值如下:Creating:创建中。Deleting:删除中。Available:可用。
- List<Property Map>
- updated
Time String - IPv6网关实例的修改时间。
- vpc
Id String - 需关联IPv6网关实例的VPC ID。每个VPC只能关联一个IPv6网关实例,需确保待关联的VPC未关联其他IPv6网关实例。
Supporting Types
Ipv6GatewayTag, Ipv6GatewayTagArgs
Import
$ pulumi import bytepluscc:vpc/ipv6Gateway:Ipv6Gateway example "ipv6_gateway_id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- bytepluscc byteplus-sdk/pulumi-bytepluscc
- License
- MPL-2.0
- Notes
- This Pulumi package is based on the
byteplusccTerraform Provider.
published on Monday, Mar 9, 2026 by Byteplus
