import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * This resource can manage Network Hierarchy Cflowd settings. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = new sdwan.NetworkHierarchyCflowd("example", { * flowActiveTimeout: 600, * flowInactiveTimeout: 60, * flowRefreshTime: 600, * flowSamplingInterval: 1, * collectTlocLoopback: true, * protocol: "ipv4", * collectTos: true, * collectDscpOutput: true, * collectors: [{ * vpnId: 1, * address: "10.0.0.1", * udpPort: 4739, * exportSpread: true, * bfdMetricsExport: true, * exportInterval: 600, * }], * }); * ``` * * ## Import * * The `pulumi import` command can be used, for example: * * ```sh * $ pulumi import sdwan:index/networkHierarchyCflowd:NetworkHierarchyCflowd example "f6b2c44c-693c-4763-b010-895aa3d236bd" * ``` */ export declare class NetworkHierarchyCflowd extends pulumi.CustomResource { /** * Get an existing NetworkHierarchyCflowd resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: NetworkHierarchyCflowdState, opts?: pulumi.CustomResourceOptions): NetworkHierarchyCflowd; /** * Returns true if the given object is an instance of NetworkHierarchyCflowd. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is NetworkHierarchyCflowd; /** * Collect remarked DSCP * - Default value: `false` */ readonly collectDscpOutput: pulumi.Output; /** * Collect SDWAN TLOC loopback interface name instead of physical * - Default value: `false` */ readonly collectTlocLoopback: pulumi.Output; /** * Collect TOS record field * - Default value: `false` */ readonly collectTos: pulumi.Output; /** * List of collectors */ readonly collectors: pulumi.Output; /** * Active flow timeout in seconds * - Range: `30`-`3600` */ readonly flowActiveTimeout: pulumi.Output; /** * Inactive flow timeout in seconds * - Range: `1`-`3600` */ readonly flowInactiveTimeout: pulumi.Output; /** * Flow refresh time in seconds * - Range: `60`-`86400` */ readonly flowRefreshTime: pulumi.Output; /** * Flow sampling interval * - Range: `1`-`65536` */ readonly flowSamplingInterval: pulumi.Output; /** * The UUID of the Global network hierarchy node. This is automatically fetched from the SD-WAN Manager. */ readonly nodeId: pulumi.Output; /** * FNF Protocol * - Choices: `ipv4`, `ipv6`, `both` */ readonly protocol: pulumi.Output; /** * Create a NetworkHierarchyCflowd resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: NetworkHierarchyCflowdArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering NetworkHierarchyCflowd resources. */ export interface NetworkHierarchyCflowdState { /** * Collect remarked DSCP * - Default value: `false` */ collectDscpOutput?: pulumi.Input; /** * Collect SDWAN TLOC loopback interface name instead of physical * - Default value: `false` */ collectTlocLoopback?: pulumi.Input; /** * Collect TOS record field * - Default value: `false` */ collectTos?: pulumi.Input; /** * List of collectors */ collectors?: pulumi.Input[] | undefined>; /** * Active flow timeout in seconds * - Range: `30`-`3600` */ flowActiveTimeout?: pulumi.Input; /** * Inactive flow timeout in seconds * - Range: `1`-`3600` */ flowInactiveTimeout?: pulumi.Input; /** * Flow refresh time in seconds * - Range: `60`-`86400` */ flowRefreshTime?: pulumi.Input; /** * Flow sampling interval * - Range: `1`-`65536` */ flowSamplingInterval?: pulumi.Input; /** * The UUID of the Global network hierarchy node. This is automatically fetched from the SD-WAN Manager. */ nodeId?: pulumi.Input; /** * FNF Protocol * - Choices: `ipv4`, `ipv6`, `both` */ protocol?: pulumi.Input; } /** * The set of arguments for constructing a NetworkHierarchyCflowd resource. */ export interface NetworkHierarchyCflowdArgs { /** * Collect remarked DSCP * - Default value: `false` */ collectDscpOutput?: pulumi.Input; /** * Collect SDWAN TLOC loopback interface name instead of physical * - Default value: `false` */ collectTlocLoopback?: pulumi.Input; /** * Collect TOS record field * - Default value: `false` */ collectTos?: pulumi.Input; /** * List of collectors */ collectors?: pulumi.Input[] | undefined>; /** * Active flow timeout in seconds * - Range: `30`-`3600` */ flowActiveTimeout: pulumi.Input; /** * Inactive flow timeout in seconds * - Range: `1`-`3600` */ flowInactiveTimeout: pulumi.Input; /** * Flow refresh time in seconds * - Range: `60`-`86400` */ flowRefreshTime: pulumi.Input; /** * Flow sampling interval * - Range: `1`-`65536` */ flowSamplingInterval: pulumi.Input; /** * FNF Protocol * - Choices: `ipv4`, `ipv6`, `both` */ protocol: pulumi.Input; } //# sourceMappingURL=networkHierarchyCflowd.d.ts.map