import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataTencentcloudTeoPlansConfig extends cdktf.TerraformMetaArguments {
/**
* Sorting direction, the possible values are:
asc: sort from small to large; desc: sort from large to small. If not filled in, the default value desc will be used.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/teo_plans#direction DataTencentcloudTeoPlans#direction}
*/
readonly direction?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/teo_plans#id DataTencentcloudTeoPlans#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;
/**
* Sorting field, the values are: enable-time: effective time; expire-time: expiration time. If not filled in, the default value enable-time will be used.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/teo_plans#order DataTencentcloudTeoPlans#order}
*/
readonly order?: string;
/**
* Used to save results.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/teo_plans#result_output_file DataTencentcloudTeoPlans#result_output_file}
*/
readonly resultOutputFile?: string;
/**
* filters block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/teo_plans#filters DataTencentcloudTeoPlans#filters}
*/
readonly filters?: DataTencentcloudTeoPlansFilters[] | cdktf.IResolvable;
}
export interface DataTencentcloudTeoPlansPlansZonesInfo {
}
export declare function dataTencentcloudTeoPlansPlansZonesInfoToTerraform(struct?: DataTencentcloudTeoPlansPlansZonesInfo): any;
export declare function dataTencentcloudTeoPlansPlansZonesInfoToHclTerraform(struct?: DataTencentcloudTeoPlansPlansZonesInfo): any;
export declare class DataTencentcloudTeoPlansPlansZonesInfoOutputReference extends cdktf.ComplexObject {
private isEmptyObject;
/**
* @param terraformResource The parent resource
* @param terraformAttribute The attribute on the parent resource this class is referencing
* @param complexObjectIndex the index of this item in the list
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
*/
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
get internalValue(): DataTencentcloudTeoPlansPlansZonesInfo | undefined;
set internalValue(value: DataTencentcloudTeoPlansPlansZonesInfo | undefined);
get paused(): any;
get zoneId(): any;
get zoneName(): any;
}
export declare class DataTencentcloudTeoPlansPlansZonesInfoList extends cdktf.ComplexList {
protected terraformResource: cdktf.IInterpolatingParent;
protected terraformAttribute: string;
protected wrapsSet: boolean;
/**
* @param terraformResource The parent resource
* @param terraformAttribute The attribute on the parent resource this class is referencing
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
*/
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
/**
* @param index the index of the item to return
*/
get(index: number): DataTencentcloudTeoPlansPlansZonesInfoOutputReference;
}
export interface DataTencentcloudTeoPlansPlans {
}
export declare function dataTencentcloudTeoPlansPlansToTerraform(struct?: DataTencentcloudTeoPlansPlans): any;
export declare function dataTencentcloudTeoPlansPlansToHclTerraform(struct?: DataTencentcloudTeoPlansPlans): any;
export declare class DataTencentcloudTeoPlansPlansOutputReference extends cdktf.ComplexObject {
private isEmptyObject;
/**
* @param terraformResource The parent resource
* @param terraformAttribute The attribute on the parent resource this class is referencing
* @param complexObjectIndex the index of this item in the list
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
*/
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
get internalValue(): DataTencentcloudTeoPlansPlans | undefined;
set internalValue(value: DataTencentcloudTeoPlansPlans | undefined);
get accTrafficCapacity(): any;
get area(): any;
get bindable(): any;
get crossMlcTrafficCapacity(): any;
get ddosTrafficCapacity(): any;
get enabledTime(): any;
get expiredTime(): any;
get features(): any;
get l4TrafficCapacity(): any;
get payMode(): any;
get planId(): any;
get planType(): any;
get secRequestCapacity(): any;
get secTrafficCapacity(): any;
get smartRequestCapacity(): any;
get smartTrafficCapacity(): any;
get status(): any;
get vauCapacity(): any;
private _zonesInfo;
get zonesInfo(): DataTencentcloudTeoPlansPlansZonesInfoList;
}
export declare class DataTencentcloudTeoPlansPlansList extends cdktf.ComplexList {
protected terraformResource: cdktf.IInterpolatingParent;
protected terraformAttribute: string;
protected wrapsSet: boolean;
/**
* @param terraformResource The parent resource
* @param terraformAttribute The attribute on the parent resource this class is referencing
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
*/
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
/**
* @param index the index of the item to return
*/
get(index: number): DataTencentcloudTeoPlansPlansOutputReference;
}
export interface DataTencentcloudTeoPlansFilters {
/**
* Filter name.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/teo_plans#name DataTencentcloudTeoPlans#name}
*/
readonly name: string;
/**
* Filter value.
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/teo_plans#values DataTencentcloudTeoPlans#values}
*/
readonly values: string[];
}
export declare function dataTencentcloudTeoPlansFiltersToTerraform(struct?: DataTencentcloudTeoPlansFilters | cdktf.IResolvable): any;
export declare function dataTencentcloudTeoPlansFiltersToHclTerraform(struct?: DataTencentcloudTeoPlansFilters | cdktf.IResolvable): any;
export declare class DataTencentcloudTeoPlansFiltersOutputReference extends cdktf.ComplexObject {
private isEmptyObject;
private resolvableValue?;
/**
* @param terraformResource The parent resource
* @param terraformAttribute The attribute on the parent resource this class is referencing
* @param complexObjectIndex the index of this item in the list
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
*/
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
get internalValue(): DataTencentcloudTeoPlansFilters | cdktf.IResolvable | undefined;
set internalValue(value: DataTencentcloudTeoPlansFilters | cdktf.IResolvable | undefined);
private _name?;
get name(): string;
set name(value: string);
get nameInput(): string;
private _values?;
get values(): string[];
set values(value: string[]);
get valuesInput(): string[];
}
export declare class DataTencentcloudTeoPlansFiltersList extends cdktf.ComplexList {
protected terraformResource: cdktf.IInterpolatingParent;
protected terraformAttribute: string;
protected wrapsSet: boolean;
internalValue?: DataTencentcloudTeoPlansFilters[] | cdktf.IResolvable;
/**
* @param terraformResource The parent resource
* @param terraformAttribute The attribute on the parent resource this class is referencing
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
*/
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
/**
* @param index the index of the item to return
*/
get(index: number): DataTencentcloudTeoPlansFiltersOutputReference;
}
/**
* Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/teo_plans tencentcloud_teo_plans}
*/
export declare class DataTencentcloudTeoPlans extends cdktf.TerraformDataSource {
static readonly tfResourceType = "tencentcloud_teo_plans";
/**
* Generates CDKTF code for importing a DataTencentcloudTeoPlans 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 DataTencentcloudTeoPlans to import
* @param importFromId The id of the existing DataTencentcloudTeoPlans that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/teo_plans#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the DataTencentcloudTeoPlans 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/data-sources/teo_plans tencentcloud_teo_plans} Data Source
*
* @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 DataTencentcloudTeoPlansConfig = {}
*/
constructor(scope: Construct, id: string, config?: DataTencentcloudTeoPlansConfig);
private _direction?;
get direction(): string;
set direction(value: string);
resetDirection(): void;
get directionInput(): string;
private _id?;
get id(): string;
set id(value: string);
resetId(): void;
get idInput(): string;
private _order?;
get order(): string;
set order(value: string);
resetOrder(): void;
get orderInput(): string;
private _plans;
get plans(): DataTencentcloudTeoPlansPlansList;
private _resultOutputFile?;
get resultOutputFile(): string;
set resultOutputFile(value: string);
resetResultOutputFile(): void;
get resultOutputFileInput(): string;
private _filters;
get filters(): DataTencentcloudTeoPlansFiltersList;
putFilters(value: DataTencentcloudTeoPlansFilters[] | cdktf.IResolvable): void;
resetFilters(): void;
get filtersInput(): any;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}