import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataTencentcloudWedataDataSourcesConfig extends cdktf.TerraformMetaArguments { /** * Creator. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_data_sources#creator DataTencentcloudWedataDataSources#creator} */ readonly creator?: string; /** * Data source display name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_data_sources#display_name DataTencentcloudWedataDataSources#display_name} */ readonly displayName?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_data_sources#id DataTencentcloudWedataDataSources#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; /** * Data source name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_data_sources#name DataTencentcloudWedataDataSources#name} */ readonly name?: string; /** * Project ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_data_sources#project_id DataTencentcloudWedataDataSources#project_id} */ readonly projectId: string; /** * Used to save results. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_data_sources#result_output_file DataTencentcloudWedataDataSources#result_output_file} */ readonly resultOutputFile?: string; /** * Data source type: enumeration values. * * - MYSQL * - TENCENT_MYSQL * - POSTGRE * - ORACLE * - SQLSERVER * - FTP * - HIVE * - HUDI * - HDFS * - ICEBERG * - KAFKA * - HBASE * - SPARK * - VIRTUAL * - TBASE * - DB2 * - DM * - GAUSSDB * - GBASE * - IMPALA * - ES * - TENCENT_ES * - GREENPLUM * - PHOENIX * - SAP_HANA * - SFTP * - OCEANBASE * - CLICKHOUSE * - KUDU * - VERTICA * - REDIS * - COS * - DLC * - DORIS * - CKAFKA * - S3 * - TDSQL * - TDSQL_MYSQL * - MONGODB * - TENCENT_MONGODB * - REST_API * - SuperSQL * - PRESTO * - TiDB * - StarRocks * - Trino * - Kyuubi * - TCHOUSE_X * - TCHOUSE_P * - TCHOUSE_C * - TCHOUSE_D * - INFLUXDB * - BIG_QUERY * - SSH * - BLOB. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_data_sources#type DataTencentcloudWedataDataSources#type} */ readonly type?: string[]; } export interface DataTencentcloudWedataDataSourcesItems { } export declare function dataTencentcloudWedataDataSourcesItemsToTerraform(struct?: DataTencentcloudWedataDataSourcesItems): any; export declare function dataTencentcloudWedataDataSourcesItemsToHclTerraform(struct?: DataTencentcloudWedataDataSourcesItems): any; export declare class DataTencentcloudWedataDataSourcesItemsOutputReference 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(): DataTencentcloudWedataDataSourcesItems | undefined; set internalValue(value: DataTencentcloudWedataDataSourcesItems | undefined); get category(): any; get createTime(): any; get createUser(): any; get description(): any; get devConProperties(): any; get displayName(): any; get id(): any; get modifyTime(): any; get modifyUser(): any; get name(): any; get prodConProperties(): any; get projectId(): any; get projectName(): any; get type(): any; } export declare class DataTencentcloudWedataDataSourcesItemsList 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): DataTencentcloudWedataDataSourcesItemsOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_data_sources tencentcloud_wedata_data_sources} */ export declare class DataTencentcloudWedataDataSources extends cdktf.TerraformDataSource { static readonly tfResourceType = "tencentcloud_wedata_data_sources"; /** * Generates CDKTF code for importing a DataTencentcloudWedataDataSources 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 DataTencentcloudWedataDataSources to import * @param importFromId The id of the existing DataTencentcloudWedataDataSources that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_data_sources#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataTencentcloudWedataDataSources 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/wedata_data_sources tencentcloud_wedata_data_sources} 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 DataTencentcloudWedataDataSourcesConfig */ constructor(scope: Construct, id: string, config: DataTencentcloudWedataDataSourcesConfig); private _creator?; get creator(): string; set creator(value: string); resetCreator(): void; get creatorInput(): string; private _displayName?; get displayName(): string; set displayName(value: string); resetDisplayName(): void; get displayNameInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _items; get items(): DataTencentcloudWedataDataSourcesItemsList; private _name?; get name(): string; set name(value: string); resetName(): void; get nameInput(): string; private _projectId?; get projectId(): string; set projectId(value: string); get projectIdInput(): string; private _resultOutputFile?; get resultOutputFile(): string; set resultOutputFile(value: string); resetResultOutputFile(): void; get resultOutputFileInput(): string; private _type?; get type(): string[]; set type(value: string[]); resetType(): void; get typeInput(): string[]; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }