published on Friday, Jun 26, 2026 by Pulumi
published on Friday, Jun 26, 2026 by Pulumi
This resource can manage a Topology Mesh Feature.
- Minimum SD-WAN Manager version:
20.15.0
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as sdwan from "@pulumi/sdwan";
const example = new sdwan.TopologyMeshFeature("example", {
name: "Example",
description: "My Example",
featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
targetVpns: ["service_lan_vpn1"],
sites: ["SITE_100"],
});
import pulumi
import pulumi_sdwan as sdwan
example = sdwan.TopologyMeshFeature("example",
name="Example",
description="My Example",
feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
target_vpns=["service_lan_vpn1"],
sites=["SITE_100"])
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.NewTopologyMeshFeature(ctx, "example", &sdwan.TopologyMeshFeatureArgs{
Name: pulumi.String("Example"),
Description: pulumi.String("My Example"),
FeatureProfileId: pulumi.String("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"),
TargetVpns: pulumi.StringArray{
pulumi.String("service_lan_vpn1"),
},
Sites: pulumi.StringArray{
pulumi.String("SITE_100"),
},
})
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.TopologyMeshFeature("example", new()
{
Name = "Example",
Description = "My Example",
FeatureProfileId = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
TargetVpns = new[]
{
"service_lan_vpn1",
},
Sites = new[]
{
"SITE_100",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.TopologyMeshFeature;
import com.pulumi.sdwan.TopologyMeshFeatureArgs;
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 TopologyMeshFeature("example", TopologyMeshFeatureArgs.builder()
.name("Example")
.description("My Example")
.featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
.targetVpns("service_lan_vpn1")
.sites("SITE_100")
.build());
}
}
resources:
example:
type: sdwan:TopologyMeshFeature
properties:
name: Example
description: My Example
featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
targetVpns:
- service_lan_vpn1
sites:
- SITE_100
pulumi {
required_providers {
sdwan = {
source = "pulumi/sdwan"
}
}
}
resource "sdwan_topologymeshfeature" "example" {
name = "Example"
description = "My Example"
feature_profile_id = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"
target_vpns = ["service_lan_vpn1"]
sites = ["SITE_100"]
}
Create TopologyMeshFeature Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new TopologyMeshFeature(name: string, args: TopologyMeshFeatureArgs, opts?: CustomResourceOptions);@overload
def TopologyMeshFeature(resource_name: str,
args: TopologyMeshFeatureArgs,
opts: Optional[ResourceOptions] = None)
@overload
def TopologyMeshFeature(resource_name: str,
opts: Optional[ResourceOptions] = None,
feature_profile_id: Optional[str] = None,
sites: Optional[Sequence[str]] = None,
target_vpns: Optional[Sequence[str]] = None,
description: Optional[str] = None,
name: Optional[str] = None)func NewTopologyMeshFeature(ctx *Context, name string, args TopologyMeshFeatureArgs, opts ...ResourceOption) (*TopologyMeshFeature, error)public TopologyMeshFeature(string name, TopologyMeshFeatureArgs args, CustomResourceOptions? opts = null)
public TopologyMeshFeature(String name, TopologyMeshFeatureArgs args)
public TopologyMeshFeature(String name, TopologyMeshFeatureArgs args, CustomResourceOptions options)
type: sdwan:TopologyMeshFeature
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "sdwan_topologymeshfeature" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args TopologyMeshFeatureArgs
- 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 TopologyMeshFeatureArgs
- 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 TopologyMeshFeatureArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TopologyMeshFeatureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TopologyMeshFeatureArgs
- 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 topologyMeshFeatureResource = new Sdwan.TopologyMeshFeature("topologyMeshFeatureResource", new()
{
FeatureProfileId = "string",
Sites = new[]
{
"string",
},
TargetVpns = new[]
{
"string",
},
Description = "string",
Name = "string",
});
example, err := sdwan.NewTopologyMeshFeature(ctx, "topologyMeshFeatureResource", &sdwan.TopologyMeshFeatureArgs{
FeatureProfileId: pulumi.String("string"),
Sites: pulumi.StringArray{
pulumi.String("string"),
},
TargetVpns: pulumi.StringArray{
pulumi.String("string"),
},
Description: pulumi.String("string"),
Name: pulumi.String("string"),
})
resource "sdwan_topologymeshfeature" "topologyMeshFeatureResource" {
feature_profile_id = "string"
sites = ["string"]
target_vpns = ["string"]
description = "string"
name = "string"
}
var topologyMeshFeatureResource = new TopologyMeshFeature("topologyMeshFeatureResource", TopologyMeshFeatureArgs.builder()
.featureProfileId("string")
.sites("string")
.targetVpns("string")
.description("string")
.name("string")
.build());
topology_mesh_feature_resource = sdwan.TopologyMeshFeature("topologyMeshFeatureResource",
feature_profile_id="string",
sites=["string"],
target_vpns=["string"],
description="string",
name="string")
const topologyMeshFeatureResource = new sdwan.TopologyMeshFeature("topologyMeshFeatureResource", {
featureProfileId: "string",
sites: ["string"],
targetVpns: ["string"],
description: "string",
name: "string",
});
type: sdwan:TopologyMeshFeature
properties:
description: string
featureProfileId: string
name: string
sites:
- string
targetVpns:
- string
TopologyMeshFeature 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 TopologyMeshFeature resource accepts the following input properties:
- Feature
Profile stringId - Feature Profile ID
- Sites List<string>
- Target
Vpns List<string> - Description string
- The description of the Feature
- Name string
- The name of the Feature
- Feature
Profile stringId - Feature Profile ID
- Sites []string
- Target
Vpns []string - Description string
- The description of the Feature
- Name string
- The name of the Feature
- feature_
profile_ stringid - Feature Profile ID
- sites list(string)
- target_
vpns list(string) - description string
- The description of the Feature
- name string
- The name of the Feature
- feature
Profile StringId - Feature Profile ID
- sites List<String>
- target
Vpns List<String> - description String
- The description of the Feature
- name String
- The name of the Feature
- feature
Profile stringId - Feature Profile ID
- sites string[]
- target
Vpns string[] - description string
- The description of the Feature
- name string
- The name of the Feature
- feature_
profile_ strid - Feature Profile ID
- sites Sequence[str]
- target_
vpns Sequence[str] - description str
- The description of the Feature
- name str
- The name of the Feature
- feature
Profile StringId - Feature Profile ID
- sites List<String>
- target
Vpns List<String> - description String
- The description of the Feature
- name String
- The name of the Feature
Outputs
All input properties are implicitly available as output properties. Additionally, the TopologyMeshFeature resource produces the following output properties:
Look up Existing TopologyMeshFeature Resource
Get an existing TopologyMeshFeature 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?: TopologyMeshFeatureState, opts?: CustomResourceOptions): TopologyMeshFeature@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
feature_profile_id: Optional[str] = None,
name: Optional[str] = None,
sites: Optional[Sequence[str]] = None,
target_vpns: Optional[Sequence[str]] = None,
version: Optional[int] = None) -> TopologyMeshFeaturefunc GetTopologyMeshFeature(ctx *Context, name string, id IDInput, state *TopologyMeshFeatureState, opts ...ResourceOption) (*TopologyMeshFeature, error)public static TopologyMeshFeature Get(string name, Input<string> id, TopologyMeshFeatureState? state, CustomResourceOptions? opts = null)public static TopologyMeshFeature get(String name, Output<String> id, TopologyMeshFeatureState state, CustomResourceOptions options)resources: _: type: sdwan:TopologyMeshFeature get: id: ${id}import {
to = sdwan_topologymeshfeature.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.
- Description string
- The description of the Feature
- Feature
Profile stringId - Feature Profile ID
- Name string
- The name of the Feature
- Sites List<string>
- Target
Vpns List<string> - Version int
- The version of the Feature
- Description string
- The description of the Feature
- Feature
Profile stringId - Feature Profile ID
- Name string
- The name of the Feature
- Sites []string
- Target
Vpns []string - Version int
- The version of the Feature
- description string
- The description of the Feature
- feature_
profile_ stringid - Feature Profile ID
- name string
- The name of the Feature
- sites list(string)
- target_
vpns list(string) - version number
- The version of the Feature
- description String
- The description of the Feature
- feature
Profile StringId - Feature Profile ID
- name String
- The name of the Feature
- sites List<String>
- target
Vpns List<String> - version Integer
- The version of the Feature
- description string
- The description of the Feature
- feature
Profile stringId - Feature Profile ID
- name string
- The name of the Feature
- sites string[]
- target
Vpns string[] - version number
- The version of the Feature
- description str
- The description of the Feature
- feature_
profile_ strid - Feature Profile ID
- name str
- The name of the Feature
- sites Sequence[str]
- target_
vpns Sequence[str] - version int
- The version of the Feature
- description String
- The description of the Feature
- feature
Profile StringId - Feature Profile ID
- name String
- The name of the Feature
- sites List<String>
- target
Vpns List<String> - version Number
- The version of the Feature
Import
The pulumi import command can be used, for example:
Expected import identifier with the format: “topology_mesh_feature_id,feature_profile_id”
$ pulumi import sdwan:index/topologyMeshFeature:TopologyMeshFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"
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 Friday, Jun 26, 2026 by Pulumi