import * as pulumi from "@pulumi/pulumi"; /** * Provides a Vultr Firewall Group resource. This can be used to create, read, modify, and delete Firewall Group. * * ## Example Usage * * Create a new Firewall group * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as vultr from "@ediri/vultr"; * * const myFirewallgroup = new vultr.FirewallGroup("myFirewallgroup", {description: "base firewall"}); * ``` * * ## Import * * Firewall Groups can be imported using the Firewall Group `FIREWALLGROUPID`, e.g. * * ```sh * $ pulumi import vultr:index/firewallGroup:FirewallGroup my_firewallgroup c342f929 * ``` */ export declare class FirewallGroup extends pulumi.CustomResource { /** * Get an existing FirewallGroup 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?: FirewallGroupState, opts?: pulumi.CustomResourceOptions): FirewallGroup; /** * Returns true if the given object is an instance of FirewallGroup. 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 FirewallGroup; /** * The date the firewall group was created. */ readonly dateCreated: pulumi.Output; /** * The date the firewall group was modified. */ readonly dateModified: pulumi.Output; /** * Description of the firewall group. */ readonly description: pulumi.Output; /** * The number of instances that are currently using this firewall group. */ readonly instanceCount: pulumi.Output; /** * The number of max firewall rules this group can have. */ readonly maxRuleCount: pulumi.Output; /** * The number of firewall rules this group currently has. */ readonly ruleCount: pulumi.Output; /** * Create a FirewallGroup 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?: FirewallGroupArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering FirewallGroup resources. */ export interface FirewallGroupState { /** * The date the firewall group was created. */ dateCreated?: pulumi.Input; /** * The date the firewall group was modified. */ dateModified?: pulumi.Input; /** * Description of the firewall group. */ description?: pulumi.Input; /** * The number of instances that are currently using this firewall group. */ instanceCount?: pulumi.Input; /** * The number of max firewall rules this group can have. */ maxRuleCount?: pulumi.Input; /** * The number of firewall rules this group currently has. */ ruleCount?: pulumi.Input; } /** * The set of arguments for constructing a FirewallGroup resource. */ export interface FirewallGroupArgs { /** * Description of the firewall group. */ description?: pulumi.Input; }