import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataTencentcloudDlcDescribeDataEngineImageVersionsConfig extends cdktf.TerraformMetaArguments { /** * Sort by: false (descending, default), true (ascending). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/dlc_describe_data_engine_image_versions#asc DataTencentcloudDlcDescribeDataEngineImageVersions#asc} */ readonly asc?: boolean | cdktf.IResolvable; /** * Engine type only support: SparkSQL/PrestoSQL/SparkBatch. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/dlc_describe_data_engine_image_versions#engine_type DataTencentcloudDlcDescribeDataEngineImageVersions#engine_type} */ readonly engineType: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/dlc_describe_data_engine_image_versions#id DataTencentcloudDlcDescribeDataEngineImageVersions#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; /** * Used to save results. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/dlc_describe_data_engine_image_versions#result_output_file DataTencentcloudDlcDescribeDataEngineImageVersions#result_output_file} */ readonly resultOutputFile?: string; /** * Sort fields: InsertTime (insert time, default), UpdateTime (update time). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/dlc_describe_data_engine_image_versions#sort DataTencentcloudDlcDescribeDataEngineImageVersions#sort} */ readonly sort?: string; } export interface DataTencentcloudDlcDescribeDataEngineImageVersionsImageParentVersions { } export declare function dataTencentcloudDlcDescribeDataEngineImageVersionsImageParentVersionsToTerraform(struct?: DataTencentcloudDlcDescribeDataEngineImageVersionsImageParentVersions): any; export declare function dataTencentcloudDlcDescribeDataEngineImageVersionsImageParentVersionsToHclTerraform(struct?: DataTencentcloudDlcDescribeDataEngineImageVersionsImageParentVersions): any; export declare class DataTencentcloudDlcDescribeDataEngineImageVersionsImageParentVersionsOutputReference 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(): DataTencentcloudDlcDescribeDataEngineImageVersionsImageParentVersions | undefined; set internalValue(value: DataTencentcloudDlcDescribeDataEngineImageVersionsImageParentVersions | undefined); get description(): any; get engineType(): any; get imageVersion(): any; get imageVersionId(): any; get insertTime(): any; get isPublic(): any; get isSharedEngine(): any; get state(): any; get updateTime(): any; } export declare class DataTencentcloudDlcDescribeDataEngineImageVersionsImageParentVersionsList 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): DataTencentcloudDlcDescribeDataEngineImageVersionsImageParentVersionsOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/dlc_describe_data_engine_image_versions tencentcloud_dlc_describe_data_engine_image_versions} */ export declare class DataTencentcloudDlcDescribeDataEngineImageVersions extends cdktf.TerraformDataSource { static readonly tfResourceType = "tencentcloud_dlc_describe_data_engine_image_versions"; /** * Generates CDKTF code for importing a DataTencentcloudDlcDescribeDataEngineImageVersions 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 DataTencentcloudDlcDescribeDataEngineImageVersions to import * @param importFromId The id of the existing DataTencentcloudDlcDescribeDataEngineImageVersions that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/dlc_describe_data_engine_image_versions#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataTencentcloudDlcDescribeDataEngineImageVersions 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/dlc_describe_data_engine_image_versions tencentcloud_dlc_describe_data_engine_image_versions} 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 DataTencentcloudDlcDescribeDataEngineImageVersionsConfig */ constructor(scope: Construct, id: string, config: DataTencentcloudDlcDescribeDataEngineImageVersionsConfig); private _asc?; get asc(): boolean | cdktf.IResolvable; set asc(value: boolean | cdktf.IResolvable); resetAsc(): void; get ascInput(): any; private _engineType?; get engineType(): string; set engineType(value: string); get engineTypeInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _imageParentVersions; get imageParentVersions(): DataTencentcloudDlcDescribeDataEngineImageVersionsImageParentVersionsList; private _resultOutputFile?; get resultOutputFile(): string; set resultOutputFile(value: string); resetResultOutputFile(): void; get resultOutputFileInput(): string; private _sort?; get sort(): string; set sort(value: string); resetSort(): void; get sortInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }