import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DlcRenewDataEngineOperationConfig extends cdktf.TerraformMetaArguments { /** * CU queue name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dlc_renew_data_engine_operation#data_engine_name DlcRenewDataEngineOperation#data_engine_name} */ readonly dataEngineName: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dlc_renew_data_engine_operation#id DlcRenewDataEngineOperation#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; /** * Payment type. It is 1 by default and is prepaid. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dlc_renew_data_engine_operation#pay_mode DlcRenewDataEngineOperation#pay_mode} */ readonly payMode?: number; /** * Auto-renewal flag: 0 means the initial status, and there is no automatic renewal by default. If the user has the privilege to retain services with prepayment, there will be an automatic renewal. 1 means that there is an automatic renewal. 2 means that there is surely no automatic renewal. If it is not specified, the parameter is 0 by default. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dlc_renew_data_engine_operation#renew_flag DlcRenewDataEngineOperation#renew_flag} */ readonly renewFlag?: number; /** * Renewal period in months, which is at least one month. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dlc_renew_data_engine_operation#time_span DlcRenewDataEngineOperation#time_span} */ readonly timeSpan: number; /** * Unit. It is m by default, and only m can be filled in. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dlc_renew_data_engine_operation#time_unit DlcRenewDataEngineOperation#time_unit} */ readonly timeUnit?: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dlc_renew_data_engine_operation tencentcloud_dlc_renew_data_engine_operation} */ export declare class DlcRenewDataEngineOperation extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_dlc_renew_data_engine_operation"; /** * Generates CDKTF code for importing a DlcRenewDataEngineOperation 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 DlcRenewDataEngineOperation to import * @param importFromId The id of the existing DlcRenewDataEngineOperation that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dlc_renew_data_engine_operation#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DlcRenewDataEngineOperation 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/dlc_renew_data_engine_operation tencentcloud_dlc_renew_data_engine_operation} 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 DlcRenewDataEngineOperationConfig */ constructor(scope: Construct, id: string, config: DlcRenewDataEngineOperationConfig); private _dataEngineName?; get dataEngineName(): string; set dataEngineName(value: string); get dataEngineNameInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _payMode?; get payMode(): number; set payMode(value: number); resetPayMode(): void; get payModeInput(): number; private _renewFlag?; get renewFlag(): number; set renewFlag(value: number); resetRenewFlag(): void; get renewFlagInput(): number; private _timeSpan?; get timeSpan(): number; set timeSpan(value: number); get timeSpanInput(): number; private _timeUnit?; get timeUnit(): string; set timeUnit(value: string); resetTimeUnit(): void; get timeUnitInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }