import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * This data source can read Network Hierarchy Security Logging settings. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getNetworkHierarchySecurityLogging({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getNetworkHierarchySecurityLogging(args: GetNetworkHierarchySecurityLoggingArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getNetworkHierarchySecurityLogging. */ export interface GetNetworkHierarchySecurityLoggingArgs { /** * The id of the object */ id: string; } /** * A collection of values returned by getNetworkHierarchySecurityLogging. */ export interface GetNetworkHierarchySecurityLoggingResult { /** * High speed logging configuration */ readonly highSpeedLoggings: outputs.GetNetworkHierarchySecurityLoggingHighSpeedLogging[]; /** * 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; /** * UTD syslog configuration */ readonly utdSyslogs: outputs.GetNetworkHierarchySecurityLoggingUtdSyslog[]; } /** * This data source can read Network Hierarchy Security Logging settings. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getNetworkHierarchySecurityLogging({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getNetworkHierarchySecurityLoggingOutput(args: GetNetworkHierarchySecurityLoggingOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getNetworkHierarchySecurityLogging. */ export interface GetNetworkHierarchySecurityLoggingOutputArgs { /** * The id of the object */ id: pulumi.Input; } //# sourceMappingURL=getNetworkHierarchySecurityLogging.d.ts.map