import * as pulumi from "@pulumi/pulumi"; export declare function getFirewallShaperPerIpShaper(args: GetFirewallShaperPerIpShaperArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking GetFirewallShaperPerIpShaper. */ export interface GetFirewallShaperPerIpShaperArgs { name: string; vdomparam?: string; } /** * A collection of values returned by GetFirewallShaperPerIpShaper. */ export interface GetFirewallShaperPerIpShaperResult { readonly bandwidthUnit: string; readonly diffservForward: string; readonly diffservReverse: string; readonly diffservcodeForward: string; readonly diffservcodeRev: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly maxBandwidth: number; readonly maxConcurrentSession: number; readonly maxConcurrentTcpSession: number; readonly maxConcurrentUdpSession: number; readonly name: string; readonly vdomparam?: string; } export declare function getFirewallShaperPerIpShaperOutput(args: GetFirewallShaperPerIpShaperOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking GetFirewallShaperPerIpShaper. */ export interface GetFirewallShaperPerIpShaperOutputArgs { name: pulumi.Input; vdomparam?: pulumi.Input; }