UNPKG

@bdzscaler/pulumi-zia

Version:

A Pulumi package for creating and managing zia cloud resources.

87 lines (86 loc) 3.75 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * * [Official documentation](https://help.zscaler.com/zia/firewall-policies#/networkServiceGroups-get) * * [API documentation](https://help.zscaler.com/zia/firewall-policies#/networkServiceGroups-get) * * The **zia_firewall_filtering_network_service_groups** resource allows the creation and management of ZIA Cloud Firewall IP network service groups in the Zscaler Internet Access. This resource can then be associated with a ZIA cloud firewall filtering rule. * * ## Example Usage * * ## Import * * Zscaler offers a dedicated tool called Zscaler-Terraformer to allow the automated import of ZIA configurations into Terraform-compliant HashiCorp Configuration Language. * * Visit * * **firewall_filtering_network_service_groups** can be imported by using `<GROUP_ID>` or `<GROUP_NAME>` as the import ID. * * For example: * * ```sh * $ pulumi import zia:index/firewallFilteringServiceGroups:FirewallFilteringServiceGroups example <group_id> * ``` * * or * * ```sh * $ pulumi import zia:index/firewallFilteringServiceGroups:FirewallFilteringServiceGroups example <group_name> * ``` */ export declare class FirewallFilteringServiceGroups extends pulumi.CustomResource { /** * Get an existing FirewallFilteringServiceGroups 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 state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: FirewallFilteringServiceGroupsState, opts?: pulumi.CustomResourceOptions): FirewallFilteringServiceGroups; /** * Returns true if the given object is an instance of FirewallFilteringServiceGroups. 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 FirewallFilteringServiceGroups; readonly description: pulumi.Output<string | undefined>; readonly groupId: pulumi.Output<number>; readonly name: pulumi.Output<string>; /** * list of services IDs */ readonly services: pulumi.Output<outputs.FirewallFilteringServiceGroupsService[]>; /** * Create a FirewallFilteringServiceGroups 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?: FirewallFilteringServiceGroupsArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering FirewallFilteringServiceGroups resources. */ export interface FirewallFilteringServiceGroupsState { description?: pulumi.Input<string>; groupId?: pulumi.Input<number>; name?: pulumi.Input<string>; /** * list of services IDs */ services?: pulumi.Input<pulumi.Input<inputs.FirewallFilteringServiceGroupsService>[]>; } /** * The set of arguments for constructing a FirewallFilteringServiceGroups resource. */ export interface FirewallFilteringServiceGroupsArgs { description?: pulumi.Input<string>; name?: pulumi.Input<string>; /** * list of services IDs */ services?: pulumi.Input<pulumi.Input<inputs.FirewallFilteringServiceGroupsService>[]>; }