import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface PtsJobAbortConfig extends cdktf.TerraformMetaArguments { /** * The reason for aborting the job. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/pts_job_abort#abort_reason PtsJobAbort#abort_reason} */ readonly abortReason?: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/pts_job_abort#id PtsJobAbort#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/resources/pts_job_abort#job_id PtsJobAbort#job_id} */ readonly jobId: string; /** * Project ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/pts_job_abort#project_id PtsJobAbort#project_id} */ readonly projectId: string; /** * Scenario ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/pts_job_abort#scenario_id PtsJobAbort#scenario_id} */ readonly scenarioId: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/pts_job_abort tencentcloud_pts_job_abort} */ export declare class PtsJobAbort extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_pts_job_abort"; /** * Generates CDKTF code for importing a PtsJobAbort 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 PtsJobAbort to import * @param importFromId The id of the existing PtsJobAbort that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/pts_job_abort#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the PtsJobAbort 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/resources/pts_job_abort tencentcloud_pts_job_abort} Resource * * @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 PtsJobAbortConfig */ constructor(scope: Construct, id: string, config: PtsJobAbortConfig); private _abortReason?; get abortReason(): number; set abortReason(value: number); resetAbortReason(): void; get abortReasonInput(): number; 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 _projectId?; get projectId(): string; set projectId(value: string); get projectIdInput(): string; private _scenarioId?; get scenarioId(): string; set scenarioId(value: string); get scenarioIdInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }