import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface KmsWhiteBoxKeyConfig extends cdktf.TerraformMetaArguments { /** * All algorithm types for creating keys, supported values: AES_256, SM4. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/kms_white_box_key#algorithm KmsWhiteBoxKey#algorithm} */ readonly algorithm: string; /** * As an alias for the key to be easier to identify and easier to understand, it cannot be empty and is a combination of 1-60 alphanumeric characters - _. The first character must be a letter or number. Alias are not repeatable. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/kms_white_box_key#alias KmsWhiteBoxKey#alias} */ readonly alias: string; /** * Description of the key, up to 1024 bytes. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/kms_white_box_key#description KmsWhiteBoxKey#description} */ readonly description?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/kms_white_box_key#id KmsWhiteBoxKey#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; /** * Whether to enable the key. Enabled or Disabled. Default is Enabled. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/kms_white_box_key#status KmsWhiteBoxKey#status} */ readonly status?: string; /** * The tags of Key. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/kms_white_box_key#tags KmsWhiteBoxKey#tags} */ readonly tags?: { [key: string]: string; }; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/kms_white_box_key tencentcloud_kms_white_box_key} */ export declare class KmsWhiteBoxKey extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_kms_white_box_key"; /** * Generates CDKTF code for importing a KmsWhiteBoxKey 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 KmsWhiteBoxKey to import * @param importFromId The id of the existing KmsWhiteBoxKey that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/kms_white_box_key#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the KmsWhiteBoxKey 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/kms_white_box_key tencentcloud_kms_white_box_key} 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 KmsWhiteBoxKeyConfig */ constructor(scope: Construct, id: string, config: KmsWhiteBoxKeyConfig); private _algorithm?; get algorithm(): string; set algorithm(value: string); get algorithmInput(): string; private _alias?; get alias(): string; set alias(value: string); get aliasInput(): string; private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _status?; get status(): string; set status(value: string); resetStatus(): void; get statusInput(): string; private _tags?; get tags(): { [key: string]: string; }; set tags(value: { [key: string]: string; }); resetTags(): void; get tagsInput(): { [key: string]: string; }; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }