1. Packages
  2. Packages
  3. Cisco Catalyst SD-WAN Provider
  4. API Docs
  5. NetworkHierarchyNode
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 a Network Hierarchy Node (group, region, or site).

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as sdwan from "@pulumi/sdwan";
    
    const example = new sdwan.NetworkHierarchyNode("example", {
        parentGroup: "Global",
        name: "EMEA-Group",
        description: "EMEA group",
        type: "group",
    });
    
    import pulumi
    import pulumi_sdwan as sdwan
    
    example = sdwan.NetworkHierarchyNode("example",
        parent_group="Global",
        name="EMEA-Group",
        description="EMEA group",
        type="group")
    
    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.NewNetworkHierarchyNode(ctx, "example", &sdwan.NetworkHierarchyNodeArgs{
    			ParentGroup: pulumi.String("Global"),
    			Name:        pulumi.String("EMEA-Group"),
    			Description: pulumi.String("EMEA group"),
    			Type:        pulumi.String("group"),
    		})
    		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.NetworkHierarchyNode("example", new()
        {
            ParentGroup = "Global",
            Name = "EMEA-Group",
            Description = "EMEA group",
            Type = "group",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.sdwan.NetworkHierarchyNode;
    import com.pulumi.sdwan.NetworkHierarchyNodeArgs;
    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 NetworkHierarchyNode("example", NetworkHierarchyNodeArgs.builder()
                .parentGroup("Global")
                .name("EMEA-Group")
                .description("EMEA group")
                .type("group")
                .build());
    
        }
    }
    
    resources:
      example:
        type: sdwan:NetworkHierarchyNode
        properties:
          parentGroup: Global
          name: EMEA-Group
          description: EMEA group
          type: group
    
    pulumi {
      required_providers {
        sdwan = {
          source = "pulumi/sdwan"
        }
      }
    }
    
    resource "sdwan_networkhierarchynode" "example" {
      parent_group = "Global"
      name         = "EMEA-Group"
      description  = "EMEA group"
      type         = "group"
    }
    

    Create NetworkHierarchyNode Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new NetworkHierarchyNode(name: string, args: NetworkHierarchyNodeArgs, opts?: CustomResourceOptions);
    @overload
    def NetworkHierarchyNode(resource_name: str,
                             args: NetworkHierarchyNodeArgs,
                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def NetworkHierarchyNode(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             parent_group: Optional[str] = None,
                             type: Optional[str] = None,
                             address: Optional[NetworkHierarchyNodeAddressArgs] = None,
                             description: Optional[str] = None,
                             is_secondary: Optional[bool] = None,
                             latitude: Optional[float] = None,
                             location: Optional[str] = None,
                             longitude: Optional[float] = None,
                             name: Optional[str] = None,
                             site_id: Optional[int] = None)
    func NewNetworkHierarchyNode(ctx *Context, name string, args NetworkHierarchyNodeArgs, opts ...ResourceOption) (*NetworkHierarchyNode, error)
    public NetworkHierarchyNode(string name, NetworkHierarchyNodeArgs args, CustomResourceOptions? opts = null)
    public NetworkHierarchyNode(String name, NetworkHierarchyNodeArgs args)
    public NetworkHierarchyNode(String name, NetworkHierarchyNodeArgs args, CustomResourceOptions options)
    
    type: sdwan:NetworkHierarchyNode
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "sdwan_network_hierarchy_node" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args NetworkHierarchyNodeArgs
    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 NetworkHierarchyNodeArgs
    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 NetworkHierarchyNodeArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NetworkHierarchyNodeArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NetworkHierarchyNodeArgs
    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 networkHierarchyNodeResource = new Sdwan.NetworkHierarchyNode("networkHierarchyNodeResource", new()
    {
        ParentGroup = "string",
        Type = "string",
        Address = new Sdwan.Inputs.NetworkHierarchyNodeAddressArgs
        {
            City = "string",
            Country = "string",
            State = "string",
            Street = "string",
            Zipcode = "string",
        },
        Description = "string",
        IsSecondary = false,
        Latitude = 0,
        Location = "string",
        Longitude = 0,
        Name = "string",
        SiteId = 0,
    });
    
    example, err := sdwan.NewNetworkHierarchyNode(ctx, "networkHierarchyNodeResource", &sdwan.NetworkHierarchyNodeArgs{
    	ParentGroup: pulumi.String("string"),
    	Type:        pulumi.String("string"),
    	Address: &sdwan.NetworkHierarchyNodeAddressArgs{
    		City:    pulumi.String("string"),
    		Country: pulumi.String("string"),
    		State:   pulumi.String("string"),
    		Street:  pulumi.String("string"),
    		Zipcode: pulumi.String("string"),
    	},
    	Description: pulumi.String("string"),
    	IsSecondary: pulumi.Bool(false),
    	Latitude:    pulumi.Float64(0),
    	Location:    pulumi.String("string"),
    	Longitude:   pulumi.Float64(0),
    	Name:        pulumi.String("string"),
    	SiteId:      pulumi.Int(0),
    })
    
    resource "sdwan_network_hierarchy_node" "networkHierarchyNodeResource" {
      lifecycle {
        create_before_destroy = true
      }
      parent_group = "string"
      type         = "string"
      address = {
        city    = "string"
        country = "string"
        state   = "string"
        street  = "string"
        zipcode = "string"
      }
      description  = "string"
      is_secondary = false
      latitude     = 0
      location     = "string"
      longitude    = 0
      name         = "string"
      site_id      = 0
    }
    
    var networkHierarchyNodeResource = new NetworkHierarchyNode("networkHierarchyNodeResource", NetworkHierarchyNodeArgs.builder()
        .parentGroup("string")
        .type("string")
        .address(NetworkHierarchyNodeAddressArgs.builder()
            .city("string")
            .country("string")
            .state("string")
            .street("string")
            .zipcode("string")
            .build())
        .description("string")
        .isSecondary(false)
        .latitude(0.0)
        .location("string")
        .longitude(0.0)
        .name("string")
        .siteId(0)
        .build());
    
    network_hierarchy_node_resource = sdwan.NetworkHierarchyNode("networkHierarchyNodeResource",
        parent_group="string",
        type="string",
        address={
            "city": "string",
            "country": "string",
            "state": "string",
            "street": "string",
            "zipcode": "string",
        },
        description="string",
        is_secondary=False,
        latitude=float(0),
        location="string",
        longitude=float(0),
        name="string",
        site_id=0)
    
    const networkHierarchyNodeResource = new sdwan.NetworkHierarchyNode("networkHierarchyNodeResource", {
        parentGroup: "string",
        type: "string",
        address: {
            city: "string",
            country: "string",
            state: "string",
            street: "string",
            zipcode: "string",
        },
        description: "string",
        isSecondary: false,
        latitude: 0,
        location: "string",
        longitude: 0,
        name: "string",
        siteId: 0,
    });
    
    type: sdwan:NetworkHierarchyNode
    properties:
        address:
            city: string
            country: string
            state: string
            street: string
            zipcode: string
        description: string
        isSecondary: false
        latitude: 0
        location: string
        longitude: 0
        name: string
        parentGroup: string
        siteId: 0
        type: string
    

    NetworkHierarchyNode 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 NetworkHierarchyNode resource accepts the following input properties:

    ParentGroup string
    The name of the parent group. Use 'Global' for top-level nodes.
    Type string
    The type of node

    • Choices: group, region, site
    Address NetworkHierarchyNodeAddress
    The address of the site (only for site type nodes)
    Description string
    The description of the node
    IsSecondary bool
    Whether this is a secondary region (only for region type nodes)
    Latitude double
    The GPS latitude of the site (only for site type nodes). Required when location is set to a real location. Supported on SD-WAN Manager 20.18 and later.
    Location string
    The location (place name) of the site (only for site type nodes). On SD-WAN Manager 20.18 and later this replaces address; defaults to Undisclosed when not set. When a real location is set, latitude and longitude are required.
    Longitude double
    The GPS longitude of the site (only for site type nodes). Required when location is set to a real location. Supported on SD-WAN Manager 20.18 and later.
    Name string
    The name of the node
    SiteId int
    The site ID (only for site type nodes)

    • Range: 1-4294967295
    ParentGroup string
    The name of the parent group. Use 'Global' for top-level nodes.
    Type string
    The type of node

    • Choices: group, region, site
    Address NetworkHierarchyNodeAddressArgs
    The address of the site (only for site type nodes)
    Description string
    The description of the node
    IsSecondary bool
    Whether this is a secondary region (only for region type nodes)
    Latitude float64
    The GPS latitude of the site (only for site type nodes). Required when location is set to a real location. Supported on SD-WAN Manager 20.18 and later.
    Location string
    The location (place name) of the site (only for site type nodes). On SD-WAN Manager 20.18 and later this replaces address; defaults to Undisclosed when not set. When a real location is set, latitude and longitude are required.
    Longitude float64
    The GPS longitude of the site (only for site type nodes). Required when location is set to a real location. Supported on SD-WAN Manager 20.18 and later.
    Name string
    The name of the node
    SiteId int
    The site ID (only for site type nodes)

    • Range: 1-4294967295
    parent_group string
    The name of the parent group. Use 'Global' for top-level nodes.
    type string
    The type of node

    • Choices: group, region, site
    address object
    The address of the site (only for site type nodes)
    description string
    The description of the node
    is_secondary bool
    Whether this is a secondary region (only for region type nodes)
    latitude number
    The GPS latitude of the site (only for site type nodes). Required when location is set to a real location. Supported on SD-WAN Manager 20.18 and later.
    location string
    The location (place name) of the site (only for site type nodes). On SD-WAN Manager 20.18 and later this replaces address; defaults to Undisclosed when not set. When a real location is set, latitude and longitude are required.
    longitude number
    The GPS longitude of the site (only for site type nodes). Required when location is set to a real location. Supported on SD-WAN Manager 20.18 and later.
    name string
    The name of the node
    site_id number
    The site ID (only for site type nodes)

    • Range: 1-4294967295
    parentGroup String
    The name of the parent group. Use 'Global' for top-level nodes.
    type String
    The type of node

    • Choices: group, region, site
    address NetworkHierarchyNodeAddress
    The address of the site (only for site type nodes)
    description String
    The description of the node
    isSecondary Boolean
    Whether this is a secondary region (only for region type nodes)
    latitude Double
    The GPS latitude of the site (only for site type nodes). Required when location is set to a real location. Supported on SD-WAN Manager 20.18 and later.
    location String
    The location (place name) of the site (only for site type nodes). On SD-WAN Manager 20.18 and later this replaces address; defaults to Undisclosed when not set. When a real location is set, latitude and longitude are required.
    longitude Double
    The GPS longitude of the site (only for site type nodes). Required when location is set to a real location. Supported on SD-WAN Manager 20.18 and later.
    name String
    The name of the node
    siteId Integer
    The site ID (only for site type nodes)

    • Range: 1-4294967295
    parentGroup string
    The name of the parent group. Use 'Global' for top-level nodes.
    type string
    The type of node

    • Choices: group, region, site
    address NetworkHierarchyNodeAddress
    The address of the site (only for site type nodes)
    description string
    The description of the node
    isSecondary boolean
    Whether this is a secondary region (only for region type nodes)
    latitude number
    The GPS latitude of the site (only for site type nodes). Required when location is set to a real location. Supported on SD-WAN Manager 20.18 and later.
    location string
    The location (place name) of the site (only for site type nodes). On SD-WAN Manager 20.18 and later this replaces address; defaults to Undisclosed when not set. When a real location is set, latitude and longitude are required.
    longitude number
    The GPS longitude of the site (only for site type nodes). Required when location is set to a real location. Supported on SD-WAN Manager 20.18 and later.
    name string
    The name of the node
    siteId number
    The site ID (only for site type nodes)

    • Range: 1-4294967295
    parent_group str
    The name of the parent group. Use 'Global' for top-level nodes.
    type str
    The type of node

    • Choices: group, region, site
    address NetworkHierarchyNodeAddressArgs
    The address of the site (only for site type nodes)
    description str
    The description of the node
    is_secondary bool
    Whether this is a secondary region (only for region type nodes)
    latitude float
    The GPS latitude of the site (only for site type nodes). Required when location is set to a real location. Supported on SD-WAN Manager 20.18 and later.
    location str
    The location (place name) of the site (only for site type nodes). On SD-WAN Manager 20.18 and later this replaces address; defaults to Undisclosed when not set. When a real location is set, latitude and longitude are required.
    longitude float
    The GPS longitude of the site (only for site type nodes). Required when location is set to a real location. Supported on SD-WAN Manager 20.18 and later.
    name str
    The name of the node
    site_id int
    The site ID (only for site type nodes)

    • Range: 1-4294967295
    parentGroup String
    The name of the parent group. Use 'Global' for top-level nodes.
    type String
    The type of node

    • Choices: group, region, site
    address Property Map
    The address of the site (only for site type nodes)
    description String
    The description of the node
    isSecondary Boolean
    Whether this is a secondary region (only for region type nodes)
    latitude Number
    The GPS latitude of the site (only for site type nodes). Required when location is set to a real location. Supported on SD-WAN Manager 20.18 and later.
    location String
    The location (place name) of the site (only for site type nodes). On SD-WAN Manager 20.18 and later this replaces address; defaults to Undisclosed when not set. When a real location is set, latitude and longitude are required.
    longitude Number
    The GPS longitude of the site (only for site type nodes). Required when location is set to a real location. Supported on SD-WAN Manager 20.18 and later.
    name String
    The name of the node
    siteId Number
    The site ID (only for site type nodes)

    • Range: 1-4294967295

    Outputs

    All input properties are implicitly available as output properties. Additionally, the NetworkHierarchyNode resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing NetworkHierarchyNode Resource

    Get an existing NetworkHierarchyNode 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?: NetworkHierarchyNodeState, opts?: CustomResourceOptions): NetworkHierarchyNode
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            address: Optional[NetworkHierarchyNodeAddressArgs] = None,
            description: Optional[str] = None,
            is_secondary: Optional[bool] = None,
            latitude: Optional[float] = None,
            location: Optional[str] = None,
            longitude: Optional[float] = None,
            name: Optional[str] = None,
            parent_group: Optional[str] = None,
            site_id: Optional[int] = None,
            type: Optional[str] = None) -> NetworkHierarchyNode
    func GetNetworkHierarchyNode(ctx *Context, name string, id IDInput, state *NetworkHierarchyNodeState, opts ...ResourceOption) (*NetworkHierarchyNode, error)
    public static NetworkHierarchyNode Get(string name, Input<string> id, NetworkHierarchyNodeState? state, CustomResourceOptions? opts = null)
    public static NetworkHierarchyNode get(String name, Output<String> id, NetworkHierarchyNodeState state, CustomResourceOptions options)
    resources:  _:    type: sdwan:NetworkHierarchyNode    get:      id: ${id}
    import {
      to = sdwan_network_hierarchy_node.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:
    Address NetworkHierarchyNodeAddress
    The address of the site (only for site type nodes)
    Description string
    The description of the node
    IsSecondary bool
    Whether this is a secondary region (only for region type nodes)
    Latitude double
    The GPS latitude of the site (only for site type nodes). Required when location is set to a real location. Supported on SD-WAN Manager 20.18 and later.
    Location string
    The location (place name) of the site (only for site type nodes). On SD-WAN Manager 20.18 and later this replaces address; defaults to Undisclosed when not set. When a real location is set, latitude and longitude are required.
    Longitude double
    The GPS longitude of the site (only for site type nodes). Required when location is set to a real location. Supported on SD-WAN Manager 20.18 and later.
    Name string
    The name of the node
    ParentGroup string
    The name of the parent group. Use 'Global' for top-level nodes.
    SiteId int
    The site ID (only for site type nodes)

    • Range: 1-4294967295
    Type string
    The type of node

    • Choices: group, region, site
    Address NetworkHierarchyNodeAddressArgs
    The address of the site (only for site type nodes)
    Description string
    The description of the node
    IsSecondary bool
    Whether this is a secondary region (only for region type nodes)
    Latitude float64
    The GPS latitude of the site (only for site type nodes). Required when location is set to a real location. Supported on SD-WAN Manager 20.18 and later.
    Location string
    The location (place name) of the site (only for site type nodes). On SD-WAN Manager 20.18 and later this replaces address; defaults to Undisclosed when not set. When a real location is set, latitude and longitude are required.
    Longitude float64
    The GPS longitude of the site (only for site type nodes). Required when location is set to a real location. Supported on SD-WAN Manager 20.18 and later.
    Name string
    The name of the node
    ParentGroup string
    The name of the parent group. Use 'Global' for top-level nodes.
    SiteId int
    The site ID (only for site type nodes)

    • Range: 1-4294967295
    Type string
    The type of node

    • Choices: group, region, site
    address object
    The address of the site (only for site type nodes)
    description string
    The description of the node
    is_secondary bool
    Whether this is a secondary region (only for region type nodes)
    latitude number
    The GPS latitude of the site (only for site type nodes). Required when location is set to a real location. Supported on SD-WAN Manager 20.18 and later.
    location string
    The location (place name) of the site (only for site type nodes). On SD-WAN Manager 20.18 and later this replaces address; defaults to Undisclosed when not set. When a real location is set, latitude and longitude are required.
    longitude number
    The GPS longitude of the site (only for site type nodes). Required when location is set to a real location. Supported on SD-WAN Manager 20.18 and later.
    name string
    The name of the node
    parent_group string
    The name of the parent group. Use 'Global' for top-level nodes.
    site_id number
    The site ID (only for site type nodes)

    • Range: 1-4294967295
    type string
    The type of node

    • Choices: group, region, site
    address NetworkHierarchyNodeAddress
    The address of the site (only for site type nodes)
    description String
    The description of the node
    isSecondary Boolean
    Whether this is a secondary region (only for region type nodes)
    latitude Double
    The GPS latitude of the site (only for site type nodes). Required when location is set to a real location. Supported on SD-WAN Manager 20.18 and later.
    location String
    The location (place name) of the site (only for site type nodes). On SD-WAN Manager 20.18 and later this replaces address; defaults to Undisclosed when not set. When a real location is set, latitude and longitude are required.
    longitude Double
    The GPS longitude of the site (only for site type nodes). Required when location is set to a real location. Supported on SD-WAN Manager 20.18 and later.
    name String
    The name of the node
    parentGroup String
    The name of the parent group. Use 'Global' for top-level nodes.
    siteId Integer
    The site ID (only for site type nodes)

    • Range: 1-4294967295
    type String
    The type of node

    • Choices: group, region, site
    address NetworkHierarchyNodeAddress
    The address of the site (only for site type nodes)
    description string
    The description of the node
    isSecondary boolean
    Whether this is a secondary region (only for region type nodes)
    latitude number
    The GPS latitude of the site (only for site type nodes). Required when location is set to a real location. Supported on SD-WAN Manager 20.18 and later.
    location string
    The location (place name) of the site (only for site type nodes). On SD-WAN Manager 20.18 and later this replaces address; defaults to Undisclosed when not set. When a real location is set, latitude and longitude are required.
    longitude number
    The GPS longitude of the site (only for site type nodes). Required when location is set to a real location. Supported on SD-WAN Manager 20.18 and later.
    name string
    The name of the node
    parentGroup string
    The name of the parent group. Use 'Global' for top-level nodes.
    siteId number
    The site ID (only for site type nodes)

    • Range: 1-4294967295
    type string
    The type of node

    • Choices: group, region, site
    address NetworkHierarchyNodeAddressArgs
    The address of the site (only for site type nodes)
    description str
    The description of the node
    is_secondary bool
    Whether this is a secondary region (only for region type nodes)
    latitude float
    The GPS latitude of the site (only for site type nodes). Required when location is set to a real location. Supported on SD-WAN Manager 20.18 and later.
    location str
    The location (place name) of the site (only for site type nodes). On SD-WAN Manager 20.18 and later this replaces address; defaults to Undisclosed when not set. When a real location is set, latitude and longitude are required.
    longitude float
    The GPS longitude of the site (only for site type nodes). Required when location is set to a real location. Supported on SD-WAN Manager 20.18 and later.
    name str
    The name of the node
    parent_group str
    The name of the parent group. Use 'Global' for top-level nodes.
    site_id int
    The site ID (only for site type nodes)

    • Range: 1-4294967295
    type str
    The type of node

    • Choices: group, region, site
    address Property Map
    The address of the site (only for site type nodes)
    description String
    The description of the node
    isSecondary Boolean
    Whether this is a secondary region (only for region type nodes)
    latitude Number
    The GPS latitude of the site (only for site type nodes). Required when location is set to a real location. Supported on SD-WAN Manager 20.18 and later.
    location String
    The location (place name) of the site (only for site type nodes). On SD-WAN Manager 20.18 and later this replaces address; defaults to Undisclosed when not set. When a real location is set, latitude and longitude are required.
    longitude Number
    The GPS longitude of the site (only for site type nodes). Required when location is set to a real location. Supported on SD-WAN Manager 20.18 and later.
    name String
    The name of the node
    parentGroup String
    The name of the parent group. Use 'Global' for top-level nodes.
    siteId Number
    The site ID (only for site type nodes)

    • Range: 1-4294967295
    type String
    The type of node

    • Choices: group, region, site

    Supporting Types

    NetworkHierarchyNodeAddress, NetworkHierarchyNodeAddressArgs

    City string
    City
    Country string
    Country
    State string
    State or province
    Street string
    Street address
    Zipcode string
    Zip or postal code
    City string
    City
    Country string
    Country
    State string
    State or province
    Street string
    Street address
    Zipcode string
    Zip or postal code
    city string
    City
    country string
    Country
    state string
    State or province
    street string
    Street address
    zipcode string
    Zip or postal code
    city String
    City
    country String
    Country
    state String
    State or province
    street String
    Street address
    zipcode String
    Zip or postal code
    city string
    City
    country string
    Country
    state string
    State or province
    street string
    Street address
    zipcode string
    Zip or postal code
    city str
    City
    country str
    Country
    state str
    State or province
    street str
    Street address
    zipcode str
    Zip or postal code
    city String
    City
    country String
    Country
    state String
    State or province
    street String
    Street address
    zipcode String
    Zip or postal code

    Import

    The pulumi import command can be used, for example:

    $ pulumi import sdwan:index/networkHierarchyNode:NetworkHierarchyNode 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