import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface ClsWebCallbackConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cls_web_callback#id ClsWebCallback#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; /** * Secret key. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cls_web_callback#key ClsWebCallback#key} */ readonly key?: string; /** * Request method. Supports POST and PUT. Required when Type is Http. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cls_web_callback#method ClsWebCallback#method} */ readonly method?: string; /** * Notification content name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cls_web_callback#name ClsWebCallback#name} */ readonly name: string; /** * Channel type. WeCom: WeChat for Enterprise; DingTalk: DingTalk; Lark: Feishu; Http: custom callback. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cls_web_callback#type ClsWebCallback#type} */ readonly type: string; /** * Webhook address. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cls_web_callback#webhook ClsWebCallback#webhook} */ readonly webhook: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cls_web_callback tencentcloud_cls_web_callback} */ export declare class ClsWebCallback extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_cls_web_callback"; /** * Generates CDKTF code for importing a ClsWebCallback 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 ClsWebCallback to import * @param importFromId The id of the existing ClsWebCallback that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cls_web_callback#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the ClsWebCallback 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/cls_web_callback tencentcloud_cls_web_callback} 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 ClsWebCallbackConfig */ constructor(scope: Construct, id: string, config: ClsWebCallbackConfig); private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _key?; get key(): string; set key(value: string); resetKey(): void; get keyInput(): string; private _method?; get method(): string; set method(value: string); resetMethod(): void; get methodInput(): string; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _type?; get type(): string; set type(value: string); get typeInput(): string; private _webhook?; get webhook(): string; set webhook(value: string); get webhookInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }