import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface ApiGatewayPluginConfig extends cdktf.TerraformMetaArguments { /** * Description of plugin. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/api_gateway_plugin#description ApiGatewayPlugin#description} */ readonly description?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/api_gateway_plugin#id ApiGatewayPlugin#id} * * Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. * If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable. */ readonly id?: string; /** * Statement to define plugin. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/api_gateway_plugin#plugin_data ApiGatewayPlugin#plugin_data} */ readonly pluginData: string; /** * Name of the user define plugin. It must start with a letter and end with letter or number, the rest can contain letters, numbers and dashes(-). The length range is from 2 to 50. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/api_gateway_plugin#plugin_name ApiGatewayPlugin#plugin_name} */ readonly pluginName: string; /** * Type of plugin. Now support IPControl, TrafficControl, Cors, CustomReq, CustomAuth, Routing, TrafficControlByParameter, CircuitBreaker, ProxyCache. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/api_gateway_plugin#plugin_type ApiGatewayPlugin#plugin_type} */ readonly pluginType: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/api_gateway_plugin tencentcloud_api_gateway_plugin} */ export declare class ApiGatewayPlugin extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_api_gateway_plugin"; /** * Generates CDKTF code for importing a ApiGatewayPlugin resource upon running "cdktf plan " * @param scope The scope in which to define this construct * @param importToId The construct id used in the generated config for the ApiGatewayPlugin to import * @param importFromId The id of the existing ApiGatewayPlugin that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/api_gateway_plugin#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the ApiGatewayPlugin to import is found */ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any; /** * Create a new {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/api_gateway_plugin tencentcloud_api_gateway_plugin} Resource * * @param scope The scope in which to define this construct * @param id The scoped construct ID. Must be unique amongst siblings in the same scope * @param options ApiGatewayPluginConfig */ constructor(scope: Construct, id: string, config: ApiGatewayPluginConfig); private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _pluginData?; get pluginData(): string; set pluginData(value: string); get pluginDataInput(): string; private _pluginName?; get pluginName(): string; set pluginName(value: string); get pluginNameInput(): string; private _pluginType?; get pluginType(): string; set pluginType(value: string); get pluginTypeInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }