import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataTencentcloudDlcTaskResultConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/dlc_task_result#id DataTencentcloudDlcTaskResult#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; /** * Whether to convert the data type. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/dlc_task_result#is_transform_data_type DataTencentcloudDlcTaskResult#is_transform_data_type} */ readonly isTransformDataType?: boolean | cdktf.IResolvable; /** * Maximum number of returned rows. Value range: 0-1,000. Default value: 1,000. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/dlc_task_result#max_results DataTencentcloudDlcTaskResult#max_results} */ readonly maxResults?: number; /** * The pagination information returned by the last response. This parameter can be omitted for the first response, where the data will be returned from the beginning. The data with a volume set by the `MaxResults` field is returned each time. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/dlc_task_result#next_token DataTencentcloudDlcTaskResult#next_token} */ readonly nextToken?: string; /** * Used to save results. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/dlc_task_result#result_output_file DataTencentcloudDlcTaskResult#result_output_file} */ readonly resultOutputFile?: string; /** * Unique task ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/dlc_task_result#task_id DataTencentcloudDlcTaskResult#task_id} */ readonly taskId: string; } export interface DataTencentcloudDlcTaskResultTaskInfoResultSchema { } export declare function dataTencentcloudDlcTaskResultTaskInfoResultSchemaToTerraform(struct?: DataTencentcloudDlcTaskResultTaskInfoResultSchema): any; export declare function dataTencentcloudDlcTaskResultTaskInfoResultSchemaToHclTerraform(struct?: DataTencentcloudDlcTaskResultTaskInfoResultSchema): any; export declare class DataTencentcloudDlcTaskResultTaskInfoResultSchemaOutputReference 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(): DataTencentcloudDlcTaskResultTaskInfoResultSchema | undefined; set internalValue(value: DataTencentcloudDlcTaskResultTaskInfoResultSchema | undefined); get comment(): any; get createTime(): any; get isPartition(): any; get modifiedTime(): any; get name(): any; get nullable(): any; get position(): any; get precision(): any; get scale(): any; get type(): any; } export declare class DataTencentcloudDlcTaskResultTaskInfoResultSchemaList 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): DataTencentcloudDlcTaskResultTaskInfoResultSchemaOutputReference; } export interface DataTencentcloudDlcTaskResultTaskInfo { } export declare function dataTencentcloudDlcTaskResultTaskInfoToTerraform(struct?: DataTencentcloudDlcTaskResultTaskInfo): any; export declare function dataTencentcloudDlcTaskResultTaskInfoToHclTerraform(struct?: DataTencentcloudDlcTaskResultTaskInfo): any; export declare class DataTencentcloudDlcTaskResultTaskInfoOutputReference 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(): DataTencentcloudDlcTaskResultTaskInfo | undefined; set internalValue(value: DataTencentcloudDlcTaskResultTaskInfo | undefined); get createTime(): any; get dataAmount(): any; get databaseName(): any; get datasourceConnectionName(): any; get displayFormat(): any; get nextToken(): any; get outputMessage(): any; get outputPath(): any; get percentage(): any; get progressDetail(): any; get queryResultTime(): any; private _resultSchema; get resultSchema(): DataTencentcloudDlcTaskResultTaskInfoResultSchemaList; get resultSet(): any; get rowAffectInfo(): any; get sql(): any; get sqlType(): any; get state(): any; get taskId(): any; get totalTime(): any; get usedTime(): any; } export declare class DataTencentcloudDlcTaskResultTaskInfoList 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): DataTencentcloudDlcTaskResultTaskInfoOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/dlc_task_result tencentcloud_dlc_task_result} */ export declare class DataTencentcloudDlcTaskResult extends cdktf.TerraformDataSource { static readonly tfResourceType = "tencentcloud_dlc_task_result"; /** * Generates CDKTF code for importing a DataTencentcloudDlcTaskResult 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 DataTencentcloudDlcTaskResult to import * @param importFromId The id of the existing DataTencentcloudDlcTaskResult that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/dlc_task_result#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataTencentcloudDlcTaskResult 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_task_result tencentcloud_dlc_task_result} 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 DataTencentcloudDlcTaskResultConfig */ constructor(scope: Construct, id: string, config: DataTencentcloudDlcTaskResultConfig); private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _isTransformDataType?; get isTransformDataType(): boolean | cdktf.IResolvable; set isTransformDataType(value: boolean | cdktf.IResolvable); resetIsTransformDataType(): void; get isTransformDataTypeInput(): any; private _maxResults?; get maxResults(): number; set maxResults(value: number); resetMaxResults(): void; get maxResultsInput(): number; private _nextToken?; get nextToken(): string; set nextToken(value: string); resetNextToken(): void; get nextTokenInput(): string; private _resultOutputFile?; get resultOutputFile(): string; set resultOutputFile(value: string); resetResultOutputFile(): void; get resultOutputFileInput(): string; private _taskId?; get taskId(): string; set taskId(value: string); get taskIdInput(): string; private _taskInfo; get taskInfo(): DataTencentcloudDlcTaskResultTaskInfoList; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }