1. Packages
  2. Cisco Catalyst SD-WAN Provider
  3. API Docs
  4. SystemMrfFeature
Viewing docs for Cisco Catalyst SD-WAN v0.8.0
published on Tuesday, Mar 31, 2026 by Pulumi
sdwan logo
Viewing docs for Cisco Catalyst SD-WAN v0.8.0
published on Tuesday, Mar 31, 2026 by Pulumi

    This resource can manage a System MRF 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.SystemMrfFeature("example", {
        name: "Example",
        description: "My Example",
        featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
        role: "edge-router",
        enableMigrationToMrf: "enabled",
        migrationBgpCommunity: 100,
        enableManagementRegion: true,
        vrfId: 1,
        gatewayPreferences: [1],
        managementGateway: false,
    });
    
    import pulumi
    import pulumi_sdwan as sdwan
    
    example = sdwan.SystemMrfFeature("example",
        name="Example",
        description="My Example",
        feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
        role="edge-router",
        enable_migration_to_mrf="enabled",
        migration_bgp_community=100,
        enable_management_region=True,
        vrf_id=1,
        gateway_preferences=[1],
        management_gateway=False)
    
    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.NewSystemMrfFeature(ctx, "example", &sdwan.SystemMrfFeatureArgs{
    			Name:                   pulumi.String("Example"),
    			Description:            pulumi.String("My Example"),
    			FeatureProfileId:       pulumi.String("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"),
    			Role:                   pulumi.String("edge-router"),
    			EnableMigrationToMrf:   pulumi.String("enabled"),
    			MigrationBgpCommunity:  pulumi.Int(100),
    			EnableManagementRegion: pulumi.Bool(true),
    			VrfId:                  pulumi.Int(1),
    			GatewayPreferences: pulumi.IntArray{
    				pulumi.Int(1),
    			},
    			ManagementGateway: pulumi.Bool(false),
    		})
    		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.SystemMrfFeature("example", new()
        {
            Name = "Example",
            Description = "My Example",
            FeatureProfileId = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
            Role = "edge-router",
            EnableMigrationToMrf = "enabled",
            MigrationBgpCommunity = 100,
            EnableManagementRegion = true,
            VrfId = 1,
            GatewayPreferences = new[]
            {
                1,
            },
            ManagementGateway = false,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.sdwan.SystemMrfFeature;
    import com.pulumi.sdwan.SystemMrfFeatureArgs;
    import java.util.List;
    import java.util.ArrayList;
    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 SystemMrfFeature("example", SystemMrfFeatureArgs.builder()
                .name("Example")
                .description("My Example")
                .featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
                .role("edge-router")
                .enableMigrationToMrf("enabled")
                .migrationBgpCommunity(100)
                .enableManagementRegion(true)
                .vrfId(1)
                .gatewayPreferences(1)
                .managementGateway(false)
                .build());
    
        }
    }
    
    resources:
      example:
        type: sdwan:SystemMrfFeature
        properties:
          name: Example
          description: My Example
          featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
          role: edge-router
          enableMigrationToMrf: enabled
          migrationBgpCommunity: 100
          enableManagementRegion: true
          vrfId: 1
          gatewayPreferences:
            - 1
          managementGateway: false
    

    Create SystemMrfFeature Resource

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

    Constructor syntax

    new SystemMrfFeature(name: string, args: SystemMrfFeatureArgs, opts?: CustomResourceOptions);
    @overload
    def SystemMrfFeature(resource_name: str,
                         args: SystemMrfFeatureArgs,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def SystemMrfFeature(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         feature_profile_id: Optional[str] = None,
                         management_gateway_variable: Optional[str] = None,
                         name: Optional[str] = None,
                         enable_migration_to_mrf: Optional[str] = None,
                         enable_management_region: Optional[bool] = None,
                         gateway_preference_variable: Optional[str] = None,
                         gateway_preferences: Optional[Sequence[int]] = None,
                         enable_management_region_variable: Optional[str] = None,
                         management_gateway: Optional[bool] = None,
                         migration_bgp_community: Optional[int] = None,
                         description: Optional[str] = None,
                         role: Optional[str] = None,
                         role_variable: Optional[str] = None,
                         secondary_region_id: Optional[int] = None,
                         secondary_region_id_variable: Optional[str] = None,
                         vrf_id: Optional[int] = None,
                         vrf_id_variable: Optional[str] = None)
    func NewSystemMrfFeature(ctx *Context, name string, args SystemMrfFeatureArgs, opts ...ResourceOption) (*SystemMrfFeature, error)
    public SystemMrfFeature(string name, SystemMrfFeatureArgs args, CustomResourceOptions? opts = null)
    public SystemMrfFeature(String name, SystemMrfFeatureArgs args)
    public SystemMrfFeature(String name, SystemMrfFeatureArgs args, CustomResourceOptions options)
    
    type: sdwan:SystemMrfFeature
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args SystemMrfFeatureArgs
    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 SystemMrfFeatureArgs
    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 SystemMrfFeatureArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SystemMrfFeatureArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SystemMrfFeatureArgs
    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 systemMrfFeatureResource = new Sdwan.Index.SystemMrfFeature("systemMrfFeatureResource", new()
    {
        FeatureProfileId = "string",
        ManagementGatewayVariable = "string",
        Name = "string",
        EnableMigrationToMrf = "string",
        EnableManagementRegion = false,
        GatewayPreferenceVariable = "string",
        GatewayPreferences = new[]
        {
            0,
        },
        EnableManagementRegionVariable = "string",
        ManagementGateway = false,
        MigrationBgpCommunity = 0,
        Description = "string",
        Role = "string",
        RoleVariable = "string",
        SecondaryRegionId = 0,
        SecondaryRegionIdVariable = "string",
        VrfId = 0,
        VrfIdVariable = "string",
    });
    
    example, err := sdwan.NewSystemMrfFeature(ctx, "systemMrfFeatureResource", &sdwan.SystemMrfFeatureArgs{
    	FeatureProfileId:          pulumi.String("string"),
    	ManagementGatewayVariable: pulumi.String("string"),
    	Name:                      pulumi.String("string"),
    	EnableMigrationToMrf:      pulumi.String("string"),
    	EnableManagementRegion:    pulumi.Bool(false),
    	GatewayPreferenceVariable: pulumi.String("string"),
    	GatewayPreferences: pulumi.IntArray{
    		pulumi.Int(0),
    	},
    	EnableManagementRegionVariable: pulumi.String("string"),
    	ManagementGateway:              pulumi.Bool(false),
    	MigrationBgpCommunity:          pulumi.Int(0),
    	Description:                    pulumi.String("string"),
    	Role:                           pulumi.String("string"),
    	RoleVariable:                   pulumi.String("string"),
    	SecondaryRegionId:              pulumi.Int(0),
    	SecondaryRegionIdVariable:      pulumi.String("string"),
    	VrfId:                          pulumi.Int(0),
    	VrfIdVariable:                  pulumi.String("string"),
    })
    
    var systemMrfFeatureResource = new SystemMrfFeature("systemMrfFeatureResource", SystemMrfFeatureArgs.builder()
        .featureProfileId("string")
        .managementGatewayVariable("string")
        .name("string")
        .enableMigrationToMrf("string")
        .enableManagementRegion(false)
        .gatewayPreferenceVariable("string")
        .gatewayPreferences(0)
        .enableManagementRegionVariable("string")
        .managementGateway(false)
        .migrationBgpCommunity(0)
        .description("string")
        .role("string")
        .roleVariable("string")
        .secondaryRegionId(0)
        .secondaryRegionIdVariable("string")
        .vrfId(0)
        .vrfIdVariable("string")
        .build());
    
    system_mrf_feature_resource = sdwan.SystemMrfFeature("systemMrfFeatureResource",
        feature_profile_id="string",
        management_gateway_variable="string",
        name="string",
        enable_migration_to_mrf="string",
        enable_management_region=False,
        gateway_preference_variable="string",
        gateway_preferences=[0],
        enable_management_region_variable="string",
        management_gateway=False,
        migration_bgp_community=0,
        description="string",
        role="string",
        role_variable="string",
        secondary_region_id=0,
        secondary_region_id_variable="string",
        vrf_id=0,
        vrf_id_variable="string")
    
    const systemMrfFeatureResource = new sdwan.SystemMrfFeature("systemMrfFeatureResource", {
        featureProfileId: "string",
        managementGatewayVariable: "string",
        name: "string",
        enableMigrationToMrf: "string",
        enableManagementRegion: false,
        gatewayPreferenceVariable: "string",
        gatewayPreferences: [0],
        enableManagementRegionVariable: "string",
        managementGateway: false,
        migrationBgpCommunity: 0,
        description: "string",
        role: "string",
        roleVariable: "string",
        secondaryRegionId: 0,
        secondaryRegionIdVariable: "string",
        vrfId: 0,
        vrfIdVariable: "string",
    });
    
    type: sdwan:SystemMrfFeature
    properties:
        description: string
        enableManagementRegion: false
        enableManagementRegionVariable: string
        enableMigrationToMrf: string
        featureProfileId: string
        gatewayPreferenceVariable: string
        gatewayPreferences:
            - 0
        managementGateway: false
        managementGatewayVariable: string
        migrationBgpCommunity: 0
        name: string
        role: string
        roleVariable: string
        secondaryRegionId: 0
        secondaryRegionIdVariable: string
        vrfId: 0
        vrfIdVariable: string
    

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

    FeatureProfileId string
    Feature Profile ID
    Description string
    The description of the Feature
    EnableManagementRegion bool
    Enable management region

    • Default value: false
    EnableManagementRegionVariable string
    Variable name
    EnableMigrationToMrf string
    Enable migration mode to Multi-Region Fabric

    • Choices: enabled, enabled-from-bgp-core
    GatewayPreferenceVariable string
    Variable name
    GatewayPreferences List<int>
    List of affinity group preferences for VRF
    ManagementGateway bool
    Enable management gateway

    • Default value: false
    ManagementGatewayVariable string
    Variable name
    MigrationBgpCommunity int
    Set BGP community during migration from BGP-core based network

    • Range: 1-4294967295
    Name string
    The name of the Feature
    Role string
    Set the role for router

    • Choices: edge-router, border-router
    RoleVariable string
    Variable name
    SecondaryRegionId int
    Set secondary region ID

    • Range: 1-63
    SecondaryRegionIdVariable string
    Variable name
    VrfId int
    VRF name for management region

    • Range: 1-65531
    VrfIdVariable string
    Variable name
    FeatureProfileId string
    Feature Profile ID
    Description string
    The description of the Feature
    EnableManagementRegion bool
    Enable management region

    • Default value: false
    EnableManagementRegionVariable string
    Variable name
    EnableMigrationToMrf string
    Enable migration mode to Multi-Region Fabric

    • Choices: enabled, enabled-from-bgp-core
    GatewayPreferenceVariable string
    Variable name
    GatewayPreferences []int
    List of affinity group preferences for VRF
    ManagementGateway bool
    Enable management gateway

    • Default value: false
    ManagementGatewayVariable string
    Variable name
    MigrationBgpCommunity int
    Set BGP community during migration from BGP-core based network

    • Range: 1-4294967295
    Name string
    The name of the Feature
    Role string
    Set the role for router

    • Choices: edge-router, border-router
    RoleVariable string
    Variable name
    SecondaryRegionId int
    Set secondary region ID

    • Range: 1-63
    SecondaryRegionIdVariable string
    Variable name
    VrfId int
    VRF name for management region

    • Range: 1-65531
    VrfIdVariable string
    Variable name
    featureProfileId String
    Feature Profile ID
    description String
    The description of the Feature
    enableManagementRegion Boolean
    Enable management region

    • Default value: false
    enableManagementRegionVariable String
    Variable name
    enableMigrationToMrf String
    Enable migration mode to Multi-Region Fabric

    • Choices: enabled, enabled-from-bgp-core
    gatewayPreferenceVariable String
    Variable name
    gatewayPreferences List<Integer>
    List of affinity group preferences for VRF
    managementGateway Boolean
    Enable management gateway

    • Default value: false
    managementGatewayVariable String
    Variable name
    migrationBgpCommunity Integer
    Set BGP community during migration from BGP-core based network

    • Range: 1-4294967295
    name String
    The name of the Feature
    role String
    Set the role for router

    • Choices: edge-router, border-router
    roleVariable String
    Variable name
    secondaryRegionId Integer
    Set secondary region ID

    • Range: 1-63
    secondaryRegionIdVariable String
    Variable name
    vrfId Integer
    VRF name for management region

    • Range: 1-65531
    vrfIdVariable String
    Variable name
    featureProfileId string
    Feature Profile ID
    description string
    The description of the Feature
    enableManagementRegion boolean
    Enable management region

    • Default value: false
    enableManagementRegionVariable string
    Variable name
    enableMigrationToMrf string
    Enable migration mode to Multi-Region Fabric

    • Choices: enabled, enabled-from-bgp-core
    gatewayPreferenceVariable string
    Variable name
    gatewayPreferences number[]
    List of affinity group preferences for VRF
    managementGateway boolean
    Enable management gateway

    • Default value: false
    managementGatewayVariable string
    Variable name
    migrationBgpCommunity number
    Set BGP community during migration from BGP-core based network

    • Range: 1-4294967295
    name string
    The name of the Feature
    role string
    Set the role for router

    • Choices: edge-router, border-router
    roleVariable string
    Variable name
    secondaryRegionId number
    Set secondary region ID

    • Range: 1-63
    secondaryRegionIdVariable string
    Variable name
    vrfId number
    VRF name for management region

    • Range: 1-65531
    vrfIdVariable string
    Variable name
    feature_profile_id str
    Feature Profile ID
    description str
    The description of the Feature
    enable_management_region bool
    Enable management region

    • Default value: false
    enable_management_region_variable str
    Variable name
    enable_migration_to_mrf str
    Enable migration mode to Multi-Region Fabric

    • Choices: enabled, enabled-from-bgp-core
    gateway_preference_variable str
    Variable name
    gateway_preferences Sequence[int]
    List of affinity group preferences for VRF
    management_gateway bool
    Enable management gateway

    • Default value: false
    management_gateway_variable str
    Variable name
    migration_bgp_community int
    Set BGP community during migration from BGP-core based network

    • Range: 1-4294967295
    name str
    The name of the Feature
    role str
    Set the role for router

    • Choices: edge-router, border-router
    role_variable str
    Variable name
    secondary_region_id int
    Set secondary region ID

    • Range: 1-63
    secondary_region_id_variable str
    Variable name
    vrf_id int
    VRF name for management region

    • Range: 1-65531
    vrf_id_variable str
    Variable name
    featureProfileId String
    Feature Profile ID
    description String
    The description of the Feature
    enableManagementRegion Boolean
    Enable management region

    • Default value: false
    enableManagementRegionVariable String
    Variable name
    enableMigrationToMrf String
    Enable migration mode to Multi-Region Fabric

    • Choices: enabled, enabled-from-bgp-core
    gatewayPreferenceVariable String
    Variable name
    gatewayPreferences List<Number>
    List of affinity group preferences for VRF
    managementGateway Boolean
    Enable management gateway

    • Default value: false
    managementGatewayVariable String
    Variable name
    migrationBgpCommunity Number
    Set BGP community during migration from BGP-core based network

    • Range: 1-4294967295
    name String
    The name of the Feature
    role String
    Set the role for router

    • Choices: edge-router, border-router
    roleVariable String
    Variable name
    secondaryRegionId Number
    Set secondary region ID

    • Range: 1-63
    secondaryRegionIdVariable String
    Variable name
    vrfId Number
    VRF name for management region

    • Range: 1-65531
    vrfIdVariable String
    Variable name

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Version int
    The version of the Feature
    Id string
    The provider-assigned unique ID for this managed resource.
    Version int
    The version of the Feature
    id String
    The provider-assigned unique ID for this managed resource.
    version Integer
    The version of the Feature
    id string
    The provider-assigned unique ID for this managed resource.
    version number
    The version of the Feature
    id str
    The provider-assigned unique ID for this managed resource.
    version int
    The version of the Feature
    id String
    The provider-assigned unique ID for this managed resource.
    version Number
    The version of the Feature

    Look up Existing SystemMrfFeature Resource

    Get an existing SystemMrfFeature 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?: SystemMrfFeatureState, opts?: CustomResourceOptions): SystemMrfFeature
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            description: Optional[str] = None,
            enable_management_region: Optional[bool] = None,
            enable_management_region_variable: Optional[str] = None,
            enable_migration_to_mrf: Optional[str] = None,
            feature_profile_id: Optional[str] = None,
            gateway_preference_variable: Optional[str] = None,
            gateway_preferences: Optional[Sequence[int]] = None,
            management_gateway: Optional[bool] = None,
            management_gateway_variable: Optional[str] = None,
            migration_bgp_community: Optional[int] = None,
            name: Optional[str] = None,
            role: Optional[str] = None,
            role_variable: Optional[str] = None,
            secondary_region_id: Optional[int] = None,
            secondary_region_id_variable: Optional[str] = None,
            version: Optional[int] = None,
            vrf_id: Optional[int] = None,
            vrf_id_variable: Optional[str] = None) -> SystemMrfFeature
    func GetSystemMrfFeature(ctx *Context, name string, id IDInput, state *SystemMrfFeatureState, opts ...ResourceOption) (*SystemMrfFeature, error)
    public static SystemMrfFeature Get(string name, Input<string> id, SystemMrfFeatureState? state, CustomResourceOptions? opts = null)
    public static SystemMrfFeature get(String name, Output<String> id, SystemMrfFeatureState state, CustomResourceOptions options)
    resources:  _:    type: sdwan:SystemMrfFeature    get:      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:
    Description string
    The description of the Feature
    EnableManagementRegion bool
    Enable management region

    • Default value: false
    EnableManagementRegionVariable string
    Variable name
    EnableMigrationToMrf string
    Enable migration mode to Multi-Region Fabric

    • Choices: enabled, enabled-from-bgp-core
    FeatureProfileId string
    Feature Profile ID
    GatewayPreferenceVariable string
    Variable name
    GatewayPreferences List<int>
    List of affinity group preferences for VRF
    ManagementGateway bool
    Enable management gateway

    • Default value: false
    ManagementGatewayVariable string
    Variable name
    MigrationBgpCommunity int
    Set BGP community during migration from BGP-core based network

    • Range: 1-4294967295
    Name string
    The name of the Feature
    Role string
    Set the role for router

    • Choices: edge-router, border-router
    RoleVariable string
    Variable name
    SecondaryRegionId int
    Set secondary region ID

    • Range: 1-63
    SecondaryRegionIdVariable string
    Variable name
    Version int
    The version of the Feature
    VrfId int
    VRF name for management region

    • Range: 1-65531
    VrfIdVariable string
    Variable name
    Description string
    The description of the Feature
    EnableManagementRegion bool
    Enable management region

    • Default value: false
    EnableManagementRegionVariable string
    Variable name
    EnableMigrationToMrf string
    Enable migration mode to Multi-Region Fabric

    • Choices: enabled, enabled-from-bgp-core
    FeatureProfileId string
    Feature Profile ID
    GatewayPreferenceVariable string
    Variable name
    GatewayPreferences []int
    List of affinity group preferences for VRF
    ManagementGateway bool
    Enable management gateway

    • Default value: false
    ManagementGatewayVariable string
    Variable name
    MigrationBgpCommunity int
    Set BGP community during migration from BGP-core based network

    • Range: 1-4294967295
    Name string
    The name of the Feature
    Role string
    Set the role for router

    • Choices: edge-router, border-router
    RoleVariable string
    Variable name
    SecondaryRegionId int
    Set secondary region ID

    • Range: 1-63
    SecondaryRegionIdVariable string
    Variable name
    Version int
    The version of the Feature
    VrfId int
    VRF name for management region

    • Range: 1-65531
    VrfIdVariable string
    Variable name
    description String
    The description of the Feature
    enableManagementRegion Boolean
    Enable management region

    • Default value: false
    enableManagementRegionVariable String
    Variable name
    enableMigrationToMrf String
    Enable migration mode to Multi-Region Fabric

    • Choices: enabled, enabled-from-bgp-core
    featureProfileId String
    Feature Profile ID
    gatewayPreferenceVariable String
    Variable name
    gatewayPreferences List<Integer>
    List of affinity group preferences for VRF
    managementGateway Boolean
    Enable management gateway

    • Default value: false
    managementGatewayVariable String
    Variable name
    migrationBgpCommunity Integer
    Set BGP community during migration from BGP-core based network

    • Range: 1-4294967295
    name String
    The name of the Feature
    role String
    Set the role for router

    • Choices: edge-router, border-router
    roleVariable String
    Variable name
    secondaryRegionId Integer
    Set secondary region ID

    • Range: 1-63
    secondaryRegionIdVariable String
    Variable name
    version Integer
    The version of the Feature
    vrfId Integer
    VRF name for management region

    • Range: 1-65531
    vrfIdVariable String
    Variable name
    description string
    The description of the Feature
    enableManagementRegion boolean
    Enable management region

    • Default value: false
    enableManagementRegionVariable string
    Variable name
    enableMigrationToMrf string
    Enable migration mode to Multi-Region Fabric

    • Choices: enabled, enabled-from-bgp-core
    featureProfileId string
    Feature Profile ID
    gatewayPreferenceVariable string
    Variable name
    gatewayPreferences number[]
    List of affinity group preferences for VRF
    managementGateway boolean
    Enable management gateway

    • Default value: false
    managementGatewayVariable string
    Variable name
    migrationBgpCommunity number
    Set BGP community during migration from BGP-core based network

    • Range: 1-4294967295
    name string
    The name of the Feature
    role string
    Set the role for router

    • Choices: edge-router, border-router
    roleVariable string
    Variable name
    secondaryRegionId number
    Set secondary region ID

    • Range: 1-63
    secondaryRegionIdVariable string
    Variable name
    version number
    The version of the Feature
    vrfId number
    VRF name for management region

    • Range: 1-65531
    vrfIdVariable string
    Variable name
    description str
    The description of the Feature
    enable_management_region bool
    Enable management region

    • Default value: false
    enable_management_region_variable str
    Variable name
    enable_migration_to_mrf str
    Enable migration mode to Multi-Region Fabric

    • Choices: enabled, enabled-from-bgp-core
    feature_profile_id str
    Feature Profile ID
    gateway_preference_variable str
    Variable name
    gateway_preferences Sequence[int]
    List of affinity group preferences for VRF
    management_gateway bool
    Enable management gateway

    • Default value: false
    management_gateway_variable str
    Variable name
    migration_bgp_community int
    Set BGP community during migration from BGP-core based network

    • Range: 1-4294967295
    name str
    The name of the Feature
    role str
    Set the role for router

    • Choices: edge-router, border-router
    role_variable str
    Variable name
    secondary_region_id int
    Set secondary region ID

    • Range: 1-63
    secondary_region_id_variable str
    Variable name
    version int
    The version of the Feature
    vrf_id int
    VRF name for management region

    • Range: 1-65531
    vrf_id_variable str
    Variable name
    description String
    The description of the Feature
    enableManagementRegion Boolean
    Enable management region

    • Default value: false
    enableManagementRegionVariable String
    Variable name
    enableMigrationToMrf String
    Enable migration mode to Multi-Region Fabric

    • Choices: enabled, enabled-from-bgp-core
    featureProfileId String
    Feature Profile ID
    gatewayPreferenceVariable String
    Variable name
    gatewayPreferences List<Number>
    List of affinity group preferences for VRF
    managementGateway Boolean
    Enable management gateway

    • Default value: false
    managementGatewayVariable String
    Variable name
    migrationBgpCommunity Number
    Set BGP community during migration from BGP-core based network

    • Range: 1-4294967295
    name String
    The name of the Feature
    role String
    Set the role for router

    • Choices: edge-router, border-router
    roleVariable String
    Variable name
    secondaryRegionId Number
    Set secondary region ID

    • Range: 1-63
    secondaryRegionIdVariable String
    Variable name
    version Number
    The version of the Feature
    vrfId Number
    VRF name for management region

    • Range: 1-65531
    vrfIdVariable String
    Variable name

    Import

    The pulumi import command can be used, for example:

    Expected import identifier with the format: “system_mrf_feature_id,feature_profile_id”

    $ pulumi import sdwan:index/systemMrfFeature:SystemMrfFeature 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 sdwan Terraform Provider.
    sdwan logo
    Viewing docs for Cisco Catalyst SD-WAN v0.8.0
    published on Tuesday, Mar 31, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.