import * as pulumi from "@pulumi/pulumi"; /** * The zia_fw_network_application_group resource manages firewall network application groups in the Zscaler Internet Access (ZIA) cloud service. Network application groups allow you to bundle multiple network applications together for use in firewall filtering rules. * * For more information, see the [ZIA Firewall Policies documentation](https://help.zscaler.com/zia/firewall-policies). * * ## Example Usage * ### Basic Network Application Group * * ```typescript * import * as zia from "@bdzscaler/pulumi-zia"; * * const example = new zia.FwNetworkApplicationGroup("example", { * name: "Example App Group", * description: "Group of network applications", * networkApplications: ["APNS", "APPSTORE"], * }); * ``` * * ## Import * * An existing network application group can be imported using its resource ID, e.g. * * ```sh * $ pulumi import zia:index:FwNetworkApplicationGroup example 12345 * ``` */ export declare class FwNetworkApplicationGroup extends pulumi.CustomResource { /** * Get an existing FwNetworkApplicationGroup resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): FwNetworkApplicationGroup; /** * Returns true if the given object is an instance of FwNetworkApplicationGroup. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is FwNetworkApplicationGroup; /** * The system-generated ID of the network application group. */ readonly appId: pulumi.Output; /** * Additional information about the network application group. */ readonly description: pulumi.Output; /** * The name of the network application group. */ readonly name: pulumi.Output; /** * List of network application identifiers that belong to this group (e.g., `APNS`, `APPSTORE`). */ readonly networkApplications: pulumi.Output; /** * Create a FwNetworkApplicationGroup resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args?: FwNetworkApplicationGroupArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a FwNetworkApplicationGroup resource. */ export interface FwNetworkApplicationGroupArgs { /** * Additional information about the network application group. */ description?: pulumi.Input; /** * The name of the network application group. */ name?: pulumi.Input; /** * List of network application identifiers that belong to this group (e.g., `APNS`, `APPSTORE`). */ networkApplications?: pulumi.Input[] | undefined>; } //# sourceMappingURL=fwNetworkApplicationGroup.d.ts.map