@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
119 lines (118 loc) • 3.23 kB
TypeScript
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({});
* ```
*/
/** @deprecated volcengine.alb.CustomizedCfgs has been deprecated in favor of volcengine.alb.getCustomizedCfgs */
export declare function customizedCfgs(args?: CustomizedCfgsArgs, opts?: pulumi.InvokeOptions): Promise<CustomizedCfgsResult>;
/**
* A collection of arguments for invoking CustomizedCfgs.
*/
export interface CustomizedCfgsArgs {
/**
* 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 CustomizedCfgs.
*/
export interface CustomizedCfgsResult {
/**
* The collection of CustomizedCfg query.
*/
readonly cfgs: outputs.alb.CustomizedCfgsCfg[];
/**
* 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({});
* ```
*/
/** @deprecated volcengine.alb.CustomizedCfgs has been deprecated in favor of volcengine.alb.getCustomizedCfgs */
export declare function customizedCfgsOutput(args?: CustomizedCfgsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<CustomizedCfgsResult>;
/**
* A collection of arguments for invoking CustomizedCfgs.
*/
export interface CustomizedCfgsOutputArgs {
/**
* 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>;
}