1. Packages
  2. Packages
  3. Cisco Catalyst SD-WAN Provider
  4. API Docs
  5. getTopologyCustomControlFeature
Viewing docs for Cisco Catalyst SD-WAN v0.9.1
published on Friday, Jun 26, 2026 by Pulumi
sdwan logo
Viewing docs for Cisco Catalyst SD-WAN v0.9.1
published on Friday, Jun 26, 2026 by Pulumi

    This data source can read the Topology Custom Control Feature.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as sdwan from "@pulumi/sdwan";
    
    const example = sdwan.getTopologyCustomControlFeature({
        id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
        featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
    });
    
    import pulumi
    import pulumi_sdwan as sdwan
    
    example = sdwan.get_topology_custom_control_feature(id="f6b2c44c-693c-4763-b010-895aa3d236bd",
        feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
    
    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.GetTopologyCustomControlFeature(ctx, &sdwan.LookupTopologyCustomControlFeatureArgs{
    			Id:               "f6b2c44c-693c-4763-b010-895aa3d236bd",
    			FeatureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
    		}, nil)
    		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 = Sdwan.GetTopologyCustomControlFeature.Invoke(new()
        {
            Id = "f6b2c44c-693c-4763-b010-895aa3d236bd",
            FeatureProfileId = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.sdwan.SdwanFunctions;
    import com.pulumi.sdwan.inputs.GetTopologyCustomControlFeatureArgs;
    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) {
            final var example = SdwanFunctions.getTopologyCustomControlFeature(GetTopologyCustomControlFeatureArgs.builder()
                .id("f6b2c44c-693c-4763-b010-895aa3d236bd")
                .featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
                .build());
    
        }
    }
    
    variables:
      example:
        fn::invoke:
          function: sdwan:getTopologyCustomControlFeature
          arguments:
            id: f6b2c44c-693c-4763-b010-895aa3d236bd
            featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
    
    pulumi {
      required_providers {
        sdwan = {
          source = "pulumi/sdwan"
        }
      }
    }
    
    data "sdwan_gettopologycustomcontrolfeature" "example" {
      id                 = "f6b2c44c-693c-4763-b010-895aa3d236bd"
      feature_profile_id = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"
    }
    

    Using getTopologyCustomControlFeature

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getTopologyCustomControlFeature(args: GetTopologyCustomControlFeatureArgs, opts?: InvokeOptions): Promise<GetTopologyCustomControlFeatureResult>
    function getTopologyCustomControlFeatureOutput(args: GetTopologyCustomControlFeatureOutputArgs, opts?: InvokeOptions): Output<GetTopologyCustomControlFeatureResult>
    def get_topology_custom_control_feature(feature_profile_id: Optional[str] = None,
                                            id: Optional[str] = None,
                                            opts: Optional[InvokeOptions] = None) -> GetTopologyCustomControlFeatureResult
    def get_topology_custom_control_feature_output(feature_profile_id: pulumi.Input[Optional[str]] = None,
                                            id: pulumi.Input[Optional[str]] = None,
                                            opts: Optional[InvokeOptions] = None) -> Output[GetTopologyCustomControlFeatureResult]
    func LookupTopologyCustomControlFeature(ctx *Context, args *LookupTopologyCustomControlFeatureArgs, opts ...InvokeOption) (*LookupTopologyCustomControlFeatureResult, error)
    func LookupTopologyCustomControlFeatureOutput(ctx *Context, args *LookupTopologyCustomControlFeatureOutputArgs, opts ...InvokeOption) LookupTopologyCustomControlFeatureResultOutput

    > Note: This function is named LookupTopologyCustomControlFeature in the Go SDK.

    public static class GetTopologyCustomControlFeature 
    {
        public static Task<GetTopologyCustomControlFeatureResult> InvokeAsync(GetTopologyCustomControlFeatureArgs args, InvokeOptions? opts = null)
        public static Output<GetTopologyCustomControlFeatureResult> Invoke(GetTopologyCustomControlFeatureInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetTopologyCustomControlFeatureResult> getTopologyCustomControlFeature(GetTopologyCustomControlFeatureArgs args, InvokeOptions options)
    public static Output<GetTopologyCustomControlFeatureResult> getTopologyCustomControlFeature(GetTopologyCustomControlFeatureArgs args, InvokeOptions options)
    
    fn::invoke:
      function: sdwan:index/getTopologyCustomControlFeature:getTopologyCustomControlFeature
      arguments:
        # arguments dictionary
    data "sdwan_gettopologycustomcontrolfeature" "name" {
        # arguments
    }

    The following arguments are supported:

    FeatureProfileId string
    Feature Profile ID
    Id string
    The id of the Feature
    FeatureProfileId string
    Feature Profile ID
    Id string
    The id of the Feature
    feature_profile_id string
    Feature Profile ID
    id string
    The id of the Feature
    featureProfileId String
    Feature Profile ID
    id String
    The id of the Feature
    featureProfileId string
    Feature Profile ID
    id string
    The id of the Feature
    feature_profile_id str
    Feature Profile ID
    id str
    The id of the Feature
    featureProfileId String
    Feature Profile ID
    id String
    The id of the Feature

    getTopologyCustomControlFeature Result

    The following output properties are available:

    DefaultAction string
    Default Action
    Description string
    The description of the Feature
    FeatureProfileId string
    Feature Profile ID
    Id string
    The id of the Feature
    Name string
    The name of the Feature
    Sequences List<GetTopologyCustomControlFeatureSequence>
    Sequence list
    TargetInboundRegions List<GetTopologyCustomControlFeatureTargetInboundRegion>
    TargetInboundSites List<string>
    TargetLevel string
    TargetOutboundRegions List<GetTopologyCustomControlFeatureTargetOutboundRegion>
    TargetOutboundSites List<string>
    TargetRole string
    TargetVpns List<string>
    Version int
    The version of the Feature
    DefaultAction string
    Default Action
    Description string
    The description of the Feature
    FeatureProfileId string
    Feature Profile ID
    Id string
    The id of the Feature
    Name string
    The name of the Feature
    Sequences []GetTopologyCustomControlFeatureSequence
    Sequence list
    TargetInboundRegions []GetTopologyCustomControlFeatureTargetInboundRegion
    TargetInboundSites []string
    TargetLevel string
    TargetOutboundRegions []GetTopologyCustomControlFeatureTargetOutboundRegion
    TargetOutboundSites []string
    TargetRole string
    TargetVpns []string
    Version int
    The version of the Feature
    default_action string
    Default Action
    description string
    The description of the Feature
    feature_profile_id string
    Feature Profile ID
    id string
    The id of the Feature
    name string
    The name of the Feature
    sequences list(object)
    Sequence list
    target_inbound_regions list(object)
    target_inbound_sites list(string)
    target_level string
    target_outbound_regions list(object)
    target_outbound_sites list(string)
    target_role string
    target_vpns list(string)
    version number
    The version of the Feature
    defaultAction String
    Default Action
    description String
    The description of the Feature
    featureProfileId String
    Feature Profile ID
    id String
    The id of the Feature
    name String
    The name of the Feature
    sequences List<GetTopologyCustomControlFeatureSequence>
    Sequence list
    targetInboundRegions List<GetTopologyCustomControlFeatureTargetInboundRegion>
    targetInboundSites List<String>
    targetLevel String
    targetOutboundRegions List<GetTopologyCustomControlFeatureTargetOutboundRegion>
    targetOutboundSites List<String>
    targetRole String
    targetVpns List<String>
    version Integer
    The version of the Feature
    defaultAction string
    Default Action
    description string
    The description of the Feature
    featureProfileId string
    Feature Profile ID
    id string
    The id of the Feature
    name string
    The name of the Feature
    sequences GetTopologyCustomControlFeatureSequence[]
    Sequence list
    targetInboundRegions GetTopologyCustomControlFeatureTargetInboundRegion[]
    targetInboundSites string[]
    targetLevel string
    targetOutboundRegions GetTopologyCustomControlFeatureTargetOutboundRegion[]
    targetOutboundSites string[]
    targetRole string
    targetVpns string[]
    version number
    The version of the Feature
    defaultAction String
    Default Action
    description String
    The description of the Feature
    featureProfileId String
    Feature Profile ID
    id String
    The id of the Feature
    name String
    The name of the Feature
    sequences List<Property Map>
    Sequence list
    targetInboundRegions List<Property Map>
    targetInboundSites List<String>
    targetLevel String
    targetOutboundRegions List<Property Map>
    targetOutboundSites List<String>
    targetRole String
    targetVpns List<String>
    version Number
    The version of the Feature

    Supporting Types

    GetTopologyCustomControlFeatureSequence

    action_entries list(object)
    base_action string
    Base Action
    id number
    Sequence Id
    ip_type string
    Sequence IP Type
    match_entries list(object)
    name string
    Sequence Name
    type string
    Sequence Type
    actionEntries List<Property Map>
    baseAction String
    Base Action
    id Number
    Sequence Id
    ipType String
    Sequence IP Type
    matchEntries List<Property Map>
    name String
    Sequence Name
    type String
    Sequence Type

    GetTopologyCustomControlFeatureSequenceActionEntry

    export_to_vpns list(string)
    Export to VPN list
    set_parameters list(object)
    exportToVpns List<String>
    Export to VPN list
    setParameters List<Property Map>

    GetTopologyCustomControlFeatureSequenceActionEntrySetParameter

    Affinity int
    Set affinity
    Community string
    Set community value, e.g. 1000:10000 or internet or local-AS
    CommunityAdditive bool
    Set community additive
    OmpTag int
    Set OMP tag
    Preference int
    Set preference
    ServiceChainTlocColor string
    Set service chain TLOC color
    ServiceChainTlocEncapsulation string
    Set service chain TLOC encapsulation
    ServiceChainTlocIp string
    Set service chain TLOC IP address
    ServiceChainTlocListId string
    Set service chain TLOC list ID
    ServiceChainType string
    Set service chain type
    ServiceChainVpn int
    Set service chain VPN ID
    ServiceTlocColor string
    Set service TLOC color
    ServiceTlocEncapsulation string
    Set service TLOC encapsulation
    ServiceTlocIp string
    Set service TLOC IP address
    ServiceTlocListId string
    Set service TLOC list ID
    ServiceType string
    Set service type
    ServiceVpn int
    Set service VPN ID
    TlocAction string
    Set TLOC action
    TlocColor string
    Set TLOC color
    TlocEncapsulation string
    Set TLOC encapsulation
    TlocIp string
    Set TLOC IP address
    TlocListId string
    Set TLOC list ID
    Affinity int
    Set affinity
    Community string
    Set community value, e.g. 1000:10000 or internet or local-AS
    CommunityAdditive bool
    Set community additive
    OmpTag int
    Set OMP tag
    Preference int
    Set preference
    ServiceChainTlocColor string
    Set service chain TLOC color
    ServiceChainTlocEncapsulation string
    Set service chain TLOC encapsulation
    ServiceChainTlocIp string
    Set service chain TLOC IP address
    ServiceChainTlocListId string
    Set service chain TLOC list ID
    ServiceChainType string
    Set service chain type
    ServiceChainVpn int
    Set service chain VPN ID
    ServiceTlocColor string
    Set service TLOC color
    ServiceTlocEncapsulation string
    Set service TLOC encapsulation
    ServiceTlocIp string
    Set service TLOC IP address
    ServiceTlocListId string
    Set service TLOC list ID
    ServiceType string
    Set service type
    ServiceVpn int
    Set service VPN ID
    TlocAction string
    Set TLOC action
    TlocColor string
    Set TLOC color
    TlocEncapsulation string
    Set TLOC encapsulation
    TlocIp string
    Set TLOC IP address
    TlocListId string
    Set TLOC list ID
    affinity number
    Set affinity
    community string
    Set community value, e.g. 1000:10000 or internet or local-AS
    community_additive bool
    Set community additive
    omp_tag number
    Set OMP tag
    preference number
    Set preference
    service_chain_tloc_color string
    Set service chain TLOC color
    service_chain_tloc_encapsulation string
    Set service chain TLOC encapsulation
    service_chain_tloc_ip string
    Set service chain TLOC IP address
    service_chain_tloc_list_id string
    Set service chain TLOC list ID
    service_chain_type string
    Set service chain type
    service_chain_vpn number
    Set service chain VPN ID
    service_tloc_color string
    Set service TLOC color
    service_tloc_encapsulation string
    Set service TLOC encapsulation
    service_tloc_ip string
    Set service TLOC IP address
    service_tloc_list_id string
    Set service TLOC list ID
    service_type string
    Set service type
    service_vpn number
    Set service VPN ID
    tloc_action string
    Set TLOC action
    tloc_color string
    Set TLOC color
    tloc_encapsulation string
    Set TLOC encapsulation
    tloc_ip string
    Set TLOC IP address
    tloc_list_id string
    Set TLOC list ID
    affinity Integer
    Set affinity
    community String
    Set community value, e.g. 1000:10000 or internet or local-AS
    communityAdditive Boolean
    Set community additive
    ompTag Integer
    Set OMP tag
    preference Integer
    Set preference
    serviceChainTlocColor String
    Set service chain TLOC color
    serviceChainTlocEncapsulation String
    Set service chain TLOC encapsulation
    serviceChainTlocIp String
    Set service chain TLOC IP address
    serviceChainTlocListId String
    Set service chain TLOC list ID
    serviceChainType String
    Set service chain type
    serviceChainVpn Integer
    Set service chain VPN ID
    serviceTlocColor String
    Set service TLOC color
    serviceTlocEncapsulation String
    Set service TLOC encapsulation
    serviceTlocIp String
    Set service TLOC IP address
    serviceTlocListId String
    Set service TLOC list ID
    serviceType String
    Set service type
    serviceVpn Integer
    Set service VPN ID
    tlocAction String
    Set TLOC action
    tlocColor String
    Set TLOC color
    tlocEncapsulation String
    Set TLOC encapsulation
    tlocIp String
    Set TLOC IP address
    tlocListId String
    Set TLOC list ID
    affinity number
    Set affinity
    community string
    Set community value, e.g. 1000:10000 or internet or local-AS
    communityAdditive boolean
    Set community additive
    ompTag number
    Set OMP tag
    preference number
    Set preference
    serviceChainTlocColor string
    Set service chain TLOC color
    serviceChainTlocEncapsulation string
    Set service chain TLOC encapsulation
    serviceChainTlocIp string
    Set service chain TLOC IP address
    serviceChainTlocListId string
    Set service chain TLOC list ID
    serviceChainType string
    Set service chain type
    serviceChainVpn number
    Set service chain VPN ID
    serviceTlocColor string
    Set service TLOC color
    serviceTlocEncapsulation string
    Set service TLOC encapsulation
    serviceTlocIp string
    Set service TLOC IP address
    serviceTlocListId string
    Set service TLOC list ID
    serviceType string
    Set service type
    serviceVpn number
    Set service VPN ID
    tlocAction string
    Set TLOC action
    tlocColor string
    Set TLOC color
    tlocEncapsulation string
    Set TLOC encapsulation
    tlocIp string
    Set TLOC IP address
    tlocListId string
    Set TLOC list ID
    affinity int
    Set affinity
    community str
    Set community value, e.g. 1000:10000 or internet or local-AS
    community_additive bool
    Set community additive
    omp_tag int
    Set OMP tag
    preference int
    Set preference
    service_chain_tloc_color str
    Set service chain TLOC color
    service_chain_tloc_encapsulation str
    Set service chain TLOC encapsulation
    service_chain_tloc_ip str
    Set service chain TLOC IP address
    service_chain_tloc_list_id str
    Set service chain TLOC list ID
    service_chain_type str
    Set service chain type
    service_chain_vpn int
    Set service chain VPN ID
    service_tloc_color str
    Set service TLOC color
    service_tloc_encapsulation str
    Set service TLOC encapsulation
    service_tloc_ip str
    Set service TLOC IP address
    service_tloc_list_id str
    Set service TLOC list ID
    service_type str
    Set service type
    service_vpn int
    Set service VPN ID
    tloc_action str
    Set TLOC action
    tloc_color str
    Set TLOC color
    tloc_encapsulation str
    Set TLOC encapsulation
    tloc_ip str
    Set TLOC IP address
    tloc_list_id str
    Set TLOC list ID
    affinity Number
    Set affinity
    community String
    Set community value, e.g. 1000:10000 or internet or local-AS
    communityAdditive Boolean
    Set community additive
    ompTag Number
    Set OMP tag
    preference Number
    Set preference
    serviceChainTlocColor String
    Set service chain TLOC color
    serviceChainTlocEncapsulation String
    Set service chain TLOC encapsulation
    serviceChainTlocIp String
    Set service chain TLOC IP address
    serviceChainTlocListId String
    Set service chain TLOC list ID
    serviceChainType String
    Set service chain type
    serviceChainVpn Number
    Set service chain VPN ID
    serviceTlocColor String
    Set service TLOC color
    serviceTlocEncapsulation String
    Set service TLOC encapsulation
    serviceTlocIp String
    Set service TLOC IP address
    serviceTlocListId String
    Set service TLOC list ID
    serviceType String
    Set service type
    serviceVpn Number
    Set service VPN ID
    tlocAction String
    Set TLOC action
    tlocColor String
    Set TLOC color
    tlocEncapsulation String
    Set TLOC encapsulation
    tlocIp String
    Set TLOC IP address
    tlocListId String
    Set TLOC list ID

    GetTopologyCustomControlFeatureSequenceMatchEntry

    Carrier string
    Carrier
    ColorListId string
    Color list ID
    CommunityListId string
    Community list ID
    DomainId int
    Domain ID
    ExpandedCommunityListId string
    Expanded community list ID
    GroupId int
    Group ID
    Ipv6PrefixListId string
    IPv6 prefix list ID
    MatchRegions List<GetTopologyCustomControlFeatureSequenceMatchEntryMatchRegion>
    Match regions list
    OmpTag int
    OMP tag
    Origin string
    Origin
    Originator string
    Originator IP
    PathType string
    Path type
    Preference int
    Preference
    PrefixListId string
    Prefix list ID
    Role string
    Role
    Sites List<string>
    Site list
    TlocColor string
    TLOC color
    TlocEncapsulation string
    TLOC encapsulation
    TlocIp string
    TLOC IP address
    TlocListId string
    TLOC list ID
    Vpns List<string>
    VPN list
    Carrier string
    Carrier
    ColorListId string
    Color list ID
    CommunityListId string
    Community list ID
    DomainId int
    Domain ID
    ExpandedCommunityListId string
    Expanded community list ID
    GroupId int
    Group ID
    Ipv6PrefixListId string
    IPv6 prefix list ID
    MatchRegions []GetTopologyCustomControlFeatureSequenceMatchEntryMatchRegion
    Match regions list
    OmpTag int
    OMP tag
    Origin string
    Origin
    Originator string
    Originator IP
    PathType string
    Path type
    Preference int
    Preference
    PrefixListId string
    Prefix list ID
    Role string
    Role
    Sites []string
    Site list
    TlocColor string
    TLOC color
    TlocEncapsulation string
    TLOC encapsulation
    TlocIp string
    TLOC IP address
    TlocListId string
    TLOC list ID
    Vpns []string
    VPN list
    carrier string
    Carrier
    color_list_id string
    Color list ID
    community_list_id string
    Community list ID
    domain_id number
    Domain ID
    expanded_community_list_id string
    Expanded community list ID
    group_id number
    Group ID
    ipv6_prefix_list_id string
    IPv6 prefix list ID
    match_regions list(object)
    Match regions list
    omp_tag number
    OMP tag
    origin string
    Origin
    originator string
    Originator IP
    path_type string
    Path type
    preference number
    Preference
    prefix_list_id string
    Prefix list ID
    role string
    Role
    sites list(string)
    Site list
    tloc_color string
    TLOC color
    tloc_encapsulation string
    TLOC encapsulation
    tloc_ip string
    TLOC IP address
    tloc_list_id string
    TLOC list ID
    vpns list(string)
    VPN list
    carrier String
    Carrier
    colorListId String
    Color list ID
    communityListId String
    Community list ID
    domainId Integer
    Domain ID
    expandedCommunityListId String
    Expanded community list ID
    groupId Integer
    Group ID
    ipv6PrefixListId String
    IPv6 prefix list ID
    matchRegions List<GetTopologyCustomControlFeatureSequenceMatchEntryMatchRegion>
    Match regions list
    ompTag Integer
    OMP tag
    origin String
    Origin
    originator String
    Originator IP
    pathType String
    Path type
    preference Integer
    Preference
    prefixListId String
    Prefix list ID
    role String
    Role
    sites List<String>
    Site list
    tlocColor String
    TLOC color
    tlocEncapsulation String
    TLOC encapsulation
    tlocIp String
    TLOC IP address
    tlocListId String
    TLOC list ID
    vpns List<String>
    VPN list
    carrier string
    Carrier
    colorListId string
    Color list ID
    communityListId string
    Community list ID
    domainId number
    Domain ID
    expandedCommunityListId string
    Expanded community list ID
    groupId number
    Group ID
    ipv6PrefixListId string
    IPv6 prefix list ID
    matchRegions GetTopologyCustomControlFeatureSequenceMatchEntryMatchRegion[]
    Match regions list
    ompTag number
    OMP tag
    origin string
    Origin
    originator string
    Originator IP
    pathType string
    Path type
    preference number
    Preference
    prefixListId string
    Prefix list ID
    role string
    Role
    sites string[]
    Site list
    tlocColor string
    TLOC color
    tlocEncapsulation string
    TLOC encapsulation
    tlocIp string
    TLOC IP address
    tlocListId string
    TLOC list ID
    vpns string[]
    VPN list
    carrier str
    Carrier
    color_list_id str
    Color list ID
    community_list_id str
    Community list ID
    domain_id int
    Domain ID
    expanded_community_list_id str
    Expanded community list ID
    group_id int
    Group ID
    ipv6_prefix_list_id str
    IPv6 prefix list ID
    match_regions Sequence[GetTopologyCustomControlFeatureSequenceMatchEntryMatchRegion]
    Match regions list
    omp_tag int
    OMP tag
    origin str
    Origin
    originator str
    Originator IP
    path_type str
    Path type
    preference int
    Preference
    prefix_list_id str
    Prefix list ID
    role str
    Role
    sites Sequence[str]
    Site list
    tloc_color str
    TLOC color
    tloc_encapsulation str
    TLOC encapsulation
    tloc_ip str
    TLOC IP address
    tloc_list_id str
    TLOC list ID
    vpns Sequence[str]
    VPN list
    carrier String
    Carrier
    colorListId String
    Color list ID
    communityListId String
    Community list ID
    domainId Number
    Domain ID
    expandedCommunityListId String
    Expanded community list ID
    groupId Number
    Group ID
    ipv6PrefixListId String
    IPv6 prefix list ID
    matchRegions List<Property Map>
    Match regions list
    ompTag Number
    OMP tag
    origin String
    Origin
    originator String
    Originator IP
    pathType String
    Path type
    preference Number
    Preference
    prefixListId String
    Prefix list ID
    role String
    Role
    sites List<String>
    Site list
    tlocColor String
    TLOC color
    tlocEncapsulation String
    TLOC encapsulation
    tlocIp String
    TLOC IP address
    tlocListId String
    TLOC list ID
    vpns List<String>
    VPN list

    GetTopologyCustomControlFeatureSequenceMatchEntryMatchRegion

    Region string
    Region name
    SubRegions List<string>
    Sub-region list
    Region string
    Region name
    SubRegions []string
    Sub-region list
    region string
    Region name
    sub_regions list(string)
    Sub-region list
    region String
    Region name
    subRegions List<String>
    Sub-region list
    region string
    Region name
    subRegions string[]
    Sub-region list
    region str
    Region name
    sub_regions Sequence[str]
    Sub-region list
    region String
    Region name
    subRegions List<String>
    Sub-region list

    GetTopologyCustomControlFeatureTargetInboundRegion

    Region string
    Region name
    SubRegions List<string>
    Sub-region list
    Region string
    Region name
    SubRegions []string
    Sub-region list
    region string
    Region name
    sub_regions list(string)
    Sub-region list
    region String
    Region name
    subRegions List<String>
    Sub-region list
    region string
    Region name
    subRegions string[]
    Sub-region list
    region str
    Region name
    sub_regions Sequence[str]
    Sub-region list
    region String
    Region name
    subRegions List<String>
    Sub-region list

    GetTopologyCustomControlFeatureTargetOutboundRegion

    Region string
    Region name
    SubRegions List<string>
    Sub-region list
    Region string
    Region name
    SubRegions []string
    Sub-region list
    region string
    Region name
    sub_regions list(string)
    Sub-region list
    region String
    Region name
    subRegions List<String>
    Sub-region list
    region string
    Region name
    subRegions string[]
    Sub-region list
    region str
    Region name
    sub_regions Sequence[str]
    Sub-region list
    region String
    Region name
    subRegions List<String>
    Sub-region list

    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.1
    published on Friday, Jun 26, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial