import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface FirewallFilteringDestinationGroupsConfig extends cdktf.TerraformMetaArguments { /** * Destination IP addresses within the group * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/firewall_filtering_destination_groups#addresses FirewallFilteringDestinationGroups#addresses} */ readonly addresses?: string[]; /** * Destination countries for which the rule is applicable. If not set, the rule is not restricted to specific destination countries. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/firewall_filtering_destination_groups#countries FirewallFilteringDestinationGroups#countries} */ readonly countries?: string[]; /** * Additional information about the destination IP group * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/firewall_filtering_destination_groups#description FirewallFilteringDestinationGroups#description} */ readonly description?: string; /** * List of URL categories for which rule must be applied * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/firewall_filtering_destination_groups#ip_categories FirewallFilteringDestinationGroups#ip_categories} */ readonly ipCategories?: string[]; /** * Destination IP group name * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/firewall_filtering_destination_groups#name FirewallFilteringDestinationGroups#name} */ readonly name: string; /** * Destination IP group type (i.e., the group can contain destination IP addresses or FQDNs) * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/firewall_filtering_destination_groups#type FirewallFilteringDestinationGroups#type} */ readonly type?: string; } /** * Represents a {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/firewall_filtering_destination_groups zia_firewall_filtering_destination_groups} */ export declare class FirewallFilteringDestinationGroups extends cdktf.TerraformResource { static readonly tfResourceType = "zia_firewall_filtering_destination_groups"; /** * Generates CDKTF code for importing a FirewallFilteringDestinationGroups 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 FirewallFilteringDestinationGroups to import * @param importFromId The id of the existing FirewallFilteringDestinationGroups that should be imported. Refer to the {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/firewall_filtering_destination_groups#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the FirewallFilteringDestinationGroups 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/zscaler/zia/4.6.5/docs/resources/firewall_filtering_destination_groups zia_firewall_filtering_destination_groups} 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 FirewallFilteringDestinationGroupsConfig */ constructor(scope: Construct, id: string, config: FirewallFilteringDestinationGroupsConfig); private _addresses?; get addresses(): string[]; set addresses(value: string[]); resetAddresses(): void; get addressesInput(): string[]; private _countries?; get countries(): string[]; set countries(value: string[]); resetCountries(): void; get countriesInput(): string[]; private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string; get groupId(): any; get id(): any; private _ipCategories?; get ipCategories(): string[]; set ipCategories(value: string[]); resetIpCategories(): void; get ipCategoriesInput(): string[]; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _type?; get type(): string; set type(value: string); resetType(): void; get typeInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }