import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface TeoPlanConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/teo_plan#id TeoPlan#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; /** * The subscription package type, the possible values are: `personal`: personal package, prepaid package; `basic`: basic package, prepaid package; `standard`: standard package, prepaid package; `enterprise`: enterprise package, postpaid package. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/teo_plan#plan_type TeoPlan#plan_type} */ readonly planType: string; /** * prepaid_plan_param block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/teo_plan#prepaid_plan_param TeoPlan#prepaid_plan_param} */ readonly prepaidPlanParam?: TeoPlanPrepaidPlanParam; } export interface TeoPlanPrepaidPlanParam { /** * The subscription period of the prepaid package, in months, with possible values: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 24, 36. If not filled in, the default value 1 is used. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/teo_plan#period TeoPlan#period} */ readonly period?: number; /** * The automatic renewal flag of the prepaid package, the values are: `on`: turn on automatic renewal; `off`: do not turn on automatic renewal. If not filled in, the default value off is used. When automatic renewal occurs, the default renewal period is 1 month. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/teo_plan#renew_flag TeoPlan#renew_flag} */ readonly renewFlag?: string; } export declare function teoPlanPrepaidPlanParamToTerraform(struct?: TeoPlanPrepaidPlanParamOutputReference | TeoPlanPrepaidPlanParam): any; export declare function teoPlanPrepaidPlanParamToHclTerraform(struct?: TeoPlanPrepaidPlanParamOutputReference | TeoPlanPrepaidPlanParam): any; export declare class TeoPlanPrepaidPlanParamOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string); get internalValue(): TeoPlanPrepaidPlanParam | undefined; set internalValue(value: TeoPlanPrepaidPlanParam | undefined); private _period?; get period(): number; set period(value: number); resetPeriod(): void; get periodInput(): number; private _renewFlag?; get renewFlag(): string; set renewFlag(value: string); resetRenewFlag(): void; get renewFlagInput(): string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/teo_plan tencentcloud_teo_plan} */ export declare class TeoPlan extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_teo_plan"; /** * Generates CDKTF code for importing a TeoPlan 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 TeoPlan to import * @param importFromId The id of the existing TeoPlan that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/teo_plan#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the TeoPlan 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/teo_plan tencentcloud_teo_plan} 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 TeoPlanConfig */ constructor(scope: Construct, id: string, config: TeoPlanConfig); get area(): any; get enabledTime(): any; get expiredTime(): any; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; get payMode(): any; get planId(): any; private _planType?; get planType(): string; set planType(value: string); get planTypeInput(): string; get status(): any; private _prepaidPlanParam; get prepaidPlanParam(): TeoPlanPrepaidPlanParamOutputReference; putPrepaidPlanParam(value: TeoPlanPrepaidPlanParam): void; resetPrepaidPlanParam(): void; get prepaidPlanParamInput(): TeoPlanPrepaidPlanParam; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }