UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

117 lines (116 loc) 3.04 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to query detailed information of alb customized cfgs * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@pulumi/volcengine"; * * const foo = volcengine.alb.getCustomizedCfgs({}); * ``` */ export declare function getCustomizedCfgs(args?: GetCustomizedCfgsArgs, opts?: pulumi.InvokeOptions): Promise<GetCustomizedCfgsResult>; /** * A collection of arguments for invoking getCustomizedCfgs. */ export interface GetCustomizedCfgsArgs { /** * The name of the CustomizedCfg. */ customizedCfgName?: string; /** * A list of CustomizedCfg IDs. */ ids?: string[]; /** * The id of the listener. */ listenerId?: string; /** * A Name Regex of CustomizedCfg. */ nameRegex?: string; /** * File name where to save data source results. */ outputFile?: string; /** * The project name of the CustomizedCfg. */ projectName?: string; } /** * A collection of values returned by getCustomizedCfgs. */ export interface GetCustomizedCfgsResult { /** * The collection of CustomizedCfg query. */ readonly cfgs: outputs.alb.GetCustomizedCfgsCfg[]; /** * The name of CustomizedCfg. */ readonly customizedCfgName?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly ids?: string[]; /** * The ID of Listener. */ readonly listenerId?: string; readonly nameRegex?: string; readonly outputFile?: string; /** * The project name of CustomizedCfg. */ readonly projectName?: string; /** * The total count of CustomizedCfg query. */ readonly totalCount: number; } /** * Use this data source to query detailed information of alb customized cfgs * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@pulumi/volcengine"; * * const foo = volcengine.alb.getCustomizedCfgs({}); * ``` */ export declare function getCustomizedCfgsOutput(args?: GetCustomizedCfgsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetCustomizedCfgsResult>; /** * A collection of arguments for invoking getCustomizedCfgs. */ export interface GetCustomizedCfgsOutputArgs { /** * The name of the CustomizedCfg. */ customizedCfgName?: pulumi.Input<string>; /** * A list of CustomizedCfg IDs. */ ids?: pulumi.Input<pulumi.Input<string>[]>; /** * The id of the listener. */ listenerId?: pulumi.Input<string>; /** * A Name Regex of CustomizedCfg. */ nameRegex?: pulumi.Input<string>; /** * File name where to save data source results. */ outputFile?: pulumi.Input<string>; /** * The project name of the CustomizedCfg. */ projectName?: pulumi.Input<string>; }