import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Data Source schema for Volcengine::ALB::CustomizedCfg */ export declare function getCustomizedCfg(args: GetCustomizedCfgArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCustomizedCfg. */ export interface GetCustomizedCfgArgs { /** * Uniquely identifies the resource. */ id: string; } /** * A collection of values returned by getCustomizedCfg. */ export interface GetCustomizedCfgResult { /** * Creation time of the personalized configuration. */ readonly createdTime: 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 ssl*protocols, ssl*ciphers, client*max*body*size, keepalive*timeout, proxy*request*buffering, proxy*connect*timeout, add*header, client*header*timeout, proxy*read*timeout, proxy*send*timeout, client*body*timeout, send*timeout, and ssl*verify*depth. For details, see the official documentation. */ readonly customizedCfgContent: string; /** * Personalized configuration ID. */ readonly customizedCfgId: 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. */ readonly customizedCfgName: 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. */ readonly description: string; /** * Uniquely identifies the resource. */ readonly id: string; /** * List of listeners associated with the personalized configuration. */ readonly listeners: outputs.alb.GetCustomizedCfgListener[]; /** * Project name to which the personalized configuration belongs. */ readonly projectName: string; /** * Status of the personalized configuration. Includes Active, Configuring, Creating, or Deleting. */ readonly status: string; /** * Tag list. */ readonly tags: outputs.alb.GetCustomizedCfgTag[]; /** * Last operation time of the personalized configuration. */ readonly updatedTime: string; } /** * Data Source schema for Volcengine::ALB::CustomizedCfg */ export declare function getCustomizedCfgOutput(args: GetCustomizedCfgOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCustomizedCfg. */ export interface GetCustomizedCfgOutputArgs { /** * Uniquely identifies the resource. */ id: pulumi.Input; }