import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * This data source can read Network Hierarchy Cflowd settings. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getNetworkHierarchyCflowd({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getNetworkHierarchyCflowd(args: GetNetworkHierarchyCflowdArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getNetworkHierarchyCflowd. */ export interface GetNetworkHierarchyCflowdArgs { /** * The id of the object */ id: string; } /** * A collection of values returned by getNetworkHierarchyCflowd. */ export interface GetNetworkHierarchyCflowdResult { /** * Collect remarked DSCP */ readonly collectDscpOutput: boolean; /** * Collect SDWAN TLOC loopback interface name instead of physical */ readonly collectTlocLoopback: boolean; /** * Collect TOS record field */ readonly collectTos: boolean; /** * List of collectors */ readonly collectors: outputs.GetNetworkHierarchyCflowdCollector[]; /** * Active flow timeout in seconds */ readonly flowActiveTimeout: number; /** * Inactive flow timeout in seconds */ readonly flowInactiveTimeout: number; /** * Flow refresh time in seconds */ readonly flowRefreshTime: number; /** * Flow sampling interval */ readonly flowSamplingInterval: number; /** * The id of the object */ readonly id: string; /** * The UUID of the Global network hierarchy node. This is automatically fetched from the SD-WAN Manager. */ readonly nodeId: string; /** * FNF Protocol */ readonly protocol: string; } /** * This data source can read Network Hierarchy Cflowd settings. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getNetworkHierarchyCflowd({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getNetworkHierarchyCflowdOutput(args: GetNetworkHierarchyCflowdOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getNetworkHierarchyCflowd. */ export interface GetNetworkHierarchyCflowdOutputArgs { /** * The id of the object */ id: pulumi.Input; } //# sourceMappingURL=getNetworkHierarchyCflowd.d.ts.map