import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataTencentcloudWedataOpsWorkflowsConfig extends cdktf.TerraformMetaArguments { /** * Creation time, format yyyy-MM-dd HH:mm:ss. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_ops_workflows#create_time DataTencentcloudWedataOpsWorkflows#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_ops_workflows#create_user_uin DataTencentcloudWedataOpsWorkflows#create_user_uin} */ readonly createUserUin?: string; /** * File ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_ops_workflows#folder_id DataTencentcloudWedataOpsWorkflows#folder_id} */ readonly folderId?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_ops_workflows#id DataTencentcloudWedataOpsWorkflows#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; /** * Workflow keyword filter, supports fuzzy matching by workflow ID/name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_ops_workflows#key_word DataTencentcloudWedataOpsWorkflows#key_word} */ readonly keyWord?: string; /** * Update time, format yyyy-MM-dd HH:mm:ss. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_ops_workflows#modify_time DataTencentcloudWedataOpsWorkflows#modify_time} */ readonly modifyTime?: string; /** * Responsible person ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_ops_workflows#owner_uin DataTencentcloudWedataOpsWorkflows#owner_uin} */ readonly ownerUin?: string; /** * Project ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_ops_workflows#project_id DataTencentcloudWedataOpsWorkflows#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_ops_workflows#result_output_file DataTencentcloudWedataOpsWorkflows#result_output_file} */ readonly resultOutputFile?: string; /** * Sorting field, optional values: `CreateTime`, `TaskCount`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_ops_workflows#sort_item DataTencentcloudWedataOpsWorkflows#sort_item} */ readonly sortItem?: string; /** * Sorting order, `DESC` or `ASC`, uppercase. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_ops_workflows#sort_type DataTencentcloudWedataOpsWorkflows#sort_type} */ readonly sortType?: string; /** * Workflow status filter: `ALL_RUNNING`: All scheduled, `ALL_FREEZED`: All paused, `ALL_STOPPTED`: All offline, `PART_RUNNING`: Partially scheduled, `ALL_NO_RUNNING`: All unscheduled, `ALL_INVALID`: All invalid. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_ops_workflows#status DataTencentcloudWedataOpsWorkflows#status} */ readonly status?: string; /** * Workflow type filter, supported values: `Cycle` or `Manual`. By default, only `Cycle` is queried. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_ops_workflows#workflow_type DataTencentcloudWedataOpsWorkflows#workflow_type} */ readonly workflowType?: string; } export interface DataTencentcloudWedataOpsWorkflowsData { } export declare function dataTencentcloudWedataOpsWorkflowsDataToTerraform(struct?: DataTencentcloudWedataOpsWorkflowsData): any; export declare function dataTencentcloudWedataOpsWorkflowsDataToHclTerraform(struct?: DataTencentcloudWedataOpsWorkflowsData): any; export declare class DataTencentcloudWedataOpsWorkflowsDataOutputReference 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(): DataTencentcloudWedataOpsWorkflowsData | undefined; set internalValue(value: DataTencentcloudWedataOpsWorkflowsData | undefined); get createTime(): any; get folderId(): any; get folderName(): any; get ownerUin(): any; get projectId(): any; get projectName(): any; get status(): any; get taskCount(): any; get updateTime(): any; get updateUserUin(): any; get workflowDesc(): any; get workflowId(): any; get workflowName(): any; get workflowType(): any; } export declare class DataTencentcloudWedataOpsWorkflowsDataList 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): DataTencentcloudWedataOpsWorkflowsDataOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_ops_workflows tencentcloud_wedata_ops_workflows} */ export declare class DataTencentcloudWedataOpsWorkflows extends cdktf.TerraformDataSource { static readonly tfResourceType = "tencentcloud_wedata_ops_workflows"; /** * Generates CDKTF code for importing a DataTencentcloudWedataOpsWorkflows 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 DataTencentcloudWedataOpsWorkflows to import * @param importFromId The id of the existing DataTencentcloudWedataOpsWorkflows that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/wedata_ops_workflows#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataTencentcloudWedataOpsWorkflows 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_ops_workflows tencentcloud_wedata_ops_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 DataTencentcloudWedataOpsWorkflowsConfig */ constructor(scope: Construct, id: string, config: DataTencentcloudWedataOpsWorkflowsConfig); 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(): DataTencentcloudWedataOpsWorkflowsDataList; private _folderId?; get folderId(): string; set folderId(value: string); resetFolderId(): void; get folderIdInput(): string; 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 _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 _sortItem?; get sortItem(): string; set sortItem(value: string); resetSortItem(): void; get sortItemInput(): string; private _sortType?; get sortType(): string; set sortType(value: string); resetSortType(): void; get sortTypeInput(): string; private _status?; get status(): string; set status(value: string); resetStatus(): void; get statusInput(): 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; }; }