import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataTencentcloudOceanusCheckSavepointConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/oceanus_check_savepoint#id DataTencentcloudOceanusCheckSavepoint#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_check_savepoint#job_id DataTencentcloudOceanusCheckSavepoint#job_id} */ readonly jobId: string; /** * Snapshot type. 1:savepoint; 2:checkpoint; 3:cancelWithSavepoint. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/oceanus_check_savepoint#record_type DataTencentcloudOceanusCheckSavepoint#record_type} */ readonly recordType: number; /** * Used to save results. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/oceanus_check_savepoint#result_output_file DataTencentcloudOceanusCheckSavepoint#result_output_file} */ readonly resultOutputFile?: string; /** * Snapshot path, currently only supports COS path. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/oceanus_check_savepoint#savepoint_path DataTencentcloudOceanusCheckSavepoint#savepoint_path} */ readonly savepointPath: string; /** * Snapshot resource ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/oceanus_check_savepoint#serial_id DataTencentcloudOceanusCheckSavepoint#serial_id} */ readonly serialId: string; /** * Workspace ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/oceanus_check_savepoint#work_space_id DataTencentcloudOceanusCheckSavepoint#work_space_id} */ readonly workSpaceId: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/oceanus_check_savepoint tencentcloud_oceanus_check_savepoint} */ export declare class DataTencentcloudOceanusCheckSavepoint extends cdktf.TerraformDataSource { static readonly tfResourceType = "tencentcloud_oceanus_check_savepoint"; /** * Generates CDKTF code for importing a DataTencentcloudOceanusCheckSavepoint 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 DataTencentcloudOceanusCheckSavepoint to import * @param importFromId The id of the existing DataTencentcloudOceanusCheckSavepoint that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/oceanus_check_savepoint#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataTencentcloudOceanusCheckSavepoint 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_check_savepoint tencentcloud_oceanus_check_savepoint} 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 DataTencentcloudOceanusCheckSavepointConfig */ constructor(scope: Construct, id: string, config: DataTencentcloudOceanusCheckSavepointConfig); 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 _recordType?; get recordType(): number; set recordType(value: number); get recordTypeInput(): number; private _resultOutputFile?; get resultOutputFile(): string; set resultOutputFile(value: string); resetResultOutputFile(): void; get resultOutputFileInput(): string; private _savepointPath?; get savepointPath(): string; set savepointPath(value: string); get savepointPathInput(): string; get savepointStatus(): any; private _serialId?; get serialId(): string; set serialId(value: string); get serialIdInput(): string; private _workSpaceId?; get workSpaceId(): string; set workSpaceId(value: string); get workSpaceIdInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }