import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataTencentcloudWedataWorkflowsConfig extends cdktf.TerraformMetaArguments { /** * bundleId item. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_workflows#bundle_id DataTencentcloudWedataWorkflows#bundle_id} */ readonly bundleId?: string; /** * Creation time range yyyy-MM-dd HH:MM:ss. two times must be filled in the array. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_workflows#create_time DataTencentcloudWedataWorkflows#create_time} */ readonly createTime?: string[]; /** * Creator ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_workflows#create_user_uin DataTencentcloudWedataWorkflows#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_workflows#id DataTencentcloudWedataWorkflows#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; /** * Search keywords. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_workflows#keyword DataTencentcloudWedataWorkflows#keyword} */ readonly keyword?: string; /** * Modification time interval yyyy-MM-dd HH:MM:ss. fill in two times in the array. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_workflows#modify_time DataTencentcloudWedataWorkflows#modify_time} */ readonly modifyTime?: string[]; /** * Owner ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_workflows#owner_uin DataTencentcloudWedataWorkflows#owner_uin} */ readonly ownerUin?: string; /** * Workflow folder. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_workflows#parent_folder_path DataTencentcloudWedataWorkflows#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_workflows#project_id DataTencentcloudWedataWorkflows#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_workflows#result_output_file DataTencentcloudWedataWorkflows#result_output_file} */ readonly resultOutputFile?: string; /** * Workflow type. valid values: cycle and manual. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_workflows#workflow_type DataTencentcloudWedataWorkflows#workflow_type} */ readonly workflowType?: string; } export interface DataTencentcloudWedataWorkflowsData { } export declare function dataTencentcloudWedataWorkflowsDataToTerraform(struct?: DataTencentcloudWedataWorkflowsData): any; export declare function dataTencentcloudWedataWorkflowsDataToHclTerraform(struct?: DataTencentcloudWedataWorkflowsData): any; export declare class DataTencentcloudWedataWorkflowsDataOutputReference 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(): DataTencentcloudWedataWorkflowsData | undefined; set internalValue(value: DataTencentcloudWedataWorkflowsData | undefined); get createTime(): any; get createUserUin(): any; get modifyTime(): any; get ownerUin(): any; get updateUserUin(): any; get workflowDesc(): any; get workflowId(): any; get workflowName(): any; get workflowType(): any; } export declare class DataTencentcloudWedataWorkflowsDataList 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): DataTencentcloudWedataWorkflowsDataOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_workflows tencentcloud_wedata_workflows} */ export declare class DataTencentcloudWedataWorkflows extends cdktf.TerraformDataSource { static readonly tfResourceType = "tencentcloud_wedata_workflows"; /** * Generates CDKTF code for importing a DataTencentcloudWedataWorkflows 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 DataTencentcloudWedataWorkflows to import * @param importFromId The id of the existing DataTencentcloudWedataWorkflows that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_workflows#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataTencentcloudWedataWorkflows 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_workflows tencentcloud_wedata_workflows} 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 DataTencentcloudWedataWorkflowsConfig */ constructor(scope: Construct, id: string, config: DataTencentcloudWedataWorkflowsConfig); private _bundleId?; get bundleId(): string; set bundleId(value: string); resetBundleId(): void; get bundleIdInput(): string; private _createTime?; get createTime(): string[]; set createTime(value: string[]); resetCreateTime(): void; get createTimeInput(): string[]; private _createUserUin?; get createUserUin(): string; set createUserUin(value: string); resetCreateUserUin(): void; get createUserUinInput(): string; private _data; get data(): DataTencentcloudWedataWorkflowsDataList; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _keyword?; get keyword(): string; set keyword(value: string); resetKeyword(): void; get keywordInput(): string; private _modifyTime?; get modifyTime(): string[]; set modifyTime(value: string[]); resetModifyTime(): void; get modifyTimeInput(): string[]; private _ownerUin?; get ownerUin(): string; set ownerUin(value: string); resetOwnerUin(): void; get ownerUinInput(): 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 _resultOutputFile?; get resultOutputFile(): string; set resultOutputFile(value: string); resetResultOutputFile(): void; get resultOutputFileInput(): string; private _workflowType?; get workflowType(): string; set workflowType(value: string); resetWorkflowType(): void; get workflowTypeInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }