import * as pulumi from "@pulumi/pulumi"; export declare function getFirewallServiceCategoryList(args?: GetFirewallServiceCategoryListArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking GetFirewallServiceCategoryList. */ export interface GetFirewallServiceCategoryListArgs { filter?: string; vdomparam?: string; } /** * A collection of values returned by GetFirewallServiceCategoryList. */ export interface GetFirewallServiceCategoryListResult { readonly filter?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly namelists: string[]; readonly vdomparam?: string; } export declare function getFirewallServiceCategoryListOutput(args?: GetFirewallServiceCategoryListOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking GetFirewallServiceCategoryList. */ export interface GetFirewallServiceCategoryListOutputArgs { filter?: pulumi.Input; vdomparam?: pulumi.Input; }