import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface TcrTagRetentionExecutionConfigConfig extends cdktf.TerraformMetaArguments { /** * Whether to simulate execution, the default value is false, that is, non-simulation execution. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcr_tag_retention_execution_config#dry_run TcrTagRetentionExecutionConfig#dry_run} */ readonly dryRun?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcr_tag_retention_execution_config#id TcrTagRetentionExecutionConfig#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; /** * instance id. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcr_tag_retention_execution_config#registry_id TcrTagRetentionExecutionConfig#registry_id} */ readonly registryId: string; /** * retention id. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcr_tag_retention_execution_config#retention_id TcrTagRetentionExecutionConfig#retention_id} */ readonly retentionId: number; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcr_tag_retention_execution_config tencentcloud_tcr_tag_retention_execution_config} */ export declare class TcrTagRetentionExecutionConfig extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_tcr_tag_retention_execution_config"; /** * Generates CDKTF code for importing a TcrTagRetentionExecutionConfig 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 TcrTagRetentionExecutionConfig to import * @param importFromId The id of the existing TcrTagRetentionExecutionConfig that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tcr_tag_retention_execution_config#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the TcrTagRetentionExecutionConfig 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/tcr_tag_retention_execution_config tencentcloud_tcr_tag_retention_execution_config} 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 TcrTagRetentionExecutionConfigConfig */ constructor(scope: Construct, id: string, config: TcrTagRetentionExecutionConfigConfig); private _dryRun?; get dryRun(): boolean | cdktf.IResolvable; set dryRun(value: boolean | cdktf.IResolvable); resetDryRun(): void; get dryRunInput(): any; get executionId(): any; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _registryId?; get registryId(): string; set registryId(value: string); get registryIdInput(): string; private _retentionId?; get retentionId(): number; set retentionId(value: number); get retentionIdInput(): number; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }