published on Wednesday, Jul 29, 2026 by Pulumi
published on Wednesday, Jul 29, 2026 by Pulumi
This resource can manage Network Hierarchy Security Logging settings.
Example Usage
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 pulumi
import pulumi_sdwan as sdwan
example = sdwan.NetworkHierarchySecurityLogging("example",
high_speed_loggings=[{
"vrf": "service_lan_vpn1",
"server_ip": "10.1.2.1",
"port": 2055,
}],
utd_syslogs=[{
"vpn": "service_lan_vpn1",
"server_ip": "10.1.1.2",
}])
package main
import (
"github.com/pulumi/pulumi-sdwan/sdk/go/sdwan"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := sdwan.NewNetworkHierarchySecurityLogging(ctx, "example", &sdwan.NetworkHierarchySecurityLoggingArgs{
HighSpeedLoggings: sdwan.NetworkHierarchySecurityLoggingHighSpeedLoggingArray{
&sdwan.NetworkHierarchySecurityLoggingHighSpeedLoggingArgs{
Vrf: pulumi.String("service_lan_vpn1"),
ServerIp: pulumi.String("10.1.2.1"),
Port: pulumi.Int(2055),
},
},
UtdSyslogs: sdwan.NetworkHierarchySecurityLoggingUtdSyslogArray{
&sdwan.NetworkHierarchySecurityLoggingUtdSyslogArgs{
Vpn: pulumi.String("service_lan_vpn1"),
ServerIp: pulumi.String("10.1.1.2"),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Sdwan = Pulumi.Sdwan;
return await Deployment.RunAsync(() =>
{
var example = new Sdwan.NetworkHierarchySecurityLogging("example", new()
{
HighSpeedLoggings = new[]
{
new Sdwan.Inputs.NetworkHierarchySecurityLoggingHighSpeedLoggingArgs
{
Vrf = "service_lan_vpn1",
ServerIp = "10.1.2.1",
Port = 2055,
},
},
UtdSyslogs = new[]
{
new Sdwan.Inputs.NetworkHierarchySecurityLoggingUtdSyslogArgs
{
Vpn = "service_lan_vpn1",
ServerIp = "10.1.1.2",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.NetworkHierarchySecurityLogging;
import com.pulumi.sdwan.NetworkHierarchySecurityLoggingArgs;
import com.pulumi.sdwan.inputs.NetworkHierarchySecurityLoggingHighSpeedLoggingArgs;
import com.pulumi.sdwan.inputs.NetworkHierarchySecurityLoggingUtdSyslogArgs;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new NetworkHierarchySecurityLogging("example", NetworkHierarchySecurityLoggingArgs.builder()
.highSpeedLoggings(NetworkHierarchySecurityLoggingHighSpeedLoggingArgs.builder()
.vrf("service_lan_vpn1")
.serverIp("10.1.2.1")
.port(2055)
.build())
.utdSyslogs(NetworkHierarchySecurityLoggingUtdSyslogArgs.builder()
.vpn("service_lan_vpn1")
.serverIp("10.1.1.2")
.build())
.build());
}
}
resources:
example:
type: sdwan:NetworkHierarchySecurityLogging
properties:
highSpeedLoggings:
- vrf: service_lan_vpn1
serverIp: 10.1.2.1
port: 2055
utdSyslogs:
- vpn: service_lan_vpn1
serverIp: 10.1.1.2
pulumi {
required_providers {
sdwan = {
source = "pulumi/sdwan"
}
}
}
resource "sdwan_networkhierarchysecuritylogging" "example" {
high_speed_loggings {
vrf = "service_lan_vpn1"
server_ip = "10.1.2.1"
port = 2055
}
utd_syslogs {
vpn = "service_lan_vpn1"
server_ip = "10.1.1.2"
}
}
Create NetworkHierarchySecurityLogging Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new NetworkHierarchySecurityLogging(name: string, args?: NetworkHierarchySecurityLoggingArgs, opts?: CustomResourceOptions);@overload
def NetworkHierarchySecurityLogging(resource_name: str,
args: Optional[NetworkHierarchySecurityLoggingArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def NetworkHierarchySecurityLogging(resource_name: str,
opts: Optional[ResourceOptions] = None,
high_speed_loggings: Optional[Sequence[NetworkHierarchySecurityLoggingHighSpeedLoggingArgs]] = None,
utd_syslogs: Optional[Sequence[NetworkHierarchySecurityLoggingUtdSyslogArgs]] = None)func NewNetworkHierarchySecurityLogging(ctx *Context, name string, args *NetworkHierarchySecurityLoggingArgs, opts ...ResourceOption) (*NetworkHierarchySecurityLogging, error)public NetworkHierarchySecurityLogging(string name, NetworkHierarchySecurityLoggingArgs? args = null, CustomResourceOptions? opts = null)
public NetworkHierarchySecurityLogging(String name, NetworkHierarchySecurityLoggingArgs args)
public NetworkHierarchySecurityLogging(String name, NetworkHierarchySecurityLoggingArgs args, CustomResourceOptions options)
type: sdwan:NetworkHierarchySecurityLogging
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "sdwan_network_hierarchy_security_logging" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args NetworkHierarchySecurityLoggingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args NetworkHierarchySecurityLoggingArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args NetworkHierarchySecurityLoggingArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NetworkHierarchySecurityLoggingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NetworkHierarchySecurityLoggingArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var networkHierarchySecurityLoggingResource = new Sdwan.NetworkHierarchySecurityLogging("networkHierarchySecurityLoggingResource", new()
{
HighSpeedLoggings = new[]
{
new Sdwan.Inputs.NetworkHierarchySecurityLoggingHighSpeedLoggingArgs
{
Port = 0,
ServerIp = "string",
Vrf = "string",
},
},
UtdSyslogs = new[]
{
new Sdwan.Inputs.NetworkHierarchySecurityLoggingUtdSyslogArgs
{
ServerIp = "string",
Vpn = "string",
},
},
});
example, err := sdwan.NewNetworkHierarchySecurityLogging(ctx, "networkHierarchySecurityLoggingResource", &sdwan.NetworkHierarchySecurityLoggingArgs{
HighSpeedLoggings: sdwan.NetworkHierarchySecurityLoggingHighSpeedLoggingArray{
&sdwan.NetworkHierarchySecurityLoggingHighSpeedLoggingArgs{
Port: pulumi.Int(0),
ServerIp: pulumi.String("string"),
Vrf: pulumi.String("string"),
},
},
UtdSyslogs: sdwan.NetworkHierarchySecurityLoggingUtdSyslogArray{
&sdwan.NetworkHierarchySecurityLoggingUtdSyslogArgs{
ServerIp: pulumi.String("string"),
Vpn: pulumi.String("string"),
},
},
})
resource "sdwan_network_hierarchy_security_logging" "networkHierarchySecurityLoggingResource" {
lifecycle {
create_before_destroy = true
}
high_speed_loggings {
port = 0
server_ip = "string"
vrf = "string"
}
utd_syslogs {
server_ip = "string"
vpn = "string"
}
}
var networkHierarchySecurityLoggingResource = new NetworkHierarchySecurityLogging("networkHierarchySecurityLoggingResource", NetworkHierarchySecurityLoggingArgs.builder()
.highSpeedLoggings(NetworkHierarchySecurityLoggingHighSpeedLoggingArgs.builder()
.port(0)
.serverIp("string")
.vrf("string")
.build())
.utdSyslogs(NetworkHierarchySecurityLoggingUtdSyslogArgs.builder()
.serverIp("string")
.vpn("string")
.build())
.build());
network_hierarchy_security_logging_resource = sdwan.NetworkHierarchySecurityLogging("networkHierarchySecurityLoggingResource",
high_speed_loggings=[{
"port": 0,
"server_ip": "string",
"vrf": "string",
}],
utd_syslogs=[{
"server_ip": "string",
"vpn": "string",
}])
const networkHierarchySecurityLoggingResource = new sdwan.NetworkHierarchySecurityLogging("networkHierarchySecurityLoggingResource", {
highSpeedLoggings: [{
port: 0,
serverIp: "string",
vrf: "string",
}],
utdSyslogs: [{
serverIp: "string",
vpn: "string",
}],
});
type: sdwan:NetworkHierarchySecurityLogging
properties:
highSpeedLoggings:
- port: 0
serverIp: string
vrf: string
utdSyslogs:
- serverIp: string
vpn: string
NetworkHierarchySecurityLogging Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The NetworkHierarchySecurityLogging resource accepts the following input properties:
- High
Speed List<NetworkLoggings Hierarchy Security Logging High Speed Logging> - High speed logging configuration (max 4 entries)
- Utd
Syslogs List<NetworkHierarchy Security Logging Utd Syslog> - UTD syslog configuration (max 1 entry)
- High
Speed []NetworkLoggings Hierarchy Security Logging High Speed Logging Args - High speed logging configuration (max 4 entries)
- Utd
Syslogs []NetworkHierarchy Security Logging Utd Syslog Args - UTD syslog configuration (max 1 entry)
- high_
speed_ list(object)loggings - High speed logging configuration (max 4 entries)
- utd_
syslogs list(object) - UTD syslog configuration (max 1 entry)
- high
Speed List<NetworkLoggings Hierarchy Security Logging High Speed Logging> - High speed logging configuration (max 4 entries)
- utd
Syslogs List<NetworkHierarchy Security Logging Utd Syslog> - UTD syslog configuration (max 1 entry)
- high
Speed NetworkLoggings Hierarchy Security Logging High Speed Logging[] - High speed logging configuration (max 4 entries)
- utd
Syslogs NetworkHierarchy Security Logging Utd Syslog[] - UTD syslog configuration (max 1 entry)
- high_
speed_ Sequence[Networkloggings Hierarchy Security Logging High Speed Logging Args] - High speed logging configuration (max 4 entries)
- utd_
syslogs Sequence[NetworkHierarchy Security Logging Utd Syslog Args] - UTD syslog configuration (max 1 entry)
- high
Speed List<Property Map>Loggings - High speed logging configuration (max 4 entries)
- utd
Syslogs List<Property Map> - UTD syslog configuration (max 1 entry)
Outputs
All input properties are implicitly available as output properties. Additionally, the NetworkHierarchySecurityLogging resource produces the following output properties:
Look up Existing NetworkHierarchySecurityLogging Resource
Get an existing NetworkHierarchySecurityLogging resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: NetworkHierarchySecurityLoggingState, opts?: CustomResourceOptions): NetworkHierarchySecurityLogging@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
high_speed_loggings: Optional[Sequence[NetworkHierarchySecurityLoggingHighSpeedLoggingArgs]] = None,
node_id: Optional[str] = None,
utd_syslogs: Optional[Sequence[NetworkHierarchySecurityLoggingUtdSyslogArgs]] = None) -> NetworkHierarchySecurityLoggingfunc GetNetworkHierarchySecurityLogging(ctx *Context, name string, id IDInput, state *NetworkHierarchySecurityLoggingState, opts ...ResourceOption) (*NetworkHierarchySecurityLogging, error)public static NetworkHierarchySecurityLogging Get(string name, Input<string> id, NetworkHierarchySecurityLoggingState? state, CustomResourceOptions? opts = null)public static NetworkHierarchySecurityLogging get(String name, Output<String> id, NetworkHierarchySecurityLoggingState state, CustomResourceOptions options)resources: _: type: sdwan:NetworkHierarchySecurityLogging get: id: ${id}import {
to = sdwan_network_hierarchy_security_logging.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- High
Speed List<NetworkLoggings Hierarchy Security Logging High Speed Logging> - High speed logging configuration (max 4 entries)
- Node
Id string - The UUID of the Global network hierarchy node. This is automatically fetched from the SD-WAN Manager.
- Utd
Syslogs List<NetworkHierarchy Security Logging Utd Syslog> - UTD syslog configuration (max 1 entry)
- High
Speed []NetworkLoggings Hierarchy Security Logging High Speed Logging Args - High speed logging configuration (max 4 entries)
- Node
Id string - The UUID of the Global network hierarchy node. This is automatically fetched from the SD-WAN Manager.
- Utd
Syslogs []NetworkHierarchy Security Logging Utd Syslog Args - UTD syslog configuration (max 1 entry)
- high_
speed_ list(object)loggings - High speed logging configuration (max 4 entries)
- node_
id string - The UUID of the Global network hierarchy node. This is automatically fetched from the SD-WAN Manager.
- utd_
syslogs list(object) - UTD syslog configuration (max 1 entry)
- high
Speed List<NetworkLoggings Hierarchy Security Logging High Speed Logging> - High speed logging configuration (max 4 entries)
- node
Id String - The UUID of the Global network hierarchy node. This is automatically fetched from the SD-WAN Manager.
- utd
Syslogs List<NetworkHierarchy Security Logging Utd Syslog> - UTD syslog configuration (max 1 entry)
- high
Speed NetworkLoggings Hierarchy Security Logging High Speed Logging[] - High speed logging configuration (max 4 entries)
- node
Id string - The UUID of the Global network hierarchy node. This is automatically fetched from the SD-WAN Manager.
- utd
Syslogs NetworkHierarchy Security Logging Utd Syslog[] - UTD syslog configuration (max 1 entry)
- high_
speed_ Sequence[Networkloggings Hierarchy Security Logging High Speed Logging Args] - High speed logging configuration (max 4 entries)
- node_
id str - The UUID of the Global network hierarchy node. This is automatically fetched from the SD-WAN Manager.
- utd_
syslogs Sequence[NetworkHierarchy Security Logging Utd Syslog Args] - UTD syslog configuration (max 1 entry)
- high
Speed List<Property Map>Loggings - High speed logging configuration (max 4 entries)
- node
Id String - The UUID of the Global network hierarchy node. This is automatically fetched from the SD-WAN Manager.
- utd
Syslogs List<Property Map> - UTD syslog configuration (max 1 entry)
Supporting Types
NetworkHierarchySecurityLoggingHighSpeedLogging, NetworkHierarchySecurityLoggingHighSpeedLoggingArgs
NetworkHierarchySecurityLoggingUtdSyslog, NetworkHierarchySecurityLoggingUtdSyslogArgs
Import
The pulumi import command can be used, for example:
$ pulumi import sdwan:index/networkHierarchySecurityLogging:NetworkHierarchySecurityLogging example "f6b2c44c-693c-4763-b010-895aa3d236bd"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- sdwan pulumi/pulumi-sdwan
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
sdwanTerraform Provider.
published on Wednesday, Jul 29, 2026 by Pulumi