import * as pulumi from "@pulumi/pulumi"; export declare function getSystemVdomNetflow(args?: GetSystemVdomNetflowArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking GetSystemVdomNetflow. */ export interface GetSystemVdomNetflowArgs { vdomparam?: string; } /** * A collection of values returned by GetSystemVdomNetflow. */ export interface GetSystemVdomNetflowResult { readonly collectorIp: string; readonly collectorPort: number; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly interface: string; readonly interfaceSelectMethod: string; readonly sourceIp: string; readonly vdomNetflow: string; readonly vdomparam?: string; } export declare function getSystemVdomNetflowOutput(args?: GetSystemVdomNetflowOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking GetSystemVdomNetflow. */ export interface GetSystemVdomNetflowOutputArgs { vdomparam?: pulumi.Input; }