import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataTencentcloudOceanusJobEventsConfig extends cdktf.TerraformMetaArguments { /** * Filter condition:End Unix timestamp (seconds). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/oceanus_job_events#end_timestamp DataTencentcloudOceanusJobEvents#end_timestamp} */ readonly endTimestamp: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/oceanus_job_events#id DataTencentcloudOceanusJobEvents#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; /** * Job ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/oceanus_job_events#job_id DataTencentcloudOceanusJobEvents#job_id} */ readonly jobId: string; /** * Used to save results. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/oceanus_job_events#result_output_file DataTencentcloudOceanusJobEvents#result_output_file} */ readonly resultOutputFile?: string; /** * Filter condition:Start Unix timestamp (seconds). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/oceanus_job_events#start_timestamp DataTencentcloudOceanusJobEvents#start_timestamp} */ readonly startTimestamp: number; /** * Event types. If not passed, data of all types will be returned. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/oceanus_job_events#types DataTencentcloudOceanusJobEvents#types} */ readonly types?: string[]; /** * Workspace SerialId. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/oceanus_job_events#work_space_id DataTencentcloudOceanusJobEvents#work_space_id} */ readonly workSpaceId: string; } export interface DataTencentcloudOceanusJobEventsEvents { } export declare function dataTencentcloudOceanusJobEventsEventsToTerraform(struct?: DataTencentcloudOceanusJobEventsEvents): any; export declare function dataTencentcloudOceanusJobEventsEventsToHclTerraform(struct?: DataTencentcloudOceanusJobEventsEvents): any; export declare class DataTencentcloudOceanusJobEventsEventsOutputReference 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(): DataTencentcloudOceanusJobEventsEvents | undefined; set internalValue(value: DataTencentcloudOceanusJobEventsEvents | undefined); get description(): any; get message(): any; get runningOrderId(): any; get solutionLink(): any; get timestamp(): any; get type(): any; } export declare class DataTencentcloudOceanusJobEventsEventsList 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): DataTencentcloudOceanusJobEventsEventsOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/oceanus_job_events tencentcloud_oceanus_job_events} */ export declare class DataTencentcloudOceanusJobEvents extends cdktf.TerraformDataSource { static readonly tfResourceType = "tencentcloud_oceanus_job_events"; /** * Generates CDKTF code for importing a DataTencentcloudOceanusJobEvents 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 DataTencentcloudOceanusJobEvents to import * @param importFromId The id of the existing DataTencentcloudOceanusJobEvents that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/oceanus_job_events#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataTencentcloudOceanusJobEvents 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/oceanus_job_events tencentcloud_oceanus_job_events} 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 DataTencentcloudOceanusJobEventsConfig */ constructor(scope: Construct, id: string, config: DataTencentcloudOceanusJobEventsConfig); private _endTimestamp?; get endTimestamp(): number; set endTimestamp(value: number); get endTimestampInput(): number; private _events; get events(): DataTencentcloudOceanusJobEventsEventsList; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _jobId?; get jobId(): string; set jobId(value: string); get jobIdInput(): string; private _resultOutputFile?; get resultOutputFile(): string; set resultOutputFile(value: string); resetResultOutputFile(): void; get resultOutputFileInput(): string; get runningOrderIds(): any; private _startTimestamp?; get startTimestamp(): number; set startTimestamp(value: number); get startTimestampInput(): number; private _types?; get types(): string[]; set types(value: string[]); resetTypes(): void; get typesInput(): string[]; private _workSpaceId?; get workSpaceId(): string; set workSpaceId(value: string); get workSpaceIdInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }