import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * This resource can manage Network Hierarchy Security Logging settings. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = new sdwan.NetworkHierarchySecurityLogging("example", { * highSpeedLoggings: [{ * vrf: "service_lan_vpn1", * serverIp: "10.1.2.1", * port: 2055, * }], * utdSyslogs: [{ * vpn: "service_lan_vpn1", * serverIp: "10.1.1.2", * }], * }); * ``` * * ## Import * * The `pulumi import` command can be used, for example: * * ```sh * $ pulumi import sdwan:index/networkHierarchySecurityLogging:NetworkHierarchySecurityLogging example "f6b2c44c-693c-4763-b010-895aa3d236bd" * ``` */ export declare class NetworkHierarchySecurityLogging extends pulumi.CustomResource { /** * Get an existing NetworkHierarchySecurityLogging 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?: NetworkHierarchySecurityLoggingState, opts?: pulumi.CustomResourceOptions): NetworkHierarchySecurityLogging; /** * Returns true if the given object is an instance of NetworkHierarchySecurityLogging. 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 NetworkHierarchySecurityLogging; /** * High speed logging configuration (max 4 entries) */ readonly highSpeedLoggings: pulumi.Output; /** * The UUID of the Global network hierarchy node. This is automatically fetched from the SD-WAN Manager. */ readonly nodeId: pulumi.Output; /** * UTD syslog configuration (max 1 entry) */ readonly utdSyslogs: pulumi.Output; /** * Create a NetworkHierarchySecurityLogging 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?: NetworkHierarchySecurityLoggingArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering NetworkHierarchySecurityLogging resources. */ export interface NetworkHierarchySecurityLoggingState { /** * High speed logging configuration (max 4 entries) */ highSpeedLoggings?: pulumi.Input[] | undefined>; /** * The UUID of the Global network hierarchy node. This is automatically fetched from the SD-WAN Manager. */ nodeId?: pulumi.Input; /** * UTD syslog configuration (max 1 entry) */ utdSyslogs?: pulumi.Input[] | undefined>; } /** * The set of arguments for constructing a NetworkHierarchySecurityLogging resource. */ export interface NetworkHierarchySecurityLoggingArgs { /** * High speed logging configuration (max 4 entries) */ highSpeedLoggings?: pulumi.Input[] | undefined>; /** * UTD syslog configuration (max 1 entry) */ utdSyslogs?: pulumi.Input[] | undefined>; } //# sourceMappingURL=networkHierarchySecurityLogging.d.ts.map