import * as pulumi from "@pulumi/pulumi"; export declare function getFirewallServiceCategory(args: GetFirewallServiceCategoryArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking GetFirewallServiceCategory. */ export interface GetFirewallServiceCategoryArgs { name: string; vdomparam?: string; } /** * A collection of values returned by GetFirewallServiceCategory. */ export interface GetFirewallServiceCategoryResult { readonly comment: string; readonly fabricObject: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly name: string; readonly vdomparam?: string; } export declare function getFirewallServiceCategoryOutput(args: GetFirewallServiceCategoryOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking GetFirewallServiceCategory. */ export interface GetFirewallServiceCategoryOutputArgs { name: pulumi.Input; vdomparam?: pulumi.Input; }