1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. getLogicalRouter
Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
scm logo
Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi

    LogicalRouter data source

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    // Look up the logical router by its ID.
    const scmLogicalRouterDs = scm.getLogicalRouter({
        id: "b7c6f00b-b20e-4073-af1c-1f42863a5983",
    });
    export const scmLogicalRouterDataSourceOutput = {
        id: scmLogicalRouterDs.then(scmLogicalRouterDs => scmLogicalRouterDs.id),
        name: scmLogicalRouterDs.then(scmLogicalRouterDs => scmLogicalRouterDs.name),
        routingStack: scmLogicalRouterDs.then(scmLogicalRouterDs => scmLogicalRouterDs.routingStack),
        vrf: scmLogicalRouterDs.then(scmLogicalRouterDs => scmLogicalRouterDs.vrves),
        folder: scmLogicalRouterDs.then(scmLogicalRouterDs => scmLogicalRouterDs.folder),
    };
    
    import pulumi
    import pulumi_scm as scm
    
    # Look up the logical router by its ID.
    scm_logical_router_ds = scm.get_logical_router(id="b7c6f00b-b20e-4073-af1c-1f42863a5983")
    pulumi.export("scmLogicalRouterDataSourceOutput", {
        "id": scm_logical_router_ds.id,
        "name": scm_logical_router_ds.name,
        "routingStack": scm_logical_router_ds.routing_stack,
        "vrf": scm_logical_router_ds.vrves,
        "folder": scm_logical_router_ds.folder,
    })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-scm/sdk/go/scm"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// Look up the logical router by its ID.
    		scmLogicalRouterDs, err := scm.LookupLogicalRouter(ctx, &scm.LookupLogicalRouterArgs{
    			Id: "b7c6f00b-b20e-4073-af1c-1f42863a5983",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("scmLogicalRouterDataSourceOutput", pulumi.Map{
    			"id":           scmLogicalRouterDs.Id,
    			"name":         scmLogicalRouterDs.Name,
    			"routingStack": scmLogicalRouterDs.RoutingStack,
    			"vrf":          scmLogicalRouterDs.Vrves,
    			"folder":       scmLogicalRouterDs.Folder,
    		})
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        // Look up the logical router by its ID.
        var scmLogicalRouterDs = Scm.GetLogicalRouter.Invoke(new()
        {
            Id = "b7c6f00b-b20e-4073-af1c-1f42863a5983",
        });
    
        return new Dictionary<string, object?>
        {
            ["scmLogicalRouterDataSourceOutput"] = 
            {
                { "id", scmLogicalRouterDs.Apply(getLogicalRouterResult => getLogicalRouterResult.Id) },
                { "name", scmLogicalRouterDs.Apply(getLogicalRouterResult => getLogicalRouterResult.Name) },
                { "routingStack", scmLogicalRouterDs.Apply(getLogicalRouterResult => getLogicalRouterResult.RoutingStack) },
                { "vrf", scmLogicalRouterDs.Apply(getLogicalRouterResult => getLogicalRouterResult.Vrves) },
                { "folder", scmLogicalRouterDs.Apply(getLogicalRouterResult => getLogicalRouterResult.Folder) },
            },
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scm.ScmFunctions;
    import com.pulumi.scm.inputs.GetLogicalRouterArgs;
    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) {
            // Look up the logical router by its ID.
            final var scmLogicalRouterDs = ScmFunctions.getLogicalRouter(GetLogicalRouterArgs.builder()
                .id("b7c6f00b-b20e-4073-af1c-1f42863a5983")
                .build());
    
            ctx.export("scmLogicalRouterDataSourceOutput", Map.ofEntries(
                Map.entry("id", scmLogicalRouterDs.id()),
                Map.entry("name", scmLogicalRouterDs.name()),
                Map.entry("routingStack", scmLogicalRouterDs.routingStack()),
                Map.entry("vrf", scmLogicalRouterDs.vrves()),
                Map.entry("folder", scmLogicalRouterDs.folder())
            ));
        }
    }
    
    variables:
      # Look up the logical router by its ID.
      scmLogicalRouterDs:
        fn::invoke:
          function: scm:getLogicalRouter
          arguments:
            id: b7c6f00b-b20e-4073-af1c-1f42863a5983
    outputs:
      # Output various attributes from the found logical router to verify the lookups were successful.
      scmLogicalRouterDataSourceOutput:
        id: ${scmLogicalRouterDs.id}
        name: ${scmLogicalRouterDs.name}
        routingStack: ${scmLogicalRouterDs.routingStack}
        vrf: ${scmLogicalRouterDs.vrves}
        folder: ${scmLogicalRouterDs.folder}
    

    Using getLogicalRouter

    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 getLogicalRouter(args: GetLogicalRouterArgs, opts?: InvokeOptions): Promise<GetLogicalRouterResult>
    function getLogicalRouterOutput(args: GetLogicalRouterOutputArgs, opts?: InvokeOptions): Output<GetLogicalRouterResult>
    def get_logical_router(id: Optional[str] = None,
                           name: Optional[str] = None,
                           opts: Optional[InvokeOptions] = None) -> GetLogicalRouterResult
    def get_logical_router_output(id: Optional[pulumi.Input[str]] = None,
                           name: Optional[pulumi.Input[str]] = None,
                           opts: Optional[InvokeOptions] = None) -> Output[GetLogicalRouterResult]
    func LookupLogicalRouter(ctx *Context, args *LookupLogicalRouterArgs, opts ...InvokeOption) (*LookupLogicalRouterResult, error)
    func LookupLogicalRouterOutput(ctx *Context, args *LookupLogicalRouterOutputArgs, opts ...InvokeOption) LookupLogicalRouterResultOutput

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

    public static class GetLogicalRouter 
    {
        public static Task<GetLogicalRouterResult> InvokeAsync(GetLogicalRouterArgs args, InvokeOptions? opts = null)
        public static Output<GetLogicalRouterResult> Invoke(GetLogicalRouterInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetLogicalRouterResult> getLogicalRouter(GetLogicalRouterArgs args, InvokeOptions options)
    public static Output<GetLogicalRouterResult> getLogicalRouter(GetLogicalRouterArgs args, InvokeOptions options)
    
    fn::invoke:
      function: scm:index/getLogicalRouter:getLogicalRouter
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Id string
    UUID of the resource
    Name string
    Name
    Id string
    UUID of the resource
    Name string
    Name
    id String
    UUID of the resource
    name String
    Name
    id string
    UUID of the resource
    name string
    Name
    id str
    UUID of the resource
    name str
    Name
    id String
    UUID of the resource
    name String
    Name

    getLogicalRouter Result

    The following output properties are available:

    Device string
    The device in which the resource is defined
    Folder string
    The folder in which the resource is defined
    Id string
    UUID of the resource
    Name string
    Name
    RoutingStack string
    Routing stack
    Snippet string
    The snippet in which the resource is defined
    Tfid string
    Vrves List<GetLogicalRouterVrf>
    Vrf
    Device string
    The device in which the resource is defined
    Folder string
    The folder in which the resource is defined
    Id string
    UUID of the resource
    Name string
    Name
    RoutingStack string
    Routing stack
    Snippet string
    The snippet in which the resource is defined
    Tfid string
    Vrves []GetLogicalRouterVrf
    Vrf
    device String
    The device in which the resource is defined
    folder String
    The folder in which the resource is defined
    id String
    UUID of the resource
    name String
    Name
    routingStack String
    Routing stack
    snippet String
    The snippet in which the resource is defined
    tfid String
    vrves List<GetLogicalRouterVrf>
    Vrf
    device string
    The device in which the resource is defined
    folder string
    The folder in which the resource is defined
    id string
    UUID of the resource
    name string
    Name
    routingStack string
    Routing stack
    snippet string
    The snippet in which the resource is defined
    tfid string
    vrves GetLogicalRouterVrf[]
    Vrf
    device str
    The device in which the resource is defined
    folder str
    The folder in which the resource is defined
    id str
    UUID of the resource
    name str
    Name
    routing_stack str
    Routing stack
    snippet str
    The snippet in which the resource is defined
    tfid str
    vrves Sequence[GetLogicalRouterVrf]
    Vrf
    device String
    The device in which the resource is defined
    folder String
    The folder in which the resource is defined
    id String
    UUID of the resource
    name String
    Name
    routingStack String
    Routing stack
    snippet String
    The snippet in which the resource is defined
    tfid String
    vrves List<Property Map>
    Vrf

    Supporting Types

    GetLogicalRouterVrf

    adminDists Property Map
    Admin dists
    bgp Property Map
    Bgp
    ecmp Property Map
    Ecmp
    globalVrid Number
    Global vrid
    interfaces List<String>
    Interface
    multicast Property Map
    Multicast
    name String
    Name
    ospf Property Map
    Ospf
    ospfv3 Property Map
    Ospfv3
    ribFilter Property Map
    Rib filter
    rip Property Map
    Rip
    routingTable Property Map
    Routing table
    sdwanType String
    Sdwan type
    vrAdminDists Property Map
    Vr admin dists
    zoneName String
    Zone name

    GetLogicalRouterVrfAdminDists

    BgpExternal int
    Bgp external
    BgpInternal int
    Bgp internal
    BgpLocal int
    Bgp local
    OspfExt int
    Ospf ext
    OspfInter int
    Ospf inter
    OspfIntra int
    Ospf intra
    Ospfv3Ext int
    Ospfv3 ext
    Ospfv3Inter int
    Ospfv3 inter
    Ospfv3Intra int
    Ospfv3 intra
    Rip int
    Rip
    Static int
    Static
    StaticIpv6 int
    Static ipv6
    BgpExternal int
    Bgp external
    BgpInternal int
    Bgp internal
    BgpLocal int
    Bgp local
    OspfExt int
    Ospf ext
    OspfInter int
    Ospf inter
    OspfIntra int
    Ospf intra
    Ospfv3Ext int
    Ospfv3 ext
    Ospfv3Inter int
    Ospfv3 inter
    Ospfv3Intra int
    Ospfv3 intra
    Rip int
    Rip
    Static int
    Static
    StaticIpv6 int
    Static ipv6
    bgpExternal Integer
    Bgp external
    bgpInternal Integer
    Bgp internal
    bgpLocal Integer
    Bgp local
    ospfExt Integer
    Ospf ext
    ospfInter Integer
    Ospf inter
    ospfIntra Integer
    Ospf intra
    ospfv3Ext Integer
    Ospfv3 ext
    ospfv3Inter Integer
    Ospfv3 inter
    ospfv3Intra Integer
    Ospfv3 intra
    rip Integer
    Rip
    staticIpv6 Integer
    Static ipv6
    static_ Integer
    Static
    bgpExternal number
    Bgp external
    bgpInternal number
    Bgp internal
    bgpLocal number
    Bgp local
    ospfExt number
    Ospf ext
    ospfInter number
    Ospf inter
    ospfIntra number
    Ospf intra
    ospfv3Ext number
    Ospfv3 ext
    ospfv3Inter number
    Ospfv3 inter
    ospfv3Intra number
    Ospfv3 intra
    rip number
    Rip
    static number
    Static
    staticIpv6 number
    Static ipv6
    bgp_external int
    Bgp external
    bgp_internal int
    Bgp internal
    bgp_local int
    Bgp local
    ospf_ext int
    Ospf ext
    ospf_inter int
    Ospf inter
    ospf_intra int
    Ospf intra
    ospfv3_ext int
    Ospfv3 ext
    ospfv3_inter int
    Ospfv3 inter
    ospfv3_intra int
    Ospfv3 intra
    rip int
    Rip
    static int
    Static
    static_ipv6 int
    Static ipv6
    bgpExternal Number
    Bgp external
    bgpInternal Number
    Bgp internal
    bgpLocal Number
    Bgp local
    ospfExt Number
    Ospf ext
    ospfInter Number
    Ospf inter
    ospfIntra Number
    Ospf intra
    ospfv3Ext Number
    Ospfv3 ext
    ospfv3Inter Number
    Ospfv3 inter
    ospfv3Intra Number
    Ospfv3 intra
    rip Number
    Rip
    static Number
    Static
    staticIpv6 Number
    Static ipv6

    GetLogicalRouterVrfBgp

    AdvertiseNetwork GetLogicalRouterVrfBgpAdvertiseNetwork
    Advertise network
    Aggregate GetLogicalRouterVrfBgpAggregate
    Aggregate
    AggregateRoutes List<GetLogicalRouterVrfBgpAggregateRoute>
    Aggregate routes
    AllowRedistDefaultRoute bool
    Allow redist default route
    AlwaysAdvertiseNetworkRoute bool
    Always advertise network route
    AsFormat string
    As format
    ConfederationMemberAs string
    Confederation member as
    DefaultLocalPreference int
    Default local preference
    EcmpMultiAs bool
    Ecmp multi as
    Enable bool
    Enable
    EnforceFirstAs bool
    Enforce first as
    FastExternalFailover bool
    Fast external failover
    GlobalBfd GetLogicalRouterVrfBgpGlobalBfd
    Global bfd
    GracefulRestart GetLogicalRouterVrfBgpGracefulRestart
    Graceful restart
    GracefulShutdown bool
    Graceful shutdown
    InstallRoute bool
    Install route
    LocalAs string
    Local as
    Med GetLogicalRouterVrfBgpMed
    Med
    PeerGroups List<GetLogicalRouterVrfBgpPeerGroup>
    Peer group
    Policy GetLogicalRouterVrfBgpPolicy
    Policy
    RedistRules List<GetLogicalRouterVrfBgpRedistRule>
    Redist rules
    RedistributionProfile GetLogicalRouterVrfBgpRedistributionProfile
    Redistribution profile
    RejectDefaultRoute bool
    Reject default route
    RouterId string
    Router id
    AdvertiseNetwork GetLogicalRouterVrfBgpAdvertiseNetwork
    Advertise network
    Aggregate GetLogicalRouterVrfBgpAggregate
    Aggregate
    AggregateRoutes []GetLogicalRouterVrfBgpAggregateRoute
    Aggregate routes
    AllowRedistDefaultRoute bool
    Allow redist default route
    AlwaysAdvertiseNetworkRoute bool
    Always advertise network route
    AsFormat string
    As format
    ConfederationMemberAs string
    Confederation member as
    DefaultLocalPreference int
    Default local preference
    EcmpMultiAs bool
    Ecmp multi as
    Enable bool
    Enable
    EnforceFirstAs bool
    Enforce first as
    FastExternalFailover bool
    Fast external failover
    GlobalBfd GetLogicalRouterVrfBgpGlobalBfd
    Global bfd
    GracefulRestart GetLogicalRouterVrfBgpGracefulRestart
    Graceful restart
    GracefulShutdown bool
    Graceful shutdown
    InstallRoute bool
    Install route
    LocalAs string
    Local as
    Med GetLogicalRouterVrfBgpMed
    Med
    PeerGroups []GetLogicalRouterVrfBgpPeerGroup
    Peer group
    Policy GetLogicalRouterVrfBgpPolicy
    Policy
    RedistRules []GetLogicalRouterVrfBgpRedistRule
    Redist rules
    RedistributionProfile GetLogicalRouterVrfBgpRedistributionProfile
    Redistribution profile
    RejectDefaultRoute bool
    Reject default route
    RouterId string
    Router id
    advertiseNetwork GetLogicalRouterVrfBgpAdvertiseNetwork
    Advertise network
    aggregate GetLogicalRouterVrfBgpAggregate
    Aggregate
    aggregateRoutes List<GetLogicalRouterVrfBgpAggregateRoute>
    Aggregate routes
    allowRedistDefaultRoute Boolean
    Allow redist default route
    alwaysAdvertiseNetworkRoute Boolean
    Always advertise network route
    asFormat String
    As format
    confederationMemberAs String
    Confederation member as
    defaultLocalPreference Integer
    Default local preference
    ecmpMultiAs Boolean
    Ecmp multi as
    enable Boolean
    Enable
    enforceFirstAs Boolean
    Enforce first as
    fastExternalFailover Boolean
    Fast external failover
    globalBfd GetLogicalRouterVrfBgpGlobalBfd
    Global bfd
    gracefulRestart GetLogicalRouterVrfBgpGracefulRestart
    Graceful restart
    gracefulShutdown Boolean
    Graceful shutdown
    installRoute Boolean
    Install route
    localAs String
    Local as
    med GetLogicalRouterVrfBgpMed
    Med
    peerGroups List<GetLogicalRouterVrfBgpPeerGroup>
    Peer group
    policy GetLogicalRouterVrfBgpPolicy
    Policy
    redistRules List<GetLogicalRouterVrfBgpRedistRule>
    Redist rules
    redistributionProfile GetLogicalRouterVrfBgpRedistributionProfile
    Redistribution profile
    rejectDefaultRoute Boolean
    Reject default route
    routerId String
    Router id
    advertiseNetwork GetLogicalRouterVrfBgpAdvertiseNetwork
    Advertise network
    aggregate GetLogicalRouterVrfBgpAggregate
    Aggregate
    aggregateRoutes GetLogicalRouterVrfBgpAggregateRoute[]
    Aggregate routes
    allowRedistDefaultRoute boolean
    Allow redist default route
    alwaysAdvertiseNetworkRoute boolean
    Always advertise network route
    asFormat string
    As format
    confederationMemberAs string
    Confederation member as
    defaultLocalPreference number
    Default local preference
    ecmpMultiAs boolean
    Ecmp multi as
    enable boolean
    Enable
    enforceFirstAs boolean
    Enforce first as
    fastExternalFailover boolean
    Fast external failover
    globalBfd GetLogicalRouterVrfBgpGlobalBfd
    Global bfd
    gracefulRestart GetLogicalRouterVrfBgpGracefulRestart
    Graceful restart
    gracefulShutdown boolean
    Graceful shutdown
    installRoute boolean
    Install route
    localAs string
    Local as
    med GetLogicalRouterVrfBgpMed
    Med
    peerGroups GetLogicalRouterVrfBgpPeerGroup[]
    Peer group
    policy GetLogicalRouterVrfBgpPolicy
    Policy
    redistRules GetLogicalRouterVrfBgpRedistRule[]
    Redist rules
    redistributionProfile GetLogicalRouterVrfBgpRedistributionProfile
    Redistribution profile
    rejectDefaultRoute boolean
    Reject default route
    routerId string
    Router id
    GetLogicalRouterVrfBgpAdvertiseNetwork
    Advertise network
    aggregate GetLogicalRouterVrfBgpAggregate
    Aggregate
    aggregate_routes Sequence[GetLogicalRouterVrfBgpAggregateRoute]
    Aggregate routes
    allow_redist_default_route bool
    Allow redist default route
    always_advertise_network_route bool
    Always advertise network route
    as_format str
    As format
    confederation_member_as str
    Confederation member as
    default_local_preference int
    Default local preference
    ecmp_multi_as bool
    Ecmp multi as
    enable bool
    Enable
    enforce_first_as bool
    Enforce first as
    fast_external_failover bool
    Fast external failover
    global_bfd GetLogicalRouterVrfBgpGlobalBfd
    Global bfd
    graceful_restart GetLogicalRouterVrfBgpGracefulRestart
    Graceful restart
    graceful_shutdown bool
    Graceful shutdown
    install_route bool
    Install route
    local_as str
    Local as
    med GetLogicalRouterVrfBgpMed
    Med
    peer_groups Sequence[GetLogicalRouterVrfBgpPeerGroup]
    Peer group
    policy GetLogicalRouterVrfBgpPolicy
    Policy
    redist_rules Sequence[GetLogicalRouterVrfBgpRedistRule]
    Redist rules
    redistribution_profile GetLogicalRouterVrfBgpRedistributionProfile
    Redistribution profile
    reject_default_route bool
    Reject default route
    router_id str
    Router id
    advertiseNetwork Property Map
    Advertise network
    aggregate Property Map
    Aggregate
    aggregateRoutes List<Property Map>
    Aggregate routes
    allowRedistDefaultRoute Boolean
    Allow redist default route
    alwaysAdvertiseNetworkRoute Boolean
    Always advertise network route
    asFormat String
    As format
    confederationMemberAs String
    Confederation member as
    defaultLocalPreference Number
    Default local preference
    ecmpMultiAs Boolean
    Ecmp multi as
    enable Boolean
    Enable
    enforceFirstAs Boolean
    Enforce first as
    fastExternalFailover Boolean
    Fast external failover
    globalBfd Property Map
    Global bfd
    gracefulRestart Property Map
    Graceful restart
    gracefulShutdown Boolean
    Graceful shutdown
    installRoute Boolean
    Install route
    localAs String
    Local as
    med Property Map
    Med
    peerGroups List<Property Map>
    Peer group
    policy Property Map
    Policy
    redistRules List<Property Map>
    Redist rules
    redistributionProfile Property Map
    Redistribution profile
    rejectDefaultRoute Boolean
    Reject default route
    routerId String
    Router id

    GetLogicalRouterVrfBgpAdvertiseNetwork

    GetLogicalRouterVrfBgpAdvertiseNetworkIpv4

    GetLogicalRouterVrfBgpAdvertiseNetworkIpv4Network

    Backdoor bool
    Backdoor
    Multicast bool
    Multicast
    Name string
    Name
    Unicast bool
    Unicast
    Backdoor bool
    Backdoor
    Multicast bool
    Multicast
    Name string
    Name
    Unicast bool
    Unicast
    backdoor Boolean
    Backdoor
    multicast Boolean
    Multicast
    name String
    Name
    unicast Boolean
    Unicast
    backdoor boolean
    Backdoor
    multicast boolean
    Multicast
    name string
    Name
    unicast boolean
    Unicast
    backdoor bool
    Backdoor
    multicast bool
    Multicast
    name str
    Name
    unicast bool
    Unicast
    backdoor Boolean
    Backdoor
    multicast Boolean
    Multicast
    name String
    Name
    unicast Boolean
    Unicast

    GetLogicalRouterVrfBgpAdvertiseNetworkIpv6

    GetLogicalRouterVrfBgpAdvertiseNetworkIpv6Network

    Name string
    Name
    Unicast bool
    Unicast
    Name string
    Name
    Unicast bool
    Unicast
    name String
    Name
    unicast Boolean
    Unicast
    name string
    Name
    unicast boolean
    Unicast
    name str
    Name
    unicast bool
    Unicast
    name String
    Name
    unicast Boolean
    Unicast

    GetLogicalRouterVrfBgpAggregate

    AggregateMed bool
    Aggregate med
    AggregateMed bool
    Aggregate med
    aggregateMed Boolean
    Aggregate med
    aggregateMed boolean
    Aggregate med
    aggregate_med bool
    Aggregate med
    aggregateMed Boolean
    Aggregate med

    GetLogicalRouterVrfBgpAggregateRoute

    AsSet bool
    As set
    Description string
    Description
    Enable bool
    Enable
    Name string
    Name
    SameMed bool
    Same med
    SummaryOnly bool
    Summary only
    Type GetLogicalRouterVrfBgpAggregateRouteType
    Type
    AsSet bool
    As set
    Description string
    Description
    Enable bool
    Enable
    Name string
    Name
    SameMed bool
    Same med
    SummaryOnly bool
    Summary only
    Type GetLogicalRouterVrfBgpAggregateRouteType
    Type
    asSet Boolean
    As set
    description String
    Description
    enable Boolean
    Enable
    name String
    Name
    sameMed Boolean
    Same med
    summaryOnly Boolean
    Summary only
    type GetLogicalRouterVrfBgpAggregateRouteType
    Type
    asSet boolean
    As set
    description string
    Description
    enable boolean
    Enable
    name string
    Name
    sameMed boolean
    Same med
    summaryOnly boolean
    Summary only
    type GetLogicalRouterVrfBgpAggregateRouteType
    Type
    as_set bool
    As set
    description str
    Description
    enable bool
    Enable
    name str
    Name
    same_med bool
    Same med
    summary_only bool
    Summary only
    type GetLogicalRouterVrfBgpAggregateRouteType
    Type
    asSet Boolean
    As set
    description String
    Description
    enable Boolean
    Enable
    name String
    Name
    sameMed Boolean
    Same med
    summaryOnly Boolean
    Summary only
    type Property Map
    Type

    GetLogicalRouterVrfBgpAggregateRouteType

    GetLogicalRouterVrfBgpAggregateRouteTypeIpv4

    AttributeMap string
    Attribute map
    SummaryPrefix string
    Summary prefix
    SuppressMap string
    Suppress map
    AttributeMap string
    Attribute map
    SummaryPrefix string
    Summary prefix
    SuppressMap string
    Suppress map
    attributeMap String
    Attribute map
    summaryPrefix String
    Summary prefix
    suppressMap String
    Suppress map
    attributeMap string
    Attribute map
    summaryPrefix string
    Summary prefix
    suppressMap string
    Suppress map
    attribute_map str
    Attribute map
    summary_prefix str
    Summary prefix
    suppress_map str
    Suppress map
    attributeMap String
    Attribute map
    summaryPrefix String
    Summary prefix
    suppressMap String
    Suppress map

    GetLogicalRouterVrfBgpAggregateRouteTypeIpv6

    AttributeMap string
    Attribute map
    SummaryPrefix string
    Summary prefix
    SuppressMap string
    Suppress map
    AttributeMap string
    Attribute map
    SummaryPrefix string
    Summary prefix
    SuppressMap string
    Suppress map
    attributeMap String
    Attribute map
    summaryPrefix String
    Summary prefix
    suppressMap String
    Suppress map
    attributeMap string
    Attribute map
    summaryPrefix string
    Summary prefix
    suppressMap string
    Suppress map
    attribute_map str
    Attribute map
    summary_prefix str
    Summary prefix
    suppress_map str
    Suppress map
    attributeMap String
    Attribute map
    summaryPrefix String
    Summary prefix
    suppressMap String
    Suppress map

    GetLogicalRouterVrfBgpGlobalBfd

    Profile string
    Profile
    Profile string
    Profile
    profile String
    Profile
    profile string
    Profile
    profile str
    Profile
    profile String
    Profile

    GetLogicalRouterVrfBgpGracefulRestart

    Enable bool
    Enable
    LocalRestartTime int
    Local restart time
    MaxPeerRestartTime int
    Max peer restart time
    StaleRouteTime int
    Stale route time
    Enable bool
    Enable
    LocalRestartTime int
    Local restart time
    MaxPeerRestartTime int
    Max peer restart time
    StaleRouteTime int
    Stale route time
    enable Boolean
    Enable
    localRestartTime Integer
    Local restart time
    maxPeerRestartTime Integer
    Max peer restart time
    staleRouteTime Integer
    Stale route time
    enable boolean
    Enable
    localRestartTime number
    Local restart time
    maxPeerRestartTime number
    Max peer restart time
    staleRouteTime number
    Stale route time
    enable bool
    Enable
    local_restart_time int
    Local restart time
    max_peer_restart_time int
    Max peer restart time
    stale_route_time int
    Stale route time
    enable Boolean
    Enable
    localRestartTime Number
    Local restart time
    maxPeerRestartTime Number
    Max peer restart time
    staleRouteTime Number
    Stale route time

    GetLogicalRouterVrfBgpMed

    AlwaysCompareMed bool
    Always compare med
    DeterministicMedComparison bool
    Deterministic med comparison
    AlwaysCompareMed bool
    Always compare med
    DeterministicMedComparison bool
    Deterministic med comparison
    alwaysCompareMed Boolean
    Always compare med
    deterministicMedComparison Boolean
    Deterministic med comparison
    alwaysCompareMed boolean
    Always compare med
    deterministicMedComparison boolean
    Deterministic med comparison
    always_compare_med bool
    Always compare med
    deterministic_med_comparison bool
    Deterministic med comparison
    alwaysCompareMed Boolean
    Always compare med
    deterministicMedComparison Boolean
    Deterministic med comparison

    GetLogicalRouterVrfBgpPeerGroup

    addressFamily Property Map
    Address family
    aggregatedConfedAsPath Boolean
    Aggregated confed as path
    connectionOptions Property Map
    Connection options
    enable Boolean
    Enable
    filteringProfile Property Map
    Filtering profile
    name String
    Name
    peers List<Property Map>
    Peer
    softResetWithStoredInfo Boolean
    Soft reset with stored info
    type Property Map
    Type

    GetLogicalRouterVrfBgpPeerGroupAddressFamily

    Ipv4 string
    Ipv4
    Ipv6 string
    Ipv6
    Ipv4 string
    Ipv4
    Ipv6 string
    Ipv6
    ipv4 String
    Ipv4
    ipv6 String
    Ipv6
    ipv4 string
    Ipv4
    ipv6 string
    Ipv6
    ipv4 str
    Ipv4
    ipv6 str
    Ipv6
    ipv4 String
    Ipv4
    ipv6 String
    Ipv6

    GetLogicalRouterVrfBgpPeerGroupConnectionOptions

    Authentication string
    Authentication
    Dampening string
    Dampening
    Multihop int
    Multihop
    Timers string
    Timers
    Authentication string
    Authentication
    Dampening string
    Dampening
    Multihop int
    Multihop
    Timers string
    Timers
    authentication String
    Authentication
    dampening String
    Dampening
    multihop Integer
    Multihop
    timers String
    Timers
    authentication string
    Authentication
    dampening string
    Dampening
    multihop number
    Multihop
    timers string
    Timers
    authentication str
    Authentication
    dampening str
    Dampening
    multihop int
    Multihop
    timers str
    Timers
    authentication String
    Authentication
    dampening String
    Dampening
    multihop Number
    Multihop
    timers String
    Timers

    GetLogicalRouterVrfBgpPeerGroupFilteringProfile

    Ipv4 string
    Ipv4
    Ipv6 string
    Ipv6
    Ipv4 string
    Ipv4
    Ipv6 string
    Ipv6
    ipv4 String
    Ipv4
    ipv6 String
    Ipv6
    ipv4 string
    Ipv4
    ipv6 string
    Ipv6
    ipv4 str
    Ipv4
    ipv6 str
    Ipv6
    ipv4 String
    Ipv4
    ipv6 String
    Ipv6

    GetLogicalRouterVrfBgpPeerGroupPeer

    bfd Property Map
    Bfd
    connectionOptions Property Map
    Connection options
    enable Boolean
    Enable
    enableMpBgp Boolean
    Enable mp bgp
    enableSenderSideLoopDetection Boolean
    Enable sender side loop detection
    inherit Property Map
    Inherit
    localAddress Property Map
    Local address
    name String
    Name
    passive Boolean
    Passive
    peerAddress Property Map
    Peer address
    peerAs String
    Peer as
    peeringType String
    Peering type
    reflectorClient String
    Reflector client
    subsequentAddressFamilyIdentifier Property Map
    Subsequent address family identifier

    GetLogicalRouterVrfBgpPeerGroupPeerBfd

    multihop Property Map
    Multihop
    profile String
    Profile

    GetLogicalRouterVrfBgpPeerGroupPeerBfdMultihop

    MinReceivedTtl int
    Min received ttl
    MinReceivedTtl int
    Min received ttl
    minReceivedTtl Integer
    Min received ttl
    minReceivedTtl number
    Min received ttl
    min_received_ttl int
    Min received ttl
    minReceivedTtl Number
    Min received ttl

    GetLogicalRouterVrfBgpPeerGroupPeerConnectionOptions

    Authentication string
    Authentication
    Dampening string
    Dampening
    HoldTime string
    Hold time
    IdleHoldTime int
    Idle hold time
    IncomingBgpConnection GetLogicalRouterVrfBgpPeerGroupPeerConnectionOptionsIncomingBgpConnection
    Incoming bgp connection
    KeepAliveInterval string
    Keep alive interval
    MaxPrefixes string
    Max prefixes
    MinRouteAdvInterval int
    Min route adv interval
    Multihop string
    Multihop
    OpenDelayTime int
    Open delay time
    OutgoingBgpConnection GetLogicalRouterVrfBgpPeerGroupPeerConnectionOptionsOutgoingBgpConnection
    Outgoing bgp connection
    Timers string
    Timers
    Authentication string
    Authentication
    Dampening string
    Dampening
    HoldTime string
    Hold time
    IdleHoldTime int
    Idle hold time
    IncomingBgpConnection GetLogicalRouterVrfBgpPeerGroupPeerConnectionOptionsIncomingBgpConnection
    Incoming bgp connection
    KeepAliveInterval string
    Keep alive interval
    MaxPrefixes string
    Max prefixes
    MinRouteAdvInterval int
    Min route adv interval
    Multihop string
    Multihop
    OpenDelayTime int
    Open delay time
    OutgoingBgpConnection GetLogicalRouterVrfBgpPeerGroupPeerConnectionOptionsOutgoingBgpConnection
    Outgoing bgp connection
    Timers string
    Timers
    authentication String
    Authentication
    dampening String
    Dampening
    holdTime String
    Hold time
    idleHoldTime Integer
    Idle hold time
    incomingBgpConnection GetLogicalRouterVrfBgpPeerGroupPeerConnectionOptionsIncomingBgpConnection
    Incoming bgp connection
    keepAliveInterval String
    Keep alive interval
    maxPrefixes String
    Max prefixes
    minRouteAdvInterval Integer
    Min route adv interval
    multihop String
    Multihop
    openDelayTime Integer
    Open delay time
    outgoingBgpConnection GetLogicalRouterVrfBgpPeerGroupPeerConnectionOptionsOutgoingBgpConnection
    Outgoing bgp connection
    timers String
    Timers
    authentication string
    Authentication
    dampening string
    Dampening
    holdTime string
    Hold time
    idleHoldTime number
    Idle hold time
    incomingBgpConnection GetLogicalRouterVrfBgpPeerGroupPeerConnectionOptionsIncomingBgpConnection
    Incoming bgp connection
    keepAliveInterval string
    Keep alive interval
    maxPrefixes string
    Max prefixes
    minRouteAdvInterval number
    Min route adv interval
    multihop string
    Multihop
    openDelayTime number
    Open delay time
    outgoingBgpConnection GetLogicalRouterVrfBgpPeerGroupPeerConnectionOptionsOutgoingBgpConnection
    Outgoing bgp connection
    timers string
    Timers
    authentication str
    Authentication
    dampening str
    Dampening
    hold_time str
    Hold time
    idle_hold_time int
    Idle hold time
    incoming_bgp_connection GetLogicalRouterVrfBgpPeerGroupPeerConnectionOptionsIncomingBgpConnection
    Incoming bgp connection
    keep_alive_interval str
    Keep alive interval
    max_prefixes str
    Max prefixes
    min_route_adv_interval int
    Min route adv interval
    multihop str
    Multihop
    open_delay_time int
    Open delay time
    outgoing_bgp_connection GetLogicalRouterVrfBgpPeerGroupPeerConnectionOptionsOutgoingBgpConnection
    Outgoing bgp connection
    timers str
    Timers
    authentication String
    Authentication
    dampening String
    Dampening
    holdTime String
    Hold time
    idleHoldTime Number
    Idle hold time
    incomingBgpConnection Property Map
    Incoming bgp connection
    keepAliveInterval String
    Keep alive interval
    maxPrefixes String
    Max prefixes
    minRouteAdvInterval Number
    Min route adv interval
    multihop String
    Multihop
    openDelayTime Number
    Open delay time
    outgoingBgpConnection Property Map
    Outgoing bgp connection
    timers String
    Timers

    GetLogicalRouterVrfBgpPeerGroupPeerConnectionOptionsIncomingBgpConnection

    Allow bool
    Allow
    RemotePort int
    Remote port
    Allow bool
    Allow
    RemotePort int
    Remote port
    allow Boolean
    Allow
    remotePort Integer
    Remote port
    allow boolean
    Allow
    remotePort number
    Remote port
    allow bool
    Allow
    remote_port int
    Remote port
    allow Boolean
    Allow
    remotePort Number
    Remote port

    GetLogicalRouterVrfBgpPeerGroupPeerConnectionOptionsOutgoingBgpConnection

    Allow bool
    Allow
    LocalPort int
    Local port
    Allow bool
    Allow
    LocalPort int
    Local port
    allow Boolean
    Allow
    localPort Integer
    Local port
    allow boolean
    Allow
    localPort number
    Local port
    allow bool
    Allow
    local_port int
    Local port
    allow Boolean
    Allow
    localPort Number
    Local port

    GetLogicalRouterVrfBgpPeerGroupPeerInherit

    GetLogicalRouterVrfBgpPeerGroupPeerInheritNo

    GetLogicalRouterVrfBgpPeerGroupPeerInheritNoAddressFamily

    Ipv4 string
    Ipv4
    Ipv6 string
    Ipv6
    Ipv4 string
    Ipv4
    Ipv6 string
    Ipv6
    ipv4 String
    Ipv4
    ipv6 String
    Ipv6
    ipv4 string
    Ipv4
    ipv6 string
    Ipv6
    ipv4 str
    Ipv4
    ipv6 str
    Ipv6
    ipv4 String
    Ipv4
    ipv6 String
    Ipv6

    GetLogicalRouterVrfBgpPeerGroupPeerInheritNoFilteringProfile

    Ipv4 string
    Ipv4
    Ipv6 string
    Ipv6
    Ipv4 string
    Ipv4
    Ipv6 string
    Ipv6
    ipv4 String
    Ipv4
    ipv6 String
    Ipv6
    ipv4 string
    Ipv4
    ipv6 string
    Ipv6
    ipv4 str
    Ipv4
    ipv6 str
    Ipv6
    ipv4 String
    Ipv4
    ipv6 String
    Ipv6

    GetLogicalRouterVrfBgpPeerGroupPeerLocalAddress

    Interface string
    Interface
    Ip string
    Ip
    Interface string
    Interface
    Ip string
    Ip
    interface_ String
    Interface
    ip String
    Ip
    interface string
    Interface
    ip string
    Ip
    interface str
    Interface
    ip str
    Ip
    interface String
    Interface
    ip String
    Ip

    GetLogicalRouterVrfBgpPeerGroupPeerPeerAddress

    Fqdn string
    Fqdn
    Ip string
    Ip
    Fqdn string
    Fqdn
    Ip string
    Ip
    fqdn String
    Fqdn
    ip String
    Ip
    fqdn string
    Fqdn
    ip string
    Ip
    fqdn str
    Fqdn
    ip str
    Ip
    fqdn String
    Fqdn
    ip String
    Ip

    GetLogicalRouterVrfBgpPeerGroupPeerSubsequentAddressFamilyIdentifier

    Multicast bool
    Multicast
    Unicast bool
    Unicast
    Multicast bool
    Multicast
    Unicast bool
    Unicast
    multicast Boolean
    Multicast
    unicast Boolean
    Unicast
    multicast boolean
    Multicast
    unicast boolean
    Unicast
    multicast bool
    Multicast
    unicast bool
    Unicast
    multicast Boolean
    Multicast
    unicast Boolean
    Unicast

    GetLogicalRouterVrfBgpPeerGroupType

    GetLogicalRouterVrfBgpPeerGroupTypeEbgp

    ExportNexthop string
    Export nexthop
    ImportNexthop string
    Import nexthop
    RemovePrivateAs bool
    Remove private as
    ExportNexthop string
    Export nexthop
    ImportNexthop string
    Import nexthop
    RemovePrivateAs bool
    Remove private as
    exportNexthop String
    Export nexthop
    importNexthop String
    Import nexthop
    removePrivateAs Boolean
    Remove private as
    exportNexthop string
    Export nexthop
    importNexthop string
    Import nexthop
    removePrivateAs boolean
    Remove private as
    export_nexthop str
    Export nexthop
    import_nexthop str
    Import nexthop
    remove_private_as bool
    Remove private as
    exportNexthop String
    Export nexthop
    importNexthop String
    Import nexthop
    removePrivateAs Boolean
    Remove private as

    GetLogicalRouterVrfBgpPeerGroupTypeEbgpConfed

    ExportNexthop string
    Export nexthop
    ExportNexthop string
    Export nexthop
    exportNexthop String
    Export nexthop
    exportNexthop string
    Export nexthop
    export_nexthop str
    Export nexthop
    exportNexthop String
    Export nexthop

    GetLogicalRouterVrfBgpPeerGroupTypeIbgp

    ExportNexthop string
    Export nexthop
    ExportNexthop string
    Export nexthop
    exportNexthop String
    Export nexthop
    exportNexthop string
    Export nexthop
    export_nexthop str
    Export nexthop
    exportNexthop String
    Export nexthop

    GetLogicalRouterVrfBgpPeerGroupTypeIbgpConfed

    ExportNexthop string
    Export nexthop
    ExportNexthop string
    Export nexthop
    exportNexthop String
    Export nexthop
    exportNexthop string
    Export nexthop
    export_nexthop str
    Export nexthop
    exportNexthop String
    Export nexthop

    GetLogicalRouterVrfBgpPolicy

    GetLogicalRouterVrfBgpPolicyAggregation

    GetLogicalRouterVrfBgpPolicyAggregationAddress

    advertiseFilters List<Property Map>
    Advertise filters
    aggregateRouteAttributes Property Map
    Aggregate route attributes
    asSet Boolean
    As set
    enable Boolean
    Enable
    name String
    Name
    prefix String
    Prefix
    summary Boolean
    Summary
    suppressFilters List<Property Map>
    Suppress filters

    GetLogicalRouterVrfBgpPolicyAggregationAddressAdvertiseFilter

    enable Boolean
    Enable
    match Property Map
    Match
    name String
    Name

    GetLogicalRouterVrfBgpPolicyAggregationAddressAdvertiseFilterMatch

    addressPrefixes List<Property Map>
    Address prefix
    afi String
    Afi
    asPath Property Map
    As path
    community Property Map
    Community
    extendedCommunity Property Map
    Extended community
    fromPeers List<String>
    From peer
    med Number
    Med
    nexthops List<String>
    Nexthop
    routeTable String
    Route table
    safi String
    Safi

    GetLogicalRouterVrfBgpPolicyAggregationAddressAdvertiseFilterMatchAddressPrefix

    Exact bool
    Exact
    Name string
    Name
    Exact bool
    Exact
    Name string
    Name
    exact Boolean
    Exact
    name String
    Name
    exact boolean
    Exact
    name string
    Name
    exact bool
    Exact
    name str
    Name
    exact Boolean
    Exact
    name String
    Name

    GetLogicalRouterVrfBgpPolicyAggregationAddressAdvertiseFilterMatchAsPath

    Regex string
    Regex
    Regex string
    Regex
    regex String
    Regex
    regex string
    Regex
    regex str
    Regex
    regex String
    Regex

    GetLogicalRouterVrfBgpPolicyAggregationAddressAdvertiseFilterMatchCommunity

    Regex string
    Regex
    Regex string
    Regex
    regex String
    Regex
    regex string
    Regex
    regex str
    Regex
    regex String
    Regex

    GetLogicalRouterVrfBgpPolicyAggregationAddressAdvertiseFilterMatchExtendedCommunity

    Regex string
    Regex
    Regex string
    Regex
    regex String
    Regex
    regex string
    Regex
    regex str
    Regex
    regex String
    Regex

    GetLogicalRouterVrfBgpPolicyAggregationAddressAggregateRouteAttributes

    asPath Property Map
    As path
    asPathLimit Number
    As path limit
    community Property Map
    Community
    extendedCommunity Property Map
    Extended community
    localPreference Number
    Local preference
    med Number
    Med
    nexthop String
    Nexthop
    origin String
    Origin
    weight Number
    Weight

    GetLogicalRouterVrfBgpPolicyAggregationAddressAggregateRouteAttributesAsPath

    none Property Map
    None
    prepend Number
    Prepend
    remove Property Map
    Remove
    removeAndPrepend Number
    Remove and prepend

    GetLogicalRouterVrfBgpPolicyAggregationAddressAggregateRouteAttributesCommunity

    appends List<String>
    Append
    none Property Map
    None
    overwrites List<String>
    Overwrite
    removeAll Property Map
    Remove all
    removeRegex String
    Remove regex

    GetLogicalRouterVrfBgpPolicyAggregationAddressAggregateRouteAttributesExtendedCommunity

    appends List<String>
    Append
    none Property Map
    None
    overwrites List<String>
    Overwrite
    removeAll Property Map
    Remove all
    removeRegex String
    Remove regex

    GetLogicalRouterVrfBgpPolicyAggregationAddressSuppressFilter

    enable Boolean
    Enable
    match Property Map
    Match
    name String
    Name

    GetLogicalRouterVrfBgpPolicyAggregationAddressSuppressFilterMatch

    addressPrefixes List<Property Map>
    Address prefix
    afi String
    Afi
    asPath Property Map
    As path
    community Property Map
    Community
    extendedCommunity Property Map
    Extended community
    fromPeers List<String>
    From peer
    med Number
    Med
    nexthops List<String>
    Nexthop
    routeTable String
    Route table
    safi String
    Safi

    GetLogicalRouterVrfBgpPolicyAggregationAddressSuppressFilterMatchAddressPrefix

    Exact bool
    Exact
    Name string
    Name
    Exact bool
    Exact
    Name string
    Name
    exact Boolean
    Exact
    name String
    Name
    exact boolean
    Exact
    name string
    Name
    exact bool
    Exact
    name str
    Name
    exact Boolean
    Exact
    name String
    Name

    GetLogicalRouterVrfBgpPolicyAggregationAddressSuppressFilterMatchAsPath

    Regex string
    Regex
    Regex string
    Regex
    regex String
    Regex
    regex string
    Regex
    regex str
    Regex
    regex String
    Regex

    GetLogicalRouterVrfBgpPolicyAggregationAddressSuppressFilterMatchCommunity

    Regex string
    Regex
    Regex string
    Regex
    regex String
    Regex
    regex string
    Regex
    regex str
    Regex
    regex String
    Regex

    GetLogicalRouterVrfBgpPolicyAggregationAddressSuppressFilterMatchExtendedCommunity

    Regex string
    Regex
    Regex string
    Regex
    regex String
    Regex
    regex string
    Regex
    regex str
    Regex
    regex String
    Regex

    GetLogicalRouterVrfBgpPolicyConditionalAdvertisement

    GetLogicalRouterVrfBgpPolicyConditionalAdvertisementPolicy

    advertiseFilters List<Property Map>
    Advertise filters
    enable Boolean
    Enable
    name String
    Name
    nonExistFilters List<Property Map>
    Non exist filters
    usedBies List<String>
    Used by

    GetLogicalRouterVrfBgpPolicyConditionalAdvertisementPolicyAdvertiseFilter

    enable Boolean
    Enable
    match Property Map
    Match
    name String
    Name

    GetLogicalRouterVrfBgpPolicyConditionalAdvertisementPolicyAdvertiseFilterMatch

    addressPrefixes List<Property Map>
    Address prefix
    afi String
    Afi
    asPath Property Map
    As path
    community Property Map
    Community
    extendedCommunity Property Map
    Extended community
    fromPeers List<String>
    From peer
    med Number
    Med
    nexthops List<String>
    Nexthop
    routeTable String
    Route table
    safi String
    Safi

    GetLogicalRouterVrfBgpPolicyConditionalAdvertisementPolicyAdvertiseFilterMatchAddressPrefix

    Exact bool
    Exact
    Name string
    Name
    Exact bool
    Exact
    Name string
    Name
    exact Boolean
    Exact
    name String
    Name
    exact boolean
    Exact
    name string
    Name
    exact bool
    Exact
    name str
    Name
    exact Boolean
    Exact
    name String
    Name

    GetLogicalRouterVrfBgpPolicyConditionalAdvertisementPolicyAdvertiseFilterMatchAsPath

    Regex string
    Regex
    Regex string
    Regex
    regex String
    Regex
    regex string
    Regex
    regex str
    Regex
    regex String
    Regex

    GetLogicalRouterVrfBgpPolicyConditionalAdvertisementPolicyAdvertiseFilterMatchCommunity

    Regex string
    Regex
    Regex string
    Regex
    regex String
    Regex
    regex string
    Regex
    regex str
    Regex
    regex String
    Regex

    GetLogicalRouterVrfBgpPolicyConditionalAdvertisementPolicyAdvertiseFilterMatchExtendedCommunity

    Regex string
    Regex
    Regex string
    Regex
    regex String
    Regex
    regex string
    Regex
    regex str
    Regex
    regex String
    Regex

    GetLogicalRouterVrfBgpPolicyConditionalAdvertisementPolicyNonExistFilter

    enable Boolean
    Enable
    match Property Map
    Match
    name String
    Name

    GetLogicalRouterVrfBgpPolicyConditionalAdvertisementPolicyNonExistFilterMatch

    addressPrefixes List<Property Map>
    Address prefix
    afi String
    Afi
    asPath Property Map
    As path
    community Property Map
    Community
    extendedCommunity Property Map
    Extended community
    fromPeers List<String>
    From peer
    med Number
    Med
    nexthops List<String>
    Nexthop
    routeTable String
    Route table
    safi String
    Safi

    GetLogicalRouterVrfBgpPolicyConditionalAdvertisementPolicyNonExistFilterMatchAddressPrefix

    Exact bool
    Exact
    Name string
    Name
    Exact bool
    Exact
    Name string
    Name
    exact Boolean
    Exact
    name String
    Name
    exact boolean
    Exact
    name string
    Name
    exact bool
    Exact
    name str
    Name
    exact Boolean
    Exact
    name String
    Name

    GetLogicalRouterVrfBgpPolicyConditionalAdvertisementPolicyNonExistFilterMatchAsPath

    Regex string
    Regex
    Regex string
    Regex
    regex String
    Regex
    regex string
    Regex
    regex str
    Regex
    regex String
    Regex

    GetLogicalRouterVrfBgpPolicyConditionalAdvertisementPolicyNonExistFilterMatchCommunity

    Regex string
    Regex
    Regex string
    Regex
    regex String
    Regex
    regex string
    Regex
    regex str
    Regex
    regex String
    Regex

    GetLogicalRouterVrfBgpPolicyConditionalAdvertisementPolicyNonExistFilterMatchExtendedCommunity

    Regex string
    Regex
    Regex string
    Regex
    regex String
    Regex
    regex string
    Regex
    regex str
    Regex
    regex String
    Regex

    GetLogicalRouterVrfBgpPolicyExport

    GetLogicalRouterVrfBgpPolicyExportRule

    action Property Map
    Action
    enable Boolean
    Enable
    match Property Map
    Match
    name String
    Name
    usedBies List<String>
    Used by

    GetLogicalRouterVrfBgpPolicyExportRuleAction

    GetLogicalRouterVrfBgpPolicyExportRuleActionAllow

    GetLogicalRouterVrfBgpPolicyExportRuleActionAllowUpdate

    asPath Property Map
    As path
    asPathLimit Number
    As path limit
    community Property Map
    Community
    extendedCommunity Property Map
    Extended community
    localPreference Number
    Local preference
    med Number
    Med
    nexthop String
    Nexthop
    origin String
    Origin

    GetLogicalRouterVrfBgpPolicyExportRuleActionAllowUpdateAsPath

    none Property Map
    None
    prepend Number
    Prepend
    remove Property Map
    Remove
    removeAndPrepend Number
    Remove and prepend

    GetLogicalRouterVrfBgpPolicyExportRuleActionAllowUpdateCommunity

    appends List<String>
    Append
    none Property Map
    None
    overwrites List<String>
    Overwrite
    removeAll Property Map
    Remove all
    removeRegex String
    Remove regex

    GetLogicalRouterVrfBgpPolicyExportRuleActionAllowUpdateExtendedCommunity

    appends List<String>
    Append
    none Property Map
    None
    overwrites List<String>
    Overwrite
    removeAll Property Map
    Remove all
    removeRegex String
    Remove regex

    GetLogicalRouterVrfBgpPolicyExportRuleMatch

    addressPrefixes List<Property Map>
    Address prefix
    afi String
    Afi
    asPath Property Map
    As path
    community Property Map
    Community
    extendedCommunity Property Map
    Extended community
    fromPeers List<String>
    From peer
    med Number
    Med
    nexthops List<String>
    Nexthop
    routeTable String
    Route table
    safi String
    Safi

    GetLogicalRouterVrfBgpPolicyExportRuleMatchAddressPrefix

    Exact bool
    Exact
    Name string
    Name
    Exact bool
    Exact
    Name string
    Name
    exact Boolean
    Exact
    name String
    Name
    exact boolean
    Exact
    name string
    Name
    exact bool
    Exact
    name str
    Name
    exact Boolean
    Exact
    name String
    Name

    GetLogicalRouterVrfBgpPolicyExportRuleMatchAsPath

    Regex string
    Regex
    Regex string
    Regex
    regex String
    Regex
    regex string
    Regex
    regex str
    Regex
    regex String
    Regex

    GetLogicalRouterVrfBgpPolicyExportRuleMatchCommunity

    Regex string
    Regex
    Regex string
    Regex
    regex String
    Regex
    regex string
    Regex
    regex str
    Regex
    regex String
    Regex

    GetLogicalRouterVrfBgpPolicyExportRuleMatchExtendedCommunity

    Regex string
    Regex
    Regex string
    Regex
    regex String
    Regex
    regex string
    Regex
    regex str
    Regex
    regex String
    Regex

    GetLogicalRouterVrfBgpPolicyImport

    GetLogicalRouterVrfBgpPolicyImportRule

    action Property Map
    Action
    enable Boolean
    Enable
    match Property Map
    Match
    name String
    Name
    usedBies List<String>
    Used by

    GetLogicalRouterVrfBgpPolicyImportRuleAction

    GetLogicalRouterVrfBgpPolicyImportRuleActionAllow

    dampening String
    Dampening
    update Property Map
    Update

    GetLogicalRouterVrfBgpPolicyImportRuleActionAllowUpdate

    asPath Property Map
    As path
    asPathLimit Number
    As path limit
    community Property Map
    Community
    extendedCommunity Property Map
    Extended community
    localPreference Number
    Local preference
    med Number
    Med
    nexthop String
    Nexthop
    origin String
    Origin
    weight Number
    Weight

    GetLogicalRouterVrfBgpPolicyImportRuleActionAllowUpdateAsPath

    none Property Map
    None
    prepend Number
    Prepend
    remove Property Map
    Remove
    removeAndPrepend Number
    Remove and prepend

    GetLogicalRouterVrfBgpPolicyImportRuleActionAllowUpdateCommunity

    appends List<String>
    Append
    none Property Map
    None
    overwrites List<String>
    Overwrite
    removeAll Property Map
    Remove all
    removeRegex String
    Remove regex

    GetLogicalRouterVrfBgpPolicyImportRuleActionAllowUpdateExtendedCommunity

    appends List<String>
    Append
    none Property Map
    None
    overwrites List<String>
    Overwrite
    removeAll Property Map
    Remove all
    removeRegex String
    Remove regex

    GetLogicalRouterVrfBgpPolicyImportRuleMatch

    addressPrefixes List<Property Map>
    Address prefix
    afi String
    Afi
    asPath Property Map
    As path
    community Property Map
    Community
    extendedCommunity Property Map
    Extended community
    fromPeers List<String>
    From peer
    med Number
    Med
    nexthops List<String>
    Nexthop
    routeTable String
    Route table
    safi String
    Safi

    GetLogicalRouterVrfBgpPolicyImportRuleMatchAddressPrefix

    Exact bool
    Exact
    Name string
    Name
    Exact bool
    Exact
    Name string
    Name
    exact Boolean
    Exact
    name String
    Name
    exact boolean
    Exact
    name string
    Name
    exact bool
    Exact
    name str
    Name
    exact Boolean
    Exact
    name String
    Name

    GetLogicalRouterVrfBgpPolicyImportRuleMatchAsPath

    Regex string
    Regex
    Regex string
    Regex
    regex String
    Regex
    regex string
    Regex
    regex str
    Regex
    regex String
    Regex

    GetLogicalRouterVrfBgpPolicyImportRuleMatchCommunity

    Regex string
    Regex
    Regex string
    Regex
    regex String
    Regex
    regex string
    Regex
    regex str
    Regex
    regex String
    Regex

    GetLogicalRouterVrfBgpPolicyImportRuleMatchExtendedCommunity

    Regex string
    Regex
    Regex string
    Regex
    regex String
    Regex
    regex string
    Regex
    regex str
    Regex
    regex String
    Regex

    GetLogicalRouterVrfBgpRedistRule

    AddressFamilyIdentifier string
    Address family identifier
    Enable bool
    Enable
    Metric int
    Metric
    Name string
    Name
    RouteTable string
    Route table
    SetAsPathLimit int
    Set as path limit
    SetCommunities List<string>
    Set community
    SetExtendedCommunities List<string>
    Set extended community
    SetLocalPreference int
    Set local preference
    SetMed int
    Set med
    SetOrigin string
    Set origin
    AddressFamilyIdentifier string
    Address family identifier
    Enable bool
    Enable
    Metric int
    Metric
    Name string
    Name
    RouteTable string
    Route table
    SetAsPathLimit int
    Set as path limit
    SetCommunities []string
    Set community
    SetExtendedCommunities []string
    Set extended community
    SetLocalPreference int
    Set local preference
    SetMed int
    Set med
    SetOrigin string
    Set origin
    addressFamilyIdentifier String
    Address family identifier
    enable Boolean
    Enable
    metric Integer
    Metric
    name String
    Name
    routeTable String
    Route table
    setAsPathLimit Integer
    Set as path limit
    setCommunities List<String>
    Set community
    setExtendedCommunities List<String>
    Set extended community
    setLocalPreference Integer
    Set local preference
    setMed Integer
    Set med
    setOrigin String
    Set origin
    addressFamilyIdentifier string
    Address family identifier
    enable boolean
    Enable
    metric number
    Metric
    name string
    Name
    routeTable string
    Route table
    setAsPathLimit number
    Set as path limit
    setCommunities string[]
    Set community
    setExtendedCommunities string[]
    Set extended community
    setLocalPreference number
    Set local preference
    setMed number
    Set med
    setOrigin string
    Set origin
    address_family_identifier str
    Address family identifier
    enable bool
    Enable
    metric int
    Metric
    name str
    Name
    route_table str
    Route table
    set_as_path_limit int
    Set as path limit
    set_communities Sequence[str]
    Set community
    set_extended_communities Sequence[str]
    Set extended community
    set_local_preference int
    Set local preference
    set_med int
    Set med
    set_origin str
    Set origin
    addressFamilyIdentifier String
    Address family identifier
    enable Boolean
    Enable
    metric Number
    Metric
    name String
    Name
    routeTable String
    Route table
    setAsPathLimit Number
    Set as path limit
    setCommunities List<String>
    Set community
    setExtendedCommunities List<String>
    Set extended community
    setLocalPreference Number
    Set local preference
    setMed Number
    Set med
    setOrigin String
    Set origin

    GetLogicalRouterVrfBgpRedistributionProfile

    GetLogicalRouterVrfBgpRedistributionProfileIpv4

    Unicast string
    Unicast
    Unicast string
    Unicast
    unicast String
    Unicast
    unicast string
    Unicast
    unicast str
    Unicast
    unicast String
    Unicast

    GetLogicalRouterVrfBgpRedistributionProfileIpv6

    Unicast string
    Unicast
    Unicast string
    Unicast
    unicast String
    Unicast
    unicast string
    Unicast
    unicast str
    Unicast
    unicast String
    Unicast

    GetLogicalRouterVrfEcmp

    Algorithm GetLogicalRouterVrfEcmpAlgorithm
    Algorithm
    Enable bool
    Enable
    MaxPath int
    Max path
    StrictSourcePath bool
    Strict source path
    SymmetricReturn bool
    Symmetric return
    Algorithm GetLogicalRouterVrfEcmpAlgorithm
    Algorithm
    Enable bool
    Enable
    MaxPath int
    Max path
    StrictSourcePath bool
    Strict source path
    SymmetricReturn bool
    Symmetric return
    algorithm GetLogicalRouterVrfEcmpAlgorithm
    Algorithm
    enable Boolean
    Enable
    maxPath Integer
    Max path
    strictSourcePath Boolean
    Strict source path
    symmetricReturn Boolean
    Symmetric return
    algorithm GetLogicalRouterVrfEcmpAlgorithm
    Algorithm
    enable boolean
    Enable
    maxPath number
    Max path
    strictSourcePath boolean
    Strict source path
    symmetricReturn boolean
    Symmetric return
    algorithm GetLogicalRouterVrfEcmpAlgorithm
    Algorithm
    enable bool
    Enable
    max_path int
    Max path
    strict_source_path bool
    Strict source path
    symmetric_return bool
    Symmetric return
    algorithm Property Map
    Algorithm
    enable Boolean
    Enable
    maxPath Number
    Max path
    strictSourcePath Boolean
    Strict source path
    symmetricReturn Boolean
    Symmetric return

    GetLogicalRouterVrfEcmpAlgorithm

    GetLogicalRouterVrfEcmpAlgorithmIpHash

    HashSeed int
    Hash seed
    SrcOnly bool
    Src only
    UsePort bool
    Use port
    HashSeed int
    Hash seed
    SrcOnly bool
    Src only
    UsePort bool
    Use port
    hashSeed Integer
    Hash seed
    srcOnly Boolean
    Src only
    usePort Boolean
    Use port
    hashSeed number
    Hash seed
    srcOnly boolean
    Src only
    usePort boolean
    Use port
    hash_seed int
    Hash seed
    src_only bool
    Src only
    use_port bool
    Use port
    hashSeed Number
    Hash seed
    srcOnly Boolean
    Src only
    usePort Boolean
    Use port

    GetLogicalRouterVrfEcmpAlgorithmWeightedRoundRobin

    GetLogicalRouterVrfEcmpAlgorithmWeightedRoundRobinInterface

    Name string
    Name
    Weight int
    Weight
    Name string
    Name
    Weight int
    Weight
    name String
    Name
    weight Integer
    Weight
    name string
    Name
    weight number
    Weight
    name str
    Name
    weight int
    Weight
    name String
    Name
    weight Number
    Weight

    GetLogicalRouterVrfMulticast

    GetLogicalRouterVrfMulticastIgmp

    GetLogicalRouterVrfMulticastIgmpDynamic

    GetLogicalRouterVrfMulticastIgmpDynamicInterface

    GroupFilter string
    Group filter
    MaxGroups string
    Max groups
    MaxSources string
    Max sources
    Name string
    Name
    QueryProfile string
    Query profile
    Robustness string
    Robustness
    RouterAlertPolicing bool
    Router alert policing
    Version string
    Version
    GroupFilter string
    Group filter
    MaxGroups string
    Max groups
    MaxSources string
    Max sources
    Name string
    Name
    QueryProfile string
    Query profile
    Robustness string
    Robustness
    RouterAlertPolicing bool
    Router alert policing
    Version string
    Version
    groupFilter String
    Group filter
    maxGroups String
    Max groups
    maxSources String
    Max sources
    name String
    Name
    queryProfile String
    Query profile
    robustness String
    Robustness
    routerAlertPolicing Boolean
    Router alert policing
    version String
    Version
    groupFilter string
    Group filter
    maxGroups string
    Max groups
    maxSources string
    Max sources
    name string
    Name
    queryProfile string
    Query profile
    robustness string
    Robustness
    routerAlertPolicing boolean
    Router alert policing
    version string
    Version
    group_filter str
    Group filter
    max_groups str
    Max groups
    max_sources str
    Max sources
    name str
    Name
    query_profile str
    Query profile
    robustness str
    Robustness
    router_alert_policing bool
    Router alert policing
    version str
    Version
    groupFilter String
    Group filter
    maxGroups String
    Max groups
    maxSources String
    Max sources
    name String
    Name
    queryProfile String
    Query profile
    robustness String
    Robustness
    routerAlertPolicing Boolean
    Router alert policing
    version String
    Version

    GetLogicalRouterVrfMulticastIgmpStatic

    GroupAddress string
    Group address
    Interface string
    Interface
    Name string
    Name
    SourceAddress string
    Source address
    GroupAddress string
    Group address
    Interface string
    Interface
    Name string
    Name
    SourceAddress string
    Source address
    groupAddress String
    Group address
    interface_ String
    Interface
    name String
    Name
    sourceAddress String
    Source address
    groupAddress string
    Group address
    interface string
    Interface
    name string
    Name
    sourceAddress string
    Source address
    group_address str
    Group address
    interface str
    Interface
    name str
    Name
    source_address str
    Source address
    groupAddress String
    Group address
    interface String
    Interface
    name String
    Name
    sourceAddress String
    Source address

    GetLogicalRouterVrfMulticastInterfaceGroup

    description String
    Description
    groupPermission Property Map
    Group permission
    igmp Property Map
    Igmp
    interfaces List<String>
    Interface
    name String
    Name
    pim Property Map
    Pim

    GetLogicalRouterVrfMulticastInterfaceGroupGroupPermission

    GetLogicalRouterVrfMulticastInterfaceGroupGroupPermissionAnySourceMulticast

    GroupAddress string
    Group address
    Included bool
    Included
    Name string
    Name
    GroupAddress string
    Group address
    Included bool
    Included
    Name string
    Name
    groupAddress String
    Group address
    included Boolean
    Included
    name String
    Name
    groupAddress string
    Group address
    included boolean
    Included
    name string
    Name
    group_address str
    Group address
    included bool
    Included
    name str
    Name
    groupAddress String
    Group address
    included Boolean
    Included
    name String
    Name

    GetLogicalRouterVrfMulticastInterfaceGroupGroupPermissionSourceSpecificMulticast

    GroupAddress string
    Group address
    Included bool
    Included
    Name string
    Name
    SourceAddress string
    Source address
    GroupAddress string
    Group address
    Included bool
    Included
    Name string
    Name
    SourceAddress string
    Source address
    groupAddress String
    Group address
    included Boolean
    Included
    name String
    Name
    sourceAddress String
    Source address
    groupAddress string
    Group address
    included boolean
    Included
    name string
    Name
    sourceAddress string
    Source address
    group_address str
    Group address
    included bool
    Included
    name str
    Name
    source_address str
    Source address
    groupAddress String
    Group address
    included Boolean
    Included
    name String
    Name
    sourceAddress String
    Source address

    GetLogicalRouterVrfMulticastInterfaceGroupIgmp

    Enable bool
    Enable
    ImmediateLeave bool
    Immediate leave
    LastMemberQueryInterval int
    Last member query interval
    MaxGroups string
    Max groups
    MaxQueryResponseTime int
    Max query response time
    MaxSources string
    Max sources
    Mode string
    Mode
    QueryInterval int
    Query interval
    Robustness string
    Robustness
    RouterAlertPolicing bool
    Router alert policing
    Version string
    Version
    Enable bool
    Enable
    ImmediateLeave bool
    Immediate leave
    LastMemberQueryInterval int
    Last member query interval
    MaxGroups string
    Max groups
    MaxQueryResponseTime int
    Max query response time
    MaxSources string
    Max sources
    Mode string
    Mode
    QueryInterval int
    Query interval
    Robustness string
    Robustness
    RouterAlertPolicing bool
    Router alert policing
    Version string
    Version
    enable Boolean
    Enable
    immediateLeave Boolean
    Immediate leave
    lastMemberQueryInterval Integer
    Last member query interval
    maxGroups String
    Max groups
    maxQueryResponseTime Integer
    Max query response time
    maxSources String
    Max sources
    mode String
    Mode
    queryInterval Integer
    Query interval
    robustness String
    Robustness
    routerAlertPolicing Boolean
    Router alert policing
    version String
    Version
    enable boolean
    Enable
    immediateLeave boolean
    Immediate leave
    lastMemberQueryInterval number
    Last member query interval
    maxGroups string
    Max groups
    maxQueryResponseTime number
    Max query response time
    maxSources string
    Max sources
    mode string
    Mode
    queryInterval number
    Query interval
    robustness string
    Robustness
    routerAlertPolicing boolean
    Router alert policing
    version string
    Version
    enable bool
    Enable
    immediate_leave bool
    Immediate leave
    last_member_query_interval int
    Last member query interval
    max_groups str
    Max groups
    max_query_response_time int
    Max query response time
    max_sources str
    Max sources
    mode str
    Mode
    query_interval int
    Query interval
    robustness str
    Robustness
    router_alert_policing bool
    Router alert policing
    version str
    Version
    enable Boolean
    Enable
    immediateLeave Boolean
    Immediate leave
    lastMemberQueryInterval Number
    Last member query interval
    maxGroups String
    Max groups
    maxQueryResponseTime Number
    Max query response time
    maxSources String
    Max sources
    mode String
    Mode
    queryInterval Number
    Query interval
    robustness String
    Robustness
    routerAlertPolicing Boolean
    Router alert policing
    version String
    Version

    GetLogicalRouterVrfMulticastInterfaceGroupPim

    AllowedNeighbors List<GetLogicalRouterVrfMulticastInterfaceGroupPimAllowedNeighbor>
    Allowed neighbors
    AssertInterval int
    Assert interval
    BsrBorder bool
    Bsr border
    DrPriority int
    Dr priority
    Enable bool
    Enable
    HelloInterval int
    Hello interval
    JoinPruneInterval int
    Join prune interval
    AllowedNeighbors []GetLogicalRouterVrfMulticastInterfaceGroupPimAllowedNeighbor
    Allowed neighbors
    AssertInterval int
    Assert interval
    BsrBorder bool
    Bsr border
    DrPriority int
    Dr priority
    Enable bool
    Enable
    HelloInterval int
    Hello interval
    JoinPruneInterval int
    Join prune interval
    allowedNeighbors List<GetLogicalRouterVrfMulticastInterfaceGroupPimAllowedNeighbor>
    Allowed neighbors
    assertInterval Integer
    Assert interval
    bsrBorder Boolean
    Bsr border
    drPriority Integer
    Dr priority
    enable Boolean
    Enable
    helloInterval Integer
    Hello interval
    joinPruneInterval Integer
    Join prune interval
    allowedNeighbors GetLogicalRouterVrfMulticastInterfaceGroupPimAllowedNeighbor[]
    Allowed neighbors
    assertInterval number
    Assert interval
    bsrBorder boolean
    Bsr border
    drPriority number
    Dr priority
    enable boolean
    Enable
    helloInterval number
    Hello interval
    joinPruneInterval number
    Join prune interval
    allowed_neighbors Sequence[GetLogicalRouterVrfMulticastInterfaceGroupPimAllowedNeighbor]
    Allowed neighbors
    assert_interval int
    Assert interval
    bsr_border bool
    Bsr border
    dr_priority int
    Dr priority
    enable bool
    Enable
    hello_interval int
    Hello interval
    join_prune_interval int
    Join prune interval
    allowedNeighbors List<Property Map>
    Allowed neighbors
    assertInterval Number
    Assert interval
    bsrBorder Boolean
    Bsr border
    drPriority Number
    Dr priority
    enable Boolean
    Enable
    helloInterval Number
    Hello interval
    joinPruneInterval Number
    Join prune interval

    GetLogicalRouterVrfMulticastInterfaceGroupPimAllowedNeighbor

    Name string
    Name
    Name string
    Name
    name String
    Name
    name string
    Name
    name str
    Name
    name String
    Name

    GetLogicalRouterVrfMulticastMsdp

    enable Boolean
    Enable
    globalAuthentication String
    Global authentication
    globalTimer String
    Global timer
    originatorId Property Map
    Originator id
    peers List<Property Map>
    Peer

    GetLogicalRouterVrfMulticastMsdpOriginatorId

    Interface string
    Interface
    Ip string
    Ip
    Interface string
    Interface
    Ip string
    Ip
    interface_ String
    Interface
    ip String
    Ip
    interface string
    Interface
    ip string
    Ip
    interface str
    Interface
    ip str
    Ip
    interface String
    Interface
    ip String
    Ip

    GetLogicalRouterVrfMulticastMsdpPeer

    Authentication string
    Authentication
    Enable bool
    Enable
    InboundSaFilter string
    Inbound sa filter
    LocalAddress GetLogicalRouterVrfMulticastMsdpPeerLocalAddress
    Local address
    MaxSa int
    Max sa
    Name string
    Name
    OutboundSaFilter string
    Outbound sa filter
    PeerAddress GetLogicalRouterVrfMulticastMsdpPeerPeerAddress
    Peer address
    PeerAs string
    Peer as
    Authentication string
    Authentication
    Enable bool
    Enable
    InboundSaFilter string
    Inbound sa filter
    LocalAddress GetLogicalRouterVrfMulticastMsdpPeerLocalAddress
    Local address
    MaxSa int
    Max sa
    Name string
    Name
    OutboundSaFilter string
    Outbound sa filter
    PeerAddress GetLogicalRouterVrfMulticastMsdpPeerPeerAddress
    Peer address
    PeerAs string
    Peer as
    authentication String
    Authentication
    enable Boolean
    Enable
    inboundSaFilter String
    Inbound sa filter
    localAddress GetLogicalRouterVrfMulticastMsdpPeerLocalAddress
    Local address
    maxSa Integer
    Max sa
    name String
    Name
    outboundSaFilter String
    Outbound sa filter
    peerAddress GetLogicalRouterVrfMulticastMsdpPeerPeerAddress
    Peer address
    peerAs String
    Peer as
    authentication string
    Authentication
    enable boolean
    Enable
    inboundSaFilter string
    Inbound sa filter
    localAddress GetLogicalRouterVrfMulticastMsdpPeerLocalAddress
    Local address
    maxSa number
    Max sa
    name string
    Name
    outboundSaFilter string
    Outbound sa filter
    peerAddress GetLogicalRouterVrfMulticastMsdpPeerPeerAddress
    Peer address
    peerAs string
    Peer as
    authentication str
    Authentication
    enable bool
    Enable
    inbound_sa_filter str
    Inbound sa filter
    local_address GetLogicalRouterVrfMulticastMsdpPeerLocalAddress
    Local address
    max_sa int
    Max sa
    name str
    Name
    outbound_sa_filter str
    Outbound sa filter
    peer_address GetLogicalRouterVrfMulticastMsdpPeerPeerAddress
    Peer address
    peer_as str
    Peer as
    authentication String
    Authentication
    enable Boolean
    Enable
    inboundSaFilter String
    Inbound sa filter
    localAddress Property Map
    Local address
    maxSa Number
    Max sa
    name String
    Name
    outboundSaFilter String
    Outbound sa filter
    peerAddress Property Map
    Peer address
    peerAs String
    Peer as

    GetLogicalRouterVrfMulticastMsdpPeerLocalAddress

    Interface string
    Interface
    Ip string
    Ip
    Interface string
    Interface
    Ip string
    Ip
    interface_ String
    Interface
    ip String
    Ip
    interface string
    Interface
    ip string
    Ip
    interface str
    Interface
    ip str
    Ip
    interface String
    Interface
    ip String
    Ip

    GetLogicalRouterVrfMulticastMsdpPeerPeerAddress

    Fqdn string
    Fqdn
    Ip string
    Ip
    Fqdn string
    Fqdn
    Ip string
    Ip
    fqdn String
    Fqdn
    ip String
    Ip
    fqdn string
    Fqdn
    ip string
    Ip
    fqdn str
    Fqdn
    ip str
    Ip
    fqdn String
    Fqdn
    ip String
    Ip

    GetLogicalRouterVrfMulticastPim

    enable Boolean
    Enable
    groupPermission String
    Group permission
    ifTimerGlobal String
    If timer global
    interfaces List<Property Map>
    Interface
    routeAgeoutTime Number
    Route ageout time
    rp Property Map
    Rp
    rpfLookupMode String
    Rpf lookup mode
    sptThresholds List<Property Map>
    Spt threshold
    ssmAddressSpace Property Map
    Ssm address space

    GetLogicalRouterVrfMulticastPimInterface

    Description string
    Description
    DrPriority int
    Dr priority
    IfTimer string
    If timer
    Name string
    Name
    NeighborFilter string
    Neighbor filter
    SendBsm bool
    Send bsm
    Description string
    Description
    DrPriority int
    Dr priority
    IfTimer string
    If timer
    Name string
    Name
    NeighborFilter string
    Neighbor filter
    SendBsm bool
    Send bsm
    description String
    Description
    drPriority Integer
    Dr priority
    ifTimer String
    If timer
    name String
    Name
    neighborFilter String
    Neighbor filter
    sendBsm Boolean
    Send bsm
    description string
    Description
    drPriority number
    Dr priority
    ifTimer string
    If timer
    name string
    Name
    neighborFilter string
    Neighbor filter
    sendBsm boolean
    Send bsm
    description str
    Description
    dr_priority int
    Dr priority
    if_timer str
    If timer
    name str
    Name
    neighbor_filter str
    Neighbor filter
    send_bsm bool
    Send bsm
    description String
    Description
    drPriority Number
    Dr priority
    ifTimer String
    If timer
    name String
    Name
    neighborFilter String
    Neighbor filter
    sendBsm Boolean
    Send bsm

    GetLogicalRouterVrfMulticastPimRp

    GetLogicalRouterVrfMulticastPimRpExternalRp

    GroupList string
    Group list
    Name string
    Name
    Override bool
    Override
    GroupList string
    Group list
    Name string
    Name
    Override bool
    Override
    groupList String
    Group list
    name String
    Name
    override Boolean
    Override
    groupList string
    Group list
    name string
    Name
    override boolean
    Override
    group_list str
    Group list
    name str
    Name
    override bool
    Override
    groupList String
    Group list
    name String
    Name
    override Boolean
    Override

    GetLogicalRouterVrfMulticastPimRpLocalRp

    GetLogicalRouterVrfMulticastPimRpLocalRpCandidateRp

    Address string
    Address
    AdvertisementInterval int
    Advertisement interval
    GroupList string
    Group list
    Interface string
    Interface
    Priority int
    Priority
    Address string
    Address
    AdvertisementInterval int
    Advertisement interval
    GroupList string
    Group list
    Interface string
    Interface
    Priority int
    Priority
    address String
    Address
    advertisementInterval Integer
    Advertisement interval
    groupList String
    Group list
    interface_ String
    Interface
    priority Integer
    Priority
    address string
    Address
    advertisementInterval number
    Advertisement interval
    groupList string
    Group list
    interface string
    Interface
    priority number
    Priority
    address str
    Address
    int
    Advertisement interval
    group_list str
    Group list
    interface str
    Interface
    priority int
    Priority
    address String
    Address
    advertisementInterval Number
    Advertisement interval
    groupList String
    Group list
    interface String
    Interface
    priority Number
    Priority

    GetLogicalRouterVrfMulticastPimRpLocalRpStaticRp

    Address string
    Address
    GroupList string
    Group list
    Interface string
    Interface
    Override bool
    Override
    Address string
    Address
    GroupList string
    Group list
    Interface string
    Interface
    Override bool
    Override
    address String
    Address
    groupList String
    Group list
    interface_ String
    Interface
    override Boolean
    Override
    address string
    Address
    groupList string
    Group list
    interface string
    Interface
    override boolean
    Override
    address str
    Address
    group_list str
    Group list
    interface str
    Interface
    override bool
    Override
    address String
    Address
    groupList String
    Group list
    interface String
    Interface
    override Boolean
    Override

    GetLogicalRouterVrfMulticastPimSptThreshold

    Name string
    Name
    Threshold string
    Threshold
    Name string
    Name
    Threshold string
    Threshold
    name String
    Name
    threshold String
    Threshold
    name string
    Name
    threshold string
    Threshold
    name str
    Name
    threshold str
    Threshold
    name String
    Name
    threshold String
    Threshold

    GetLogicalRouterVrfMulticastPimSsmAddressSpace

    GroupList string
    Group list
    GroupList string
    Group list
    groupList String
    Group list
    groupList string
    Group list
    group_list str
    Group list
    groupList String
    Group list

    GetLogicalRouterVrfMulticastRp

    GetLogicalRouterVrfMulticastRpExternalRp

    GroupAddresses List<string>
    Group addresses
    Name string
    Name
    Override bool
    Override
    GroupAddresses []string
    Group addresses
    Name string
    Name
    Override bool
    Override
    groupAddresses List<String>
    Group addresses
    name String
    Name
    override Boolean
    Override
    groupAddresses string[]
    Group addresses
    name string
    Name
    override boolean
    Override
    group_addresses Sequence[str]
    Group addresses
    name str
    Name
    override bool
    Override
    groupAddresses List<String>
    Group addresses
    name String
    Name
    override Boolean
    Override

    GetLogicalRouterVrfMulticastRpLocalRp

    GetLogicalRouterVrfMulticastRpLocalRpCandidateRp

    Address string
    Address
    AdvertisementInterval int
    Advertisement interval
    GroupAddresses List<string>
    Group addresses
    Interface string
    Interface
    Priority int
    Priority
    Address string
    Address
    AdvertisementInterval int
    Advertisement interval
    GroupAddresses []string
    Group addresses
    Interface string
    Interface
    Priority int
    Priority
    address String
    Address
    advertisementInterval Integer
    Advertisement interval
    groupAddresses List<String>
    Group addresses
    interface_ String
    Interface
    priority Integer
    Priority
    address string
    Address
    advertisementInterval number
    Advertisement interval
    groupAddresses string[]
    Group addresses
    interface string
    Interface
    priority number
    Priority
    address str
    Address
    int
    Advertisement interval
    group_addresses Sequence[str]
    Group addresses
    interface str
    Interface
    priority int
    Priority
    address String
    Address
    advertisementInterval Number
    Advertisement interval
    groupAddresses List<String>
    Group addresses
    interface String
    Interface
    priority Number
    Priority

    GetLogicalRouterVrfMulticastRpLocalRpStaticRp

    Address string
    Address
    GroupAddresses List<string>
    Group addresses
    Interface string
    Interface
    Override bool
    Override
    Address string
    Address
    GroupAddresses []string
    Group addresses
    Interface string
    Interface
    Override bool
    Override
    address String
    Address
    groupAddresses List<String>
    Group addresses
    interface_ String
    Interface
    override Boolean
    Override
    address string
    Address
    groupAddresses string[]
    Group addresses
    interface string
    Interface
    override boolean
    Override
    address str
    Address
    group_addresses Sequence[str]
    Group addresses
    interface str
    Interface
    override bool
    Override
    address String
    Address
    groupAddresses List<String>
    Group addresses
    interface String
    Interface
    override Boolean
    Override

    GetLogicalRouterVrfMulticastSptThreshold

    Name string
    Name
    Threshold string
    Threshold
    Name string
    Name
    Threshold string
    Threshold
    name String
    Name
    threshold String
    Threshold
    name string
    Name
    threshold string
    Threshold
    name str
    Name
    threshold str
    Threshold
    name String
    Name
    threshold String
    Threshold

    GetLogicalRouterVrfMulticastSsmAddressSpace

    GroupAddress string
    Group address
    Included bool
    Included
    Name string
    Name
    GroupAddress string
    Group address
    Included bool
    Included
    Name string
    Name
    groupAddress String
    Group address
    included Boolean
    Included
    name String
    Name
    groupAddress string
    Group address
    included boolean
    Included
    name string
    Name
    group_address str
    Group address
    included bool
    Included
    name str
    Name
    groupAddress String
    Group address
    included Boolean
    Included
    name String
    Name

    GetLogicalRouterVrfMulticastStaticRoute

    Destination string
    Destination
    Interface string
    Interface
    Name string
    Name
    Nexthop GetLogicalRouterVrfMulticastStaticRouteNexthop
    Nexthop
    Preference int
    Preference
    Destination string
    Destination
    Interface string
    Interface
    Name string
    Name
    Nexthop GetLogicalRouterVrfMulticastStaticRouteNexthop
    Nexthop
    Preference int
    Preference
    destination String
    Destination
    interface_ String
    Interface
    name String
    Name
    nexthop GetLogicalRouterVrfMulticastStaticRouteNexthop
    Nexthop
    preference Integer
    Preference
    destination string
    Destination
    interface string
    Interface
    name string
    Name
    nexthop GetLogicalRouterVrfMulticastStaticRouteNexthop
    Nexthop
    preference number
    Preference
    destination str
    Destination
    interface str
    Interface
    name str
    Name
    nexthop GetLogicalRouterVrfMulticastStaticRouteNexthop
    Nexthop
    preference int
    Preference
    destination String
    Destination
    interface String
    Interface
    name String
    Name
    nexthop Property Map
    Nexthop
    preference Number
    Preference

    GetLogicalRouterVrfMulticastStaticRouteNexthop

    IpAddress string
    Ip address
    IpAddress string
    Ip address
    ipAddress String
    Ip address
    ipAddress string
    Ip address
    ip_address str
    Ip address
    ipAddress String
    Ip address

    GetLogicalRouterVrfOspf

    allowRedistDefaultRoute Boolean
    Allow redist default route
    areas List<Property Map>
    Area
    authProfiles List<Property Map>
    Auth profile
    enable Boolean
    Enable
    exportRules List<Property Map>
    Export rules
    floodPrevention Property Map
    Flood prevention
    globalBfd Property Map
    Global bfd
    globalIfTimer String
    Global if timer
    gracefulRestart Property Map
    Graceful restart
    redistributionProfile String
    Redistribution profile
    rejectDefaultRoute Boolean
    Reject default route
    rfc1583 Boolean
    Rfc1583
    routerId String
    Router id
    spfTimer String
    Spf timer
    vrTimers Property Map
    Vr timers

    GetLogicalRouterVrfOspfArea

    GetLogicalRouterVrfOspfAreaInterface

    authentication String
    Authentication
    bfd GetLogicalRouterVrfOspfAreaInterfaceBfd
    Bfd
    enable Boolean
    Enable
    linkType GetLogicalRouterVrfOspfAreaInterfaceLinkType
    Link type
    metric Integer
    Metric
    mtuIgnore Boolean
    Mtu ignore
    name String
    Name
    passive Boolean
    Passive
    priority Integer
    Priority
    timing String
    Timing
    vrTiming GetLogicalRouterVrfOspfAreaInterfaceVrTiming
    Vr timing
    authentication string
    Authentication
    bfd GetLogicalRouterVrfOspfAreaInterfaceBfd
    Bfd
    enable boolean
    Enable
    linkType GetLogicalRouterVrfOspfAreaInterfaceLinkType
    Link type
    metric number
    Metric
    mtuIgnore boolean
    Mtu ignore
    name string
    Name
    passive boolean
    Passive
    priority number
    Priority
    timing string
    Timing
    vrTiming GetLogicalRouterVrfOspfAreaInterfaceVrTiming
    Vr timing
    authentication String
    Authentication
    bfd Property Map
    Bfd
    enable Boolean
    Enable
    linkType Property Map
    Link type
    metric Number
    Metric
    mtuIgnore Boolean
    Mtu ignore
    name String
    Name
    passive Boolean
    Passive
    priority Number
    Priority
    timing String
    Timing
    vrTiming Property Map
    Vr timing

    GetLogicalRouterVrfOspfAreaInterfaceBfd

    Profile string
    Profile
    Profile string
    Profile
    profile String
    Profile
    profile string
    Profile
    profile str
    Profile
    profile String
    Profile

    GetLogicalRouterVrfOspfAreaInterfaceLinkType

    GetLogicalRouterVrfOspfAreaInterfaceLinkTypeP2mp

    GetLogicalRouterVrfOspfAreaInterfaceLinkTypeP2mpNeighbor

    Name string
    Name
    Priority int
    Priority
    Name string
    Name
    Priority int
    Priority
    name String
    Name
    priority Integer
    Priority
    name string
    Name
    priority number
    Priority
    name str
    Name
    priority int
    Priority
    name String
    Name
    priority Number
    Priority

    GetLogicalRouterVrfOspfAreaInterfaceVrTiming

    DeadCounts int
    Dead counts
    GrDelay int
    Gr delay
    HelloInterval int
    Hello interval
    RetransmitInterval int
    Retransmit interval
    TransitDelay int
    Transit delay
    DeadCounts int
    Dead counts
    GrDelay int
    Gr delay
    HelloInterval int
    Hello interval
    RetransmitInterval int
    Retransmit interval
    TransitDelay int
    Transit delay
    deadCounts Integer
    Dead counts
    grDelay Integer
    Gr delay
    helloInterval Integer
    Hello interval
    retransmitInterval Integer
    Retransmit interval
    transitDelay Integer
    Transit delay
    deadCounts number
    Dead counts
    grDelay number
    Gr delay
    helloInterval number
    Hello interval
    retransmitInterval number
    Retransmit interval
    transitDelay number
    Transit delay
    dead_counts int
    Dead counts
    gr_delay int
    Gr delay
    hello_interval int
    Hello interval
    retransmit_interval int
    Retransmit interval
    transit_delay int
    Transit delay
    deadCounts Number
    Dead counts
    grDelay Number
    Gr delay
    helloInterval Number
    Hello interval
    retransmitInterval Number
    Retransmit interval
    transitDelay Number
    Transit delay

    GetLogicalRouterVrfOspfAreaRange

    bool
    Advertise
    Name string
    Name
    Substitute string
    Substitute
    bool
    Advertise
    Name string
    Name
    Substitute string
    Substitute
    Boolean
    Advertise
    name String
    Name
    substitute String
    Substitute
    boolean
    Advertise
    name string
    Name
    substitute string
    Substitute
    bool
    Advertise
    name str
    Name
    substitute str
    Substitute
    Boolean
    Advertise
    name String
    Name
    substitute String
    Substitute

    GetLogicalRouterVrfOspfAreaType

    GetLogicalRouterVrfOspfAreaTypeNormal

    GetLogicalRouterVrfOspfAreaTypeNormalAbr

    ExportList string
    Export list
    ImportList string
    Import list
    InboundFilterList string
    Inbound filter list
    OutboundFilterList string
    Outbound filter list
    ExportList string
    Export list
    ImportList string
    Import list
    InboundFilterList string
    Inbound filter list
    OutboundFilterList string
    Outbound filter list
    exportList String
    Export list
    importList String
    Import list
    inboundFilterList String
    Inbound filter list
    outboundFilterList String
    Outbound filter list
    exportList string
    Export list
    importList string
    Import list
    inboundFilterList string
    Inbound filter list
    outboundFilterList string
    Outbound filter list
    export_list str
    Export list
    import_list str
    Import list
    inbound_filter_list str
    Inbound filter list
    outbound_filter_list str
    Outbound filter list
    exportList String
    Export list
    importList String
    Import list
    inboundFilterList String
    Inbound filter list
    outboundFilterList String
    Outbound filter list

    GetLogicalRouterVrfOspfAreaTypeNssa

    abr Property Map
    Abr
    acceptSummary Boolean
    Accept summary
    defaultInformationOriginate Property Map
    Default information originate
    defaultRoute Property Map
    Default route
    noSummary Boolean
    No summary
    nssaExtRanges List<Property Map>
    Nssa ext range

    GetLogicalRouterVrfOspfAreaTypeNssaAbr

    ExportList string
    Export list
    ImportList string
    Import list
    InboundFilterList string
    Inbound filter list
    NssaExtRanges List<GetLogicalRouterVrfOspfAreaTypeNssaAbrNssaExtRange>
    Nssa ext range
    OutboundFilterList string
    Outbound filter list
    ExportList string
    Export list
    ImportList string
    Import list
    InboundFilterList string
    Inbound filter list
    NssaExtRanges []GetLogicalRouterVrfOspfAreaTypeNssaAbrNssaExtRange
    Nssa ext range
    OutboundFilterList string
    Outbound filter list
    exportList String
    Export list
    importList String
    Import list
    inboundFilterList String
    Inbound filter list
    nssaExtRanges List<GetLogicalRouterVrfOspfAreaTypeNssaAbrNssaExtRange>
    Nssa ext range
    outboundFilterList String
    Outbound filter list
    exportList string
    Export list
    importList string
    Import list
    inboundFilterList string
    Inbound filter list
    nssaExtRanges GetLogicalRouterVrfOspfAreaTypeNssaAbrNssaExtRange[]
    Nssa ext range
    outboundFilterList string
    Outbound filter list
    export_list str
    Export list
    import_list str
    Import list
    inbound_filter_list str
    Inbound filter list
    nssa_ext_ranges Sequence[GetLogicalRouterVrfOspfAreaTypeNssaAbrNssaExtRange]
    Nssa ext range
    outbound_filter_list str
    Outbound filter list
    exportList String
    Export list
    importList String
    Import list
    inboundFilterList String
    Inbound filter list
    nssaExtRanges List<Property Map>
    Nssa ext range
    outboundFilterList String
    Outbound filter list

    GetLogicalRouterVrfOspfAreaTypeNssaAbrNssaExtRange

    bool
    Advertise
    Name string
    Name
    RouteTag int
    Route tag
    bool
    Advertise
    Name string
    Name
    RouteTag int
    Route tag
    Boolean
    Advertise
    name String
    Name
    routeTag Integer
    Route tag
    boolean
    Advertise
    name string
    Name
    routeTag number
    Route tag
    bool
    Advertise
    name str
    Name
    route_tag int
    Route tag
    Boolean
    Advertise
    name String
    Name
    routeTag Number
    Route tag

    GetLogicalRouterVrfOspfAreaTypeNssaDefaultInformationOriginate

    Metric int
    Metric
    MetricType string
    Metric type
    Metric int
    Metric
    MetricType string
    Metric type
    metric Integer
    Metric
    metricType String
    Metric type
    metric number
    Metric
    metricType string
    Metric type
    metric int
    Metric
    metric_type str
    Metric type
    metric Number
    Metric
    metricType String
    Metric type

    GetLogicalRouterVrfOspfAreaTypeNssaDefaultRoute

    GetLogicalRouterVrfOspfAreaTypeNssaDefaultRouteAdvertise

    Metric int
    Metric
    Type string
    Type
    Metric int
    Metric
    Type string
    Type
    metric Integer
    Metric
    type String
    Type
    metric number
    Metric
    type string
    Type
    metric int
    Metric
    type str
    Type
    metric Number
    Metric
    type String
    Type

    GetLogicalRouterVrfOspfAreaTypeNssaNssaExtRange

    Property Map
    Advertise
    name String
    Name
    suppress Property Map
    Suppress

    GetLogicalRouterVrfOspfAreaTypeStub

    abr Property Map
    Abr
    acceptSummary Boolean
    Accept summary
    defaultRoute Property Map
    Default route
    defaultRouteMetric Number
    Default route metric
    noSummary Boolean
    No summary

    GetLogicalRouterVrfOspfAreaTypeStubAbr

    ExportList string
    Export list
    ImportList string
    Import list
    InboundFilterList string
    Inbound filter list
    OutboundFilterList string
    Outbound filter list
    ExportList string
    Export list
    ImportList string
    Import list
    InboundFilterList string
    Inbound filter list
    OutboundFilterList string
    Outbound filter list
    exportList String
    Export list
    importList String
    Import list
    inboundFilterList String
    Inbound filter list
    outboundFilterList String
    Outbound filter list
    exportList string
    Export list
    importList string
    Import list
    inboundFilterList string
    Inbound filter list
    outboundFilterList string
    Outbound filter list
    export_list str
    Export list
    import_list str
    Import list
    inbound_filter_list str
    Inbound filter list
    outbound_filter_list str
    Outbound filter list
    exportList String
    Export list
    importList String
    Import list
    inboundFilterList String
    Inbound filter list
    outboundFilterList String
    Outbound filter list

    GetLogicalRouterVrfOspfAreaTypeStubDefaultRoute

    GetLogicalRouterVrfOspfAreaTypeStubDefaultRouteAdvertise

    Metric int
    Metric
    Metric int
    Metric
    metric Integer
    Metric
    metric number
    Metric
    metric int
    Metric
    metric Number
    Metric
    Authentication string
    Authentication
    Bfd GetLogicalRouterVrfOspfAreaVirtualLinkBfd
    Bfd
    Enable bool
    Enable
    InstanceId int
    Instance id
    InterfaceId int
    Interface id
    Name string
    Name
    NeighborId string
    Neighbor id
    Passive bool
    Passive
    Timing string
    Timing
    TransitAreaId string
    Transit area id
    VrTiming GetLogicalRouterVrfOspfAreaVirtualLinkVrTiming
    Vr timing
    Authentication string
    Authentication
    Bfd GetLogicalRouterVrfOspfAreaVirtualLinkBfd
    Bfd
    Enable bool
    Enable
    InstanceId int
    Instance id
    InterfaceId int
    Interface id
    Name string
    Name
    NeighborId string
    Neighbor id
    Passive bool
    Passive
    Timing string
    Timing
    TransitAreaId string
    Transit area id
    VrTiming GetLogicalRouterVrfOspfAreaVirtualLinkVrTiming
    Vr timing
    authentication String
    Authentication
    bfd GetLogicalRouterVrfOspfAreaVirtualLinkBfd
    Bfd
    enable Boolean
    Enable
    instanceId Integer
    Instance id
    interfaceId Integer
    Interface id
    name String
    Name
    neighborId String
    Neighbor id
    passive Boolean
    Passive
    timing String
    Timing
    transitAreaId String
    Transit area id
    vrTiming GetLogicalRouterVrfOspfAreaVirtualLinkVrTiming
    Vr timing
    authentication string
    Authentication
    bfd GetLogicalRouterVrfOspfAreaVirtualLinkBfd
    Bfd
    enable boolean
    Enable
    instanceId number
    Instance id
    interfaceId number
    Interface id
    name string
    Name
    neighborId string
    Neighbor id
    passive boolean
    Passive
    timing string
    Timing
    transitAreaId string
    Transit area id
    vrTiming GetLogicalRouterVrfOspfAreaVirtualLinkVrTiming
    Vr timing
    authentication str
    Authentication
    bfd GetLogicalRouterVrfOspfAreaVirtualLinkBfd
    Bfd
    enable bool
    Enable
    instance_id int
    Instance id
    interface_id int
    Interface id
    name str
    Name
    neighbor_id str
    Neighbor id
    passive bool
    Passive
    timing str
    Timing
    transit_area_id str
    Transit area id
    vr_timing GetLogicalRouterVrfOspfAreaVirtualLinkVrTiming
    Vr timing
    authentication String
    Authentication
    bfd Property Map
    Bfd
    enable Boolean
    Enable
    instanceId Number
    Instance id
    interfaceId Number
    Interface id
    name String
    Name
    neighborId String
    Neighbor id
    passive Boolean
    Passive
    timing String
    Timing
    transitAreaId String
    Transit area id
    vrTiming Property Map
    Vr timing

    GetLogicalRouterVrfOspfAreaVirtualLinkBfd

    Profile string
    Profile
    Profile string
    Profile
    profile String
    Profile
    profile string
    Profile
    profile str
    Profile
    profile String
    Profile

    GetLogicalRouterVrfOspfAreaVirtualLinkVrTiming

    DeadCounts int
    Dead counts
    HelloInterval int
    Hello interval
    RetransmitInterval int
    Retransmit interval
    TransitDelay int
    Transit delay
    DeadCounts int
    Dead counts
    HelloInterval int
    Hello interval
    RetransmitInterval int
    Retransmit interval
    TransitDelay int
    Transit delay
    deadCounts Integer
    Dead counts
    helloInterval Integer
    Hello interval
    retransmitInterval Integer
    Retransmit interval
    transitDelay Integer
    Transit delay
    deadCounts number
    Dead counts
    helloInterval number
    Hello interval
    retransmitInterval number
    Retransmit interval
    transitDelay number
    Transit delay
    dead_counts int
    Dead counts
    hello_interval int
    Hello interval
    retransmit_interval int
    Retransmit interval
    transit_delay int
    Transit delay
    deadCounts Number
    Dead counts
    helloInterval Number
    Hello interval
    retransmitInterval Number
    Retransmit interval
    transitDelay Number
    Transit delay

    GetLogicalRouterVrfOspfAreaVrRange

    Property Map
    Advertise
    name String
    Name
    suppress Property Map
    Suppress

    GetLogicalRouterVrfOspfAuthProfile

    md5s List<Property Map>
    Md5
    name String
    Name
    password String
    Password

    GetLogicalRouterVrfOspfAuthProfileMd5

    Key string
    Key
    Name double
    Name
    Preferred bool
    Preferred
    Key string
    Key
    Name float64
    Name
    Preferred bool
    Preferred
    key String
    Key
    name Double
    Name
    preferred Boolean
    Preferred
    key string
    Key
    name number
    Name
    preferred boolean
    Preferred
    key str
    Key
    name float
    Name
    preferred bool
    Preferred
    key String
    Key
    name Number
    Name
    preferred Boolean
    Preferred

    GetLogicalRouterVrfOspfExportRule

    Metric int
    Metric
    Name string
    Name
    NewPathType string
    New path type
    NewTag string
    New tag
    Metric int
    Metric
    Name string
    Name
    NewPathType string
    New path type
    NewTag string
    New tag
    metric Integer
    Metric
    name String
    Name
    newPathType String
    New path type
    newTag String
    New tag
    metric number
    Metric
    name string
    Name
    newPathType string
    New path type
    newTag string
    New tag
    metric int
    Metric
    name str
    Name
    new_path_type str
    New path type
    new_tag str
    New tag
    metric Number
    Metric
    name String
    Name
    newPathType String
    New path type
    newTag String
    New tag

    GetLogicalRouterVrfOspfFloodPrevention

    GetLogicalRouterVrfOspfFloodPreventionHello

    Enable bool
    Enable
    MaxPacket int
    Max packet
    Enable bool
    Enable
    MaxPacket int
    Max packet
    enable Boolean
    Enable
    maxPacket Integer
    Max packet
    enable boolean
    Enable
    maxPacket number
    Max packet
    enable bool
    Enable
    max_packet int
    Max packet
    enable Boolean
    Enable
    maxPacket Number
    Max packet

    GetLogicalRouterVrfOspfFloodPreventionLsa

    Enable bool
    Enable
    MaxPacket int
    Max packet
    Enable bool
    Enable
    MaxPacket int
    Max packet
    enable Boolean
    Enable
    maxPacket Integer
    Max packet
    enable boolean
    Enable
    maxPacket number
    Max packet
    enable bool
    Enable
    max_packet int
    Max packet
    enable Boolean
    Enable
    maxPacket Number
    Max packet

    GetLogicalRouterVrfOspfGlobalBfd

    Profile string
    Profile
    Profile string
    Profile
    profile String
    Profile
    profile string
    Profile
    profile str
    Profile
    profile String
    Profile

    GetLogicalRouterVrfOspfGracefulRestart

    Enable bool
    Enable
    GracePeriod int
    Grace period
    HelperEnable bool
    Helper enable
    MaxNeighborRestartTime int
    Max neighbor restart time
    StrictLsaChecking bool
    Strict l s a checking
    Enable bool
    Enable
    GracePeriod int
    Grace period
    HelperEnable bool
    Helper enable
    MaxNeighborRestartTime int
    Max neighbor restart time
    StrictLsaChecking bool
    Strict l s a checking
    enable Boolean
    Enable
    gracePeriod Integer
    Grace period
    helperEnable Boolean
    Helper enable
    maxNeighborRestartTime Integer
    Max neighbor restart time
    strictLsaChecking Boolean
    Strict l s a checking
    enable boolean
    Enable
    gracePeriod number
    Grace period
    helperEnable boolean
    Helper enable
    maxNeighborRestartTime number
    Max neighbor restart time
    strictLsaChecking boolean
    Strict l s a checking
    enable bool
    Enable
    grace_period int
    Grace period
    helper_enable bool
    Helper enable
    max_neighbor_restart_time int
    Max neighbor restart time
    strict_lsa_checking bool
    Strict l s a checking
    enable Boolean
    Enable
    gracePeriod Number
    Grace period
    helperEnable Boolean
    Helper enable
    maxNeighborRestartTime Number
    Max neighbor restart time
    strictLsaChecking Boolean
    Strict l s a checking

    GetLogicalRouterVrfOspfVrTimers

    LsaInterval int
    Lsa interval
    SpfCalculationDelay int
    Spf calculation delay
    LsaInterval int
    Lsa interval
    SpfCalculationDelay int
    Spf calculation delay
    lsaInterval Integer
    Lsa interval
    spfCalculationDelay Integer
    Spf calculation delay
    lsaInterval number
    Lsa interval
    spfCalculationDelay number
    Spf calculation delay
    lsa_interval int
    Lsa interval
    spf_calculation_delay int
    Spf calculation delay
    lsaInterval Number
    Lsa interval
    spfCalculationDelay Number
    Spf calculation delay

    GetLogicalRouterVrfOspfv3

    allowRedistDefaultRoute Boolean
    Allow redist default route
    areas List<Property Map>
    Area
    authProfiles List<Property Map>
    Auth profile
    disableTransitTraffic Boolean
    Disable transit traffic
    enable Boolean
    Enable
    exportRules List<Property Map>
    Export rules
    globalBfd Property Map
    Global bfd
    globalIfTimer String
    Global if timer
    gracefulRestart Property Map
    Graceful restart
    redistributionProfile String
    Redistribution profile
    rejectDefaultRoute Boolean
    Reject default route
    routerId String
    Router id
    spfTimer String
    Spf timer
    vrTimers Property Map
    Vr timers

    GetLogicalRouterVrfOspfv3Area

    GetLogicalRouterVrfOspfv3AreaInterface

    authentication String
    Authentication
    bfd Property Map
    Bfd
    enable Boolean
    Enable
    instanceId Number
    Instance id
    linkType Property Map
    Link type
    metric Number
    Metric
    mtuIgnore Boolean
    Mtu ignore
    name String
    Name
    neighbors List<Property Map>
    Neighbor
    passive Boolean
    Passive
    priority Number
    Priority
    timing String
    Timing
    vrTiming Property Map
    Vr timing

    GetLogicalRouterVrfOspfv3AreaInterfaceBfd

    Profile string
    Profile
    Profile string
    Profile
    profile String
    Profile
    profile string
    Profile
    profile str
    Profile
    profile String
    Profile

    GetLogicalRouterVrfOspfv3AreaInterfaceLinkType

    GetLogicalRouterVrfOspfv3AreaInterfaceLinkTypeP2mp

    GetLogicalRouterVrfOspfv3AreaInterfaceLinkTypeP2mpNeighbor

    Name string
    Name
    Priority int
    Priority
    Name string
    Name
    Priority int
    Priority
    name String
    Name
    priority Integer
    Priority
    name string
    Name
    priority number
    Priority
    name str
    Name
    priority int
    Priority
    name String
    Name
    priority Number
    Priority

    GetLogicalRouterVrfOspfv3AreaInterfaceNeighbor

    Name string
    Name
    Name string
    Name
    name String
    Name
    name string
    Name
    name str
    Name
    name String
    Name

    GetLogicalRouterVrfOspfv3AreaInterfaceVrTiming

    DeadCounts int
    Dead counts
    GrDelay int
    Gr delay
    HelloInterval int
    Hello interval
    RetransmitInterval int
    Retransmit interval
    TransitDelay int
    Transit delay
    DeadCounts int
    Dead counts
    GrDelay int
    Gr delay
    HelloInterval int
    Hello interval
    RetransmitInterval int
    Retransmit interval
    TransitDelay int
    Transit delay
    deadCounts Integer
    Dead counts
    grDelay Integer
    Gr delay
    helloInterval Integer
    Hello interval
    retransmitInterval Integer
    Retransmit interval
    transitDelay Integer
    Transit delay
    deadCounts number
    Dead counts
    grDelay number
    Gr delay
    helloInterval number
    Hello interval
    retransmitInterval number
    Retransmit interval
    transitDelay number
    Transit delay
    dead_counts int
    Dead counts
    gr_delay int
    Gr delay
    hello_interval int
    Hello interval
    retransmit_interval int
    Retransmit interval
    transit_delay int
    Transit delay
    deadCounts Number
    Dead counts
    grDelay Number
    Gr delay
    helloInterval Number
    Hello interval
    retransmitInterval Number
    Retransmit interval
    transitDelay Number
    Transit delay

    GetLogicalRouterVrfOspfv3AreaRange

    bool
    Advertise
    Name string
    Name
    bool
    Advertise
    Name string
    Name
    Boolean
    Advertise
    name String
    Name
    boolean
    Advertise
    name string
    Name
    bool
    Advertise
    name str
    Name
    Boolean
    Advertise
    name String
    Name

    GetLogicalRouterVrfOspfv3AreaType

    GetLogicalRouterVrfOspfv3AreaTypeNormal

    GetLogicalRouterVrfOspfv3AreaTypeNormalAbr

    ExportList string
    Export list
    ImportList string
    Import list
    InboundFilterList string
    Inbound filter list
    OutboundFilterList string
    Outbound filter list
    ExportList string
    Export list
    ImportList string
    Import list
    InboundFilterList string
    Inbound filter list
    OutboundFilterList string
    Outbound filter list
    exportList String
    Export list
    importList String
    Import list
    inboundFilterList String
    Inbound filter list
    outboundFilterList String
    Outbound filter list
    exportList string
    Export list
    importList string
    Import list
    inboundFilterList string
    Inbound filter list
    outboundFilterList string
    Outbound filter list
    export_list str
    Export list
    import_list str
    Import list
    inbound_filter_list str
    Inbound filter list
    outbound_filter_list str
    Outbound filter list
    exportList String
    Export list
    importList String
    Import list
    inboundFilterList String
    Inbound filter list
    outboundFilterList String
    Outbound filter list

    GetLogicalRouterVrfOspfv3AreaTypeNssa

    abr Property Map
    Abr
    acceptSummary Boolean
    Accept summary
    defaultInformationOriginate Property Map
    Default information originate
    defaultRoute Property Map
    Default route
    noSummary Boolean
    No summary
    nssaExtRanges List<Property Map>
    Nssa ext range

    GetLogicalRouterVrfOspfv3AreaTypeNssaAbr

    ExportList string
    Export list
    ImportList string
    Import list
    InboundFilterList string
    Inbound filter list
    NssaExtRanges List<GetLogicalRouterVrfOspfv3AreaTypeNssaAbrNssaExtRange>
    Nssa ext range
    OutboundFilterList string
    Outbound filter list
    ExportList string
    Export list
    ImportList string
    Import list
    InboundFilterList string
    Inbound filter list
    NssaExtRanges []GetLogicalRouterVrfOspfv3AreaTypeNssaAbrNssaExtRange
    Nssa ext range
    OutboundFilterList string
    Outbound filter list
    exportList String
    Export list
    importList String
    Import list
    inboundFilterList String
    Inbound filter list
    nssaExtRanges List<GetLogicalRouterVrfOspfv3AreaTypeNssaAbrNssaExtRange>
    Nssa ext range
    outboundFilterList String
    Outbound filter list
    exportList string
    Export list
    importList string
    Import list
    inboundFilterList string
    Inbound filter list
    nssaExtRanges GetLogicalRouterVrfOspfv3AreaTypeNssaAbrNssaExtRange[]
    Nssa ext range
    outboundFilterList string
    Outbound filter list
    export_list str
    Export list
    import_list str
    Import list
    inbound_filter_list str
    Inbound filter list
    nssa_ext_ranges Sequence[GetLogicalRouterVrfOspfv3AreaTypeNssaAbrNssaExtRange]
    Nssa ext range
    outbound_filter_list str
    Outbound filter list
    exportList String
    Export list
    importList String
    Import list
    inboundFilterList String
    Inbound filter list
    nssaExtRanges List<Property Map>
    Nssa ext range
    outboundFilterList String
    Outbound filter list

    GetLogicalRouterVrfOspfv3AreaTypeNssaAbrNssaExtRange

    Property Map
    Advertise
    name String
    Name
    routeTag Number
    Route tag
    suppress Property Map
    Suppress

    GetLogicalRouterVrfOspfv3AreaTypeNssaDefaultInformationOriginate

    Metric int
    Metric
    MetricType string
    Metric type
    Metric int
    Metric
    MetricType string
    Metric type
    metric Integer
    Metric
    metricType String
    Metric type
    metric number
    Metric
    metricType string
    Metric type
    metric int
    Metric
    metric_type str
    Metric type
    metric Number
    Metric
    metricType String
    Metric type

    GetLogicalRouterVrfOspfv3AreaTypeNssaDefaultRoute

    GetLogicalRouterVrfOspfv3AreaTypeNssaDefaultRouteAdvertise

    Metric int
    Metric
    Type string
    Type
    Metric int
    Metric
    Type string
    Type
    metric Integer
    Metric
    type String
    Type
    metric number
    Metric
    type string
    Type
    metric int
    Metric
    type str
    Type
    metric Number
    Metric
    type String
    Type

    GetLogicalRouterVrfOspfv3AreaTypeNssaNssaExtRange

    Property Map
    Advertise
    name String
    Name
    routeTag Number
    Route tag
    suppress Property Map
    Suppress

    GetLogicalRouterVrfOspfv3AreaTypeStub

    abr Property Map
    Abr
    acceptSummary Boolean
    Accept summary
    defaultRoute Property Map
    Default route
    defaultRouteMetric Number
    Default route metric
    noSummary Boolean
    No summary

    GetLogicalRouterVrfOspfv3AreaTypeStubAbr

    ExportList string
    Export list
    ImportList string
    Import list
    InboundFilterList string
    Inbound filter list
    OutboundFilterList string
    Outbound filter list
    ExportList string
    Export list
    ImportList string
    Import list
    InboundFilterList string
    Inbound filter list
    OutboundFilterList string
    Outbound filter list
    exportList String
    Export list
    importList String
    Import list
    inboundFilterList String
    Inbound filter list
    outboundFilterList String
    Outbound filter list
    exportList string
    Export list
    importList string
    Import list
    inboundFilterList string
    Inbound filter list
    outboundFilterList string
    Outbound filter list
    export_list str
    Export list
    import_list str
    Import list
    inbound_filter_list str
    Inbound filter list
    outbound_filter_list str
    Outbound filter list
    exportList String
    Export list
    importList String
    Import list
    inboundFilterList String
    Inbound filter list
    outboundFilterList String
    Outbound filter list

    GetLogicalRouterVrfOspfv3AreaTypeStubDefaultRoute

    GetLogicalRouterVrfOspfv3AreaTypeStubDefaultRouteAdvertise

    Metric int
    Metric
    Metric int
    Metric
    metric Integer
    Metric
    metric number
    Metric
    metric int
    Metric
    metric Number
    Metric
    Authentication string
    Authentication
    Bfd GetLogicalRouterVrfOspfv3AreaVirtualLinkBfd
    Bfd
    Enable bool
    Enable
    InstanceId int
    Instance id
    InterfaceId int
    Interface id
    Name string
    Name
    NeighborId string
    Neighbor id
    Passive bool
    Passive
    Timing string
    Timing
    TransitAreaId string
    Transit area id
    VrTiming GetLogicalRouterVrfOspfv3AreaVirtualLinkVrTiming
    Vr timing
    Authentication string
    Authentication
    Bfd GetLogicalRouterVrfOspfv3AreaVirtualLinkBfd
    Bfd
    Enable bool
    Enable
    InstanceId int
    Instance id
    InterfaceId int
    Interface id
    Name string
    Name
    NeighborId string
    Neighbor id
    Passive bool
    Passive
    Timing string
    Timing
    TransitAreaId string
    Transit area id
    VrTiming GetLogicalRouterVrfOspfv3AreaVirtualLinkVrTiming
    Vr timing
    authentication String
    Authentication
    bfd GetLogicalRouterVrfOspfv3AreaVirtualLinkBfd
    Bfd
    enable Boolean
    Enable
    instanceId Integer
    Instance id
    interfaceId Integer
    Interface id
    name String
    Name
    neighborId String
    Neighbor id
    passive Boolean
    Passive
    timing String
    Timing
    transitAreaId String
    Transit area id
    vrTiming GetLogicalRouterVrfOspfv3AreaVirtualLinkVrTiming
    Vr timing
    authentication string
    Authentication
    bfd GetLogicalRouterVrfOspfv3AreaVirtualLinkBfd
    Bfd
    enable boolean
    Enable
    instanceId number
    Instance id
    interfaceId number
    Interface id
    name string
    Name
    neighborId string
    Neighbor id
    passive boolean
    Passive
    timing string
    Timing
    transitAreaId string
    Transit area id
    vrTiming GetLogicalRouterVrfOspfv3AreaVirtualLinkVrTiming
    Vr timing
    authentication str
    Authentication
    bfd GetLogicalRouterVrfOspfv3AreaVirtualLinkBfd
    Bfd
    enable bool
    Enable
    instance_id int
    Instance id
    interface_id int
    Interface id
    name str
    Name
    neighbor_id str
    Neighbor id
    passive bool
    Passive
    timing str
    Timing
    transit_area_id str
    Transit area id
    vr_timing GetLogicalRouterVrfOspfv3AreaVirtualLinkVrTiming
    Vr timing
    authentication String
    Authentication
    bfd Property Map
    Bfd
    enable Boolean
    Enable
    instanceId Number
    Instance id
    interfaceId Number
    Interface id
    name String
    Name
    neighborId String
    Neighbor id
    passive Boolean
    Passive
    timing String
    Timing
    transitAreaId String
    Transit area id
    vrTiming Property Map
    Vr timing

    GetLogicalRouterVrfOspfv3AreaVirtualLinkBfd

    Profile string
    Profile
    Profile string
    Profile
    profile String
    Profile
    profile string
    Profile
    profile str
    Profile
    profile String
    Profile

    GetLogicalRouterVrfOspfv3AreaVirtualLinkVrTiming

    DeadCounts int
    Dead counts
    HelloInterval int
    Hello interval
    RetransmitInterval int
    Retransmit interval
    TransitDelay int
    Transit delay
    DeadCounts int
    Dead counts
    HelloInterval int
    Hello interval
    RetransmitInterval int
    Retransmit interval
    TransitDelay int
    Transit delay
    deadCounts Integer
    Dead counts
    helloInterval Integer
    Hello interval
    retransmitInterval Integer
    Retransmit interval
    transitDelay Integer
    Transit delay
    deadCounts number
    Dead counts
    helloInterval number
    Hello interval
    retransmitInterval number
    Retransmit interval
    transitDelay number
    Transit delay
    dead_counts int
    Dead counts
    hello_interval int
    Hello interval
    retransmit_interval int
    Retransmit interval
    transit_delay int
    Transit delay
    deadCounts Number
    Dead counts
    helloInterval Number
    Hello interval
    retransmitInterval Number
    Retransmit interval
    transitDelay Number
    Transit delay

    GetLogicalRouterVrfOspfv3AreaVrRange

    Property Map
    Advertise
    name String
    Name
    suppress Property Map
    Suppress

    GetLogicalRouterVrfOspfv3AuthProfile

    ah Property Map
    Ah
    esp Property Map
    Esp
    name String
    Name
    spi String
    Spi

    GetLogicalRouterVrfOspfv3AuthProfileAh

    GetLogicalRouterVrfOspfv3AuthProfileAhMd5

    Key string
    Key
    Key string
    Key
    key String
    Key
    key string
    Key
    key str
    Key
    key String
    Key

    GetLogicalRouterVrfOspfv3AuthProfileAhSha1

    Key string
    Key
    Key string
    Key
    key String
    Key
    key string
    Key
    key str
    Key
    key String
    Key

    GetLogicalRouterVrfOspfv3AuthProfileAhSha256

    Key string
    Key
    Key string
    Key
    key String
    Key
    key string
    Key
    key str
    Key
    key String
    Key

    GetLogicalRouterVrfOspfv3AuthProfileAhSha384

    Key string
    Key
    Key string
    Key
    key String
    Key
    key string
    Key
    key str
    Key
    key String
    Key

    GetLogicalRouterVrfOspfv3AuthProfileAhSha512

    Key string
    Key
    Key string
    Key
    key String
    Key
    key string
    Key
    key str
    Key
    key String
    Key

    GetLogicalRouterVrfOspfv3AuthProfileEsp

    GetLogicalRouterVrfOspfv3AuthProfileEspAuthentication

    GetLogicalRouterVrfOspfv3AuthProfileEspAuthenticationMd5

    Key string
    Key
    Key string
    Key
    key String
    Key
    key string
    Key
    key str
    Key
    key String
    Key

    GetLogicalRouterVrfOspfv3AuthProfileEspAuthenticationSha1

    Key string
    Key
    Key string
    Key
    key String
    Key
    key string
    Key
    key str
    Key
    key String
    Key

    GetLogicalRouterVrfOspfv3AuthProfileEspAuthenticationSha256

    Key string
    Key
    Key string
    Key
    key String
    Key
    key string
    Key
    key str
    Key
    key String
    Key

    GetLogicalRouterVrfOspfv3AuthProfileEspAuthenticationSha384

    Key string
    Key
    Key string
    Key
    key String
    Key
    key string
    Key
    key str
    Key
    key String
    Key

    GetLogicalRouterVrfOspfv3AuthProfileEspAuthenticationSha512

    Key string
    Key
    Key string
    Key
    key String
    Key
    key string
    Key
    key str
    Key
    key String
    Key

    GetLogicalRouterVrfOspfv3AuthProfileEspEncryption

    Algorithm string
    Algorithm
    Key string
    Key
    Algorithm string
    Algorithm
    Key string
    Key
    algorithm String
    Algorithm
    key String
    Key
    algorithm string
    Algorithm
    key string
    Key
    algorithm str
    Algorithm
    key str
    Key
    algorithm String
    Algorithm
    key String
    Key

    GetLogicalRouterVrfOspfv3ExportRule

    Metric int
    Metric
    Name string
    Name
    NewPathType string
    New path type
    NewTag string
    New tag
    Metric int
    Metric
    Name string
    Name
    NewPathType string
    New path type
    NewTag string
    New tag
    metric Integer
    Metric
    name String
    Name
    newPathType String
    New path type
    newTag String
    New tag
    metric number
    Metric
    name string
    Name
    newPathType string
    New path type
    newTag string
    New tag
    metric int
    Metric
    name str
    Name
    new_path_type str
    New path type
    new_tag str
    New tag
    metric Number
    Metric
    name String
    Name
    newPathType String
    New path type
    newTag String
    New tag

    GetLogicalRouterVrfOspfv3GlobalBfd

    Profile string
    Profile
    Profile string
    Profile
    profile String
    Profile
    profile string
    Profile
    profile str
    Profile
    profile String
    Profile

    GetLogicalRouterVrfOspfv3GracefulRestart

    Enable bool
    Enable
    GracePeriod int
    Grace period
    HelperEnable bool
    Helper enable
    MaxNeighborRestartTime int
    Max neighbor restart time
    StrictLsaChecking bool
    Strict l s a checking
    Enable bool
    Enable
    GracePeriod int
    Grace period
    HelperEnable bool
    Helper enable
    MaxNeighborRestartTime int
    Max neighbor restart time
    StrictLsaChecking bool
    Strict l s a checking
    enable Boolean
    Enable
    gracePeriod Integer
    Grace period
    helperEnable Boolean
    Helper enable
    maxNeighborRestartTime Integer
    Max neighbor restart time
    strictLsaChecking Boolean
    Strict l s a checking
    enable boolean
    Enable
    gracePeriod number
    Grace period
    helperEnable boolean
    Helper enable
    maxNeighborRestartTime number
    Max neighbor restart time
    strictLsaChecking boolean
    Strict l s a checking
    enable bool
    Enable
    grace_period int
    Grace period
    helper_enable bool
    Helper enable
    max_neighbor_restart_time int
    Max neighbor restart time
    strict_lsa_checking bool
    Strict l s a checking
    enable Boolean
    Enable
    gracePeriod Number
    Grace period
    helperEnable Boolean
    Helper enable
    maxNeighborRestartTime Number
    Max neighbor restart time
    strictLsaChecking Boolean
    Strict l s a checking

    GetLogicalRouterVrfOspfv3VrTimers

    LsaInterval int
    Lsa interval
    SpfCalculationDelay int
    Spf calculation delay
    LsaInterval int
    Lsa interval
    SpfCalculationDelay int
    Spf calculation delay
    lsaInterval Integer
    Lsa interval
    spfCalculationDelay Integer
    Spf calculation delay
    lsaInterval number
    Lsa interval
    spfCalculationDelay number
    Spf calculation delay
    lsa_interval int
    Lsa interval
    spf_calculation_delay int
    Spf calculation delay
    lsaInterval Number
    Lsa interval
    spfCalculationDelay Number
    Spf calculation delay

    GetLogicalRouterVrfRibFilter

    GetLogicalRouterVrfRibFilterIpv4

    GetLogicalRouterVrfRibFilterIpv4Bgp

    RouteMap string
    Route map
    RouteMap string
    Route map
    routeMap String
    Route map
    routeMap string
    Route map
    route_map str
    Route map
    routeMap String
    Route map

    GetLogicalRouterVrfRibFilterIpv4Ospf

    RouteMap string
    Route map
    RouteMap string
    Route map
    routeMap String
    Route map
    routeMap string
    Route map
    route_map str
    Route map
    routeMap String
    Route map

    GetLogicalRouterVrfRibFilterIpv4Rip

    RouteMap string
    Route map
    RouteMap string
    Route map
    routeMap String
    Route map
    routeMap string
    Route map
    route_map str
    Route map
    routeMap String
    Route map

    GetLogicalRouterVrfRibFilterIpv4Static

    RouteMap string
    Route map
    RouteMap string
    Route map
    routeMap String
    Route map
    routeMap string
    Route map
    route_map str
    Route map
    routeMap String
    Route map

    GetLogicalRouterVrfRibFilterIpv6

    GetLogicalRouterVrfRibFilterIpv6Bgp

    RouteMap string
    Route map
    RouteMap string
    Route map
    routeMap String
    Route map
    routeMap string
    Route map
    route_map str
    Route map
    routeMap String
    Route map

    GetLogicalRouterVrfRibFilterIpv6Ospfv3

    RouteMap string
    Route map
    RouteMap string
    Route map
    routeMap String
    Route map
    routeMap string
    Route map
    route_map str
    Route map
    routeMap String
    Route map

    GetLogicalRouterVrfRibFilterIpv6Static

    RouteMap string
    Route map
    RouteMap string
    Route map
    routeMap String
    Route map
    routeMap string
    Route map
    route_map str
    Route map
    routeMap String
    Route map

    GetLogicalRouterVrfRip

    authProfile String
    Auth profile
    defaultInformationOriginate Boolean
    Default information originate
    enable Boolean
    Enable
    globalBfd Property Map
    Global bfd
    globalInboundDistributeList Property Map
    Global inbound distribute list
    globalOutboundDistributeList Property Map
    Global outbound distribute list
    globalTimer String
    Global timer
    interfaces List<Property Map>
    Interface
    redistributionProfile String
    Redistribution profile

    GetLogicalRouterVrfRipGlobalBfd

    Profile string
    Profile
    Profile string
    Profile
    profile String
    Profile
    profile string
    Profile
    profile str
    Profile
    profile String
    Profile

    GetLogicalRouterVrfRipGlobalInboundDistributeList

    AccessList string
    Access list
    AccessList string
    Access list
    accessList String
    Access list
    accessList string
    Access list
    access_list str
    Access list
    accessList String
    Access list

    GetLogicalRouterVrfRipGlobalOutboundDistributeList

    AccessList string
    Access list
    AccessList string
    Access list
    accessList String
    Access list
    accessList string
    Access list
    access_list str
    Access list
    accessList String
    Access list

    GetLogicalRouterVrfRipInterface

    authentication String
    Authentication
    bfd Property Map
    Bfd
    enable Boolean
    Enable
    interfaceInboundDistributeList Property Map
    Interface inbound distribute list
    interfaceOutboundDistributeList Property Map
    Interface outbound distribute list
    mode String
    Mode
    name String
    Name
    splitHorizon String
    Split horizon

    GetLogicalRouterVrfRipInterfaceBfd

    Profile string
    Profile
    Profile string
    Profile
    profile String
    Profile
    profile string
    Profile
    profile str
    Profile
    profile String
    Profile

    GetLogicalRouterVrfRipInterfaceInterfaceInboundDistributeList

    AccessList string
    Access list
    Metric int
    Metric
    AccessList string
    Access list
    Metric int
    Metric
    accessList String
    Access list
    metric Integer
    Metric
    accessList string
    Access list
    metric number
    Metric
    access_list str
    Access list
    metric int
    Metric
    accessList String
    Access list
    metric Number
    Metric

    GetLogicalRouterVrfRipInterfaceInterfaceOutboundDistributeList

    AccessList string
    Access list
    Metric int
    Metric
    AccessList string
    Access list
    Metric int
    Metric
    accessList String
    Access list
    metric Integer
    Metric
    accessList string
    Access list
    metric number
    Metric
    access_list str
    Access list
    metric int
    Metric
    accessList String
    Access list
    metric Number
    Metric

    GetLogicalRouterVrfRoutingTable

    GetLogicalRouterVrfRoutingTableIp

    GetLogicalRouterVrfRoutingTableIpStaticRoute

    adminDist Number
    Admin dist
    bfd Property Map
    Bfd
    destination String
    Destination
    interface String
    Interface
    metric Number
    Metric
    name String
    Name
    nexthop Property Map
    Nexthop
    pathMonitor Property Map
    Path monitor
    routeTable Property Map
    Route table

    GetLogicalRouterVrfRoutingTableIpStaticRouteBfd

    Profile string
    Profile
    Profile string
    Profile
    profile String
    Profile
    profile string
    Profile
    profile str
    Profile
    profile String
    Profile

    GetLogicalRouterVrfRoutingTableIpStaticRouteNexthop

    discard Property Map
    Discard
    fqdn String
    Fqdn
    ipAddress String
    Ip address
    ipv6Address String
    Ipv6 address
    nextLr String
    Next lr
    nextVr String
    Next vr
    receive Property Map
    Receive
    tunnel String
    Tunnel

    GetLogicalRouterVrfRoutingTableIpStaticRoutePathMonitor

    enable Boolean
    Enable
    failureCondition String
    Failure condition
    holdTime Number
    Hold time
    monitorDestinations List<Property Map>
    Monitor destinations

    GetLogicalRouterVrfRoutingTableIpStaticRoutePathMonitorMonitorDestination

    Count int
    Count
    Destination string
    Destination
    DestinationFqdn string
    Destination fqdn
    Enable bool
    Enable
    Interval int
    Interval
    Name string
    Name
    Source string
    Source
    Count int
    Count
    Destination string
    Destination
    DestinationFqdn string
    Destination fqdn
    Enable bool
    Enable
    Interval int
    Interval
    Name string
    Name
    Source string
    Source
    count Integer
    Count
    destination String
    Destination
    destinationFqdn String
    Destination fqdn
    enable Boolean
    Enable
    interval Integer
    Interval
    name String
    Name
    source String
    Source
    count number
    Count
    destination string
    Destination
    destinationFqdn string
    Destination fqdn
    enable boolean
    Enable
    interval number
    Interval
    name string
    Name
    source string
    Source
    count int
    Count
    destination str
    Destination
    destination_fqdn str
    Destination fqdn
    enable bool
    Enable
    interval int
    Interval
    name str
    Name
    source str
    Source
    count Number
    Count
    destination String
    Destination
    destinationFqdn String
    Destination fqdn
    enable Boolean
    Enable
    interval Number
    Interval
    name String
    Name
    source String
    Source

    GetLogicalRouterVrfRoutingTableIpStaticRouteRouteTable

    GetLogicalRouterVrfRoutingTableIpv6

    GetLogicalRouterVrfRoutingTableIpv6StaticRoute

    adminDist Number
    Admin dist
    bfd Property Map
    Bfd
    destination String
    Destination
    interface String
    Interface
    metric Number
    Metric
    name String
    Name
    nexthop Property Map
    Nexthop
    option Property Map
    Option
    pathMonitor Property Map
    Path monitor
    routeTable Property Map
    Route table

    GetLogicalRouterVrfRoutingTableIpv6StaticRouteBfd

    Profile string
    Profile
    Profile string
    Profile
    profile String
    Profile
    profile string
    Profile
    profile str
    Profile
    profile String
    Profile

    GetLogicalRouterVrfRoutingTableIpv6StaticRouteNexthop

    discard Property Map
    Discard
    fqdn String
    Fqdn
    ipv6Address String
    Ipv6 address
    nextLr String
    Next lr
    nextVr String
    Next vr
    receive Property Map
    Receive
    tunnel String
    Tunnel

    GetLogicalRouterVrfRoutingTableIpv6StaticRouteOption

    GetLogicalRouterVrfRoutingTableIpv6StaticRoutePathMonitor

    enable Boolean
    Enable
    failureCondition String
    Failure condition
    holdTime Number
    Hold time
    monitorDestinations List<Property Map>
    Monitor destinations

    GetLogicalRouterVrfRoutingTableIpv6StaticRoutePathMonitorMonitorDestination

    Count int
    Count
    Destination string
    Destination
    DestinationFqdn string
    Destination fqdn
    Enable bool
    Enable
    Interval int
    Interval
    Name string
    Name
    Source string
    Source
    Count int
    Count
    Destination string
    Destination
    DestinationFqdn string
    Destination fqdn
    Enable bool
    Enable
    Interval int
    Interval
    Name string
    Name
    Source string
    Source
    count Integer
    Count
    destination String
    Destination
    destinationFqdn String
    Destination fqdn
    enable Boolean
    Enable
    interval Integer
    Interval
    name String
    Name
    source String
    Source
    count number
    Count
    destination string
    Destination
    destinationFqdn string
    Destination fqdn
    enable boolean
    Enable
    interval number
    Interval
    name string
    Name
    source string
    Source
    count int
    Count
    destination str
    Destination
    destination_fqdn str
    Destination fqdn
    enable bool
    Enable
    interval int
    Interval
    name str
    Name
    source str
    Source
    count Number
    Count
    destination String
    Destination
    destinationFqdn String
    Destination fqdn
    enable Boolean
    Enable
    interval Number
    Interval
    name String
    Name
    source String
    Source

    GetLogicalRouterVrfRoutingTableIpv6StaticRouteRouteTable

    GetLogicalRouterVrfVrAdminDists

    Ebgp int
    Ebgp
    Ibgp int
    Ibgp
    OspfExt int
    Ospf ext
    OspfInt int
    Ospf int
    Ospfv3Ext int
    Ospfv3 ext
    Ospfv3Int int
    Ospfv3 int
    Rip int
    Rip
    Static int
    Static
    StaticIpv6 int
    Static ipv6
    Ebgp int
    Ebgp
    Ibgp int
    Ibgp
    OspfExt int
    Ospf ext
    OspfInt int
    Ospf int
    Ospfv3Ext int
    Ospfv3 ext
    Ospfv3Int int
    Ospfv3 int
    Rip int
    Rip
    Static int
    Static
    StaticIpv6 int
    Static ipv6
    ebgp Integer
    Ebgp
    ibgp Integer
    Ibgp
    ospfExt Integer
    Ospf ext
    ospfInt Integer
    Ospf int
    ospfv3Ext Integer
    Ospfv3 ext
    ospfv3Int Integer
    Ospfv3 int
    rip Integer
    Rip
    staticIpv6 Integer
    Static ipv6
    static_ Integer
    Static
    ebgp number
    Ebgp
    ibgp number
    Ibgp
    ospfExt number
    Ospf ext
    ospfInt number
    Ospf int
    ospfv3Ext number
    Ospfv3 ext
    ospfv3Int number
    Ospfv3 int
    rip number
    Rip
    static number
    Static
    staticIpv6 number
    Static ipv6
    ebgp int
    Ebgp
    ibgp int
    Ibgp
    ospf_ext int
    Ospf ext
    ospf_int int
    Ospf int
    ospfv3_ext int
    Ospfv3 ext
    ospfv3_int int
    Ospfv3 int
    rip int
    Rip
    static int
    Static
    static_ipv6 int
    Static ipv6
    ebgp Number
    Ebgp
    ibgp Number
    Ibgp
    ospfExt Number
    Ospf ext
    ospfInt Number
    Ospf int
    ospfv3Ext Number
    Ospfv3 ext
    ospfv3Int Number
    Ospfv3 int
    rip Number
    Rip
    static Number
    Static
    staticIpv6 Number
    Static ipv6

    Package Details

    Repository
    scm pulumi/pulumi-scm
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the scm Terraform Provider.
    scm logo
    Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate