import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface PtsCronJobConfig extends cdktf.TerraformMetaArguments { /** * Cron expression, When setting cron_expression at that time, frequency_type must be greater than 1. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/pts_cron_job#cron_expression PtsCronJob#cron_expression} */ readonly cronExpression: string; /** * End Time; type: Timestamp ISO8601. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/pts_cron_job#end_time PtsCronJob#end_time} */ readonly endTime?: string; /** * Execution frequency type, `1`: execute only once; `2`: daily granularity; `3`: weekly granularity; `4`: advanced. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/pts_cron_job#frequency_type PtsCronJob#frequency_type} */ readonly frequencyType: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/pts_cron_job#id PtsCronJob#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 Owner. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/pts_cron_job#job_owner PtsCronJob#job_owner} */ readonly jobOwner: string; /** * Cron Job Name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/pts_cron_job#name PtsCronJob#name} */ readonly name: string; /** * Note. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/pts_cron_job#note PtsCronJob#note} */ readonly note?: string; /** * Notice ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/pts_cron_job#notice_id PtsCronJob#notice_id} */ readonly noticeId?: string; /** * Project Id. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/pts_cron_job#project_id PtsCronJob#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_cron_job#scenario_id PtsCronJob#scenario_id} */ readonly scenarioId: string; /** * Scenario Name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/pts_cron_job#scenario_name PtsCronJob#scenario_name} */ readonly scenarioName: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/pts_cron_job tencentcloud_pts_cron_job} */ export declare class PtsCronJob extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_pts_cron_job"; /** * Generates CDKTF code for importing a PtsCronJob 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 PtsCronJob to import * @param importFromId The id of the existing PtsCronJob that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/pts_cron_job#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the PtsCronJob 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_cron_job tencentcloud_pts_cron_job} 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 PtsCronJobConfig */ constructor(scope: Construct, id: string, config: PtsCronJobConfig); get abortReason(): any; get appId(): any; get createdAt(): any; private _cronExpression?; get cronExpression(): string; set cronExpression(value: string); get cronExpressionInput(): string; get cronJobId(): any; private _endTime?; get endTime(): string; set endTime(value: string); resetEndTime(): void; get endTimeInput(): string; private _frequencyType?; get frequencyType(): number; set frequencyType(value: number); get frequencyTypeInput(): number; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _jobOwner?; get jobOwner(): string; set jobOwner(value: string); get jobOwnerInput(): string; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _note?; get note(): string; set note(value: string); resetNote(): void; get noteInput(): string; private _noticeId?; get noticeId(): string; set noticeId(value: string); resetNoticeId(): void; get noticeIdInput(): 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; private _scenarioName?; get scenarioName(): string; set scenarioName(value: string); get scenarioNameInput(): string; get status(): any; get subAccountUin(): any; get uin(): any; get updatedAt(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }