import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; export declare function getFirewallInternetServiceCustomGroup(args: GetFirewallInternetServiceCustomGroupArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking GetFirewallInternetServiceCustomGroup. */ export interface GetFirewallInternetServiceCustomGroupArgs { name: string; vdomparam?: string; } /** * A collection of values returned by GetFirewallInternetServiceCustomGroup. */ export interface GetFirewallInternetServiceCustomGroupResult { readonly comment: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly members: outputs.GetFirewallInternetServiceCustomGroupMember[]; readonly name: string; readonly vdomparam?: string; } export declare function getFirewallInternetServiceCustomGroupOutput(args: GetFirewallInternetServiceCustomGroupOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking GetFirewallInternetServiceCustomGroup. */ export interface GetFirewallInternetServiceCustomGroupOutputArgs { name: pulumi.Input; vdomparam?: pulumi.Input; }