import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataTencentcloudWedataResourceFilesConfig extends cdktf.TerraformMetaArguments { /** * Create time range. specifies the termination time in yyyy-MM-dd HH:MM:ss format. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_resource_files#create_time_end DataTencentcloudWedataResourceFiles#create_time_end} */ readonly createTimeEnd?: string; /** * Create time range. specifies the start time in yyyy-MM-dd HH:MM:ss format. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_resource_files#create_time_start DataTencentcloudWedataResourceFiles#create_time_start} */ readonly createTimeStart?: string; /** * Creator ID. obtain through the DescribeCurrentUserInfo API. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_resource_files#create_user_uin DataTencentcloudWedataResourceFiles#create_user_uin} */ readonly createUserUin?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_resource_files#id DataTencentcloudWedataResourceFiles#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; /** * Update time range. specifies the end time in yyyy-MM-dd HH:MM:ss format. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_resource_files#modify_time_end DataTencentcloudWedataResourceFiles#modify_time_end} */ readonly modifyTimeEnd?: string; /** * Update time range. specifies the start time in yyyy-MM-dd HH:MM:ss format. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_resource_files#modify_time_start DataTencentcloudWedataResourceFiles#modify_time_start} */ readonly modifyTimeStart?: string; /** * Specifies the path of the file's parent folder (for example /a/b/c, querying resource files under the folder c). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_resource_files#parent_folder_path DataTencentcloudWedataResourceFiles#parent_folder_path} */ readonly parentFolderPath?: string; /** * Project ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_resource_files#project_id DataTencentcloudWedataResourceFiles#project_id} */ readonly projectId: string; /** * Resource file name (fuzzy search keyword). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_resource_files#resource_name DataTencentcloudWedataResourceFiles#resource_name} */ readonly resourceName?: string; /** * Used to save results. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_resource_files#result_output_file DataTencentcloudWedataResourceFiles#result_output_file} */ readonly resultOutputFile?: string; } export interface DataTencentcloudWedataResourceFilesData { } export declare function dataTencentcloudWedataResourceFilesDataToTerraform(struct?: DataTencentcloudWedataResourceFilesData): any; export declare function dataTencentcloudWedataResourceFilesDataToHclTerraform(struct?: DataTencentcloudWedataResourceFilesData): any; export declare class DataTencentcloudWedataResourceFilesDataOutputReference 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(): DataTencentcloudWedataResourceFilesData | undefined; set internalValue(value: DataTencentcloudWedataResourceFilesData | undefined); get fileExtensionType(): any; get localPath(): any; get resourceId(): any; get resourceName(): any; } export declare class DataTencentcloudWedataResourceFilesDataList 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): DataTencentcloudWedataResourceFilesDataOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_resource_files tencentcloud_wedata_resource_files} */ export declare class DataTencentcloudWedataResourceFiles extends cdktf.TerraformDataSource { static readonly tfResourceType = "tencentcloud_wedata_resource_files"; /** * Generates CDKTF code for importing a DataTencentcloudWedataResourceFiles 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 DataTencentcloudWedataResourceFiles to import * @param importFromId The id of the existing DataTencentcloudWedataResourceFiles that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_resource_files#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataTencentcloudWedataResourceFiles 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_resource_files tencentcloud_wedata_resource_files} 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 DataTencentcloudWedataResourceFilesConfig */ constructor(scope: Construct, id: string, config: DataTencentcloudWedataResourceFilesConfig); private _createTimeEnd?; get createTimeEnd(): string; set createTimeEnd(value: string); resetCreateTimeEnd(): void; get createTimeEndInput(): string; private _createTimeStart?; get createTimeStart(): string; set createTimeStart(value: string); resetCreateTimeStart(): void; get createTimeStartInput(): string; private _createUserUin?; get createUserUin(): string; set createUserUin(value: string); resetCreateUserUin(): void; get createUserUinInput(): string; private _data; get data(): DataTencentcloudWedataResourceFilesDataList; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _modifyTimeEnd?; get modifyTimeEnd(): string; set modifyTimeEnd(value: string); resetModifyTimeEnd(): void; get modifyTimeEndInput(): string; private _modifyTimeStart?; get modifyTimeStart(): string; set modifyTimeStart(value: string); resetModifyTimeStart(): void; get modifyTimeStartInput(): string; private _parentFolderPath?; get parentFolderPath(): string; set parentFolderPath(value: string); resetParentFolderPath(): void; get parentFolderPathInput(): string; private _projectId?; get projectId(): string; set projectId(value: string); get projectIdInput(): string; private _resourceName?; get resourceName(): string; set resourceName(value: string); resetResourceName(): void; get resourceNameInput(): string; private _resultOutputFile?; get resultOutputFile(): string; set resultOutputFile(value: string); resetResultOutputFile(): void; get resultOutputFileInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }