import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; export declare function getFirewallInternetServiceCustom(args: GetFirewallInternetServiceCustomArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking GetFirewallInternetServiceCustom. */ export interface GetFirewallInternetServiceCustomArgs { name: string; vdomparam?: string; } /** * A collection of values returned by GetFirewallInternetServiceCustom. */ export interface GetFirewallInternetServiceCustomResult { readonly comment: string; readonly entries: outputs.GetFirewallInternetServiceCustomEntry[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly name: string; readonly reputation: number; readonly vdomparam?: string; } export declare function getFirewallInternetServiceCustomOutput(args: GetFirewallInternetServiceCustomOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking GetFirewallInternetServiceCustom. */ export interface GetFirewallInternetServiceCustomOutputArgs { name: pulumi.Input; vdomparam?: pulumi.Input; }