published on Wednesday, Jul 29, 2026 by Pulumi
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:
- 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
- Choices:
- Address
Network
Hierarchy Node Address - 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 double
- The GPS latitude of the site (only for site type nodes). Required when
locationis 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 toUndisclosedwhen not set. When a real location is set,latitudeandlongitudeare required. - Longitude double
- The GPS longitude of the site (only for site type nodes). Required when
locationis set to a real location. Supported on SD-WAN Manager 20.18 and later. - Name string
- The name of the node
- Site
Id int - The site ID (only for site type nodes)
- Range:
1-4294967295
- Range:
- 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
- Choices:
- Address
Network
Hierarchy Node Address Args - 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 float64
- The GPS latitude of the site (only for site type nodes). Required when
locationis 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 toUndisclosedwhen not set. When a real location is set,latitudeandlongitudeare required. - Longitude float64
- The GPS longitude of the site (only for site type nodes). Required when
locationis set to a real location. Supported on SD-WAN Manager 20.18 and later. - Name string
- The name of the node
- Site
Id int - The site ID (only for site type nodes)
- Range:
1-4294967295
- Range:
- 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
- Choices:
- 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
locationis 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 toUndisclosedwhen not set. When a real location is set,latitudeandlongitudeare required. - longitude number
- The GPS longitude of the site (only for site type nodes). Required when
locationis 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
- Range:
- 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
- Choices:
- address
Network
Hierarchy Node Address - The address of the site (only for site type nodes)
- description String
- The description of the node
- is
Secondary 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
locationis 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 toUndisclosedwhen not set. When a real location is set,latitudeandlongitudeare required. - longitude Double
- The GPS longitude of the site (only for site type nodes). Required when
locationis set to a real location. Supported on SD-WAN Manager 20.18 and later. - name String
- The name of the node
- site
Id Integer - The site ID (only for site type nodes)
- Range:
1-4294967295
- Range:
- 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
- Choices:
- address
Network
Hierarchy Node Address - The address of the site (only for site type nodes)
- description string
- The description of the node
- is
Secondary 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
locationis 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 toUndisclosedwhen not set. When a real location is set,latitudeandlongitudeare required. - longitude number
- The GPS longitude of the site (only for site type nodes). Required when
locationis 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
- Range:
- 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
- Choices:
- address
Network
Hierarchy Node Address Args - 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
locationis 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 toUndisclosedwhen not set. When a real location is set,latitudeandlongitudeare required. - longitude float
- The GPS longitude of the site (only for site type nodes). Required when
locationis 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
- Range:
- 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
- Choices:
- address Property Map
- The address of the site (only for site type nodes)
- description String
- The description of the node
- is
Secondary 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
locationis 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 toUndisclosedwhen not set. When a real location is set,latitudeandlongitudeare required. - longitude Number
- The GPS longitude of the site (only for site type nodes). Required when
locationis 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
- Range:
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) -> NetworkHierarchyNodefunc 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.
- Address
Network
Hierarchy Node Address - 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 double
- The GPS latitude of the site (only for site type nodes). Required when
locationis 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 toUndisclosedwhen not set. When a real location is set,latitudeandlongitudeare required. - Longitude double
- The GPS longitude of the site (only for site type nodes). Required when
locationis 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 int - The site ID (only for site type nodes)
- Range:
1-4294967295
- Range:
- Type string
- The type of node
- Choices:
group,region,site
- Choices:
- Address
Network
Hierarchy Node Address Args - 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 float64
- The GPS latitude of the site (only for site type nodes). Required when
locationis 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 toUndisclosedwhen not set. When a real location is set,latitudeandlongitudeare required. - Longitude float64
- The GPS longitude of the site (only for site type nodes). Required when
locationis 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 int - The site ID (only for site type nodes)
- Range:
1-4294967295
- Range:
- Type string
- The type of node
- Choices:
group,region,site
- Choices:
- 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
locationis 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 toUndisclosedwhen not set. When a real location is set,latitudeandlongitudeare required. - longitude number
- The GPS longitude of the site (only for site type nodes). Required when
locationis 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
- Range:
- type string
- The type of node
- Choices:
group,region,site
- Choices:
- address
Network
Hierarchy Node Address - The address of the site (only for site type nodes)
- description String
- The description of the node
- is
Secondary 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
locationis 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 toUndisclosedwhen not set. When a real location is set,latitudeandlongitudeare required. - longitude Double
- The GPS longitude of the site (only for site type nodes). Required when
locationis 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 Integer - The site ID (only for site type nodes)
- Range:
1-4294967295
- Range:
- type String
- The type of node
- Choices:
group,region,site
- Choices:
- address
Network
Hierarchy Node Address - The address of the site (only for site type nodes)
- description string
- The description of the node
- is
Secondary 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
locationis 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 toUndisclosedwhen not set. When a real location is set,latitudeandlongitudeare required. - longitude number
- The GPS longitude of the site (only for site type nodes). Required when
locationis 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
- Range:
- type string
- The type of node
- Choices:
group,region,site
- Choices:
- address
Network
Hierarchy Node Address Args - 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
locationis 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 toUndisclosedwhen not set. When a real location is set,latitudeandlongitudeare required. - longitude float
- The GPS longitude of the site (only for site type nodes). Required when
locationis 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
- Range:
- type str
- The type of node
- Choices:
group,region,site
- Choices:
- address Property Map
- The address of the site (only for site type nodes)
- description String
- The description of the node
- is
Secondary 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
locationis 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 toUndisclosedwhen not set. When a real location is set,latitudeandlongitudeare required. - longitude Number
- The GPS longitude of the site (only for site type nodes). Required when
locationis 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
- Range:
- type String
- The type of node
- Choices:
group,region,site
- Choices:
Supporting Types
NetworkHierarchyNodeAddress, NetworkHierarchyNodeAddressArgs
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
sdwanTerraform Provider.
published on Wednesday, Jul 29, 2026 by Pulumi