import * as pulumi from "@pulumi/pulumi"; /** * This resource provides the Network Firewall Policy Application Group resource in Oracle Cloud Infrastructure Network Firewall service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/network-firewall/latest/NetworkFirewallPolicyApplicationGroup * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/network_firewall * * Creates a new ApplicationGroup inside the Network Firewall Policy. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testNetworkFirewallPolicyApplicationGroup = new oci.networkfirewall.NetworkFirewallPolicyApplicationGroup("test_network_firewall_policy_application_group", { * name: networkFirewallPolicyApplicationGroupName, * networkFirewallPolicyId: testNetworkFirewallPolicy.id, * apps: networkFirewallPolicyApplicationGroupApps, * description: networkFirewallPolicyApplicationGroupDescription, * }); * ``` * * ## Import * * NetworkFirewallPolicyApplicationGroups can be imported using the `name`, e.g. * * ```sh * $ pulumi import oci:NetworkFirewall/networkFirewallPolicyApplicationGroup:NetworkFirewallPolicyApplicationGroup test_network_firewall_policy_application_group "networkFirewallPolicies/{networkFirewallPolicyId}/applicationGroups/{applicationGroupName}" * ``` */ export declare class NetworkFirewallPolicyApplicationGroup extends pulumi.CustomResource { /** * Get an existing NetworkFirewallPolicyApplicationGroup 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, state?: NetworkFirewallPolicyApplicationGroupState, opts?: pulumi.CustomResourceOptions): NetworkFirewallPolicyApplicationGroup; /** * Returns true if the given object is an instance of NetworkFirewallPolicyApplicationGroup. 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 NetworkFirewallPolicyApplicationGroup; /** * (Updatable) Collection of application names. */ readonly apps: pulumi.Output; /** * (Updatable) The description of the application group. This field can be used to add additional info. */ readonly description: pulumi.Output; /** * Name of the application group. */ readonly name: pulumi.Output; /** * Unique Network Firewall Policy identifier * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ readonly networkFirewallPolicyId: pulumi.Output; /** * OCID of the Network Firewall Policy this application group belongs to. */ readonly parentResourceId: pulumi.Output; /** * Count of total applications in the given application group. */ readonly totalApps: pulumi.Output; /** * Create a NetworkFirewallPolicyApplicationGroup 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: NetworkFirewallPolicyApplicationGroupArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering NetworkFirewallPolicyApplicationGroup resources. */ export interface NetworkFirewallPolicyApplicationGroupState { /** * (Updatable) Collection of application names. */ apps?: pulumi.Input[] | undefined>; /** * (Updatable) The description of the application group. This field can be used to add additional info. */ description?: pulumi.Input; /** * Name of the application group. */ name?: pulumi.Input; /** * Unique Network Firewall Policy identifier * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ networkFirewallPolicyId?: pulumi.Input; /** * OCID of the Network Firewall Policy this application group belongs to. */ parentResourceId?: pulumi.Input; /** * Count of total applications in the given application group. */ totalApps?: pulumi.Input; } /** * The set of arguments for constructing a NetworkFirewallPolicyApplicationGroup resource. */ export interface NetworkFirewallPolicyApplicationGroupArgs { /** * (Updatable) Collection of application names. */ apps: pulumi.Input[]>; /** * (Updatable) The description of the application group. This field can be used to add additional info. */ description?: pulumi.Input; /** * Name of the application group. */ name?: pulumi.Input; /** * Unique Network Firewall Policy identifier * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ networkFirewallPolicyId: pulumi.Input; } //# sourceMappingURL=networkFirewallPolicyApplicationGroup.d.ts.map