import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface PostgresqlSecurityGroupConfigConfig extends cdktf.TerraformMetaArguments { /** * Instance ID. Either this parameter or ReadOnlyGroupId must be passed in. If both parameters are passed in, ReadOnlyGroupId will be ignored. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/postgresql_security_group_config#db_instance_id PostgresqlSecurityGroupConfig#db_instance_id} */ readonly dbInstanceId?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/postgresql_security_group_config#id PostgresqlSecurityGroupConfig#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; /** * RO group ID. Either this parameter or DBInstanceId must be passed in. To query the security groups associated with the RO groups, only pass in ReadOnlyGroupId. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/postgresql_security_group_config#read_only_group_id PostgresqlSecurityGroupConfig#read_only_group_id} */ readonly readOnlyGroupId?: string; /** * Information of security groups in array. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/postgresql_security_group_config#security_group_id_set PostgresqlSecurityGroupConfig#security_group_id_set} */ readonly securityGroupIdSet: string[]; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/postgresql_security_group_config tencentcloud_postgresql_security_group_config} */ export declare class PostgresqlSecurityGroupConfig extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_postgresql_security_group_config"; /** * Generates CDKTF code for importing a PostgresqlSecurityGroupConfig 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 PostgresqlSecurityGroupConfig to import * @param importFromId The id of the existing PostgresqlSecurityGroupConfig that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/postgresql_security_group_config#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the PostgresqlSecurityGroupConfig 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/postgresql_security_group_config tencentcloud_postgresql_security_group_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 PostgresqlSecurityGroupConfigConfig */ constructor(scope: Construct, id: string, config: PostgresqlSecurityGroupConfigConfig); private _dbInstanceId?; get dbInstanceId(): string; set dbInstanceId(value: string); resetDbInstanceId(): void; get dbInstanceIdInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _readOnlyGroupId?; get readOnlyGroupId(): string; set readOnlyGroupId(value: string); resetReadOnlyGroupId(): void; get readOnlyGroupIdInput(): string; private _securityGroupIdSet?; get securityGroupIdSet(): string[]; set securityGroupIdSet(value: string[]); get securityGroupIdSetInput(): string[]; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }