import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface FirewallFilteringNetworkApplicationGroupsConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/firewall_filtering_network_application_groups#description FirewallFilteringNetworkApplicationGroups#description} */ readonly description?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/firewall_filtering_network_application_groups#name FirewallFilteringNetworkApplicationGroups#name} */ readonly name: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/firewall_filtering_network_application_groups#network_applications FirewallFilteringNetworkApplicationGroups#network_applications} */ readonly networkApplications?: string[]; } /** * Represents a {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/firewall_filtering_network_application_groups zia_firewall_filtering_network_application_groups} */ export declare class FirewallFilteringNetworkApplicationGroups extends cdktf.TerraformResource { static readonly tfResourceType = "zia_firewall_filtering_network_application_groups"; /** * Generates CDKTF code for importing a FirewallFilteringNetworkApplicationGroups 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 FirewallFilteringNetworkApplicationGroups to import * @param importFromId The id of the existing FirewallFilteringNetworkApplicationGroups that should be imported. Refer to the {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/firewall_filtering_network_application_groups#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the FirewallFilteringNetworkApplicationGroups 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_network_application_groups zia_firewall_filtering_network_application_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 FirewallFilteringNetworkApplicationGroupsConfig */ constructor(scope: Construct, id: string, config: FirewallFilteringNetworkApplicationGroupsConfig); get appId(): any; private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string; get id(): any; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _networkApplications?; get networkApplications(): string[]; set networkApplications(value: string[]); resetNetworkApplications(): void; get networkApplicationsInput(): string[]; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }