1. Packages
  2. Bytepluscc Provider
  3. API Docs
  4. alb
  5. CustomizedCfg
Viewing docs for bytepluscc v0.0.16
published on Monday, Mar 9, 2026 by Byteplus
bytepluscc logo
Viewing docs for bytepluscc v0.0.16
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:

    CustomizedCfgContent string
    个性化配置项内容。具体规则如下:长度不超过4096字符。空格和分号需要转义。不同的配置项之间通过";\r\n"分隔,配置项不能重复。当前支持的配置项有sslprotocols、sslciphers、clientmaxbodysize、keepalivetimeout、proxyrequestbuffering、proxyconnecttimeout、addheader、clientheadertimeout、proxyreadtimeout、proxysendtimeout、clientbodytimeout、sendtimeout和sslverifydepth。详细信息参见官网文档。
    CustomizedCfgName string
    个性化配置的名字。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、点号(.)、下划线(_)和短横线(-)。长度限制为1 ~ 128个字符。
    Description string
    个性化配置的描述。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、英文逗号(,)、点号(.)、下划线(_)、空格( )、等号(=)、短横线(-)、中文逗号(,)、中文句号(。)长度限制为1 ~ 255个字符。不填默认为空字符串。
    ProjectName string
    个性化配置所属项目名称。
    Tags List<Byteplus.CustomizedCfgTag>
    CustomizedCfgContent string
    个性化配置项内容。具体规则如下:长度不超过4096字符。空格和分号需要转义。不同的配置项之间通过";\r\n"分隔,配置项不能重复。当前支持的配置项有sslprotocols、sslciphers、clientmaxbodysize、keepalivetimeout、proxyrequestbuffering、proxyconnecttimeout、addheader、clientheadertimeout、proxyreadtimeout、proxysendtimeout、clientbodytimeout、sendtimeout和sslverifydepth。详细信息参见官网文档。
    CustomizedCfgName string
    个性化配置的名字。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、点号(.)、下划线(_)和短横线(-)。长度限制为1 ~ 128个字符。
    Description string
    个性化配置的描述。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、英文逗号(,)、点号(.)、下划线(_)、空格( )、等号(=)、短横线(-)、中文逗号(,)、中文句号(。)长度限制为1 ~ 255个字符。不填默认为空字符串。
    ProjectName string
    个性化配置所属项目名称。
    Tags []CustomizedCfgTagArgs
    customizedCfgContent String
    个性化配置项内容。具体规则如下:长度不超过4096字符。空格和分号需要转义。不同的配置项之间通过";\r\n"分隔,配置项不能重复。当前支持的配置项有sslprotocols、sslciphers、clientmaxbodysize、keepalivetimeout、proxyrequestbuffering、proxyconnecttimeout、addheader、clientheadertimeout、proxyreadtimeout、proxysendtimeout、clientbodytimeout、sendtimeout和sslverifydepth。详细信息参见官网文档。
    customizedCfgName String
    个性化配置的名字。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、点号(.)、下划线(_)和短横线(-)。长度限制为1 ~ 128个字符。
    description String
    个性化配置的描述。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、英文逗号(,)、点号(.)、下划线(_)、空格( )、等号(=)、短横线(-)、中文逗号(,)、中文句号(。)长度限制为1 ~ 255个字符。不填默认为空字符串。
    projectName String
    个性化配置所属项目名称。
    tags List<CustomizedCfgTag>
    customizedCfgContent string
    个性化配置项内容。具体规则如下:长度不超过4096字符。空格和分号需要转义。不同的配置项之间通过";\r\n"分隔,配置项不能重复。当前支持的配置项有sslprotocols、sslciphers、clientmaxbodysize、keepalivetimeout、proxyrequestbuffering、proxyconnecttimeout、addheader、clientheadertimeout、proxyreadtimeout、proxysendtimeout、clientbodytimeout、sendtimeout和sslverifydepth。详细信息参见官网文档。
    customizedCfgName string
    个性化配置的名字。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、点号(.)、下划线(_)和短横线(-)。长度限制为1 ~ 128个字符。
    description string
    个性化配置的描述。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、英文逗号(,)、点号(.)、下划线(_)、空格( )、等号(=)、短横线(-)、中文逗号(,)、中文句号(。)长度限制为1 ~ 255个字符。不填默认为空字符串。
    projectName string
    个性化配置所属项目名称。
    tags CustomizedCfgTag[]
    customized_cfg_content str
    个性化配置项内容。具体规则如下:长度不超过4096字符。空格和分号需要转义。不同的配置项之间通过";\r\n"分隔,配置项不能重复。当前支持的配置项有sslprotocols、sslciphers、clientmaxbodysize、keepalivetimeout、proxyrequestbuffering、proxyconnecttimeout、addheader、clientheadertimeout、proxyreadtimeout、proxysendtimeout、clientbodytimeout、sendtimeout和sslverifydepth。详细信息参见官网文档。
    customized_cfg_name str
    个性化配置的名字。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、点号(.)、下划线(_)和短横线(-)。长度限制为1 ~ 128个字符。
    description str
    个性化配置的描述。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、英文逗号(,)、点号(.)、下划线(_)、空格( )、等号(=)、短横线(-)、中文逗号(,)、中文句号(。)长度限制为1 ~ 255个字符。不填默认为空字符串。
    project_name str
    个性化配置所属项目名称。
    tags Sequence[CustomizedCfgTagArgs]
    customizedCfgContent String
    个性化配置项内容。具体规则如下:长度不超过4096字符。空格和分号需要转义。不同的配置项之间通过";\r\n"分隔,配置项不能重复。当前支持的配置项有sslprotocols、sslciphers、clientmaxbodysize、keepalivetimeout、proxyrequestbuffering、proxyconnecttimeout、addheader、clientheadertimeout、proxyreadtimeout、proxysendtimeout、clientbodytimeout、sendtimeout和sslverifydepth。详细信息参见官网文档。
    customizedCfgName String
    个性化配置的名字。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、点号(.)、下划线(_)和短横线(-)。长度限制为1 ~ 128个字符。
    description String
    个性化配置的描述。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、英文逗号(,)、点号(.)、下划线(_)、空格( )、等号(=)、短横线(-)、中文逗号(,)、中文句号(。)长度限制为1 ~ 255个字符。不填默认为空字符串。
    projectName String
    个性化配置所属项目名称。
    tags List<Property Map>

    Outputs

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

    CreatedTime string
    个性化配置的创建时间。
    CustomizedCfgId string
    个性化配置的 ID 。
    Id string
    The provider-assigned unique ID for this managed resource.
    Listeners List<Byteplus.CustomizedCfgListener>
    Status string
    个性化配置状态。包括Active、Configuring、Creating或者Deleting。
    UpdatedTime string
    个性化配置的最近操作时间。
    CreatedTime string
    个性化配置的创建时间。
    CustomizedCfgId string
    个性化配置的 ID 。
    Id string
    The provider-assigned unique ID for this managed resource.
    Listeners []CustomizedCfgListener
    Status string
    个性化配置状态。包括Active、Configuring、Creating或者Deleting。
    UpdatedTime string
    个性化配置的最近操作时间。
    createdTime String
    个性化配置的创建时间。
    customizedCfgId String
    个性化配置的 ID 。
    id String
    The provider-assigned unique ID for this managed resource.
    listeners List<CustomizedCfgListener>
    status String
    个性化配置状态。包括Active、Configuring、Creating或者Deleting。
    updatedTime String
    个性化配置的最近操作时间。
    createdTime string
    个性化配置的创建时间。
    customizedCfgId string
    个性化配置的 ID 。
    id string
    The provider-assigned unique ID for this managed resource.
    listeners CustomizedCfgListener[]
    status string
    个性化配置状态。包括Active、Configuring、Creating或者Deleting。
    updatedTime string
    个性化配置的最近操作时间。
    created_time str
    个性化配置的创建时间。
    customized_cfg_id str
    个性化配置的 ID 。
    id str
    The provider-assigned unique ID for this managed resource.
    listeners Sequence[CustomizedCfgListener]
    status str
    个性化配置状态。包括Active、Configuring、Creating或者Deleting。
    updated_time str
    个性化配置的最近操作时间。
    createdTime String
    个性化配置的创建时间。
    customizedCfgId String
    个性化配置的 ID 。
    id String
    The provider-assigned unique ID for this managed resource.
    listeners List<Property Map>
    status String
    个性化配置状态。包括Active、Configuring、Creating或者Deleting。
    updatedTime 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) -> CustomizedCfg
    func 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.
    The following state arguments are supported:
    CreatedTime string
    个性化配置的创建时间。
    CustomizedCfgContent string
    个性化配置项内容。具体规则如下:长度不超过4096字符。空格和分号需要转义。不同的配置项之间通过";\r\n"分隔,配置项不能重复。当前支持的配置项有sslprotocols、sslciphers、clientmaxbodysize、keepalivetimeout、proxyrequestbuffering、proxyconnecttimeout、addheader、clientheadertimeout、proxyreadtimeout、proxysendtimeout、clientbodytimeout、sendtimeout和sslverifydepth。详细信息参见官网文档。
    CustomizedCfgId string
    个性化配置的 ID 。
    CustomizedCfgName string
    个性化配置的名字。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、点号(.)、下划线(_)和短横线(-)。长度限制为1 ~ 128个字符。
    Description string
    个性化配置的描述。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、英文逗号(,)、点号(.)、下划线(_)、空格( )、等号(=)、短横线(-)、中文逗号(,)、中文句号(。)长度限制为1 ~ 255个字符。不填默认为空字符串。
    Listeners List<Byteplus.CustomizedCfgListener>
    ProjectName string
    个性化配置所属项目名称。
    Status string
    个性化配置状态。包括Active、Configuring、Creating或者Deleting。
    Tags List<Byteplus.CustomizedCfgTag>
    UpdatedTime string
    个性化配置的最近操作时间。
    CreatedTime string
    个性化配置的创建时间。
    CustomizedCfgContent string
    个性化配置项内容。具体规则如下:长度不超过4096字符。空格和分号需要转义。不同的配置项之间通过";\r\n"分隔,配置项不能重复。当前支持的配置项有sslprotocols、sslciphers、clientmaxbodysize、keepalivetimeout、proxyrequestbuffering、proxyconnecttimeout、addheader、clientheadertimeout、proxyreadtimeout、proxysendtimeout、clientbodytimeout、sendtimeout和sslverifydepth。详细信息参见官网文档。
    CustomizedCfgId string
    个性化配置的 ID 。
    CustomizedCfgName string
    个性化配置的名字。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、点号(.)、下划线(_)和短横线(-)。长度限制为1 ~ 128个字符。
    Description string
    个性化配置的描述。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、英文逗号(,)、点号(.)、下划线(_)、空格( )、等号(=)、短横线(-)、中文逗号(,)、中文句号(。)长度限制为1 ~ 255个字符。不填默认为空字符串。
    Listeners []CustomizedCfgListenerArgs
    ProjectName string
    个性化配置所属项目名称。
    Status string
    个性化配置状态。包括Active、Configuring、Creating或者Deleting。
    Tags []CustomizedCfgTagArgs
    UpdatedTime string
    个性化配置的最近操作时间。
    createdTime String
    个性化配置的创建时间。
    customizedCfgContent String
    个性化配置项内容。具体规则如下:长度不超过4096字符。空格和分号需要转义。不同的配置项之间通过";\r\n"分隔,配置项不能重复。当前支持的配置项有sslprotocols、sslciphers、clientmaxbodysize、keepalivetimeout、proxyrequestbuffering、proxyconnecttimeout、addheader、clientheadertimeout、proxyreadtimeout、proxysendtimeout、clientbodytimeout、sendtimeout和sslverifydepth。详细信息参见官网文档。
    customizedCfgId String
    个性化配置的 ID 。
    customizedCfgName String
    个性化配置的名字。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、点号(.)、下划线(_)和短横线(-)。长度限制为1 ~ 128个字符。
    description String
    个性化配置的描述。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、英文逗号(,)、点号(.)、下划线(_)、空格( )、等号(=)、短横线(-)、中文逗号(,)、中文句号(。)长度限制为1 ~ 255个字符。不填默认为空字符串。
    listeners List<CustomizedCfgListener>
    projectName String
    个性化配置所属项目名称。
    status String
    个性化配置状态。包括Active、Configuring、Creating或者Deleting。
    tags List<CustomizedCfgTag>
    updatedTime String
    个性化配置的最近操作时间。
    createdTime string
    个性化配置的创建时间。
    customizedCfgContent string
    个性化配置项内容。具体规则如下:长度不超过4096字符。空格和分号需要转义。不同的配置项之间通过";\r\n"分隔,配置项不能重复。当前支持的配置项有sslprotocols、sslciphers、clientmaxbodysize、keepalivetimeout、proxyrequestbuffering、proxyconnecttimeout、addheader、clientheadertimeout、proxyreadtimeout、proxysendtimeout、clientbodytimeout、sendtimeout和sslverifydepth。详细信息参见官网文档。
    customizedCfgId string
    个性化配置的 ID 。
    customizedCfgName string
    个性化配置的名字。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、点号(.)、下划线(_)和短横线(-)。长度限制为1 ~ 128个字符。
    description string
    个性化配置的描述。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、英文逗号(,)、点号(.)、下划线(_)、空格( )、等号(=)、短横线(-)、中文逗号(,)、中文句号(。)长度限制为1 ~ 255个字符。不填默认为空字符串。
    listeners CustomizedCfgListener[]
    projectName string
    个性化配置所属项目名称。
    status string
    个性化配置状态。包括Active、Configuring、Creating或者Deleting。
    tags CustomizedCfgTag[]
    updatedTime string
    个性化配置的最近操作时间。
    created_time str
    个性化配置的创建时间。
    customized_cfg_content str
    个性化配置项内容。具体规则如下:长度不超过4096字符。空格和分号需要转义。不同的配置项之间通过";\r\n"分隔,配置项不能重复。当前支持的配置项有sslprotocols、sslciphers、clientmaxbodysize、keepalivetimeout、proxyrequestbuffering、proxyconnecttimeout、addheader、clientheadertimeout、proxyreadtimeout、proxysendtimeout、clientbodytimeout、sendtimeout和sslverifydepth。详细信息参见官网文档。
    customized_cfg_id str
    个性化配置的 ID 。
    customized_cfg_name str
    个性化配置的名字。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、点号(.)、下划线(_)和短横线(-)。长度限制为1 ~ 128个字符。
    description str
    个性化配置的描述。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、英文逗号(,)、点号(.)、下划线(_)、空格( )、等号(=)、短横线(-)、中文逗号(,)、中文句号(。)长度限制为1 ~ 255个字符。不填默认为空字符串。
    listeners Sequence[CustomizedCfgListenerArgs]
    project_name str
    个性化配置所属项目名称。
    status str
    个性化配置状态。包括Active、Configuring、Creating或者Deleting。
    tags Sequence[CustomizedCfgTagArgs]
    updated_time str
    个性化配置的最近操作时间。
    createdTime String
    个性化配置的创建时间。
    customizedCfgContent String
    个性化配置项内容。具体规则如下:长度不超过4096字符。空格和分号需要转义。不同的配置项之间通过";\r\n"分隔,配置项不能重复。当前支持的配置项有sslprotocols、sslciphers、clientmaxbodysize、keepalivetimeout、proxyrequestbuffering、proxyconnecttimeout、addheader、clientheadertimeout、proxyreadtimeout、proxysendtimeout、clientbodytimeout、sendtimeout和sslverifydepth。详细信息参见官网文档。
    customizedCfgId String
    个性化配置的 ID 。
    customizedCfgName String
    个性化配置的名字。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、点号(.)、下划线(_)和短横线(-)。长度限制为1 ~ 128个字符。
    description String
    个性化配置的描述。具体规则如下:不能以http://或https://开头。必须以字母或中文开头,可包含数字、英文逗号(,)、点号(.)、下划线(_)、空格( )、等号(=)、短横线(-)、中文逗号(,)、中文句号(。)长度限制为1 ~ 255个字符。不填默认为空字符串。
    listeners List<Property Map>
    projectName String
    个性化配置所属项目名称。
    status String
    个性化配置状态。包括Active、Configuring、Creating或者Deleting。
    tags List<Property Map>
    updatedTime String
    个性化配置的最近操作时间。

    Supporting Types

    CustomizedCfgListener, CustomizedCfgListenerArgs

    ListenerId string
    监听器的 ID。
    ListenerName string
    监听器的名称。
    Port int
    监听器的端口。
    Protocol string
    监听器的协议。
    ListenerId string
    监听器的 ID。
    ListenerName string
    监听器的名称。
    Port int
    监听器的端口。
    Protocol string
    监听器的协议。
    listenerId String
    监听器的 ID。
    listenerName String
    监听器的名称。
    port Integer
    监听器的端口。
    protocol String
    监听器的协议。
    listenerId string
    监听器的 ID。
    listenerName string
    监听器的名称。
    port number
    监听器的端口。
    protocol string
    监听器的协议。
    listener_id str
    监听器的 ID。
    listener_name str
    监听器的名称。
    port int
    监听器的端口。
    protocol str
    监听器的协议。
    listenerId String
    监听器的 ID。
    listenerName String
    监听器的名称。
    port Number
    监听器的端口。
    protocol String
    监听器的协议。

    CustomizedCfgTag, CustomizedCfgTagArgs

    Key string
    用户标签的标签键。
    Value string
    用户标签的标签值。
    Key string
    用户标签的标签键。
    Value string
    用户标签的标签值。
    key String
    用户标签的标签键。
    value String
    用户标签的标签值。
    key string
    用户标签的标签键。
    value string
    用户标签的标签值。
    key str
    用户标签的标签键。
    value str
    用户标签的标签值。
    key String
    用户标签的标签键。
    value String
    用户标签的标签值。

    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 bytepluscc Terraform Provider.
    bytepluscc logo
    Viewing docs for bytepluscc v0.0.16
    published on Monday, Mar 9, 2026 by Byteplus
      Try Pulumi Cloud free. Your team will thank you.