import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CynosdbClusterPasswordComplexityConfig extends cdktf.TerraformMetaArguments { /** * Cluster ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cynosdb_cluster_password_complexity#cluster_id CynosdbClusterPasswordComplexity#cluster_id} */ readonly clusterId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cynosdb_cluster_password_complexity#id CynosdbClusterPasswordComplexity#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; /** * Data dictionary. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cynosdb_cluster_password_complexity#validate_password_dictionary CynosdbClusterPasswordComplexity#validate_password_dictionary} */ readonly validatePasswordDictionary?: string[]; /** * Password length. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cynosdb_cluster_password_complexity#validate_password_length CynosdbClusterPasswordComplexity#validate_password_length} */ readonly validatePasswordLength: number; /** * Number of uppercase and lowercase characters. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cynosdb_cluster_password_complexity#validate_password_mixed_case_count CynosdbClusterPasswordComplexity#validate_password_mixed_case_count} */ readonly validatePasswordMixedCaseCount: number; /** * Number of digits. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cynosdb_cluster_password_complexity#validate_password_number_count CynosdbClusterPasswordComplexity#validate_password_number_count} */ readonly validatePasswordNumberCount: number; /** * Password strength (MEDIUM, STRONG). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cynosdb_cluster_password_complexity#validate_password_policy CynosdbClusterPasswordComplexity#validate_password_policy} */ readonly validatePasswordPolicy: string; /** * Number of special characters. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cynosdb_cluster_password_complexity#validate_password_special_char_count CynosdbClusterPasswordComplexity#validate_password_special_char_count} */ readonly validatePasswordSpecialCharCount: number; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cynosdb_cluster_password_complexity tencentcloud_cynosdb_cluster_password_complexity} */ export declare class CynosdbClusterPasswordComplexity extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_cynosdb_cluster_password_complexity"; /** * Generates CDKTF code for importing a CynosdbClusterPasswordComplexity 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 CynosdbClusterPasswordComplexity to import * @param importFromId The id of the existing CynosdbClusterPasswordComplexity that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cynosdb_cluster_password_complexity#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CynosdbClusterPasswordComplexity 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/cynosdb_cluster_password_complexity tencentcloud_cynosdb_cluster_password_complexity} 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 CynosdbClusterPasswordComplexityConfig */ constructor(scope: Construct, id: string, config: CynosdbClusterPasswordComplexityConfig); private _clusterId?; get clusterId(): string; set clusterId(value: string); get clusterIdInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _validatePasswordDictionary?; get validatePasswordDictionary(): string[]; set validatePasswordDictionary(value: string[]); resetValidatePasswordDictionary(): void; get validatePasswordDictionaryInput(): string[]; private _validatePasswordLength?; get validatePasswordLength(): number; set validatePasswordLength(value: number); get validatePasswordLengthInput(): number; private _validatePasswordMixedCaseCount?; get validatePasswordMixedCaseCount(): number; set validatePasswordMixedCaseCount(value: number); get validatePasswordMixedCaseCountInput(): number; private _validatePasswordNumberCount?; get validatePasswordNumberCount(): number; set validatePasswordNumberCount(value: number); get validatePasswordNumberCountInput(): number; private _validatePasswordPolicy?; get validatePasswordPolicy(): string; set validatePasswordPolicy(value: string); get validatePasswordPolicyInput(): string; private _validatePasswordSpecialCharCount?; get validatePasswordSpecialCharCount(): number; set validatePasswordSpecialCharCount(value: number); get validatePasswordSpecialCharCountInput(): number; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }