import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface TeoSecurityIpGroupConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/teo_security_ip_group#id TeoSecurityIpGroup#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; /** * Site ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/teo_security_ip_group#zone_id TeoSecurityIpGroup#zone_id} */ readonly zoneId: string; /** * ip_group block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/teo_security_ip_group#ip_group TeoSecurityIpGroup#ip_group} */ readonly ipGroup: TeoSecurityIpGroupIpGroup; } export interface TeoSecurityIpGroupIpGroup { /** * IP group content. Only supports IP and IP mask. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/teo_security_ip_group#content TeoSecurityIpGroup#content} */ readonly content: string[]; /** * Group name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/teo_security_ip_group#name TeoSecurityIpGroup#name} */ readonly name: string; } export declare function teoSecurityIpGroupIpGroupToTerraform(struct?: TeoSecurityIpGroupIpGroupOutputReference | TeoSecurityIpGroupIpGroup): any; export declare function teoSecurityIpGroupIpGroupToHclTerraform(struct?: TeoSecurityIpGroupIpGroupOutputReference | TeoSecurityIpGroupIpGroup): any; export declare class TeoSecurityIpGroupIpGroupOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string); get internalValue(): TeoSecurityIpGroupIpGroup | undefined; set internalValue(value: TeoSecurityIpGroupIpGroup | undefined); private _content?; get content(): string[]; set content(value: string[]); get contentInput(): string[]; get groupId(): any; private _name?; get name(): string; set name(value: string); get nameInput(): string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/teo_security_ip_group tencentcloud_teo_security_ip_group} */ export declare class TeoSecurityIpGroup extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_teo_security_ip_group"; /** * Generates CDKTF code for importing a TeoSecurityIpGroup 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 TeoSecurityIpGroup to import * @param importFromId The id of the existing TeoSecurityIpGroup that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/teo_security_ip_group#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the TeoSecurityIpGroup 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/teo_security_ip_group tencentcloud_teo_security_ip_group} 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 TeoSecurityIpGroupConfig */ constructor(scope: Construct, id: string, config: TeoSecurityIpGroupConfig); private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _zoneId?; get zoneId(): string; set zoneId(value: string); get zoneIdInput(): string; private _ipGroup; get ipGroup(): TeoSecurityIpGroupIpGroupOutputReference; putIpGroup(value: TeoSecurityIpGroupIpGroup): void; get ipGroupInput(): TeoSecurityIpGroupIpGroup; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }