1. Packages
  2. Packages
  3. Cisco Catalyst SD-WAN Provider
  4. API Docs
  5. NetworkHierarchySecurityLogging
Viewing docs for Cisco Catalyst SD-WAN v0.9.2
published on Wednesday, Jul 29, 2026 by Pulumi
sdwan logo
Viewing docs for Cisco Catalyst SD-WAN v0.9.2
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:

    HighSpeedLoggings List<NetworkHierarchySecurityLoggingHighSpeedLogging>
    High speed logging configuration (max 4 entries)
    UtdSyslogs List<NetworkHierarchySecurityLoggingUtdSyslog>
    UTD syslog configuration (max 1 entry)
    HighSpeedLoggings []NetworkHierarchySecurityLoggingHighSpeedLoggingArgs
    High speed logging configuration (max 4 entries)
    UtdSyslogs []NetworkHierarchySecurityLoggingUtdSyslogArgs
    UTD syslog configuration (max 1 entry)
    high_speed_loggings list(object)
    High speed logging configuration (max 4 entries)
    utd_syslogs list(object)
    UTD syslog configuration (max 1 entry)
    highSpeedLoggings List<NetworkHierarchySecurityLoggingHighSpeedLogging>
    High speed logging configuration (max 4 entries)
    utdSyslogs List<NetworkHierarchySecurityLoggingUtdSyslog>
    UTD syslog configuration (max 1 entry)
    highSpeedLoggings NetworkHierarchySecurityLoggingHighSpeedLogging[]
    High speed logging configuration (max 4 entries)
    utdSyslogs NetworkHierarchySecurityLoggingUtdSyslog[]
    UTD syslog configuration (max 1 entry)
    highSpeedLoggings List<Property Map>
    High speed logging configuration (max 4 entries)
    utdSyslogs 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:

    Id string
    The provider-assigned unique ID for this managed resource.
    NodeId string
    The UUID of the Global network hierarchy node. This is automatically fetched from the SD-WAN Manager.
    Id string
    The provider-assigned unique ID for this managed resource.
    NodeId string
    The UUID of the Global network hierarchy node. This is automatically fetched from the SD-WAN Manager.
    id string
    The provider-assigned unique ID for this managed resource.
    node_id string
    The UUID of the Global network hierarchy node. This is automatically fetched from the SD-WAN Manager.
    id String
    The provider-assigned unique ID for this managed resource.
    nodeId String
    The UUID of the Global network hierarchy node. This is automatically fetched from the SD-WAN Manager.
    id string
    The provider-assigned unique ID for this managed resource.
    nodeId string
    The UUID of the Global network hierarchy node. This is automatically fetched from the SD-WAN Manager.
    id str
    The provider-assigned unique ID for this managed resource.
    node_id str
    The UUID of the Global network hierarchy node. This is automatically fetched from the SD-WAN Manager.
    id String
    The provider-assigned unique ID for this managed resource.
    nodeId String
    The UUID of the Global network hierarchy node. This is automatically fetched from the SD-WAN Manager.

    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) -> NetworkHierarchySecurityLogging
    func 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.
    The following state arguments are supported:
    HighSpeedLoggings List<NetworkHierarchySecurityLoggingHighSpeedLogging>
    High speed logging configuration (max 4 entries)
    NodeId string
    The UUID of the Global network hierarchy node. This is automatically fetched from the SD-WAN Manager.
    UtdSyslogs List<NetworkHierarchySecurityLoggingUtdSyslog>
    UTD syslog configuration (max 1 entry)
    HighSpeedLoggings []NetworkHierarchySecurityLoggingHighSpeedLoggingArgs
    High speed logging configuration (max 4 entries)
    NodeId string
    The UUID of the Global network hierarchy node. This is automatically fetched from the SD-WAN Manager.
    UtdSyslogs []NetworkHierarchySecurityLoggingUtdSyslogArgs
    UTD syslog configuration (max 1 entry)
    high_speed_loggings list(object)
    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)
    highSpeedLoggings List<NetworkHierarchySecurityLoggingHighSpeedLogging>
    High speed logging configuration (max 4 entries)
    nodeId String
    The UUID of the Global network hierarchy node. This is automatically fetched from the SD-WAN Manager.
    utdSyslogs List<NetworkHierarchySecurityLoggingUtdSyslog>
    UTD syslog configuration (max 1 entry)
    highSpeedLoggings NetworkHierarchySecurityLoggingHighSpeedLogging[]
    High speed logging configuration (max 4 entries)
    nodeId string
    The UUID of the Global network hierarchy node. This is automatically fetched from the SD-WAN Manager.
    utdSyslogs NetworkHierarchySecurityLoggingUtdSyslog[]
    UTD syslog configuration (max 1 entry)
    high_speed_loggings Sequence[NetworkHierarchySecurityLoggingHighSpeedLoggingArgs]
    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[NetworkHierarchySecurityLoggingUtdSyslogArgs]
    UTD syslog configuration (max 1 entry)
    highSpeedLoggings List<Property Map>
    High speed logging configuration (max 4 entries)
    nodeId String
    The UUID of the Global network hierarchy node. This is automatically fetched from the SD-WAN Manager.
    utdSyslogs List<Property Map>
    UTD syslog configuration (max 1 entry)

    Supporting Types

    NetworkHierarchySecurityLoggingHighSpeedLogging, NetworkHierarchySecurityLoggingHighSpeedLoggingArgs

    Port int
    Server port number

    • Range: 1-65535
    ServerIp string
    Server IPv4 or IPv6 address
    Vrf string
    VRF name or ID
    Port int
    Server port number

    • Range: 1-65535
    ServerIp string
    Server IPv4 or IPv6 address
    Vrf string
    VRF name or ID
    port number
    Server port number

    • Range: 1-65535
    server_ip string
    Server IPv4 or IPv6 address
    vrf string
    VRF name or ID
    port Integer
    Server port number

    • Range: 1-65535
    serverIp String
    Server IPv4 or IPv6 address
    vrf String
    VRF name or ID
    port number
    Server port number

    • Range: 1-65535
    serverIp string
    Server IPv4 or IPv6 address
    vrf string
    VRF name or ID
    port int
    Server port number

    • Range: 1-65535
    server_ip str
    Server IPv4 or IPv6 address
    vrf str
    VRF name or ID
    port Number
    Server port number

    • Range: 1-65535
    serverIp String
    Server IPv4 or IPv6 address
    vrf String
    VRF name or ID

    NetworkHierarchySecurityLoggingUtdSyslog, NetworkHierarchySecurityLoggingUtdSyslogArgs

    ServerIp string
    Server IPv4 address
    Vpn string
    VPN name or ID
    ServerIp string
    Server IPv4 address
    Vpn string
    VPN name or ID
    server_ip string
    Server IPv4 address
    vpn string
    VPN name or ID
    serverIp String
    Server IPv4 address
    vpn String
    VPN name or ID
    serverIp string
    Server IPv4 address
    vpn string
    VPN name or ID
    server_ip str
    Server IPv4 address
    vpn str
    VPN name or ID
    serverIp String
    Server IPv4 address
    vpn String
    VPN name or ID

    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 sdwan Terraform Provider.
    sdwan logo
    Viewing docs for Cisco Catalyst SD-WAN v0.9.2
    published on Wednesday, Jul 29, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial