import * as pulumi from "@pulumi/pulumi"; export declare function getSystemVdomSflow(args?: GetSystemVdomSflowArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking GetSystemVdomSflow. */ export interface GetSystemVdomSflowArgs { vdomparam?: string; } /** * A collection of values returned by GetSystemVdomSflow. */ export interface GetSystemVdomSflowResult { 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 vdomSflow: string; readonly vdomparam?: string; } export declare function getSystemVdomSflowOutput(args?: GetSystemVdomSflowOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking GetSystemVdomSflow. */ export interface GetSystemVdomSflowOutputArgs { vdomparam?: pulumi.Input; }