1. Packages
  2. Packages
  3. Volcenginecc Provider
  4. API Docs
  5. alb
  6. CustomizedCfg
Viewing docs for volcenginecc v0.0.32
published on Thursday, Apr 23, 2026 by Volcengine
volcenginecc logo
Viewing docs for volcenginecc v0.0.32
published on Thursday, Apr 23, 2026 by Volcengine

    ALB provides personalized configuration functionality at the listener level. You can create and manage standard NGINX configuration policies in the console, associate configuration policies with listeners in one click on the listener details page, and complete personalized configurations to meet business requirements without submitting a ticket.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as volcenginecc from "@volcengine/pulumi-volcenginecc";
    
    const aLBCustomizedCfgDemo = new volcenginecc.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_volcenginecc as volcenginecc
    
    a_lb_customized_cfg_demo = volcenginecc.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/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/volcengine/pulumi-volcenginecc/sdk/go/volcenginecc/alb"
    )
    
    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 Volcenginecc = Volcengine.Pulumi.Volcenginecc;
    
    return await Deployment.RunAsync(() => 
    {
        var aLBCustomizedCfgDemo = new Volcenginecc.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 Volcenginecc.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.volcengine.volcenginecc.alb.CustomizedCfg;
    import com.volcengine.volcenginecc.alb.CustomizedCfgArgs;
    import com.pulumi.volcenginecc.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: volcenginecc: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: volcenginecc: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 Volcenginecc.Alb.CustomizedCfg("customizedCfgResource", new()
    {
        CustomizedCfgContent = "string",
        CustomizedCfgName = "string",
        Description = "string",
        ProjectName = "string",
        Tags = new[]
        {
            new Volcenginecc.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 = volcenginecc.alb.CustomizedCfg("customizedCfgResource",
        customized_cfg_content="string",
        customized_cfg_name="string",
        description="string",
        project_name="string",
        tags=[{
            "key": "string",
            "value": "string",
        }])
    
    const customizedCfgResource = new volcenginecc.alb.CustomizedCfg("customizedCfgResource", {
        customizedCfgContent: "string",
        customizedCfgName: "string",
        description: "string",
        projectName: "string",
        tags: [{
            key: "string",
            value: "string",
        }],
    });
    
    type: volcenginecc: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
    Content of the personalized configuration item. Specific rules: Length must not exceed 4096 characters. Spaces and semicolons must be escaped. Different configuration items are separated by '; '. Configuration items cannot be duplicated. Currently supported configuration items include sslprotocols, sslciphers, clientmaxbodysize, keepalivetimeout, proxyrequestbuffering, proxyconnecttimeout, addheader, clientheadertimeout, proxyreadtimeout, proxysendtimeout, clientbodytimeout, sendtimeout, and sslverifydepth. For details, see the official documentation.
    CustomizedCfgName string
    Name of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, periods (.), underscores (_), and hyphens (-). Length must be between 1 and 128 characters.
    Description string
    Description of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, English commas (,), periods (.), underscores (_), spaces ( ), equals signs (=), hyphens (-), Chinese commas (,), and Chinese periods (。). Length must be between 1 and 255 characters. If not specified, defaults to an empty string.
    ProjectName string
    Project name to which the personalized configuration belongs.
    Tags List<Volcengine.CustomizedCfgTag>
    CustomizedCfgContent string
    Content of the personalized configuration item. Specific rules: Length must not exceed 4096 characters. Spaces and semicolons must be escaped. Different configuration items are separated by '; '. Configuration items cannot be duplicated. Currently supported configuration items include sslprotocols, sslciphers, clientmaxbodysize, keepalivetimeout, proxyrequestbuffering, proxyconnecttimeout, addheader, clientheadertimeout, proxyreadtimeout, proxysendtimeout, clientbodytimeout, sendtimeout, and sslverifydepth. For details, see the official documentation.
    CustomizedCfgName string
    Name of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, periods (.), underscores (_), and hyphens (-). Length must be between 1 and 128 characters.
    Description string
    Description of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, English commas (,), periods (.), underscores (_), spaces ( ), equals signs (=), hyphens (-), Chinese commas (,), and Chinese periods (。). Length must be between 1 and 255 characters. If not specified, defaults to an empty string.
    ProjectName string
    Project name to which the personalized configuration belongs.
    Tags []CustomizedCfgTagArgs
    customizedCfgContent String
    Content of the personalized configuration item. Specific rules: Length must not exceed 4096 characters. Spaces and semicolons must be escaped. Different configuration items are separated by '; '. Configuration items cannot be duplicated. Currently supported configuration items include sslprotocols, sslciphers, clientmaxbodysize, keepalivetimeout, proxyrequestbuffering, proxyconnecttimeout, addheader, clientheadertimeout, proxyreadtimeout, proxysendtimeout, clientbodytimeout, sendtimeout, and sslverifydepth. For details, see the official documentation.
    customizedCfgName String
    Name of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, periods (.), underscores (_), and hyphens (-). Length must be between 1 and 128 characters.
    description String
    Description of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, English commas (,), periods (.), underscores (_), spaces ( ), equals signs (=), hyphens (-), Chinese commas (,), and Chinese periods (。). Length must be between 1 and 255 characters. If not specified, defaults to an empty string.
    projectName String
    Project name to which the personalized configuration belongs.
    tags List<CustomizedCfgTag>
    customizedCfgContent string
    Content of the personalized configuration item. Specific rules: Length must not exceed 4096 characters. Spaces and semicolons must be escaped. Different configuration items are separated by '; '. Configuration items cannot be duplicated. Currently supported configuration items include sslprotocols, sslciphers, clientmaxbodysize, keepalivetimeout, proxyrequestbuffering, proxyconnecttimeout, addheader, clientheadertimeout, proxyreadtimeout, proxysendtimeout, clientbodytimeout, sendtimeout, and sslverifydepth. For details, see the official documentation.
    customizedCfgName string
    Name of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, periods (.), underscores (_), and hyphens (-). Length must be between 1 and 128 characters.
    description string
    Description of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, English commas (,), periods (.), underscores (_), spaces ( ), equals signs (=), hyphens (-), Chinese commas (,), and Chinese periods (。). Length must be between 1 and 255 characters. If not specified, defaults to an empty string.
    projectName string
    Project name to which the personalized configuration belongs.
    tags CustomizedCfgTag[]
    customized_cfg_content str
    Content of the personalized configuration item. Specific rules: Length must not exceed 4096 characters. Spaces and semicolons must be escaped. Different configuration items are separated by '; '. Configuration items cannot be duplicated. Currently supported configuration items include sslprotocols, sslciphers, clientmaxbodysize, keepalivetimeout, proxyrequestbuffering, proxyconnecttimeout, addheader, clientheadertimeout, proxyreadtimeout, proxysendtimeout, clientbodytimeout, sendtimeout, and sslverifydepth. For details, see the official documentation.
    customized_cfg_name str
    Name of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, periods (.), underscores (_), and hyphens (-). Length must be between 1 and 128 characters.
    description str
    Description of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, English commas (,), periods (.), underscores (_), spaces ( ), equals signs (=), hyphens (-), Chinese commas (,), and Chinese periods (。). Length must be between 1 and 255 characters. If not specified, defaults to an empty string.
    project_name str
    Project name to which the personalized configuration belongs.
    tags Sequence[CustomizedCfgTagArgs]
    customizedCfgContent String
    Content of the personalized configuration item. Specific rules: Length must not exceed 4096 characters. Spaces and semicolons must be escaped. Different configuration items are separated by '; '. Configuration items cannot be duplicated. Currently supported configuration items include sslprotocols, sslciphers, clientmaxbodysize, keepalivetimeout, proxyrequestbuffering, proxyconnecttimeout, addheader, clientheadertimeout, proxyreadtimeout, proxysendtimeout, clientbodytimeout, sendtimeout, and sslverifydepth. For details, see the official documentation.
    customizedCfgName String
    Name of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, periods (.), underscores (_), and hyphens (-). Length must be between 1 and 128 characters.
    description String
    Description of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, English commas (,), periods (.), underscores (_), spaces ( ), equals signs (=), hyphens (-), Chinese commas (,), and Chinese periods (。). Length must be between 1 and 255 characters. If not specified, defaults to an empty string.
    projectName String
    Project name to which the personalized configuration belongs.
    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
    Creation time of the personalized configuration.
    CustomizedCfgId string
    Personalized configuration ID.
    Id string
    The provider-assigned unique ID for this managed resource.
    Listeners List<Volcengine.CustomizedCfgListener>
    Status string
    Status of the personalized configuration. Includes Active, Configuring, Creating, or Deleting.
    UpdatedTime string
    Last operation time of the personalized configuration.
    CreatedTime string
    Creation time of the personalized configuration.
    CustomizedCfgId string
    Personalized configuration ID.
    Id string
    The provider-assigned unique ID for this managed resource.
    Listeners []CustomizedCfgListener
    Status string
    Status of the personalized configuration. Includes Active, Configuring, Creating, or Deleting.
    UpdatedTime string
    Last operation time of the personalized configuration.
    createdTime String
    Creation time of the personalized configuration.
    customizedCfgId String
    Personalized configuration ID.
    id String
    The provider-assigned unique ID for this managed resource.
    listeners List<CustomizedCfgListener>
    status String
    Status of the personalized configuration. Includes Active, Configuring, Creating, or Deleting.
    updatedTime String
    Last operation time of the personalized configuration.
    createdTime string
    Creation time of the personalized configuration.
    customizedCfgId string
    Personalized configuration ID.
    id string
    The provider-assigned unique ID for this managed resource.
    listeners CustomizedCfgListener[]
    status string
    Status of the personalized configuration. Includes Active, Configuring, Creating, or Deleting.
    updatedTime string
    Last operation time of the personalized configuration.
    created_time str
    Creation time of the personalized configuration.
    customized_cfg_id str
    Personalized configuration ID.
    id str
    The provider-assigned unique ID for this managed resource.
    listeners Sequence[CustomizedCfgListener]
    status str
    Status of the personalized configuration. Includes Active, Configuring, Creating, or Deleting.
    updated_time str
    Last operation time of the personalized configuration.
    createdTime String
    Creation time of the personalized configuration.
    customizedCfgId String
    Personalized configuration ID.
    id String
    The provider-assigned unique ID for this managed resource.
    listeners List<Property Map>
    status String
    Status of the personalized configuration. Includes Active, Configuring, Creating, or Deleting.
    updatedTime String
    Last operation time of the personalized configuration.

    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: volcenginecc: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
    Creation time of the personalized configuration.
    CustomizedCfgContent string
    Content of the personalized configuration item. Specific rules: Length must not exceed 4096 characters. Spaces and semicolons must be escaped. Different configuration items are separated by '; '. Configuration items cannot be duplicated. Currently supported configuration items include sslprotocols, sslciphers, clientmaxbodysize, keepalivetimeout, proxyrequestbuffering, proxyconnecttimeout, addheader, clientheadertimeout, proxyreadtimeout, proxysendtimeout, clientbodytimeout, sendtimeout, and sslverifydepth. For details, see the official documentation.
    CustomizedCfgId string
    Personalized configuration ID.
    CustomizedCfgName string
    Name of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, periods (.), underscores (_), and hyphens (-). Length must be between 1 and 128 characters.
    Description string
    Description of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, English commas (,), periods (.), underscores (_), spaces ( ), equals signs (=), hyphens (-), Chinese commas (,), and Chinese periods (。). Length must be between 1 and 255 characters. If not specified, defaults to an empty string.
    Listeners List<Volcengine.CustomizedCfgListener>
    ProjectName string
    Project name to which the personalized configuration belongs.
    Status string
    Status of the personalized configuration. Includes Active, Configuring, Creating, or Deleting.
    Tags List<Volcengine.CustomizedCfgTag>
    UpdatedTime string
    Last operation time of the personalized configuration.
    CreatedTime string
    Creation time of the personalized configuration.
    CustomizedCfgContent string
    Content of the personalized configuration item. Specific rules: Length must not exceed 4096 characters. Spaces and semicolons must be escaped. Different configuration items are separated by '; '. Configuration items cannot be duplicated. Currently supported configuration items include sslprotocols, sslciphers, clientmaxbodysize, keepalivetimeout, proxyrequestbuffering, proxyconnecttimeout, addheader, clientheadertimeout, proxyreadtimeout, proxysendtimeout, clientbodytimeout, sendtimeout, and sslverifydepth. For details, see the official documentation.
    CustomizedCfgId string
    Personalized configuration ID.
    CustomizedCfgName string
    Name of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, periods (.), underscores (_), and hyphens (-). Length must be between 1 and 128 characters.
    Description string
    Description of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, English commas (,), periods (.), underscores (_), spaces ( ), equals signs (=), hyphens (-), Chinese commas (,), and Chinese periods (。). Length must be between 1 and 255 characters. If not specified, defaults to an empty string.
    Listeners []CustomizedCfgListenerArgs
    ProjectName string
    Project name to which the personalized configuration belongs.
    Status string
    Status of the personalized configuration. Includes Active, Configuring, Creating, or Deleting.
    Tags []CustomizedCfgTagArgs
    UpdatedTime string
    Last operation time of the personalized configuration.
    createdTime String
    Creation time of the personalized configuration.
    customizedCfgContent String
    Content of the personalized configuration item. Specific rules: Length must not exceed 4096 characters. Spaces and semicolons must be escaped. Different configuration items are separated by '; '. Configuration items cannot be duplicated. Currently supported configuration items include sslprotocols, sslciphers, clientmaxbodysize, keepalivetimeout, proxyrequestbuffering, proxyconnecttimeout, addheader, clientheadertimeout, proxyreadtimeout, proxysendtimeout, clientbodytimeout, sendtimeout, and sslverifydepth. For details, see the official documentation.
    customizedCfgId String
    Personalized configuration ID.
    customizedCfgName String
    Name of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, periods (.), underscores (_), and hyphens (-). Length must be between 1 and 128 characters.
    description String
    Description of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, English commas (,), periods (.), underscores (_), spaces ( ), equals signs (=), hyphens (-), Chinese commas (,), and Chinese periods (。). Length must be between 1 and 255 characters. If not specified, defaults to an empty string.
    listeners List<CustomizedCfgListener>
    projectName String
    Project name to which the personalized configuration belongs.
    status String
    Status of the personalized configuration. Includes Active, Configuring, Creating, or Deleting.
    tags List<CustomizedCfgTag>
    updatedTime String
    Last operation time of the personalized configuration.
    createdTime string
    Creation time of the personalized configuration.
    customizedCfgContent string
    Content of the personalized configuration item. Specific rules: Length must not exceed 4096 characters. Spaces and semicolons must be escaped. Different configuration items are separated by '; '. Configuration items cannot be duplicated. Currently supported configuration items include sslprotocols, sslciphers, clientmaxbodysize, keepalivetimeout, proxyrequestbuffering, proxyconnecttimeout, addheader, clientheadertimeout, proxyreadtimeout, proxysendtimeout, clientbodytimeout, sendtimeout, and sslverifydepth. For details, see the official documentation.
    customizedCfgId string
    Personalized configuration ID.
    customizedCfgName string
    Name of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, periods (.), underscores (_), and hyphens (-). Length must be between 1 and 128 characters.
    description string
    Description of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, English commas (,), periods (.), underscores (_), spaces ( ), equals signs (=), hyphens (-), Chinese commas (,), and Chinese periods (。). Length must be between 1 and 255 characters. If not specified, defaults to an empty string.
    listeners CustomizedCfgListener[]
    projectName string
    Project name to which the personalized configuration belongs.
    status string
    Status of the personalized configuration. Includes Active, Configuring, Creating, or Deleting.
    tags CustomizedCfgTag[]
    updatedTime string
    Last operation time of the personalized configuration.
    created_time str
    Creation time of the personalized configuration.
    customized_cfg_content str
    Content of the personalized configuration item. Specific rules: Length must not exceed 4096 characters. Spaces and semicolons must be escaped. Different configuration items are separated by '; '. Configuration items cannot be duplicated. Currently supported configuration items include sslprotocols, sslciphers, clientmaxbodysize, keepalivetimeout, proxyrequestbuffering, proxyconnecttimeout, addheader, clientheadertimeout, proxyreadtimeout, proxysendtimeout, clientbodytimeout, sendtimeout, and sslverifydepth. For details, see the official documentation.
    customized_cfg_id str
    Personalized configuration ID.
    customized_cfg_name str
    Name of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, periods (.), underscores (_), and hyphens (-). Length must be between 1 and 128 characters.
    description str
    Description of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, English commas (,), periods (.), underscores (_), spaces ( ), equals signs (=), hyphens (-), Chinese commas (,), and Chinese periods (。). Length must be between 1 and 255 characters. If not specified, defaults to an empty string.
    listeners Sequence[CustomizedCfgListenerArgs]
    project_name str
    Project name to which the personalized configuration belongs.
    status str
    Status of the personalized configuration. Includes Active, Configuring, Creating, or Deleting.
    tags Sequence[CustomizedCfgTagArgs]
    updated_time str
    Last operation time of the personalized configuration.
    createdTime String
    Creation time of the personalized configuration.
    customizedCfgContent String
    Content of the personalized configuration item. Specific rules: Length must not exceed 4096 characters. Spaces and semicolons must be escaped. Different configuration items are separated by '; '. Configuration items cannot be duplicated. Currently supported configuration items include sslprotocols, sslciphers, clientmaxbodysize, keepalivetimeout, proxyrequestbuffering, proxyconnecttimeout, addheader, clientheadertimeout, proxyreadtimeout, proxysendtimeout, clientbodytimeout, sendtimeout, and sslverifydepth. For details, see the official documentation.
    customizedCfgId String
    Personalized configuration ID.
    customizedCfgName String
    Name of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, periods (.), underscores (_), and hyphens (-). Length must be between 1 and 128 characters.
    description String
    Description of the personalized configuration. Specific rules: Cannot start with http:// or https://. Must start with a letter or Chinese character. Can include numbers, English commas (,), periods (.), underscores (_), spaces ( ), equals signs (=), hyphens (-), Chinese commas (,), and Chinese periods (。). Length must be between 1 and 255 characters. If not specified, defaults to an empty string.
    listeners List<Property Map>
    projectName String
    Project name to which the personalized configuration belongs.
    status String
    Status of the personalized configuration. Includes Active, Configuring, Creating, or Deleting.
    tags List<Property Map>
    updatedTime String
    Last operation time of the personalized configuration.

    Supporting Types

    CustomizedCfgListener, CustomizedCfgListenerArgs

    ListenerId string
    Listener ID.
    ListenerName string
    Listener name.
    Port int
    Listener port.
    Protocol string
    Listener protocol.
    ListenerId string
    Listener ID.
    ListenerName string
    Listener name.
    Port int
    Listener port.
    Protocol string
    Listener protocol.
    listenerId String
    Listener ID.
    listenerName String
    Listener name.
    port Integer
    Listener port.
    protocol String
    Listener protocol.
    listenerId string
    Listener ID.
    listenerName string
    Listener name.
    port number
    Listener port.
    protocol string
    Listener protocol.
    listener_id str
    Listener ID.
    listener_name str
    Listener name.
    port int
    Listener port.
    protocol str
    Listener protocol.
    listenerId String
    Listener ID.
    listenerName String
    Listener name.
    port Number
    Listener port.
    protocol String
    Listener protocol.

    CustomizedCfgTag, CustomizedCfgTagArgs

    Key string
    User tag key.
    Value string
    User tag value.
    Key string
    User tag key.
    Value string
    User tag value.
    key String
    User tag key.
    value String
    User tag value.
    key string
    User tag key.
    value string
    User tag value.
    key str
    User tag key.
    value str
    User tag value.
    key String
    User tag key.
    value String
    User tag value.

    Import

    $ pulumi import volcenginecc:alb/customizedCfg:CustomizedCfg example "customized_cfg_id"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    volcenginecc volcengine/pulumi-volcenginecc
    License
    MPL-2.0
    Notes
    This Pulumi package is based on the volcenginecc Terraform Provider.
    volcenginecc logo
    Viewing docs for volcenginecc v0.0.32
    published on Thursday, Apr 23, 2026 by Volcengine
      Try Pulumi Cloud free. Your team will thank you.