published on Monday, Mar 9, 2026 by Byteplus
published on Monday, Mar 9, 2026 by Byteplus
ALB 提供监听维度的个性化配置功能。通过控制台可以创建并管理常规的 NGINX 配置策略,在监听器详情页一键关联配置策略,无需提交工单即可完成满足业务需求的个性化配置。
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as bytepluscc from "@byteplus/pulumi-bytepluscc";
const aLBCustomizedCfgDemo = new bytepluscc.alb.CustomizedCfg("ALBCustomizedCfgDemo", {
customizedCfgName: "ccapi-test",
description: "testdesc",
customizedCfgContent: `ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256;\x0d
ssl_protocols TLSv1.2 TLSv1.1 TLSv1;\x0d
client_max_body_size 60M;\x0d
keepalive_timeout 77s;\x0d
proxy_connect_timeout 4s;\x0d
proxy_request_buffering off;\x0d
proxy_ignore_client_abort off;\x0d
proxy_read_timeout 60s;\x0d
proxy_send_timeout 60s;\x0d
client_header_timeout 60s;\x0d
client_body_timeout 60s;\x0d
send_timeout 60s;\x0d
ssl_verify_depth 3;\x0d
`,
projectName: "default",
tags: [{
key: "env",
value: "test",
}],
});
import pulumi
import pulumi_bytepluscc as bytepluscc
a_lb_customized_cfg_demo = bytepluscc.alb.CustomizedCfg("ALBCustomizedCfgDemo",
customized_cfg_name="ccapi-test",
description="testdesc",
customized_cfg_content="""ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256;\x0d
ssl_protocols TLSv1.2 TLSv1.1 TLSv1;\x0d
client_max_body_size 60M;\x0d
keepalive_timeout 77s;\x0d
proxy_connect_timeout 4s;\x0d
proxy_request_buffering off;\x0d
proxy_ignore_client_abort off;\x0d
proxy_read_timeout 60s;\x0d
proxy_send_timeout 60s;\x0d
client_header_timeout 60s;\x0d
client_body_timeout 60s;\x0d
send_timeout 60s;\x0d
ssl_verify_depth 3;\x0d
""",
project_name="default",
tags=[{
"key": "env",
"value": "test",
}])
package main
import (
"github.com/byteplus-sdk/pulumi-bytepluscc/sdk/go/bytepluscc/alb"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := alb.NewCustomizedCfg(ctx, "ALBCustomizedCfgDemo", &alb.CustomizedCfgArgs{
CustomizedCfgName: pulumi.String("ccapi-test"),
Description: pulumi.String("testdesc"),
CustomizedCfgContent: pulumi.String(`ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256;
ssl_protocols TLSv1.2 TLSv1.1 TLSv1;
client_max_body_size 60M;
keepalive_timeout 77s;
proxy_connect_timeout 4s;
proxy_request_buffering off;
proxy_ignore_client_abort off;
proxy_read_timeout 60s;
proxy_send_timeout 60s;
client_header_timeout 60s;
client_body_timeout 60s;
send_timeout 60s;
ssl_verify_depth 3;
`),
ProjectName: pulumi.String("default"),
Tags: alb.CustomizedCfgTagArray{
&alb.CustomizedCfgTagArgs{
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 aLBCustomizedCfgDemo = new Bytepluscc.Alb.CustomizedCfg("ALBCustomizedCfgDemo", new()
{
CustomizedCfgName = "ccapi-test",
Description = "testdesc",
CustomizedCfgContent = @"ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256;
ssl_protocols TLSv1.2 TLSv1.1 TLSv1;
client_max_body_size 60M;
keepalive_timeout 77s;
proxy_connect_timeout 4s;
proxy_request_buffering off;
proxy_ignore_client_abort off;
proxy_read_timeout 60s;
proxy_send_timeout 60s;
client_header_timeout 60s;
client_body_timeout 60s;
send_timeout 60s;
ssl_verify_depth 3;
",
ProjectName = "default",
Tags = new[]
{
new Bytepluscc.Alb.Inputs.CustomizedCfgTagArgs
{
Key = "env",
Value = "test",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.byteplus.bytepluscc.alb.CustomizedCfg;
import com.byteplus.bytepluscc.alb.CustomizedCfgArgs;
import com.pulumi.bytepluscc.alb.inputs.CustomizedCfgTagArgs;
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 aLBCustomizedCfgDemo = new CustomizedCfg("aLBCustomizedCfgDemo", CustomizedCfgArgs.builder()
.customizedCfgName("ccapi-test")
.description("testdesc")
.customizedCfgContent("""
ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256;
ssl_protocols TLSv1.2 TLSv1.1 TLSv1;
client_max_body_size 60M;
keepalive_timeout 77s;
proxy_connect_timeout 4s;
proxy_request_buffering off;
proxy_ignore_client_abort off;
proxy_read_timeout 60s;
proxy_send_timeout 60s;
client_header_timeout 60s;
client_body_timeout 60s;
send_timeout 60s;
ssl_verify_depth 3;
""")
.projectName("default")
.tags(CustomizedCfgTagArgs.builder()
.key("env")
.value("test")
.build())
.build());
}
}
resources:
aLBCustomizedCfgDemo:
type: bytepluscc:alb:CustomizedCfg
name: ALBCustomizedCfgDemo
properties:
customizedCfgName: ccapi-test
description: testdesc
customizedCfgContent: "ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256;\r\nssl_protocols TLSv1.2 TLSv1.1 TLSv1;\r\nclient_max_body_size 60M;\r\nkeepalive_timeout 77s;\r\nproxy_connect_timeout 4s;\r\nproxy_request_buffering off;\r\nproxy_ignore_client_abort off;\r\nproxy_read_timeout 60s;\r\nproxy_send_timeout 60s;\r\nclient_header_timeout 60s;\r\nclient_body_timeout 60s;\r\nsend_timeout 60s;\r\nssl_verify_depth 3;\r\n"
projectName: default
tags:
- key: env
value: test
Create CustomizedCfg Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CustomizedCfg(name: string, args: CustomizedCfgArgs, opts?: CustomResourceOptions);@overload
def CustomizedCfg(resource_name: str,
args: CustomizedCfgArgs,
opts: Optional[ResourceOptions] = None)
@overload
def CustomizedCfg(resource_name: str,
opts: Optional[ResourceOptions] = None,
customized_cfg_content: Optional[str] = None,
customized_cfg_name: Optional[str] = None,
description: Optional[str] = None,
project_name: Optional[str] = None,
tags: Optional[Sequence[CustomizedCfgTagArgs]] = None)func NewCustomizedCfg(ctx *Context, name string, args CustomizedCfgArgs, opts ...ResourceOption) (*CustomizedCfg, error)public CustomizedCfg(string name, CustomizedCfgArgs args, CustomResourceOptions? opts = null)
public CustomizedCfg(String name, CustomizedCfgArgs args)
public CustomizedCfg(String name, CustomizedCfgArgs args, CustomResourceOptions options)
type: bytepluscc:alb:CustomizedCfg
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 CustomizedCfgArgs
- 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 CustomizedCfgArgs
- 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 CustomizedCfgArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CustomizedCfgArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CustomizedCfgArgs
- 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 customizedCfgResource = new Bytepluscc.Alb.CustomizedCfg("customizedCfgResource", new()
{
CustomizedCfgContent = "string",
CustomizedCfgName = "string",
Description = "string",
ProjectName = "string",
Tags = new[]
{
new Bytepluscc.Alb.Inputs.CustomizedCfgTagArgs
{
Key = "string",
Value = "string",
},
},
});
example, err := alb.NewCustomizedCfg(ctx, "customizedCfgResource", &alb.CustomizedCfgArgs{
CustomizedCfgContent: pulumi.String("string"),
CustomizedCfgName: pulumi.String("string"),
Description: pulumi.String("string"),
ProjectName: pulumi.String("string"),
Tags: alb.CustomizedCfgTagArray{
&alb.CustomizedCfgTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
})
var customizedCfgResource = new CustomizedCfg("customizedCfgResource", CustomizedCfgArgs.builder()
.customizedCfgContent("string")
.customizedCfgName("string")
.description("string")
.projectName("string")
.tags(CustomizedCfgTagArgs.builder()
.key("string")
.value("string")
.build())
.build());
customized_cfg_resource = bytepluscc.alb.CustomizedCfg("customizedCfgResource",
customized_cfg_content="string",
customized_cfg_name="string",
description="string",
project_name="string",
tags=[{
"key": "string",
"value": "string",
}])
const customizedCfgResource = new bytepluscc.alb.CustomizedCfg("customizedCfgResource", {
customizedCfgContent: "string",
customizedCfgName: "string",
description: "string",
projectName: "string",
tags: [{
key: "string",
value: "string",
}],
});
type: bytepluscc:alb:CustomizedCfg
properties:
customizedCfgContent: string
customizedCfgName: string
description: string
projectName: string
tags:
- key: string
value: string
CustomizedCfg 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 CustomizedCfg resource accepts the following input properties:
- Customized
Cfg stringContent - 个性化配置项内容。具体规则如下:长度不超过4096字符。空格和分号需要转义。不同的配置项之间通过";\r\n"分隔,配置项不能重复。当前支持的配置项有sslprotocols、sslciphers、clientmaxbodysize、keepalivetimeout、proxyrequestbuffering、proxyconnecttimeout、addheader、clientheadertimeout、proxyreadtimeout、proxysendtimeout、clientbodytimeout、sendtimeout和sslverifydepth。详细信息参见官网文档。
- Customized
Cfg stringName - 个性化配置的名字。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、点号(.)、下划线(_)和短横线(-)。长度限制为1 ~ 128个字符。
- Description string
- 个性化配置的描述。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、英文逗号(,)、点号(.)、下划线(_)、空格( )、等号(=)、短横线(-)、中文逗号(,)、中文句号(。)长度限制为1 ~ 255个字符。不填默认为空字符串。
- Project
Name string - 个性化配置所属项目名称。
-
List<Byteplus.
Customized Cfg Tag>
- Customized
Cfg stringContent - 个性化配置项内容。具体规则如下:长度不超过4096字符。空格和分号需要转义。不同的配置项之间通过";\r\n"分隔,配置项不能重复。当前支持的配置项有sslprotocols、sslciphers、clientmaxbodysize、keepalivetimeout、proxyrequestbuffering、proxyconnecttimeout、addheader、clientheadertimeout、proxyreadtimeout、proxysendtimeout、clientbodytimeout、sendtimeout和sslverifydepth。详细信息参见官网文档。
- Customized
Cfg stringName - 个性化配置的名字。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、点号(.)、下划线(_)和短横线(-)。长度限制为1 ~ 128个字符。
- Description string
- 个性化配置的描述。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、英文逗号(,)、点号(.)、下划线(_)、空格( )、等号(=)、短横线(-)、中文逗号(,)、中文句号(。)长度限制为1 ~ 255个字符。不填默认为空字符串。
- Project
Name string - 个性化配置所属项目名称。
-
[]Customized
Cfg Tag Args
- customized
Cfg StringContent - 个性化配置项内容。具体规则如下:长度不超过4096字符。空格和分号需要转义。不同的配置项之间通过";\r\n"分隔,配置项不能重复。当前支持的配置项有sslprotocols、sslciphers、clientmaxbodysize、keepalivetimeout、proxyrequestbuffering、proxyconnecttimeout、addheader、clientheadertimeout、proxyreadtimeout、proxysendtimeout、clientbodytimeout、sendtimeout和sslverifydepth。详细信息参见官网文档。
- customized
Cfg StringName - 个性化配置的名字。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、点号(.)、下划线(_)和短横线(-)。长度限制为1 ~ 128个字符。
- description String
- 个性化配置的描述。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、英文逗号(,)、点号(.)、下划线(_)、空格( )、等号(=)、短横线(-)、中文逗号(,)、中文句号(。)长度限制为1 ~ 255个字符。不填默认为空字符串。
- project
Name String - 个性化配置所属项目名称。
-
List<Customized
Cfg Tag>
- customized
Cfg stringContent - 个性化配置项内容。具体规则如下:长度不超过4096字符。空格和分号需要转义。不同的配置项之间通过";\r\n"分隔,配置项不能重复。当前支持的配置项有sslprotocols、sslciphers、clientmaxbodysize、keepalivetimeout、proxyrequestbuffering、proxyconnecttimeout、addheader、clientheadertimeout、proxyreadtimeout、proxysendtimeout、clientbodytimeout、sendtimeout和sslverifydepth。详细信息参见官网文档。
- customized
Cfg stringName - 个性化配置的名字。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、点号(.)、下划线(_)和短横线(-)。长度限制为1 ~ 128个字符。
- description string
- 个性化配置的描述。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、英文逗号(,)、点号(.)、下划线(_)、空格( )、等号(=)、短横线(-)、中文逗号(,)、中文句号(。)长度限制为1 ~ 255个字符。不填默认为空字符串。
- project
Name string - 个性化配置所属项目名称。
-
Customized
Cfg Tag[]
- customized_
cfg_ strcontent - 个性化配置项内容。具体规则如下:长度不超过4096字符。空格和分号需要转义。不同的配置项之间通过";\r\n"分隔,配置项不能重复。当前支持的配置项有sslprotocols、sslciphers、clientmaxbodysize、keepalivetimeout、proxyrequestbuffering、proxyconnecttimeout、addheader、clientheadertimeout、proxyreadtimeout、proxysendtimeout、clientbodytimeout、sendtimeout和sslverifydepth。详细信息参见官网文档。
- customized_
cfg_ strname - 个性化配置的名字。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、点号(.)、下划线(_)和短横线(-)。长度限制为1 ~ 128个字符。
- description str
- 个性化配置的描述。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、英文逗号(,)、点号(.)、下划线(_)、空格( )、等号(=)、短横线(-)、中文逗号(,)、中文句号(。)长度限制为1 ~ 255个字符。不填默认为空字符串。
- project_
name str - 个性化配置所属项目名称。
-
Sequence[Customized
Cfg Tag Args]
- customized
Cfg StringContent - 个性化配置项内容。具体规则如下:长度不超过4096字符。空格和分号需要转义。不同的配置项之间通过";\r\n"分隔,配置项不能重复。当前支持的配置项有sslprotocols、sslciphers、clientmaxbodysize、keepalivetimeout、proxyrequestbuffering、proxyconnecttimeout、addheader、clientheadertimeout、proxyreadtimeout、proxysendtimeout、clientbodytimeout、sendtimeout和sslverifydepth。详细信息参见官网文档。
- customized
Cfg StringName - 个性化配置的名字。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、点号(.)、下划线(_)和短横线(-)。长度限制为1 ~ 128个字符。
- description String
- 个性化配置的描述。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、英文逗号(,)、点号(.)、下划线(_)、空格( )、等号(=)、短横线(-)、中文逗号(,)、中文句号(。)长度限制为1 ~ 255个字符。不填默认为空字符串。
- project
Name String - 个性化配置所属项目名称。
- List<Property Map>
Outputs
All input properties are implicitly available as output properties. Additionally, the CustomizedCfg resource produces the following output properties:
- Created
Time string - 个性化配置的创建时间。
- Customized
Cfg stringId - 个性化配置的 ID 。
- Id string
- The provider-assigned unique ID for this managed resource.
- Listeners
List<Byteplus.
Customized Cfg Listener> - Status string
- 个性化配置状态。包括Active、Configuring、Creating或者Deleting。
- Updated
Time string - 个性化配置的最近操作时间。
- Created
Time string - 个性化配置的创建时间。
- Customized
Cfg stringId - 个性化配置的 ID 。
- Id string
- The provider-assigned unique ID for this managed resource.
- Listeners
[]Customized
Cfg Listener - Status string
- 个性化配置状态。包括Active、Configuring、Creating或者Deleting。
- Updated
Time string - 个性化配置的最近操作时间。
- created
Time String - 个性化配置的创建时间。
- customized
Cfg StringId - 个性化配置的 ID 。
- id String
- The provider-assigned unique ID for this managed resource.
- listeners
List<Customized
Cfg Listener> - status String
- 个性化配置状态。包括Active、Configuring、Creating或者Deleting。
- updated
Time String - 个性化配置的最近操作时间。
- created
Time string - 个性化配置的创建时间。
- customized
Cfg stringId - 个性化配置的 ID 。
- id string
- The provider-assigned unique ID for this managed resource.
- listeners
Customized
Cfg Listener[] - status string
- 个性化配置状态。包括Active、Configuring、Creating或者Deleting。
- updated
Time string - 个性化配置的最近操作时间。
- created_
time str - 个性化配置的创建时间。
- customized_
cfg_ strid - 个性化配置的 ID 。
- id str
- The provider-assigned unique ID for this managed resource.
- listeners
Sequence[Customized
Cfg Listener] - status str
- 个性化配置状态。包括Active、Configuring、Creating或者Deleting。
- updated_
time str - 个性化配置的最近操作时间。
- created
Time String - 个性化配置的创建时间。
- customized
Cfg StringId - 个性化配置的 ID 。
- id String
- The provider-assigned unique ID for this managed resource.
- listeners List<Property Map>
- status String
- 个性化配置状态。包括Active、Configuring、Creating或者Deleting。
- updated
Time String - 个性化配置的最近操作时间。
Look up Existing CustomizedCfg Resource
Get an existing CustomizedCfg 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?: CustomizedCfgState, opts?: CustomResourceOptions): CustomizedCfg@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
created_time: Optional[str] = None,
customized_cfg_content: Optional[str] = None,
customized_cfg_id: Optional[str] = None,
customized_cfg_name: Optional[str] = None,
description: Optional[str] = None,
listeners: Optional[Sequence[CustomizedCfgListenerArgs]] = None,
project_name: Optional[str] = None,
status: Optional[str] = None,
tags: Optional[Sequence[CustomizedCfgTagArgs]] = None,
updated_time: Optional[str] = None) -> CustomizedCfgfunc GetCustomizedCfg(ctx *Context, name string, id IDInput, state *CustomizedCfgState, opts ...ResourceOption) (*CustomizedCfg, error)public static CustomizedCfg Get(string name, Input<string> id, CustomizedCfgState? state, CustomResourceOptions? opts = null)public static CustomizedCfg get(String name, Output<String> id, CustomizedCfgState state, CustomResourceOptions options)resources: _: type: bytepluscc:alb:CustomizedCfg 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 - 个性化配置的创建时间。
- Customized
Cfg stringContent - 个性化配置项内容。具体规则如下:长度不超过4096字符。空格和分号需要转义。不同的配置项之间通过";\r\n"分隔,配置项不能重复。当前支持的配置项有sslprotocols、sslciphers、clientmaxbodysize、keepalivetimeout、proxyrequestbuffering、proxyconnecttimeout、addheader、clientheadertimeout、proxyreadtimeout、proxysendtimeout、clientbodytimeout、sendtimeout和sslverifydepth。详细信息参见官网文档。
- Customized
Cfg stringId - 个性化配置的 ID 。
- Customized
Cfg stringName - 个性化配置的名字。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、点号(.)、下划线(_)和短横线(-)。长度限制为1 ~ 128个字符。
- Description string
- 个性化配置的描述。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、英文逗号(,)、点号(.)、下划线(_)、空格( )、等号(=)、短横线(-)、中文逗号(,)、中文句号(。)长度限制为1 ~ 255个字符。不填默认为空字符串。
- Listeners
List<Byteplus.
Customized Cfg Listener> - Project
Name string - 个性化配置所属项目名称。
- Status string
- 个性化配置状态。包括Active、Configuring、Creating或者Deleting。
-
List<Byteplus.
Customized Cfg Tag> - Updated
Time string - 个性化配置的最近操作时间。
- Created
Time string - 个性化配置的创建时间。
- Customized
Cfg stringContent - 个性化配置项内容。具体规则如下:长度不超过4096字符。空格和分号需要转义。不同的配置项之间通过";\r\n"分隔,配置项不能重复。当前支持的配置项有sslprotocols、sslciphers、clientmaxbodysize、keepalivetimeout、proxyrequestbuffering、proxyconnecttimeout、addheader、clientheadertimeout、proxyreadtimeout、proxysendtimeout、clientbodytimeout、sendtimeout和sslverifydepth。详细信息参见官网文档。
- Customized
Cfg stringId - 个性化配置的 ID 。
- Customized
Cfg stringName - 个性化配置的名字。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、点号(.)、下划线(_)和短横线(-)。长度限制为1 ~ 128个字符。
- Description string
- 个性化配置的描述。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、英文逗号(,)、点号(.)、下划线(_)、空格( )、等号(=)、短横线(-)、中文逗号(,)、中文句号(。)长度限制为1 ~ 255个字符。不填默认为空字符串。
- Listeners
[]Customized
Cfg Listener Args - Project
Name string - 个性化配置所属项目名称。
- Status string
- 个性化配置状态。包括Active、Configuring、Creating或者Deleting。
-
[]Customized
Cfg Tag Args - Updated
Time string - 个性化配置的最近操作时间。
- created
Time String - 个性化配置的创建时间。
- customized
Cfg StringContent - 个性化配置项内容。具体规则如下:长度不超过4096字符。空格和分号需要转义。不同的配置项之间通过";\r\n"分隔,配置项不能重复。当前支持的配置项有sslprotocols、sslciphers、clientmaxbodysize、keepalivetimeout、proxyrequestbuffering、proxyconnecttimeout、addheader、clientheadertimeout、proxyreadtimeout、proxysendtimeout、clientbodytimeout、sendtimeout和sslverifydepth。详细信息参见官网文档。
- customized
Cfg StringId - 个性化配置的 ID 。
- customized
Cfg StringName - 个性化配置的名字。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、点号(.)、下划线(_)和短横线(-)。长度限制为1 ~ 128个字符。
- description String
- 个性化配置的描述。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、英文逗号(,)、点号(.)、下划线(_)、空格( )、等号(=)、短横线(-)、中文逗号(,)、中文句号(。)长度限制为1 ~ 255个字符。不填默认为空字符串。
- listeners
List<Customized
Cfg Listener> - project
Name String - 个性化配置所属项目名称。
- status String
- 个性化配置状态。包括Active、Configuring、Creating或者Deleting。
-
List<Customized
Cfg Tag> - updated
Time String - 个性化配置的最近操作时间。
- created
Time string - 个性化配置的创建时间。
- customized
Cfg stringContent - 个性化配置项内容。具体规则如下:长度不超过4096字符。空格和分号需要转义。不同的配置项之间通过";\r\n"分隔,配置项不能重复。当前支持的配置项有sslprotocols、sslciphers、clientmaxbodysize、keepalivetimeout、proxyrequestbuffering、proxyconnecttimeout、addheader、clientheadertimeout、proxyreadtimeout、proxysendtimeout、clientbodytimeout、sendtimeout和sslverifydepth。详细信息参见官网文档。
- customized
Cfg stringId - 个性化配置的 ID 。
- customized
Cfg stringName - 个性化配置的名字。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、点号(.)、下划线(_)和短横线(-)。长度限制为1 ~ 128个字符。
- description string
- 个性化配置的描述。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、英文逗号(,)、点号(.)、下划线(_)、空格( )、等号(=)、短横线(-)、中文逗号(,)、中文句号(。)长度限制为1 ~ 255个字符。不填默认为空字符串。
- listeners
Customized
Cfg Listener[] - project
Name string - 个性化配置所属项目名称。
- status string
- 个性化配置状态。包括Active、Configuring、Creating或者Deleting。
-
Customized
Cfg Tag[] - updated
Time string - 个性化配置的最近操作时间。
- created_
time str - 个性化配置的创建时间。
- customized_
cfg_ strcontent - 个性化配置项内容。具体规则如下:长度不超过4096字符。空格和分号需要转义。不同的配置项之间通过";\r\n"分隔,配置项不能重复。当前支持的配置项有sslprotocols、sslciphers、clientmaxbodysize、keepalivetimeout、proxyrequestbuffering、proxyconnecttimeout、addheader、clientheadertimeout、proxyreadtimeout、proxysendtimeout、clientbodytimeout、sendtimeout和sslverifydepth。详细信息参见官网文档。
- customized_
cfg_ strid - 个性化配置的 ID 。
- customized_
cfg_ strname - 个性化配置的名字。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、点号(.)、下划线(_)和短横线(-)。长度限制为1 ~ 128个字符。
- description str
- 个性化配置的描述。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、英文逗号(,)、点号(.)、下划线(_)、空格( )、等号(=)、短横线(-)、中文逗号(,)、中文句号(。)长度限制为1 ~ 255个字符。不填默认为空字符串。
- listeners
Sequence[Customized
Cfg Listener Args] - project_
name str - 个性化配置所属项目名称。
- status str
- 个性化配置状态。包括Active、Configuring、Creating或者Deleting。
-
Sequence[Customized
Cfg Tag Args] - updated_
time str - 个性化配置的最近操作时间。
- created
Time String - 个性化配置的创建时间。
- customized
Cfg StringContent - 个性化配置项内容。具体规则如下:长度不超过4096字符。空格和分号需要转义。不同的配置项之间通过";\r\n"分隔,配置项不能重复。当前支持的配置项有sslprotocols、sslciphers、clientmaxbodysize、keepalivetimeout、proxyrequestbuffering、proxyconnecttimeout、addheader、clientheadertimeout、proxyreadtimeout、proxysendtimeout、clientbodytimeout、sendtimeout和sslverifydepth。详细信息参见官网文档。
- customized
Cfg StringId - 个性化配置的 ID 。
- customized
Cfg StringName - 个性化配置的名字。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、点号(.)、下划线(_)和短横线(-)。长度限制为1 ~ 128个字符。
- description String
- 个性化配置的描述。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、英文逗号(,)、点号(.)、下划线(_)、空格( )、等号(=)、短横线(-)、中文逗号(,)、中文句号(。)长度限制为1 ~ 255个字符。不填默认为空字符串。
- listeners List<Property Map>
- project
Name String - 个性化配置所属项目名称。
- status String
- 个性化配置状态。包括Active、Configuring、Creating或者Deleting。
- List<Property Map>
- updated
Time String - 个性化配置的最近操作时间。
Supporting Types
CustomizedCfgListener, CustomizedCfgListenerArgs
- Listener
Id string - 监听器的 ID。
- Listener
Name string - 监听器的名称。
- Port int
- 监听器的端口。
- Protocol string
- 监听器的协议。
- Listener
Id string - 监听器的 ID。
- Listener
Name string - 监听器的名称。
- Port int
- 监听器的端口。
- Protocol string
- 监听器的协议。
- listener
Id String - 监听器的 ID。
- listener
Name String - 监听器的名称。
- port Integer
- 监听器的端口。
- protocol String
- 监听器的协议。
- listener
Id string - 监听器的 ID。
- listener
Name string - 监听器的名称。
- port number
- 监听器的端口。
- protocol string
- 监听器的协议。
- listener_
id str - 监听器的 ID。
- listener_
name str - 监听器的名称。
- port int
- 监听器的端口。
- protocol str
- 监听器的协议。
- listener
Id String - 监听器的 ID。
- listener
Name String - 监听器的名称。
- port Number
- 监听器的端口。
- protocol String
- 监听器的协议。
CustomizedCfgTag, CustomizedCfgTagArgs
Import
$ pulumi import bytepluscc:alb/customizedCfg:CustomizedCfg example "customized_cfg_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
