Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
scm.getLogicalRouter
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 dictionaryThe following arguments are supported:
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
- Routing
Stack string - Routing stack
- Snippet string
- The snippet in which the resource is defined
- Tfid string
- Vrves
List<Get
Logical Router Vrf> - 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
- Routing
Stack string - Routing stack
- Snippet string
- The snippet in which the resource is defined
- Tfid string
- Vrves
[]Get
Logical Router Vrf - 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
- routing
Stack String - Routing stack
- snippet String
- The snippet in which the resource is defined
- tfid String
- vrves
List<Get
Logical Router Vrf> - 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
- routing
Stack string - Routing stack
- snippet string
- The snippet in which the resource is defined
- tfid string
- vrves
Get
Logical Router Vrf[] - 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[Get
Logical Router Vrf] - 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
- routing
Stack String - Routing stack
- snippet String
- The snippet in which the resource is defined
- tfid String
- vrves List<Property Map>
- Vrf
Supporting Types
GetLogicalRouterVrf
- Admin
Dists GetLogical Router Vrf Admin Dists - Admin dists
- Bgp
Get
Logical Router Vrf Bgp - Bgp
- Ecmp
Get
Logical Router Vrf Ecmp - Ecmp
- Global
Vrid int - Global vrid
- Interfaces List<string>
- Interface
- Multicast
Get
Logical Router Vrf Multicast - Multicast
- Name string
- Name
- Ospf
Get
Logical Router Vrf Ospf - Ospf
- Ospfv3
Get
Logical Router Vrf Ospfv3 - Ospfv3
- Rib
Filter GetLogical Router Vrf Rib Filter - Rib filter
- Rip
Get
Logical Router Vrf Rip - Rip
- Routing
Table GetLogical Router Vrf Routing Table - Routing table
- Sdwan
Type string - Sdwan type
- Vr
Admin GetDists Logical Router Vrf Vr Admin Dists - Vr admin dists
- Zone
Name string - Zone name
- Admin
Dists GetLogical Router Vrf Admin Dists - Admin dists
- Bgp
Get
Logical Router Vrf Bgp - Bgp
- Ecmp
Get
Logical Router Vrf Ecmp - Ecmp
- Global
Vrid int - Global vrid
- Interfaces []string
- Interface
- Multicast
Get
Logical Router Vrf Multicast - Multicast
- Name string
- Name
- Ospf
Get
Logical Router Vrf Ospf - Ospf
- Ospfv3
Get
Logical Router Vrf Ospfv3 - Ospfv3
- Rib
Filter GetLogical Router Vrf Rib Filter - Rib filter
- Rip
Get
Logical Router Vrf Rip - Rip
- Routing
Table GetLogical Router Vrf Routing Table - Routing table
- Sdwan
Type string - Sdwan type
- Vr
Admin GetDists Logical Router Vrf Vr Admin Dists - Vr admin dists
- Zone
Name string - Zone name
- admin
Dists GetLogical Router Vrf Admin Dists - Admin dists
- bgp
Get
Logical Router Vrf Bgp - Bgp
- ecmp
Get
Logical Router Vrf Ecmp - Ecmp
- global
Vrid Integer - Global vrid
- interfaces List<String>
- Interface
- multicast
Get
Logical Router Vrf Multicast - Multicast
- name String
- Name
- ospf
Get
Logical Router Vrf Ospf - Ospf
- ospfv3
Get
Logical Router Vrf Ospfv3 - Ospfv3
- rib
Filter GetLogical Router Vrf Rib Filter - Rib filter
- rip
Get
Logical Router Vrf Rip - Rip
- routing
Table GetLogical Router Vrf Routing Table - Routing table
- sdwan
Type String - Sdwan type
- vr
Admin GetDists Logical Router Vrf Vr Admin Dists - Vr admin dists
- zone
Name String - Zone name
- admin
Dists GetLogical Router Vrf Admin Dists - Admin dists
- bgp
Get
Logical Router Vrf Bgp - Bgp
- ecmp
Get
Logical Router Vrf Ecmp - Ecmp
- global
Vrid number - Global vrid
- interfaces string[]
- Interface
- multicast
Get
Logical Router Vrf Multicast - Multicast
- name string
- Name
- ospf
Get
Logical Router Vrf Ospf - Ospf
- ospfv3
Get
Logical Router Vrf Ospfv3 - Ospfv3
- rib
Filter GetLogical Router Vrf Rib Filter - Rib filter
- rip
Get
Logical Router Vrf Rip - Rip
- routing
Table GetLogical Router Vrf Routing Table - Routing table
- sdwan
Type string - Sdwan type
- vr
Admin GetDists Logical Router Vrf Vr Admin Dists - Vr admin dists
- zone
Name string - Zone name
- admin_
dists GetLogical Router Vrf Admin Dists - Admin dists
- bgp
Get
Logical Router Vrf Bgp - Bgp
- ecmp
Get
Logical Router Vrf Ecmp - Ecmp
- global_
vrid int - Global vrid
- interfaces Sequence[str]
- Interface
- multicast
Get
Logical Router Vrf Multicast - Multicast
- name str
- Name
- ospf
Get
Logical Router Vrf Ospf - Ospf
- ospfv3
Get
Logical Router Vrf Ospfv3 - Ospfv3
- rib_
filter GetLogical Router Vrf Rib Filter - Rib filter
- rip
Get
Logical Router Vrf Rip - Rip
- routing_
table GetLogical Router Vrf Routing Table - Routing table
- sdwan_
type str - Sdwan type
- vr_
admin_ Getdists Logical Router Vrf Vr Admin Dists - Vr admin dists
- zone_
name str - Zone name
- admin
Dists Property Map - Admin dists
- bgp Property Map
- Bgp
- ecmp Property Map
- Ecmp
- global
Vrid Number - Global vrid
- interfaces List<String>
- Interface
- multicast Property Map
- Multicast
- name String
- Name
- ospf Property Map
- Ospf
- ospfv3 Property Map
- Ospfv3
- rib
Filter Property Map - Rib filter
- rip Property Map
- Rip
- routing
Table Property Map - Routing table
- sdwan
Type String - Sdwan type
- vr
Admin Property MapDists - Vr admin dists
- zone
Name String - Zone name
GetLogicalRouterVrfAdminDists
- 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
- Ospfv3Ext int
- Ospfv3 ext
- Ospfv3Inter int
- Ospfv3 inter
- Ospfv3Intra int
- Ospfv3 intra
- Rip int
- Rip
- Static int
- Static
- Static
Ipv6 int - 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
- Ospfv3Ext int
- Ospfv3 ext
- Ospfv3Inter int
- Ospfv3 inter
- Ospfv3Intra int
- Ospfv3 intra
- Rip int
- Rip
- Static int
- Static
- Static
Ipv6 int - Static ipv6
- bgp
External Integer - Bgp external
- bgp
Internal Integer - Bgp internal
- bgp
Local Integer - Bgp local
- ospf
Ext Integer - Ospf ext
- ospf
Inter Integer - Ospf inter
- ospf
Intra Integer - Ospf intra
- ospfv3Ext Integer
- Ospfv3 ext
- ospfv3Inter Integer
- Ospfv3 inter
- ospfv3Intra Integer
- Ospfv3 intra
- rip Integer
- Rip
- static
Ipv6 Integer - Static ipv6
- static_ Integer
- Static
- bgp
External number - Bgp external
- bgp
Internal number - Bgp internal
- bgp
Local number - Bgp local
- ospf
Ext number - Ospf ext
- ospf
Inter number - Ospf inter
- ospf
Intra number - Ospf intra
- ospfv3Ext number
- Ospfv3 ext
- ospfv3Inter number
- Ospfv3 inter
- ospfv3Intra number
- Ospfv3 intra
- rip number
- Rip
- static number
- Static
- static
Ipv6 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
- bgp
External Number - Bgp external
- bgp
Internal Number - Bgp internal
- bgp
Local Number - Bgp local
- ospf
Ext Number - Ospf ext
- ospf
Inter Number - Ospf inter
- ospf
Intra Number - Ospf intra
- ospfv3Ext Number
- Ospfv3 ext
- ospfv3Inter Number
- Ospfv3 inter
- ospfv3Intra Number
- Ospfv3 intra
- rip Number
- Rip
- static Number
- Static
- static
Ipv6 Number - Static ipv6
GetLogicalRouterVrfBgp
- Advertise
Network GetLogical Router Vrf Bgp Advertise Network - Advertise network
- Aggregate
Get
Logical Router Vrf Bgp Aggregate - Aggregate
- Aggregate
Routes List<GetLogical Router Vrf Bgp Aggregate Route> - Aggregate routes
- Allow
Redist boolDefault Route - Allow redist default route
- Always
Advertise boolNetwork Route - Always advertise network route
- As
Format string - As format
- Confederation
Member stringAs - Confederation member as
- Default
Local intPreference - Default local preference
- Ecmp
Multi boolAs - Ecmp multi as
- Enable bool
- Enable
- Enforce
First boolAs - Enforce first as
- Fast
External boolFailover - Fast external failover
- Global
Bfd GetLogical Router Vrf Bgp Global Bfd - Global bfd
- Graceful
Restart GetLogical Router Vrf Bgp Graceful Restart - Graceful restart
- Graceful
Shutdown bool - Graceful shutdown
- Install
Route bool - Install route
- Local
As string - Local as
- Med
Get
Logical Router Vrf Bgp Med - Med
- Peer
Groups List<GetLogical Router Vrf Bgp Peer Group> - Peer group
- Policy
Get
Logical Router Vrf Bgp Policy - Policy
- Redist
Rules List<GetLogical Router Vrf Bgp Redist Rule> - Redist rules
- Redistribution
Profile GetLogical Router Vrf Bgp Redistribution Profile - Redistribution profile
- Reject
Default boolRoute - Reject default route
- Router
Id string - Router id
- Advertise
Network GetLogical Router Vrf Bgp Advertise Network - Advertise network
- Aggregate
Get
Logical Router Vrf Bgp Aggregate - Aggregate
- Aggregate
Routes []GetLogical Router Vrf Bgp Aggregate Route - Aggregate routes
- Allow
Redist boolDefault Route - Allow redist default route
- Always
Advertise boolNetwork Route - Always advertise network route
- As
Format string - As format
- Confederation
Member stringAs - Confederation member as
- Default
Local intPreference - Default local preference
- Ecmp
Multi boolAs - Ecmp multi as
- Enable bool
- Enable
- Enforce
First boolAs - Enforce first as
- Fast
External boolFailover - Fast external failover
- Global
Bfd GetLogical Router Vrf Bgp Global Bfd - Global bfd
- Graceful
Restart GetLogical Router Vrf Bgp Graceful Restart - Graceful restart
- Graceful
Shutdown bool - Graceful shutdown
- Install
Route bool - Install route
- Local
As string - Local as
- Med
Get
Logical Router Vrf Bgp Med - Med
- Peer
Groups []GetLogical Router Vrf Bgp Peer Group - Peer group
- Policy
Get
Logical Router Vrf Bgp Policy - Policy
- Redist
Rules []GetLogical Router Vrf Bgp Redist Rule - Redist rules
- Redistribution
Profile GetLogical Router Vrf Bgp Redistribution Profile - Redistribution profile
- Reject
Default boolRoute - Reject default route
- Router
Id string - Router id
- advertise
Network GetLogical Router Vrf Bgp Advertise Network - Advertise network
- aggregate
Get
Logical Router Vrf Bgp Aggregate - Aggregate
- aggregate
Routes List<GetLogical Router Vrf Bgp Aggregate Route> - Aggregate routes
- allow
Redist BooleanDefault Route - Allow redist default route
- always
Advertise BooleanNetwork Route - Always advertise network route
- as
Format String - As format
- confederation
Member StringAs - Confederation member as
- default
Local IntegerPreference - Default local preference
- ecmp
Multi BooleanAs - Ecmp multi as
- enable Boolean
- Enable
- enforce
First BooleanAs - Enforce first as
- fast
External BooleanFailover - Fast external failover
- global
Bfd GetLogical Router Vrf Bgp Global Bfd - Global bfd
- graceful
Restart GetLogical Router Vrf Bgp Graceful Restart - Graceful restart
- graceful
Shutdown Boolean - Graceful shutdown
- install
Route Boolean - Install route
- local
As String - Local as
- med
Get
Logical Router Vrf Bgp Med - Med
- peer
Groups List<GetLogical Router Vrf Bgp Peer Group> - Peer group
- policy
Get
Logical Router Vrf Bgp Policy - Policy
- redist
Rules List<GetLogical Router Vrf Bgp Redist Rule> - Redist rules
- redistribution
Profile GetLogical Router Vrf Bgp Redistribution Profile - Redistribution profile
- reject
Default BooleanRoute - Reject default route
- router
Id String - Router id
- advertise
Network GetLogical Router Vrf Bgp Advertise Network - Advertise network
- aggregate
Get
Logical Router Vrf Bgp Aggregate - Aggregate
- aggregate
Routes GetLogical Router Vrf Bgp Aggregate Route[] - Aggregate routes
- allow
Redist booleanDefault Route - Allow redist default route
- always
Advertise booleanNetwork Route - Always advertise network route
- as
Format string - As format
- confederation
Member stringAs - Confederation member as
- default
Local numberPreference - Default local preference
- ecmp
Multi booleanAs - Ecmp multi as
- enable boolean
- Enable
- enforce
First booleanAs - Enforce first as
- fast
External booleanFailover - Fast external failover
- global
Bfd GetLogical Router Vrf Bgp Global Bfd - Global bfd
- graceful
Restart GetLogical Router Vrf Bgp Graceful Restart - Graceful restart
- graceful
Shutdown boolean - Graceful shutdown
- install
Route boolean - Install route
- local
As string - Local as
- med
Get
Logical Router Vrf Bgp Med - Med
- peer
Groups GetLogical Router Vrf Bgp Peer Group[] - Peer group
- policy
Get
Logical Router Vrf Bgp Policy - Policy
- redist
Rules GetLogical Router Vrf Bgp Redist Rule[] - Redist rules
- redistribution
Profile GetLogical Router Vrf Bgp Redistribution Profile - Redistribution profile
- reject
Default booleanRoute - Reject default route
- router
Id string - Router id
- advertise_
network GetLogical Router Vrf Bgp Advertise Network - Advertise network
- aggregate
Get
Logical Router Vrf Bgp Aggregate - Aggregate
- aggregate_
routes Sequence[GetLogical Router Vrf Bgp Aggregate Route] - Aggregate routes
- allow_
redist_ booldefault_ route - Allow redist default route
- always_
advertise_ boolnetwork_ route - Always advertise network route
- as_
format str - As format
- confederation_
member_ stras - Confederation member as
- default_
local_ intpreference - Default local preference
- ecmp_
multi_ boolas - Ecmp multi as
- enable bool
- Enable
- enforce_
first_ boolas - Enforce first as
- fast_
external_ boolfailover - Fast external failover
- global_
bfd GetLogical Router Vrf Bgp Global Bfd - Global bfd
- graceful_
restart GetLogical Router Vrf Bgp Graceful Restart - Graceful restart
- graceful_
shutdown bool - Graceful shutdown
- install_
route bool - Install route
- local_
as str - Local as
- med
Get
Logical Router Vrf Bgp Med - Med
- peer_
groups Sequence[GetLogical Router Vrf Bgp Peer Group] - Peer group
- policy
Get
Logical Router Vrf Bgp Policy - Policy
- redist_
rules Sequence[GetLogical Router Vrf Bgp Redist Rule] - Redist rules
- redistribution_
profile GetLogical Router Vrf Bgp Redistribution Profile - Redistribution profile
- reject_
default_ boolroute - Reject default route
- router_
id str - Router id
- advertise
Network Property Map - Advertise network
- aggregate Property Map
- Aggregate
- aggregate
Routes List<Property Map> - Aggregate routes
- allow
Redist BooleanDefault Route - Allow redist default route
- always
Advertise BooleanNetwork Route - Always advertise network route
- as
Format String - As format
- confederation
Member StringAs - Confederation member as
- default
Local NumberPreference - Default local preference
- ecmp
Multi BooleanAs - Ecmp multi as
- enable Boolean
- Enable
- enforce
First BooleanAs - Enforce first as
- fast
External BooleanFailover - Fast external failover
- global
Bfd Property Map - Global bfd
- graceful
Restart Property Map - Graceful restart
- graceful
Shutdown Boolean - Graceful shutdown
- install
Route Boolean - Install route
- local
As String - Local as
- med Property Map
- Med
- peer
Groups List<Property Map> - Peer group
- policy Property Map
- Policy
- redist
Rules List<Property Map> - Redist rules
- redistribution
Profile Property Map - Redistribution profile
- reject
Default BooleanRoute - Reject default route
- router
Id String - Router id
GetLogicalRouterVrfBgpAdvertiseNetwork
- ipv4 Property Map
- Ipv4
- ipv6 Property Map
- Ipv6
GetLogicalRouterVrfBgpAdvertiseNetworkIpv4
- networks List<Property Map>
- Network
GetLogicalRouterVrfBgpAdvertiseNetworkIpv4Network
GetLogicalRouterVrfBgpAdvertiseNetworkIpv6
- networks List<Property Map>
- Network
GetLogicalRouterVrfBgpAdvertiseNetworkIpv6Network
GetLogicalRouterVrfBgpAggregate
- Aggregate
Med bool - Aggregate med
- Aggregate
Med bool - Aggregate med
- aggregate
Med Boolean - Aggregate med
- aggregate
Med boolean - Aggregate med
- aggregate_
med bool - Aggregate med
- aggregate
Med Boolean - Aggregate med
GetLogicalRouterVrfBgpAggregateRoute
- As
Set bool - As set
- Description string
- Description
- Enable bool
- Enable
- Name string
- Name
- Same
Med bool - Same med
- Summary
Only bool - Summary only
- Type
Get
Logical Router Vrf Bgp Aggregate Route Type - Type
- As
Set bool - As set
- Description string
- Description
- Enable bool
- Enable
- Name string
- Name
- Same
Med bool - Same med
- Summary
Only bool - Summary only
- Type
Get
Logical Router Vrf Bgp Aggregate Route Type - Type
- as
Set Boolean - As set
- description String
- Description
- enable Boolean
- Enable
- name String
- Name
- same
Med Boolean - Same med
- summary
Only Boolean - Summary only
- type
Get
Logical Router Vrf Bgp Aggregate Route Type - Type
- as
Set boolean - As set
- description string
- Description
- enable boolean
- Enable
- name string
- Name
- same
Med boolean - Same med
- summary
Only boolean - Summary only
- type
Get
Logical Router Vrf Bgp Aggregate Route Type - 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
Get
Logical Router Vrf Bgp Aggregate Route Type - Type
- as
Set Boolean - As set
- description String
- Description
- enable Boolean
- Enable
- name String
- Name
- same
Med Boolean - Same med
- summary
Only Boolean - Summary only
- type Property Map
- Type
GetLogicalRouterVrfBgpAggregateRouteType
- ipv4 Property Map
- Ipv4
- ipv6 Property Map
- Ipv6
GetLogicalRouterVrfBgpAggregateRouteTypeIpv4
- Attribute
Map string - Attribute map
- Summary
Prefix string - Summary prefix
- Suppress
Map string - Suppress map
- Attribute
Map string - Attribute map
- Summary
Prefix string - Summary prefix
- Suppress
Map string - Suppress map
- attribute
Map String - Attribute map
- summary
Prefix String - Summary prefix
- suppress
Map String - Suppress map
- attribute
Map string - Attribute map
- summary
Prefix string - Summary prefix
- suppress
Map string - Suppress map
- attribute_
map str - Attribute map
- summary_
prefix str - Summary prefix
- suppress_
map str - Suppress map
- attribute
Map String - Attribute map
- summary
Prefix String - Summary prefix
- suppress
Map String - Suppress map
GetLogicalRouterVrfBgpAggregateRouteTypeIpv6
- Attribute
Map string - Attribute map
- Summary
Prefix string - Summary prefix
- Suppress
Map string - Suppress map
- Attribute
Map string - Attribute map
- Summary
Prefix string - Summary prefix
- Suppress
Map string - Suppress map
- attribute
Map String - Attribute map
- summary
Prefix String - Summary prefix
- suppress
Map String - Suppress map
- attribute
Map string - Attribute map
- summary
Prefix string - Summary prefix
- suppress
Map string - Suppress map
- attribute_
map str - Attribute map
- summary_
prefix str - Summary prefix
- suppress_
map str - Suppress map
- attribute
Map String - Attribute map
- summary
Prefix String - Summary prefix
- suppress
Map 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
- Local
Restart intTime - Local restart time
- Max
Peer intRestart Time - Max peer restart time
- Stale
Route intTime - Stale route time
- Enable bool
- Enable
- Local
Restart intTime - Local restart time
- Max
Peer intRestart Time - Max peer restart time
- Stale
Route intTime - Stale route time
- enable Boolean
- Enable
- local
Restart IntegerTime - Local restart time
- max
Peer IntegerRestart Time - Max peer restart time
- stale
Route IntegerTime - Stale route time
- enable boolean
- Enable
- local
Restart numberTime - Local restart time
- max
Peer numberRestart Time - Max peer restart time
- stale
Route numberTime - Stale route time
- enable bool
- Enable
- local_
restart_ inttime - Local restart time
- max_
peer_ intrestart_ time - Max peer restart time
- stale_
route_ inttime - Stale route time
- enable Boolean
- Enable
- local
Restart NumberTime - Local restart time
- max
Peer NumberRestart Time - Max peer restart time
- stale
Route NumberTime - Stale route time
GetLogicalRouterVrfBgpMed
- Always
Compare boolMed - Always compare med
- Deterministic
Med boolComparison - Deterministic med comparison
- Always
Compare boolMed - Always compare med
- Deterministic
Med boolComparison - Deterministic med comparison
- always
Compare BooleanMed - Always compare med
- deterministic
Med BooleanComparison - Deterministic med comparison
- always
Compare booleanMed - Always compare med
- deterministic
Med booleanComparison - Deterministic med comparison
- always_
compare_ boolmed - Always compare med
- deterministic_
med_ boolcomparison - Deterministic med comparison
- always
Compare BooleanMed - Always compare med
- deterministic
Med BooleanComparison - Deterministic med comparison
GetLogicalRouterVrfBgpPeerGroup
- Address
Family GetLogical Router Vrf Bgp Peer Group Address Family - Address family
- Aggregated
Confed boolAs Path - Aggregated confed as path
- Connection
Options GetLogical Router Vrf Bgp Peer Group Connection Options - Connection options
- Enable bool
- Enable
- Filtering
Profile GetLogical Router Vrf Bgp Peer Group Filtering Profile - Filtering profile
- Name string
- Name
- Peers
List<Get
Logical Router Vrf Bgp Peer Group Peer> - Peer
- Soft
Reset boolWith Stored Info - Soft reset with stored info
- Type
Get
Logical Router Vrf Bgp Peer Group Type - Type
- Address
Family GetLogical Router Vrf Bgp Peer Group Address Family - Address family
- Aggregated
Confed boolAs Path - Aggregated confed as path
- Connection
Options GetLogical Router Vrf Bgp Peer Group Connection Options - Connection options
- Enable bool
- Enable
- Filtering
Profile GetLogical Router Vrf Bgp Peer Group Filtering Profile - Filtering profile
- Name string
- Name
- Peers
[]Get
Logical Router Vrf Bgp Peer Group Peer - Peer
- Soft
Reset boolWith Stored Info - Soft reset with stored info
- Type
Get
Logical Router Vrf Bgp Peer Group Type - Type
- address
Family GetLogical Router Vrf Bgp Peer Group Address Family - Address family
- aggregated
Confed BooleanAs Path - Aggregated confed as path
- connection
Options GetLogical Router Vrf Bgp Peer Group Connection Options - Connection options
- enable Boolean
- Enable
- filtering
Profile GetLogical Router Vrf Bgp Peer Group Filtering Profile - Filtering profile
- name String
- Name
- peers
List<Get
Logical Router Vrf Bgp Peer Group Peer> - Peer
- soft
Reset BooleanWith Stored Info - Soft reset with stored info
- type
Get
Logical Router Vrf Bgp Peer Group Type - Type
- address
Family GetLogical Router Vrf Bgp Peer Group Address Family - Address family
- aggregated
Confed booleanAs Path - Aggregated confed as path
- connection
Options GetLogical Router Vrf Bgp Peer Group Connection Options - Connection options
- enable boolean
- Enable
- filtering
Profile GetLogical Router Vrf Bgp Peer Group Filtering Profile - Filtering profile
- name string
- Name
- peers
Get
Logical Router Vrf Bgp Peer Group Peer[] - Peer
- soft
Reset booleanWith Stored Info - Soft reset with stored info
- type
Get
Logical Router Vrf Bgp Peer Group Type - Type
- address_
family GetLogical Router Vrf Bgp Peer Group Address Family - Address family
- aggregated_
confed_ boolas_ path - Aggregated confed as path
- connection_
options GetLogical Router Vrf Bgp Peer Group Connection Options - Connection options
- enable bool
- Enable
- filtering_
profile GetLogical Router Vrf Bgp Peer Group Filtering Profile - Filtering profile
- name str
- Name
- peers
Sequence[Get
Logical Router Vrf Bgp Peer Group Peer] - Peer
- soft_
reset_ boolwith_ stored_ info - Soft reset with stored info
- type
Get
Logical Router Vrf Bgp Peer Group Type - Type
- address
Family Property Map - Address family
- aggregated
Confed BooleanAs Path - Aggregated confed as path
- connection
Options Property Map - Connection options
- enable Boolean
- Enable
- filtering
Profile Property Map - Filtering profile
- name String
- Name
- peers List<Property Map>
- Peer
- soft
Reset BooleanWith Stored Info - Soft reset with stored info
- type Property Map
- Type
GetLogicalRouterVrfBgpPeerGroupAddressFamily
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
GetLogicalRouterVrfBgpPeerGroupPeer
- Bfd
Get
Logical Router Vrf Bgp Peer Group Peer Bfd - Bfd
- Connection
Options GetLogical Router Vrf Bgp Peer Group Peer Connection Options - Connection options
- Enable bool
- Enable
- Enable
Mp boolBgp - Enable mp bgp
- Enable
Sender boolSide Loop Detection - Enable sender side loop detection
- Inherit
Get
Logical Router Vrf Bgp Peer Group Peer Inherit - Inherit
- Local
Address GetLogical Router Vrf Bgp Peer Group Peer Local Address - Local address
- Name string
- Name
- Passive bool
- Passive
- Peer
Address GetLogical Router Vrf Bgp Peer Group Peer Peer Address - Peer address
- Peer
As string - Peer as
- Peering
Type string - Peering type
- Reflector
Client string - Reflector client
- Subsequent
Address GetFamily Identifier Logical Router Vrf Bgp Peer Group Peer Subsequent Address Family Identifier - Subsequent address family identifier
- Bfd
Get
Logical Router Vrf Bgp Peer Group Peer Bfd - Bfd
- Connection
Options GetLogical Router Vrf Bgp Peer Group Peer Connection Options - Connection options
- Enable bool
- Enable
- Enable
Mp boolBgp - Enable mp bgp
- Enable
Sender boolSide Loop Detection - Enable sender side loop detection
- Inherit
Get
Logical Router Vrf Bgp Peer Group Peer Inherit - Inherit
- Local
Address GetLogical Router Vrf Bgp Peer Group Peer Local Address - Local address
- Name string
- Name
- Passive bool
- Passive
- Peer
Address GetLogical Router Vrf Bgp Peer Group Peer Peer Address - Peer address
- Peer
As string - Peer as
- Peering
Type string - Peering type
- Reflector
Client string - Reflector client
- Subsequent
Address GetFamily Identifier Logical Router Vrf Bgp Peer Group Peer Subsequent Address Family Identifier - Subsequent address family identifier
- bfd
Get
Logical Router Vrf Bgp Peer Group Peer Bfd - Bfd
- connection
Options GetLogical Router Vrf Bgp Peer Group Peer Connection Options - Connection options
- enable Boolean
- Enable
- enable
Mp BooleanBgp - Enable mp bgp
- enable
Sender BooleanSide Loop Detection - Enable sender side loop detection
- inherit
Get
Logical Router Vrf Bgp Peer Group Peer Inherit - Inherit
- local
Address GetLogical Router Vrf Bgp Peer Group Peer Local Address - Local address
- name String
- Name
- passive Boolean
- Passive
- peer
Address GetLogical Router Vrf Bgp Peer Group Peer Peer Address - Peer address
- peer
As String - Peer as
- peering
Type String - Peering type
- reflector
Client String - Reflector client
- subsequent
Address GetFamily Identifier Logical Router Vrf Bgp Peer Group Peer Subsequent Address Family Identifier - Subsequent address family identifier
- bfd
Get
Logical Router Vrf Bgp Peer Group Peer Bfd - Bfd
- connection
Options GetLogical Router Vrf Bgp Peer Group Peer Connection Options - Connection options
- enable boolean
- Enable
- enable
Mp booleanBgp - Enable mp bgp
- enable
Sender booleanSide Loop Detection - Enable sender side loop detection
- inherit
Get
Logical Router Vrf Bgp Peer Group Peer Inherit - Inherit
- local
Address GetLogical Router Vrf Bgp Peer Group Peer Local Address - Local address
- name string
- Name
- passive boolean
- Passive
- peer
Address GetLogical Router Vrf Bgp Peer Group Peer Peer Address - Peer address
- peer
As string - Peer as
- peering
Type string - Peering type
- reflector
Client string - Reflector client
- subsequent
Address GetFamily Identifier Logical Router Vrf Bgp Peer Group Peer Subsequent Address Family Identifier - Subsequent address family identifier
- bfd
Get
Logical Router Vrf Bgp Peer Group Peer Bfd - Bfd
- connection_
options GetLogical Router Vrf Bgp Peer Group Peer Connection Options - Connection options
- enable bool
- Enable
- enable_
mp_ boolbgp - Enable mp bgp
- enable_
sender_ boolside_ loop_ detection - Enable sender side loop detection
- inherit
Get
Logical Router Vrf Bgp Peer Group Peer Inherit - Inherit
- local_
address GetLogical Router Vrf Bgp Peer Group Peer Local Address - Local address
- name str
- Name
- passive bool
- Passive
- peer_
address GetLogical Router Vrf Bgp Peer Group Peer Peer Address - Peer address
- peer_
as str - Peer as
- peering_
type str - Peering type
- reflector_
client str - Reflector client
- subsequent_
address_ Getfamily_ identifier Logical Router Vrf Bgp Peer Group Peer Subsequent Address Family Identifier - Subsequent address family identifier
- bfd Property Map
- Bfd
- connection
Options Property Map - Connection options
- enable Boolean
- Enable
- enable
Mp BooleanBgp - Enable mp bgp
- enable
Sender BooleanSide Loop Detection - Enable sender side loop detection
- inherit Property Map
- Inherit
- local
Address Property Map - Local address
- name String
- Name
- passive Boolean
- Passive
- peer
Address Property Map - Peer address
- peer
As String - Peer as
- peering
Type String - Peering type
- reflector
Client String - Reflector client
- subsequent
Address Property MapFamily Identifier - Subsequent address family identifier
GetLogicalRouterVrfBgpPeerGroupPeerBfd
- Multihop
Get
Logical Router Vrf Bgp Peer Group Peer Bfd Multihop - Multihop
- Profile string
- Profile
- Multihop
Get
Logical Router Vrf Bgp Peer Group Peer Bfd Multihop - Multihop
- Profile string
- Profile
- multihop
Get
Logical Router Vrf Bgp Peer Group Peer Bfd Multihop - Multihop
- profile String
- Profile
- multihop
Get
Logical Router Vrf Bgp Peer Group Peer Bfd Multihop - Multihop
- profile string
- Profile
- multihop
Get
Logical Router Vrf Bgp Peer Group Peer Bfd Multihop - Multihop
- profile str
- Profile
- multihop Property Map
- Multihop
- profile String
- Profile
GetLogicalRouterVrfBgpPeerGroupPeerBfdMultihop
- Min
Received intTtl - Min received ttl
- Min
Received intTtl - Min received ttl
- min
Received IntegerTtl - Min received ttl
- min
Received numberTtl - Min received ttl
- min_
received_ intttl - Min received ttl
- min
Received NumberTtl - Min received ttl
GetLogicalRouterVrfBgpPeerGroupPeerConnectionOptions
- Authentication string
- Authentication
- Dampening string
- Dampening
- Hold
Time string - Hold time
- Idle
Hold intTime - Idle hold time
- Incoming
Bgp GetConnection Logical Router Vrf Bgp Peer Group Peer Connection Options Incoming Bgp Connection - Incoming bgp connection
- Keep
Alive stringInterval - Keep alive interval
- Max
Prefixes string - Max prefixes
- Min
Route intAdv Interval - Min route adv interval
- Multihop string
- Multihop
- Open
Delay intTime - Open delay time
- Outgoing
Bgp GetConnection Logical Router Vrf Bgp Peer Group Peer Connection Options Outgoing Bgp Connection - Outgoing bgp connection
- Timers string
- Timers
- Authentication string
- Authentication
- Dampening string
- Dampening
- Hold
Time string - Hold time
- Idle
Hold intTime - Idle hold time
- Incoming
Bgp GetConnection Logical Router Vrf Bgp Peer Group Peer Connection Options Incoming Bgp Connection - Incoming bgp connection
- Keep
Alive stringInterval - Keep alive interval
- Max
Prefixes string - Max prefixes
- Min
Route intAdv Interval - Min route adv interval
- Multihop string
- Multihop
- Open
Delay intTime - Open delay time
- Outgoing
Bgp GetConnection Logical Router Vrf Bgp Peer Group Peer Connection Options Outgoing Bgp Connection - Outgoing bgp connection
- Timers string
- Timers
- authentication String
- Authentication
- dampening String
- Dampening
- hold
Time String - Hold time
- idle
Hold IntegerTime - Idle hold time
- incoming
Bgp GetConnection Logical Router Vrf Bgp Peer Group Peer Connection Options Incoming Bgp Connection - Incoming bgp connection
- keep
Alive StringInterval - Keep alive interval
- max
Prefixes String - Max prefixes
- min
Route IntegerAdv Interval - Min route adv interval
- multihop String
- Multihop
- open
Delay IntegerTime - Open delay time
- outgoing
Bgp GetConnection Logical Router Vrf Bgp Peer Group Peer Connection Options Outgoing Bgp Connection - Outgoing bgp connection
- timers String
- Timers
- authentication string
- Authentication
- dampening string
- Dampening
- hold
Time string - Hold time
- idle
Hold numberTime - Idle hold time
- incoming
Bgp GetConnection Logical Router Vrf Bgp Peer Group Peer Connection Options Incoming Bgp Connection - Incoming bgp connection
- keep
Alive stringInterval - Keep alive interval
- max
Prefixes string - Max prefixes
- min
Route numberAdv Interval - Min route adv interval
- multihop string
- Multihop
- open
Delay numberTime - Open delay time
- outgoing
Bgp GetConnection Logical Router Vrf Bgp Peer Group Peer Connection Options Outgoing Bgp Connection - Outgoing bgp connection
- timers string
- Timers
- authentication str
- Authentication
- dampening str
- Dampening
- hold_
time str - Hold time
- idle_
hold_ inttime - Idle hold time
- incoming_
bgp_ Getconnection Logical Router Vrf Bgp Peer Group Peer Connection Options Incoming Bgp Connection - Incoming bgp connection
- keep_
alive_ strinterval - Keep alive interval
- max_
prefixes str - Max prefixes
- min_
route_ intadv_ interval - Min route adv interval
- multihop str
- Multihop
- open_
delay_ inttime - Open delay time
- outgoing_
bgp_ Getconnection Logical Router Vrf Bgp Peer Group Peer Connection Options Outgoing Bgp Connection - Outgoing bgp connection
- timers str
- Timers
- authentication String
- Authentication
- dampening String
- Dampening
- hold
Time String - Hold time
- idle
Hold NumberTime - Idle hold time
- incoming
Bgp Property MapConnection - Incoming bgp connection
- keep
Alive StringInterval - Keep alive interval
- max
Prefixes String - Max prefixes
- min
Route NumberAdv Interval - Min route adv interval
- multihop String
- Multihop
- open
Delay NumberTime - Open delay time
- outgoing
Bgp Property MapConnection - Outgoing bgp connection
- timers String
- Timers
GetLogicalRouterVrfBgpPeerGroupPeerConnectionOptionsIncomingBgpConnection
- Allow bool
- Allow
- Remote
Port int - Remote port
- Allow bool
- Allow
- Remote
Port int - Remote port
- allow Boolean
- Allow
- remote
Port Integer - Remote port
- allow boolean
- Allow
- remote
Port number - Remote port
- allow bool
- Allow
- remote_
port int - Remote port
- allow Boolean
- Allow
- remote
Port Number - Remote port
GetLogicalRouterVrfBgpPeerGroupPeerConnectionOptionsOutgoingBgpConnection
- allow bool
- Allow
- local_
port int - Local port
GetLogicalRouterVrfBgpPeerGroupPeerInherit
GetLogicalRouterVrfBgpPeerGroupPeerInheritNo
- address
Family Property Map - Address family
- filtering
Profile Property Map - Filtering profile
GetLogicalRouterVrfBgpPeerGroupPeerInheritNoAddressFamily
GetLogicalRouterVrfBgpPeerGroupPeerInheritNoFilteringProfile
GetLogicalRouterVrfBgpPeerGroupPeerLocalAddress
- interface_ String
- Interface
- ip String
- Ip
GetLogicalRouterVrfBgpPeerGroupPeerPeerAddress
GetLogicalRouterVrfBgpPeerGroupPeerSubsequentAddressFamilyIdentifier
GetLogicalRouterVrfBgpPeerGroupType
- ebgp Property Map
- Ebgp
- ebgp
Confed Property Map - Ebgp confed
- ibgp Property Map
- Ibgp
- ibgp
Confed Property Map - Ibgp confed
GetLogicalRouterVrfBgpPeerGroupTypeEbgp
- Export
Nexthop string - Export nexthop
- Import
Nexthop string - Import nexthop
- Remove
Private boolAs - Remove private as
- Export
Nexthop string - Export nexthop
- Import
Nexthop string - Import nexthop
- Remove
Private boolAs - Remove private as
- export
Nexthop String - Export nexthop
- import
Nexthop String - Import nexthop
- remove
Private BooleanAs - Remove private as
- export
Nexthop string - Export nexthop
- import
Nexthop string - Import nexthop
- remove
Private booleanAs - Remove private as
- export_
nexthop str - Export nexthop
- import_
nexthop str - Import nexthop
- remove_
private_ boolas - Remove private as
- export
Nexthop String - Export nexthop
- import
Nexthop String - Import nexthop
- remove
Private BooleanAs - Remove private as
GetLogicalRouterVrfBgpPeerGroupTypeEbgpConfed
- Export
Nexthop string - Export nexthop
- Export
Nexthop string - Export nexthop
- export
Nexthop String - Export nexthop
- export
Nexthop string - Export nexthop
- export_
nexthop str - Export nexthop
- export
Nexthop String - Export nexthop
GetLogicalRouterVrfBgpPeerGroupTypeIbgp
- Export
Nexthop string - Export nexthop
- Export
Nexthop string - Export nexthop
- export
Nexthop String - Export nexthop
- export
Nexthop string - Export nexthop
- export_
nexthop str - Export nexthop
- export
Nexthop String - Export nexthop
GetLogicalRouterVrfBgpPeerGroupTypeIbgpConfed
- Export
Nexthop string - Export nexthop
- Export
Nexthop string - Export nexthop
- export
Nexthop String - Export nexthop
- export
Nexthop string - Export nexthop
- export_
nexthop str - Export nexthop
- export
Nexthop String - Export nexthop
GetLogicalRouterVrfBgpPolicy
- Aggregation
Get
Logical Router Vrf Bgp Policy Aggregation - Aggregation
- Conditional
Advertisement GetLogical Router Vrf Bgp Policy Conditional Advertisement - Conditional advertisement
- Export
Get
Logical Router Vrf Bgp Policy Export - Export
- Import
Get
Logical Router Vrf Bgp Policy Import - Import
- Aggregation
Get
Logical Router Vrf Bgp Policy Aggregation - Aggregation
- Conditional
Advertisement GetLogical Router Vrf Bgp Policy Conditional Advertisement - Conditional advertisement
- Export
Get
Logical Router Vrf Bgp Policy Export - Export
- Import
Get
Logical Router Vrf Bgp Policy Import - Import
- aggregation
Get
Logical Router Vrf Bgp Policy Aggregation - Aggregation
- conditional
Advertisement GetLogical Router Vrf Bgp Policy Conditional Advertisement - Conditional advertisement
- export
Get
Logical Router Vrf Bgp Policy Export - Export
- import_
Get
Logical Router Vrf Bgp Policy Import - Import
- aggregation
Get
Logical Router Vrf Bgp Policy Aggregation - Aggregation
- conditional
Advertisement GetLogical Router Vrf Bgp Policy Conditional Advertisement - Conditional advertisement
- export
Get
Logical Router Vrf Bgp Policy Export - Export
- import
Get
Logical Router Vrf Bgp Policy Import - Import
- aggregation
Get
Logical Router Vrf Bgp Policy Aggregation - Aggregation
- conditional_
advertisement GetLogical Router Vrf Bgp Policy Conditional Advertisement - Conditional advertisement
- export
Get
Logical Router Vrf Bgp Policy Export - Export
- import_
Get
Logical Router Vrf Bgp Policy Import - Import
- aggregation Property Map
- Aggregation
- conditional
Advertisement Property Map - Conditional advertisement
- export Property Map
- Export
- import Property Map
- Import
GetLogicalRouterVrfBgpPolicyAggregation
- addresses List<Property Map>
- Address
GetLogicalRouterVrfBgpPolicyAggregationAddress
- Advertise
Filters List<GetLogical Router Vrf Bgp Policy Aggregation Address Advertise Filter> - Advertise filters
- Aggregate
Route GetAttributes Logical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes - Aggregate route attributes
- As
Set bool - As set
- Enable bool
- Enable
- Name string
- Name
- Prefix string
- Prefix
- Summary bool
- Summary
- Suppress
Filters List<GetLogical Router Vrf Bgp Policy Aggregation Address Suppress Filter> - Suppress filters
- Advertise
Filters []GetLogical Router Vrf Bgp Policy Aggregation Address Advertise Filter - Advertise filters
- Aggregate
Route GetAttributes Logical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes - Aggregate route attributes
- As
Set bool - As set
- Enable bool
- Enable
- Name string
- Name
- Prefix string
- Prefix
- Summary bool
- Summary
- Suppress
Filters []GetLogical Router Vrf Bgp Policy Aggregation Address Suppress Filter - Suppress filters
- advertise
Filters List<GetLogical Router Vrf Bgp Policy Aggregation Address Advertise Filter> - Advertise filters
- aggregate
Route GetAttributes Logical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes - Aggregate route attributes
- as
Set Boolean - As set
- enable Boolean
- Enable
- name String
- Name
- prefix String
- Prefix
- summary Boolean
- Summary
- suppress
Filters List<GetLogical Router Vrf Bgp Policy Aggregation Address Suppress Filter> - Suppress filters
- advertise
Filters GetLogical Router Vrf Bgp Policy Aggregation Address Advertise Filter[] - Advertise filters
- aggregate
Route GetAttributes Logical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes - Aggregate route attributes
- as
Set boolean - As set
- enable boolean
- Enable
- name string
- Name
- prefix string
- Prefix
- summary boolean
- Summary
- suppress
Filters GetLogical Router Vrf Bgp Policy Aggregation Address Suppress Filter[] - Suppress filters
- advertise_
filters Sequence[GetLogical Router Vrf Bgp Policy Aggregation Address Advertise Filter] - Advertise filters
- aggregate_
route_ Getattributes Logical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes - Aggregate route attributes
- as_
set bool - As set
- enable bool
- Enable
- name str
- Name
- prefix str
- Prefix
- summary bool
- Summary
- suppress_
filters Sequence[GetLogical Router Vrf Bgp Policy Aggregation Address Suppress Filter] - Suppress filters
- advertise
Filters List<Property Map> - Advertise filters
- aggregate
Route Property MapAttributes - Aggregate route attributes
- as
Set Boolean - As set
- enable Boolean
- Enable
- name String
- Name
- prefix String
- Prefix
- summary Boolean
- Summary
- suppress
Filters List<Property Map> - Suppress filters
GetLogicalRouterVrfBgpPolicyAggregationAddressAdvertiseFilter
- Enable bool
- Enable
- Match
Get
Logical Router Vrf Bgp Policy Aggregation Address Advertise Filter Match - Match
- Name string
- Name
- Enable bool
- Enable
- Match
Get
Logical Router Vrf Bgp Policy Aggregation Address Advertise Filter Match - Match
- Name string
- Name
- enable Boolean
- Enable
- match
Get
Logical Router Vrf Bgp Policy Aggregation Address Advertise Filter Match - Match
- name String
- Name
- enable boolean
- Enable
- match
Get
Logical Router Vrf Bgp Policy Aggregation Address Advertise Filter Match - Match
- name string
- Name
- enable bool
- Enable
- match
Get
Logical Router Vrf Bgp Policy Aggregation Address Advertise Filter Match - Match
- name str
- Name
- enable Boolean
- Enable
- match Property Map
- Match
- name String
- Name
GetLogicalRouterVrfBgpPolicyAggregationAddressAdvertiseFilterMatch
- Address
Prefixes List<GetLogical Router Vrf Bgp Policy Aggregation Address Advertise Filter Match Address Prefix> - Address prefix
- Afi string
- Afi
- As
Path GetLogical Router Vrf Bgp Policy Aggregation Address Advertise Filter Match As Path - As path
- Community
Get
Logical Router Vrf Bgp Policy Aggregation Address Advertise Filter Match Community - Community
- Extended
Community GetLogical Router Vrf Bgp Policy Aggregation Address Advertise Filter Match Extended Community - Extended community
- From
Peers List<string> - From peer
- Med int
- Med
- Nexthops List<string>
- Nexthop
- Route
Table string - Route table
- Safi string
- Safi
- Address
Prefixes []GetLogical Router Vrf Bgp Policy Aggregation Address Advertise Filter Match Address Prefix - Address prefix
- Afi string
- Afi
- As
Path GetLogical Router Vrf Bgp Policy Aggregation Address Advertise Filter Match As Path - As path
- Community
Get
Logical Router Vrf Bgp Policy Aggregation Address Advertise Filter Match Community - Community
- Extended
Community GetLogical Router Vrf Bgp Policy Aggregation Address Advertise Filter Match Extended Community - Extended community
- From
Peers []string - From peer
- Med int
- Med
- Nexthops []string
- Nexthop
- Route
Table string - Route table
- Safi string
- Safi
- address
Prefixes List<GetLogical Router Vrf Bgp Policy Aggregation Address Advertise Filter Match Address Prefix> - Address prefix
- afi String
- Afi
- as
Path GetLogical Router Vrf Bgp Policy Aggregation Address Advertise Filter Match As Path - As path
- community
Get
Logical Router Vrf Bgp Policy Aggregation Address Advertise Filter Match Community - Community
- extended
Community GetLogical Router Vrf Bgp Policy Aggregation Address Advertise Filter Match Extended Community - Extended community
- from
Peers List<String> - From peer
- med Integer
- Med
- nexthops List<String>
- Nexthop
- route
Table String - Route table
- safi String
- Safi
- address
Prefixes GetLogical Router Vrf Bgp Policy Aggregation Address Advertise Filter Match Address Prefix[] - Address prefix
- afi string
- Afi
- as
Path GetLogical Router Vrf Bgp Policy Aggregation Address Advertise Filter Match As Path - As path
- community
Get
Logical Router Vrf Bgp Policy Aggregation Address Advertise Filter Match Community - Community
- extended
Community GetLogical Router Vrf Bgp Policy Aggregation Address Advertise Filter Match Extended Community - Extended community
- from
Peers string[] - From peer
- med number
- Med
- nexthops string[]
- Nexthop
- route
Table string - Route table
- safi string
- Safi
- address_
prefixes Sequence[GetLogical Router Vrf Bgp Policy Aggregation Address Advertise Filter Match Address Prefix] - Address prefix
- afi str
- Afi
- as_
path GetLogical Router Vrf Bgp Policy Aggregation Address Advertise Filter Match As Path - As path
- community
Get
Logical Router Vrf Bgp Policy Aggregation Address Advertise Filter Match Community - Community
- extended_
community GetLogical Router Vrf Bgp Policy Aggregation Address Advertise Filter Match Extended Community - Extended community
- from_
peers Sequence[str] - From peer
- med int
- Med
- nexthops Sequence[str]
- Nexthop
- route_
table str - Route table
- safi str
- Safi
- address
Prefixes List<Property Map> - Address prefix
- afi String
- Afi
- as
Path Property Map - As path
- community Property Map
- Community
- extended
Community Property Map - Extended community
- from
Peers List<String> - From peer
- med Number
- Med
- nexthops List<String>
- Nexthop
- route
Table String - Route table
- safi String
- Safi
GetLogicalRouterVrfBgpPolicyAggregationAddressAdvertiseFilterMatchAddressPrefix
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
- As
Path GetLogical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes As Path - As path
- As
Path intLimit - As path limit
- Community
Get
Logical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Community - Community
- Extended
Community GetLogical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Extended Community - Extended community
- Local
Preference int - Local preference
- Med int
- Med
- Nexthop string
- Nexthop
- Origin string
- Origin
- Weight int
- Weight
- As
Path GetLogical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes As Path - As path
- As
Path intLimit - As path limit
- Community
Get
Logical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Community - Community
- Extended
Community GetLogical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Extended Community - Extended community
- Local
Preference int - Local preference
- Med int
- Med
- Nexthop string
- Nexthop
- Origin string
- Origin
- Weight int
- Weight
- as
Path GetLogical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes As Path - As path
- as
Path IntegerLimit - As path limit
- community
Get
Logical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Community - Community
- extended
Community GetLogical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Extended Community - Extended community
- local
Preference Integer - Local preference
- med Integer
- Med
- nexthop String
- Nexthop
- origin String
- Origin
- weight Integer
- Weight
- as
Path GetLogical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes As Path - As path
- as
Path numberLimit - As path limit
- community
Get
Logical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Community - Community
- extended
Community GetLogical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Extended Community - Extended community
- local
Preference number - Local preference
- med number
- Med
- nexthop string
- Nexthop
- origin string
- Origin
- weight number
- Weight
- as_
path GetLogical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes As Path - As path
- as_
path_ intlimit - As path limit
- community
Get
Logical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Community - Community
- extended_
community GetLogical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Extended Community - Extended community
- local_
preference int - Local preference
- med int
- Med
- nexthop str
- Nexthop
- origin str
- Origin
- weight int
- Weight
- as
Path Property Map - As path
- as
Path NumberLimit - As path limit
- community Property Map
- Community
- extended
Community Property Map - Extended community
- local
Preference Number - Local preference
- med Number
- Med
- nexthop String
- Nexthop
- origin String
- Origin
- weight Number
- Weight
GetLogicalRouterVrfBgpPolicyAggregationAddressAggregateRouteAttributesAsPath
- none
Get
Logical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes As Path None - None
- prepend Integer
- Prepend
- remove
Get
Logical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes As Path Remove - Remove
- remove
And IntegerPrepend - Remove and prepend
- none
Get
Logical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes As Path None - None
- prepend number
- Prepend
- remove
Get
Logical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes As Path Remove - Remove
- remove
And numberPrepend - Remove and prepend
- none Property Map
- None
- prepend Number
- Prepend
- remove Property Map
- Remove
- remove
And NumberPrepend - Remove and prepend
GetLogicalRouterVrfBgpPolicyAggregationAddressAggregateRouteAttributesCommunity
- Appends List<string>
- Append
- None
Get
Logical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Community None - None
- Overwrites List<string>
- Overwrite
- Remove
All GetLogical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Community Remove All - Remove all
- Remove
Regex string - Remove regex
- Appends []string
- Append
- None
Get
Logical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Community None - None
- Overwrites []string
- Overwrite
- Remove
All GetLogical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Community Remove All - Remove all
- Remove
Regex string - Remove regex
- appends List<String>
- Append
- none
Get
Logical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Community None - None
- overwrites List<String>
- Overwrite
- remove
All GetLogical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Community Remove All - Remove all
- remove
Regex String - Remove regex
- appends string[]
- Append
- none
Get
Logical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Community None - None
- overwrites string[]
- Overwrite
- remove
All GetLogical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Community Remove All - Remove all
- remove
Regex string - Remove regex
- appends Sequence[str]
- Append
- none
Get
Logical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Community None - None
- overwrites Sequence[str]
- Overwrite
- remove_
all GetLogical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Community Remove All - Remove all
- remove_
regex str - Remove regex
- appends List<String>
- Append
- none Property Map
- None
- overwrites List<String>
- Overwrite
- remove
All Property Map - Remove all
- remove
Regex String - Remove regex
GetLogicalRouterVrfBgpPolicyAggregationAddressAggregateRouteAttributesExtendedCommunity
- Appends List<string>
- Append
- None
Get
Logical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Extended Community None - None
- Overwrites List<string>
- Overwrite
- Remove
All GetLogical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Extended Community Remove All - Remove all
- Remove
Regex string - Remove regex
- Appends []string
- Append
- None
Get
Logical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Extended Community None - None
- Overwrites []string
- Overwrite
- Remove
All GetLogical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Extended Community Remove All - Remove all
- Remove
Regex string - Remove regex
- appends List<String>
- Append
- none
Get
Logical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Extended Community None - None
- overwrites List<String>
- Overwrite
- remove
All GetLogical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Extended Community Remove All - Remove all
- remove
Regex String - Remove regex
- appends string[]
- Append
- none
Get
Logical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Extended Community None - None
- overwrites string[]
- Overwrite
- remove
All GetLogical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Extended Community Remove All - Remove all
- remove
Regex string - Remove regex
- appends Sequence[str]
- Append
- none
Get
Logical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Extended Community None - None
- overwrites Sequence[str]
- Overwrite
- remove_
all GetLogical Router Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Extended Community Remove All - Remove all
- remove_
regex str - Remove regex
- appends List<String>
- Append
- none Property Map
- None
- overwrites List<String>
- Overwrite
- remove
All Property Map - Remove all
- remove
Regex String - Remove regex
GetLogicalRouterVrfBgpPolicyAggregationAddressSuppressFilter
- Enable bool
- Enable
- Match
Get
Logical Router Vrf Bgp Policy Aggregation Address Suppress Filter Match - Match
- Name string
- Name
- Enable bool
- Enable
- Match
Get
Logical Router Vrf Bgp Policy Aggregation Address Suppress Filter Match - Match
- Name string
- Name
- enable Boolean
- Enable
- match
Get
Logical Router Vrf Bgp Policy Aggregation Address Suppress Filter Match - Match
- name String
- Name
- enable boolean
- Enable
- match
Get
Logical Router Vrf Bgp Policy Aggregation Address Suppress Filter Match - Match
- name string
- Name
- enable bool
- Enable
- match
Get
Logical Router Vrf Bgp Policy Aggregation Address Suppress Filter Match - Match
- name str
- Name
- enable Boolean
- Enable
- match Property Map
- Match
- name String
- Name
GetLogicalRouterVrfBgpPolicyAggregationAddressSuppressFilterMatch
- Address
Prefixes List<GetLogical Router Vrf Bgp Policy Aggregation Address Suppress Filter Match Address Prefix> - Address prefix
- Afi string
- Afi
- As
Path GetLogical Router Vrf Bgp Policy Aggregation Address Suppress Filter Match As Path - As path
- Community
Get
Logical Router Vrf Bgp Policy Aggregation Address Suppress Filter Match Community - Community
- Extended
Community GetLogical Router Vrf Bgp Policy Aggregation Address Suppress Filter Match Extended Community - Extended community
- From
Peers List<string> - From peer
- Med int
- Med
- Nexthops List<string>
- Nexthop
- Route
Table string - Route table
- Safi string
- Safi
- Address
Prefixes []GetLogical Router Vrf Bgp Policy Aggregation Address Suppress Filter Match Address Prefix - Address prefix
- Afi string
- Afi
- As
Path GetLogical Router Vrf Bgp Policy Aggregation Address Suppress Filter Match As Path - As path
- Community
Get
Logical Router Vrf Bgp Policy Aggregation Address Suppress Filter Match Community - Community
- Extended
Community GetLogical Router Vrf Bgp Policy Aggregation Address Suppress Filter Match Extended Community - Extended community
- From
Peers []string - From peer
- Med int
- Med
- Nexthops []string
- Nexthop
- Route
Table string - Route table
- Safi string
- Safi
- address
Prefixes List<GetLogical Router Vrf Bgp Policy Aggregation Address Suppress Filter Match Address Prefix> - Address prefix
- afi String
- Afi
- as
Path GetLogical Router Vrf Bgp Policy Aggregation Address Suppress Filter Match As Path - As path
- community
Get
Logical Router Vrf Bgp Policy Aggregation Address Suppress Filter Match Community - Community
- extended
Community GetLogical Router Vrf Bgp Policy Aggregation Address Suppress Filter Match Extended Community - Extended community
- from
Peers List<String> - From peer
- med Integer
- Med
- nexthops List<String>
- Nexthop
- route
Table String - Route table
- safi String
- Safi
- address
Prefixes GetLogical Router Vrf Bgp Policy Aggregation Address Suppress Filter Match Address Prefix[] - Address prefix
- afi string
- Afi
- as
Path GetLogical Router Vrf Bgp Policy Aggregation Address Suppress Filter Match As Path - As path
- community
Get
Logical Router Vrf Bgp Policy Aggregation Address Suppress Filter Match Community - Community
- extended
Community GetLogical Router Vrf Bgp Policy Aggregation Address Suppress Filter Match Extended Community - Extended community
- from
Peers string[] - From peer
- med number
- Med
- nexthops string[]
- Nexthop
- route
Table string - Route table
- safi string
- Safi
- address_
prefixes Sequence[GetLogical Router Vrf Bgp Policy Aggregation Address Suppress Filter Match Address Prefix] - Address prefix
- afi str
- Afi
- as_
path GetLogical Router Vrf Bgp Policy Aggregation Address Suppress Filter Match As Path - As path
- community
Get
Logical Router Vrf Bgp Policy Aggregation Address Suppress Filter Match Community - Community
- extended_
community GetLogical Router Vrf Bgp Policy Aggregation Address Suppress Filter Match Extended Community - Extended community
- from_
peers Sequence[str] - From peer
- med int
- Med
- nexthops Sequence[str]
- Nexthop
- route_
table str - Route table
- safi str
- Safi
- address
Prefixes List<Property Map> - Address prefix
- afi String
- Afi
- as
Path Property Map - As path
- community Property Map
- Community
- extended
Community Property Map - Extended community
- from
Peers List<String> - From peer
- med Number
- Med
- nexthops List<String>
- Nexthop
- route
Table String - Route table
- safi String
- Safi
GetLogicalRouterVrfBgpPolicyAggregationAddressSuppressFilterMatchAddressPrefix
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
- policies List<Property Map>
- Policy
GetLogicalRouterVrfBgpPolicyConditionalAdvertisementPolicy
- Advertise
Filters List<GetLogical Router Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter> - Advertise filters
- Enable bool
- Enable
- Name string
- Name
- Non
Exist List<GetFilters Logical Router Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter> - Non exist filters
- Used
Bies List<string> - Used by
- Advertise
Filters []GetLogical Router Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter - Advertise filters
- Enable bool
- Enable
- Name string
- Name
- Non
Exist []GetFilters Logical Router Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter - Non exist filters
- Used
Bies []string - Used by
- advertise
Filters List<GetLogical Router Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter> - Advertise filters
- enable Boolean
- Enable
- name String
- Name
- non
Exist List<GetFilters Logical Router Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter> - Non exist filters
- used
Bies List<String> - Used by
- advertise
Filters GetLogical Router Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter[] - Advertise filters
- enable boolean
- Enable
- name string
- Name
- non
Exist GetFilters Logical Router Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter[] - Non exist filters
- used
Bies string[] - Used by
- advertise_
filters Sequence[GetLogical Router Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter] - Advertise filters
- enable bool
- Enable
- name str
- Name
- non_
exist_ Sequence[Getfilters Logical Router Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter] - Non exist filters
- used_
bies Sequence[str] - Used by
- advertise
Filters List<Property Map> - Advertise filters
- enable Boolean
- Enable
- name String
- Name
- non
Exist List<Property Map>Filters - Non exist filters
- used
Bies List<String> - Used by
GetLogicalRouterVrfBgpPolicyConditionalAdvertisementPolicyAdvertiseFilter
- Enable bool
- Enable
- Match
Get
Logical Router Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match - Match
- Name string
- Name
- Enable bool
- Enable
- Match
Get
Logical Router Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match - Match
- Name string
- Name
- enable Boolean
- Enable
- match
Get
Logical Router Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match - Match
- name String
- Name
- enable boolean
- Enable
- match
Get
Logical Router Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match - Match
- name string
- Name
- enable bool
- Enable
- match
Get
Logical Router Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match - Match
- name str
- Name
- enable Boolean
- Enable
- match Property Map
- Match
- name String
- Name
GetLogicalRouterVrfBgpPolicyConditionalAdvertisementPolicyAdvertiseFilterMatch
- Address
Prefixes List<GetLogical Router Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match Address Prefix> - Address prefix
- Afi string
- Afi
- As
Path GetLogical Router Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match As Path - As path
- Community
Get
Logical Router Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match Community - Community
- Extended
Community GetLogical Router Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match Extended Community - Extended community
- From
Peers List<string> - From peer
- Med int
- Med
- Nexthops List<string>
- Nexthop
- Route
Table string - Route table
- Safi string
- Safi
- Address
Prefixes []GetLogical Router Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match Address Prefix - Address prefix
- Afi string
- Afi
- As
Path GetLogical Router Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match As Path - As path
- Community
Get
Logical Router Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match Community - Community
- Extended
Community GetLogical Router Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match Extended Community - Extended community
- From
Peers []string - From peer
- Med int
- Med
- Nexthops []string
- Nexthop
- Route
Table string - Route table
- Safi string
- Safi
- address
Prefixes List<GetLogical Router Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match Address Prefix> - Address prefix
- afi String
- Afi
- as
Path GetLogical Router Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match As Path - As path
- community
Get
Logical Router Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match Community - Community
- extended
Community GetLogical Router Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match Extended Community - Extended community
- from
Peers List<String> - From peer
- med Integer
- Med
- nexthops List<String>
- Nexthop
- route
Table String - Route table
- safi String
- Safi
- address
Prefixes GetLogical Router Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match Address Prefix[] - Address prefix
- afi string
- Afi
- as
Path GetLogical Router Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match As Path - As path
- community
Get
Logical Router Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match Community - Community
- extended
Community GetLogical Router Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match Extended Community - Extended community
- from
Peers string[] - From peer
- med number
- Med
- nexthops string[]
- Nexthop
- route
Table string - Route table
- safi string
- Safi
- address_
prefixes Sequence[GetLogical Router Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match Address Prefix] - Address prefix
- afi str
- Afi
- as_
path GetLogical Router Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match As Path - As path
- community
Get
Logical Router Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match Community - Community
- extended_
community GetLogical Router Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match Extended Community - Extended community
- from_
peers Sequence[str] - From peer
- med int
- Med
- nexthops Sequence[str]
- Nexthop
- route_
table str - Route table
- safi str
- Safi
- address
Prefixes List<Property Map> - Address prefix
- afi String
- Afi
- as
Path Property Map - As path
- community Property Map
- Community
- extended
Community Property Map - Extended community
- from
Peers List<String> - From peer
- med Number
- Med
- nexthops List<String>
- Nexthop
- route
Table String - Route table
- safi String
- Safi
GetLogicalRouterVrfBgpPolicyConditionalAdvertisementPolicyAdvertiseFilterMatchAddressPrefix
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 bool
- Enable
- Match
Get
Logical Router Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match - Match
- Name string
- Name
- Enable bool
- Enable
- Match
Get
Logical Router Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match - Match
- Name string
- Name
- enable Boolean
- Enable
- match
Get
Logical Router Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match - Match
- name String
- Name
- enable boolean
- Enable
- match
Get
Logical Router Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match - Match
- name string
- Name
- enable bool
- Enable
- match
Get
Logical Router Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match - Match
- name str
- Name
- enable Boolean
- Enable
- match Property Map
- Match
- name String
- Name
GetLogicalRouterVrfBgpPolicyConditionalAdvertisementPolicyNonExistFilterMatch
- Address
Prefixes List<GetLogical Router Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match Address Prefix> - Address prefix
- Afi string
- Afi
- As
Path GetLogical Router Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match As Path - As path
- Community
Get
Logical Router Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match Community - Community
- Extended
Community GetLogical Router Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match Extended Community - Extended community
- From
Peers List<string> - From peer
- Med int
- Med
- Nexthops List<string>
- Nexthop
- Route
Table string - Route table
- Safi string
- Safi
- Address
Prefixes []GetLogical Router Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match Address Prefix - Address prefix
- Afi string
- Afi
- As
Path GetLogical Router Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match As Path - As path
- Community
Get
Logical Router Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match Community - Community
- Extended
Community GetLogical Router Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match Extended Community - Extended community
- From
Peers []string - From peer
- Med int
- Med
- Nexthops []string
- Nexthop
- Route
Table string - Route table
- Safi string
- Safi
- address
Prefixes List<GetLogical Router Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match Address Prefix> - Address prefix
- afi String
- Afi
- as
Path GetLogical Router Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match As Path - As path
- community
Get
Logical Router Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match Community - Community
- extended
Community GetLogical Router Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match Extended Community - Extended community
- from
Peers List<String> - From peer
- med Integer
- Med
- nexthops List<String>
- Nexthop
- route
Table String - Route table
- safi String
- Safi
- address
Prefixes GetLogical Router Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match Address Prefix[] - Address prefix
- afi string
- Afi
- as
Path GetLogical Router Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match As Path - As path
- community
Get
Logical Router Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match Community - Community
- extended
Community GetLogical Router Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match Extended Community - Extended community
- from
Peers string[] - From peer
- med number
- Med
- nexthops string[]
- Nexthop
- route
Table string - Route table
- safi string
- Safi
- address_
prefixes Sequence[GetLogical Router Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match Address Prefix] - Address prefix
- afi str
- Afi
- as_
path GetLogical Router Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match As Path - As path
- community
Get
Logical Router Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match Community - Community
- extended_
community GetLogical Router Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match Extended Community - Extended community
- from_
peers Sequence[str] - From peer
- med int
- Med
- nexthops Sequence[str]
- Nexthop
- route_
table str - Route table
- safi str
- Safi
- address
Prefixes List<Property Map> - Address prefix
- afi String
- Afi
- as
Path Property Map - As path
- community Property Map
- Community
- extended
Community Property Map - Extended community
- from
Peers List<String> - From peer
- med Number
- Med
- nexthops List<String>
- Nexthop
- route
Table String - Route table
- safi String
- Safi
GetLogicalRouterVrfBgpPolicyConditionalAdvertisementPolicyNonExistFilterMatchAddressPrefix
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
- rules List<Property Map>
- Rules
GetLogicalRouterVrfBgpPolicyExportRule
- Action
Get
Logical Router Vrf Bgp Policy Export Rule Action - Action
- Enable bool
- Enable
- Match
Get
Logical Router Vrf Bgp Policy Export Rule Match - Match
- Name string
- Name
- Used
Bies List<string> - Used by
- Action
Get
Logical Router Vrf Bgp Policy Export Rule Action - Action
- Enable bool
- Enable
- Match
Get
Logical Router Vrf Bgp Policy Export Rule Match - Match
- Name string
- Name
- Used
Bies []string - Used by
- action
Get
Logical Router Vrf Bgp Policy Export Rule Action - Action
- enable Boolean
- Enable
- match
Get
Logical Router Vrf Bgp Policy Export Rule Match - Match
- name String
- Name
- used
Bies List<String> - Used by
- action
Get
Logical Router Vrf Bgp Policy Export Rule Action - Action
- enable boolean
- Enable
- match
Get
Logical Router Vrf Bgp Policy Export Rule Match - Match
- name string
- Name
- used
Bies string[] - Used by
- action
Get
Logical Router Vrf Bgp Policy Export Rule Action - Action
- enable bool
- Enable
- match
Get
Logical Router Vrf Bgp Policy Export Rule Match - Match
- name str
- Name
- used_
bies Sequence[str] - Used by
- action Property Map
- Action
- enable Boolean
- Enable
- match Property Map
- Match
- name String
- Name
- used
Bies List<String> - Used by
GetLogicalRouterVrfBgpPolicyExportRuleAction
- allow Property Map
- Allow
- deny Property Map
- Deny
GetLogicalRouterVrfBgpPolicyExportRuleActionAllow
- update Property Map
- Update
GetLogicalRouterVrfBgpPolicyExportRuleActionAllowUpdate
- As
Path GetLogical Router Vrf Bgp Policy Export Rule Action Allow Update As Path - As path
- As
Path intLimit - As path limit
- Community
Get
Logical Router Vrf Bgp Policy Export Rule Action Allow Update Community - Community
- Extended
Community GetLogical Router Vrf Bgp Policy Export Rule Action Allow Update Extended Community - Extended community
- Local
Preference int - Local preference
- Med int
- Med
- Nexthop string
- Nexthop
- Origin string
- Origin
- As
Path GetLogical Router Vrf Bgp Policy Export Rule Action Allow Update As Path - As path
- As
Path intLimit - As path limit
- Community
Get
Logical Router Vrf Bgp Policy Export Rule Action Allow Update Community - Community
- Extended
Community GetLogical Router Vrf Bgp Policy Export Rule Action Allow Update Extended Community - Extended community
- Local
Preference int - Local preference
- Med int
- Med
- Nexthop string
- Nexthop
- Origin string
- Origin
- as
Path GetLogical Router Vrf Bgp Policy Export Rule Action Allow Update As Path - As path
- as
Path IntegerLimit - As path limit
- community
Get
Logical Router Vrf Bgp Policy Export Rule Action Allow Update Community - Community
- extended
Community GetLogical Router Vrf Bgp Policy Export Rule Action Allow Update Extended Community - Extended community
- local
Preference Integer - Local preference
- med Integer
- Med
- nexthop String
- Nexthop
- origin String
- Origin
- as
Path GetLogical Router Vrf Bgp Policy Export Rule Action Allow Update As Path - As path
- as
Path numberLimit - As path limit
- community
Get
Logical Router Vrf Bgp Policy Export Rule Action Allow Update Community - Community
- extended
Community GetLogical Router Vrf Bgp Policy Export Rule Action Allow Update Extended Community - Extended community
- local
Preference number - Local preference
- med number
- Med
- nexthop string
- Nexthop
- origin string
- Origin
- as_
path GetLogical Router Vrf Bgp Policy Export Rule Action Allow Update As Path - As path
- as_
path_ intlimit - As path limit
- community
Get
Logical Router Vrf Bgp Policy Export Rule Action Allow Update Community - Community
- extended_
community GetLogical Router Vrf Bgp Policy Export Rule Action Allow Update Extended Community - Extended community
- local_
preference int - Local preference
- med int
- Med
- nexthop str
- Nexthop
- origin str
- Origin
- as
Path Property Map - As path
- as
Path NumberLimit - As path limit
- community Property Map
- Community
- extended
Community Property Map - Extended community
- local
Preference Number - Local preference
- med Number
- Med
- nexthop String
- Nexthop
- origin String
- Origin
GetLogicalRouterVrfBgpPolicyExportRuleActionAllowUpdateAsPath
- None
Get
Logical Router Vrf Bgp Policy Export Rule Action Allow Update As Path None - None
- Prepend int
- Prepend
- Remove
Get
Logical Router Vrf Bgp Policy Export Rule Action Allow Update As Path Remove - Remove
- Remove
And intPrepend - Remove and prepend
- None
Get
Logical Router Vrf Bgp Policy Export Rule Action Allow Update As Path None - None
- Prepend int
- Prepend
- Remove
Get
Logical Router Vrf Bgp Policy Export Rule Action Allow Update As Path Remove - Remove
- Remove
And intPrepend - Remove and prepend
- none
Get
Logical Router Vrf Bgp Policy Export Rule Action Allow Update As Path None - None
- prepend Integer
- Prepend
- remove
Get
Logical Router Vrf Bgp Policy Export Rule Action Allow Update As Path Remove - Remove
- remove
And IntegerPrepend - Remove and prepend
- none
Get
Logical Router Vrf Bgp Policy Export Rule Action Allow Update As Path None - None
- prepend number
- Prepend
- remove
Get
Logical Router Vrf Bgp Policy Export Rule Action Allow Update As Path Remove - Remove
- remove
And numberPrepend - Remove and prepend
- none
Get
Logical Router Vrf Bgp Policy Export Rule Action Allow Update As Path None - None
- prepend int
- Prepend
- remove
Get
Logical Router Vrf Bgp Policy Export Rule Action Allow Update As Path Remove - Remove
- remove_
and_ intprepend - Remove and prepend
- none Property Map
- None
- prepend Number
- Prepend
- remove Property Map
- Remove
- remove
And NumberPrepend - Remove and prepend
GetLogicalRouterVrfBgpPolicyExportRuleActionAllowUpdateCommunity
- Appends List<string>
- Append
- None
Get
Logical Router Vrf Bgp Policy Export Rule Action Allow Update Community None - None
- Overwrites List<string>
- Overwrite
- Remove
All GetLogical Router Vrf Bgp Policy Export Rule Action Allow Update Community Remove All - Remove all
- Remove
Regex string - Remove regex
- Appends []string
- Append
- None
Get
Logical Router Vrf Bgp Policy Export Rule Action Allow Update Community None - None
- Overwrites []string
- Overwrite
- Remove
All GetLogical Router Vrf Bgp Policy Export Rule Action Allow Update Community Remove All - Remove all
- Remove
Regex string - Remove regex
- appends List<String>
- Append
- none
Get
Logical Router Vrf Bgp Policy Export Rule Action Allow Update Community None - None
- overwrites List<String>
- Overwrite
- remove
All GetLogical Router Vrf Bgp Policy Export Rule Action Allow Update Community Remove All - Remove all
- remove
Regex String - Remove regex
- appends string[]
- Append
- none
Get
Logical Router Vrf Bgp Policy Export Rule Action Allow Update Community None - None
- overwrites string[]
- Overwrite
- remove
All GetLogical Router Vrf Bgp Policy Export Rule Action Allow Update Community Remove All - Remove all
- remove
Regex string - Remove regex
- appends Sequence[str]
- Append
- none
Get
Logical Router Vrf Bgp Policy Export Rule Action Allow Update Community None - None
- overwrites Sequence[str]
- Overwrite
- remove_
all GetLogical Router Vrf Bgp Policy Export Rule Action Allow Update Community Remove All - Remove all
- remove_
regex str - Remove regex
- appends List<String>
- Append
- none Property Map
- None
- overwrites List<String>
- Overwrite
- remove
All Property Map - Remove all
- remove
Regex String - Remove regex
GetLogicalRouterVrfBgpPolicyExportRuleActionAllowUpdateExtendedCommunity
- Appends List<string>
- Append
- None
Get
Logical Router Vrf Bgp Policy Export Rule Action Allow Update Extended Community None - None
- Overwrites List<string>
- Overwrite
- Remove
All GetLogical Router Vrf Bgp Policy Export Rule Action Allow Update Extended Community Remove All - Remove all
- Remove
Regex string - Remove regex
- Appends []string
- Append
- None
Get
Logical Router Vrf Bgp Policy Export Rule Action Allow Update Extended Community None - None
- Overwrites []string
- Overwrite
- Remove
All GetLogical Router Vrf Bgp Policy Export Rule Action Allow Update Extended Community Remove All - Remove all
- Remove
Regex string - Remove regex
- appends List<String>
- Append
- none
Get
Logical Router Vrf Bgp Policy Export Rule Action Allow Update Extended Community None - None
- overwrites List<String>
- Overwrite
- remove
All GetLogical Router Vrf Bgp Policy Export Rule Action Allow Update Extended Community Remove All - Remove all
- remove
Regex String - Remove regex
- appends string[]
- Append
- none
Get
Logical Router Vrf Bgp Policy Export Rule Action Allow Update Extended Community None - None
- overwrites string[]
- Overwrite
- remove
All GetLogical Router Vrf Bgp Policy Export Rule Action Allow Update Extended Community Remove All - Remove all
- remove
Regex string - Remove regex
- appends Sequence[str]
- Append
- none
Get
Logical Router Vrf Bgp Policy Export Rule Action Allow Update Extended Community None - None
- overwrites Sequence[str]
- Overwrite
- remove_
all GetLogical Router Vrf Bgp Policy Export Rule Action Allow Update Extended Community Remove All - Remove all
- remove_
regex str - Remove regex
- appends List<String>
- Append
- none Property Map
- None
- overwrites List<String>
- Overwrite
- remove
All Property Map - Remove all
- remove
Regex String - Remove regex
GetLogicalRouterVrfBgpPolicyExportRuleMatch
- Address
Prefixes List<GetLogical Router Vrf Bgp Policy Export Rule Match Address Prefix> - Address prefix
- Afi string
- Afi
- As
Path GetLogical Router Vrf Bgp Policy Export Rule Match As Path - As path
- Community
Get
Logical Router Vrf Bgp Policy Export Rule Match Community - Community
- Extended
Community GetLogical Router Vrf Bgp Policy Export Rule Match Extended Community - Extended community
- From
Peers List<string> - From peer
- Med int
- Med
- Nexthops List<string>
- Nexthop
- Route
Table string - Route table
- Safi string
- Safi
- Address
Prefixes []GetLogical Router Vrf Bgp Policy Export Rule Match Address Prefix - Address prefix
- Afi string
- Afi
- As
Path GetLogical Router Vrf Bgp Policy Export Rule Match As Path - As path
- Community
Get
Logical Router Vrf Bgp Policy Export Rule Match Community - Community
- Extended
Community GetLogical Router Vrf Bgp Policy Export Rule Match Extended Community - Extended community
- From
Peers []string - From peer
- Med int
- Med
- Nexthops []string
- Nexthop
- Route
Table string - Route table
- Safi string
- Safi
- address
Prefixes List<GetLogical Router Vrf Bgp Policy Export Rule Match Address Prefix> - Address prefix
- afi String
- Afi
- as
Path GetLogical Router Vrf Bgp Policy Export Rule Match As Path - As path
- community
Get
Logical Router Vrf Bgp Policy Export Rule Match Community - Community
- extended
Community GetLogical Router Vrf Bgp Policy Export Rule Match Extended Community - Extended community
- from
Peers List<String> - From peer
- med Integer
- Med
- nexthops List<String>
- Nexthop
- route
Table String - Route table
- safi String
- Safi
- address
Prefixes GetLogical Router Vrf Bgp Policy Export Rule Match Address Prefix[] - Address prefix
- afi string
- Afi
- as
Path GetLogical Router Vrf Bgp Policy Export Rule Match As Path - As path
- community
Get
Logical Router Vrf Bgp Policy Export Rule Match Community - Community
- extended
Community GetLogical Router Vrf Bgp Policy Export Rule Match Extended Community - Extended community
- from
Peers string[] - From peer
- med number
- Med
- nexthops string[]
- Nexthop
- route
Table string - Route table
- safi string
- Safi
- address_
prefixes Sequence[GetLogical Router Vrf Bgp Policy Export Rule Match Address Prefix] - Address prefix
- afi str
- Afi
- as_
path GetLogical Router Vrf Bgp Policy Export Rule Match As Path - As path
- community
Get
Logical Router Vrf Bgp Policy Export Rule Match Community - Community
- extended_
community GetLogical Router Vrf Bgp Policy Export Rule Match Extended Community - Extended community
- from_
peers Sequence[str] - From peer
- med int
- Med
- nexthops Sequence[str]
- Nexthop
- route_
table str - Route table
- safi str
- Safi
- address
Prefixes List<Property Map> - Address prefix
- afi String
- Afi
- as
Path Property Map - As path
- community Property Map
- Community
- extended
Community Property Map - Extended community
- from
Peers List<String> - From peer
- med Number
- Med
- nexthops List<String>
- Nexthop
- route
Table String - Route table
- safi String
- Safi
GetLogicalRouterVrfBgpPolicyExportRuleMatchAddressPrefix
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
- rules List<Property Map>
- Rules
GetLogicalRouterVrfBgpPolicyImportRule
- Action
Get
Logical Router Vrf Bgp Policy Import Rule Action - Action
- Enable bool
- Enable
- Match
Get
Logical Router Vrf Bgp Policy Import Rule Match - Match
- Name string
- Name
- Used
Bies List<string> - Used by
- Action
Get
Logical Router Vrf Bgp Policy Import Rule Action - Action
- Enable bool
- Enable
- Match
Get
Logical Router Vrf Bgp Policy Import Rule Match - Match
- Name string
- Name
- Used
Bies []string - Used by
- action
Get
Logical Router Vrf Bgp Policy Import Rule Action - Action
- enable Boolean
- Enable
- match
Get
Logical Router Vrf Bgp Policy Import Rule Match - Match
- name String
- Name
- used
Bies List<String> - Used by
- action
Get
Logical Router Vrf Bgp Policy Import Rule Action - Action
- enable boolean
- Enable
- match
Get
Logical Router Vrf Bgp Policy Import Rule Match - Match
- name string
- Name
- used
Bies string[] - Used by
- action
Get
Logical Router Vrf Bgp Policy Import Rule Action - Action
- enable bool
- Enable
- match
Get
Logical Router Vrf Bgp Policy Import Rule Match - Match
- name str
- Name
- used_
bies Sequence[str] - Used by
- action Property Map
- Action
- enable Boolean
- Enable
- match Property Map
- Match
- name String
- Name
- used
Bies List<String> - Used by
GetLogicalRouterVrfBgpPolicyImportRuleAction
- allow Property Map
- Allow
- deny Property Map
- Deny
GetLogicalRouterVrfBgpPolicyImportRuleActionAllow
- Dampening string
- Dampening
- Update
Get
Logical Router Vrf Bgp Policy Import Rule Action Allow Update - Update
- Dampening string
- Dampening
- Update
Get
Logical Router Vrf Bgp Policy Import Rule Action Allow Update - Update
- dampening String
- Dampening
- update
Get
Logical Router Vrf Bgp Policy Import Rule Action Allow Update - Update
- dampening string
- Dampening
- update
Get
Logical Router Vrf Bgp Policy Import Rule Action Allow Update - Update
- dampening str
- Dampening
- update
Get
Logical Router Vrf Bgp Policy Import Rule Action Allow Update - Update
- dampening String
- Dampening
- update Property Map
- Update
GetLogicalRouterVrfBgpPolicyImportRuleActionAllowUpdate
- As
Path GetLogical Router Vrf Bgp Policy Import Rule Action Allow Update As Path - As path
- As
Path intLimit - As path limit
- Community
Get
Logical Router Vrf Bgp Policy Import Rule Action Allow Update Community - Community
- Extended
Community GetLogical Router Vrf Bgp Policy Import Rule Action Allow Update Extended Community - Extended community
- Local
Preference int - Local preference
- Med int
- Med
- Nexthop string
- Nexthop
- Origin string
- Origin
- Weight int
- Weight
- As
Path GetLogical Router Vrf Bgp Policy Import Rule Action Allow Update As Path - As path
- As
Path intLimit - As path limit
- Community
Get
Logical Router Vrf Bgp Policy Import Rule Action Allow Update Community - Community
- Extended
Community GetLogical Router Vrf Bgp Policy Import Rule Action Allow Update Extended Community - Extended community
- Local
Preference int - Local preference
- Med int
- Med
- Nexthop string
- Nexthop
- Origin string
- Origin
- Weight int
- Weight
- as
Path GetLogical Router Vrf Bgp Policy Import Rule Action Allow Update As Path - As path
- as
Path IntegerLimit - As path limit
- community
Get
Logical Router Vrf Bgp Policy Import Rule Action Allow Update Community - Community
- extended
Community GetLogical Router Vrf Bgp Policy Import Rule Action Allow Update Extended Community - Extended community
- local
Preference Integer - Local preference
- med Integer
- Med
- nexthop String
- Nexthop
- origin String
- Origin
- weight Integer
- Weight
- as
Path GetLogical Router Vrf Bgp Policy Import Rule Action Allow Update As Path - As path
- as
Path numberLimit - As path limit
- community
Get
Logical Router Vrf Bgp Policy Import Rule Action Allow Update Community - Community
- extended
Community GetLogical Router Vrf Bgp Policy Import Rule Action Allow Update Extended Community - Extended community
- local
Preference number - Local preference
- med number
- Med
- nexthop string
- Nexthop
- origin string
- Origin
- weight number
- Weight
- as_
path GetLogical Router Vrf Bgp Policy Import Rule Action Allow Update As Path - As path
- as_
path_ intlimit - As path limit
- community
Get
Logical Router Vrf Bgp Policy Import Rule Action Allow Update Community - Community
- extended_
community GetLogical Router Vrf Bgp Policy Import Rule Action Allow Update Extended Community - Extended community
- local_
preference int - Local preference
- med int
- Med
- nexthop str
- Nexthop
- origin str
- Origin
- weight int
- Weight
- as
Path Property Map - As path
- as
Path NumberLimit - As path limit
- community Property Map
- Community
- extended
Community Property Map - Extended community
- local
Preference Number - Local preference
- med Number
- Med
- nexthop String
- Nexthop
- origin String
- Origin
- weight Number
- Weight
GetLogicalRouterVrfBgpPolicyImportRuleActionAllowUpdateAsPath
- None
Get
Logical Router Vrf Bgp Policy Import Rule Action Allow Update As Path None - None
- Prepend int
- Prepend
- Remove
Get
Logical Router Vrf Bgp Policy Import Rule Action Allow Update As Path Remove - Remove
- Remove
And intPrepend - Remove and prepend
- None
Get
Logical Router Vrf Bgp Policy Import Rule Action Allow Update As Path None - None
- Prepend int
- Prepend
- Remove
Get
Logical Router Vrf Bgp Policy Import Rule Action Allow Update As Path Remove - Remove
- Remove
And intPrepend - Remove and prepend
- none
Get
Logical Router Vrf Bgp Policy Import Rule Action Allow Update As Path None - None
- prepend Integer
- Prepend
- remove
Get
Logical Router Vrf Bgp Policy Import Rule Action Allow Update As Path Remove - Remove
- remove
And IntegerPrepend - Remove and prepend
- none
Get
Logical Router Vrf Bgp Policy Import Rule Action Allow Update As Path None - None
- prepend number
- Prepend
- remove
Get
Logical Router Vrf Bgp Policy Import Rule Action Allow Update As Path Remove - Remove
- remove
And numberPrepend - Remove and prepend
- none
Get
Logical Router Vrf Bgp Policy Import Rule Action Allow Update As Path None - None
- prepend int
- Prepend
- remove
Get
Logical Router Vrf Bgp Policy Import Rule Action Allow Update As Path Remove - Remove
- remove_
and_ intprepend - Remove and prepend
- none Property Map
- None
- prepend Number
- Prepend
- remove Property Map
- Remove
- remove
And NumberPrepend - Remove and prepend
GetLogicalRouterVrfBgpPolicyImportRuleActionAllowUpdateCommunity
- Appends List<string>
- Append
- None
Get
Logical Router Vrf Bgp Policy Import Rule Action Allow Update Community None - None
- Overwrites List<string>
- Overwrite
- Remove
All GetLogical Router Vrf Bgp Policy Import Rule Action Allow Update Community Remove All - Remove all
- Remove
Regex string - Remove regex
- Appends []string
- Append
- None
Get
Logical Router Vrf Bgp Policy Import Rule Action Allow Update Community None - None
- Overwrites []string
- Overwrite
- Remove
All GetLogical Router Vrf Bgp Policy Import Rule Action Allow Update Community Remove All - Remove all
- Remove
Regex string - Remove regex
- appends List<String>
- Append
- none
Get
Logical Router Vrf Bgp Policy Import Rule Action Allow Update Community None - None
- overwrites List<String>
- Overwrite
- remove
All GetLogical Router Vrf Bgp Policy Import Rule Action Allow Update Community Remove All - Remove all
- remove
Regex String - Remove regex
- appends string[]
- Append
- none
Get
Logical Router Vrf Bgp Policy Import Rule Action Allow Update Community None - None
- overwrites string[]
- Overwrite
- remove
All GetLogical Router Vrf Bgp Policy Import Rule Action Allow Update Community Remove All - Remove all
- remove
Regex string - Remove regex
- appends Sequence[str]
- Append
- none
Get
Logical Router Vrf Bgp Policy Import Rule Action Allow Update Community None - None
- overwrites Sequence[str]
- Overwrite
- remove_
all GetLogical Router Vrf Bgp Policy Import Rule Action Allow Update Community Remove All - Remove all
- remove_
regex str - Remove regex
- appends List<String>
- Append
- none Property Map
- None
- overwrites List<String>
- Overwrite
- remove
All Property Map - Remove all
- remove
Regex String - Remove regex
GetLogicalRouterVrfBgpPolicyImportRuleActionAllowUpdateExtendedCommunity
- Appends List<string>
- Append
- None
Get
Logical Router Vrf Bgp Policy Import Rule Action Allow Update Extended Community None - None
- Overwrites List<string>
- Overwrite
- Remove
All GetLogical Router Vrf Bgp Policy Import Rule Action Allow Update Extended Community Remove All - Remove all
- Remove
Regex string - Remove regex
- Appends []string
- Append
- None
Get
Logical Router Vrf Bgp Policy Import Rule Action Allow Update Extended Community None - None
- Overwrites []string
- Overwrite
- Remove
All GetLogical Router Vrf Bgp Policy Import Rule Action Allow Update Extended Community Remove All - Remove all
- Remove
Regex string - Remove regex
- appends List<String>
- Append
- none
Get
Logical Router Vrf Bgp Policy Import Rule Action Allow Update Extended Community None - None
- overwrites List<String>
- Overwrite
- remove
All GetLogical Router Vrf Bgp Policy Import Rule Action Allow Update Extended Community Remove All - Remove all
- remove
Regex String - Remove regex
- appends string[]
- Append
- none
Get
Logical Router Vrf Bgp Policy Import Rule Action Allow Update Extended Community None - None
- overwrites string[]
- Overwrite
- remove
All GetLogical Router Vrf Bgp Policy Import Rule Action Allow Update Extended Community Remove All - Remove all
- remove
Regex string - Remove regex
- appends Sequence[str]
- Append
- none
Get
Logical Router Vrf Bgp Policy Import Rule Action Allow Update Extended Community None - None
- overwrites Sequence[str]
- Overwrite
- remove_
all GetLogical Router Vrf Bgp Policy Import Rule Action Allow Update Extended Community Remove All - Remove all
- remove_
regex str - Remove regex
- appends List<String>
- Append
- none Property Map
- None
- overwrites List<String>
- Overwrite
- remove
All Property Map - Remove all
- remove
Regex String - Remove regex
GetLogicalRouterVrfBgpPolicyImportRuleMatch
- Address
Prefixes List<GetLogical Router Vrf Bgp Policy Import Rule Match Address Prefix> - Address prefix
- Afi string
- Afi
- As
Path GetLogical Router Vrf Bgp Policy Import Rule Match As Path - As path
- Community
Get
Logical Router Vrf Bgp Policy Import Rule Match Community - Community
- Extended
Community GetLogical Router Vrf Bgp Policy Import Rule Match Extended Community - Extended community
- From
Peers List<string> - From peer
- Med int
- Med
- Nexthops List<string>
- Nexthop
- Route
Table string - Route table
- Safi string
- Safi
- Address
Prefixes []GetLogical Router Vrf Bgp Policy Import Rule Match Address Prefix - Address prefix
- Afi string
- Afi
- As
Path GetLogical Router Vrf Bgp Policy Import Rule Match As Path - As path
- Community
Get
Logical Router Vrf Bgp Policy Import Rule Match Community - Community
- Extended
Community GetLogical Router Vrf Bgp Policy Import Rule Match Extended Community - Extended community
- From
Peers []string - From peer
- Med int
- Med
- Nexthops []string
- Nexthop
- Route
Table string - Route table
- Safi string
- Safi
- address
Prefixes List<GetLogical Router Vrf Bgp Policy Import Rule Match Address Prefix> - Address prefix
- afi String
- Afi
- as
Path GetLogical Router Vrf Bgp Policy Import Rule Match As Path - As path
- community
Get
Logical Router Vrf Bgp Policy Import Rule Match Community - Community
- extended
Community GetLogical Router Vrf Bgp Policy Import Rule Match Extended Community - Extended community
- from
Peers List<String> - From peer
- med Integer
- Med
- nexthops List<String>
- Nexthop
- route
Table String - Route table
- safi String
- Safi
- address
Prefixes GetLogical Router Vrf Bgp Policy Import Rule Match Address Prefix[] - Address prefix
- afi string
- Afi
- as
Path GetLogical Router Vrf Bgp Policy Import Rule Match As Path - As path
- community
Get
Logical Router Vrf Bgp Policy Import Rule Match Community - Community
- extended
Community GetLogical Router Vrf Bgp Policy Import Rule Match Extended Community - Extended community
- from
Peers string[] - From peer
- med number
- Med
- nexthops string[]
- Nexthop
- route
Table string - Route table
- safi string
- Safi
- address_
prefixes Sequence[GetLogical Router Vrf Bgp Policy Import Rule Match Address Prefix] - Address prefix
- afi str
- Afi
- as_
path GetLogical Router Vrf Bgp Policy Import Rule Match As Path - As path
- community
Get
Logical Router Vrf Bgp Policy Import Rule Match Community - Community
- extended_
community GetLogical Router Vrf Bgp Policy Import Rule Match Extended Community - Extended community
- from_
peers Sequence[str] - From peer
- med int
- Med
- nexthops Sequence[str]
- Nexthop
- route_
table str - Route table
- safi str
- Safi
- address
Prefixes List<Property Map> - Address prefix
- afi String
- Afi
- as
Path Property Map - As path
- community Property Map
- Community
- extended
Community Property Map - Extended community
- from
Peers List<String> - From peer
- med Number
- Med
- nexthops List<String>
- Nexthop
- route
Table String - Route table
- safi String
- Safi
GetLogicalRouterVrfBgpPolicyImportRuleMatchAddressPrefix
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
- Address
Family stringIdentifier - Address family identifier
- Enable bool
- Enable
- Metric int
- Metric
- Name string
- Name
- Route
Table string - Route table
- Set
As intPath Limit - Set as path limit
- Set
Communities List<string> - Set community
- Set
Extended List<string>Communities - Set extended community
- Set
Local intPreference - Set local preference
- Set
Med int - Set med
- Set
Origin string - Set origin
- Address
Family stringIdentifier - Address family identifier
- Enable bool
- Enable
- Metric int
- Metric
- Name string
- Name
- Route
Table string - Route table
- Set
As intPath Limit - Set as path limit
- Set
Communities []string - Set community
- Set
Extended []stringCommunities - Set extended community
- Set
Local intPreference - Set local preference
- Set
Med int - Set med
- Set
Origin string - Set origin
- address
Family StringIdentifier - Address family identifier
- enable Boolean
- Enable
- metric Integer
- Metric
- name String
- Name
- route
Table String - Route table
- set
As IntegerPath Limit - Set as path limit
- set
Communities List<String> - Set community
- set
Extended List<String>Communities - Set extended community
- set
Local IntegerPreference - Set local preference
- set
Med Integer - Set med
- set
Origin String - Set origin
- address
Family stringIdentifier - Address family identifier
- enable boolean
- Enable
- metric number
- Metric
- name string
- Name
- route
Table string - Route table
- set
As numberPath Limit - Set as path limit
- set
Communities string[] - Set community
- set
Extended string[]Communities - Set extended community
- set
Local numberPreference - Set local preference
- set
Med number - Set med
- set
Origin string - Set origin
- address_
family_ stridentifier - Address family identifier
- enable bool
- Enable
- metric int
- Metric
- name str
- Name
- route_
table str - Route table
- set_
as_ intpath_ limit - Set as path limit
- set_
communities Sequence[str] - Set community
- set_
extended_ Sequence[str]communities - Set extended community
- set_
local_ intpreference - Set local preference
- set_
med int - Set med
- set_
origin str - Set origin
- address
Family StringIdentifier - Address family identifier
- enable Boolean
- Enable
- metric Number
- Metric
- name String
- Name
- route
Table String - Route table
- set
As NumberPath Limit - Set as path limit
- set
Communities List<String> - Set community
- set
Extended List<String>Communities - Set extended community
- set
Local NumberPreference - Set local preference
- set
Med Number - Set med
- set
Origin String - Set origin
GetLogicalRouterVrfBgpRedistributionProfile
- ipv4 Property Map
- Ipv4
- ipv6 Property Map
- Ipv6
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
Get
Logical Router Vrf Ecmp Algorithm - Algorithm
- Enable bool
- Enable
- Max
Path int - Max path
- Strict
Source boolPath - Strict source path
- Symmetric
Return bool - Symmetric return
- Algorithm
Get
Logical Router Vrf Ecmp Algorithm - Algorithm
- Enable bool
- Enable
- Max
Path int - Max path
- Strict
Source boolPath - Strict source path
- Symmetric
Return bool - Symmetric return
- algorithm
Get
Logical Router Vrf Ecmp Algorithm - Algorithm
- enable Boolean
- Enable
- max
Path Integer - Max path
- strict
Source BooleanPath - Strict source path
- symmetric
Return Boolean - Symmetric return
- algorithm
Get
Logical Router Vrf Ecmp Algorithm - Algorithm
- enable boolean
- Enable
- max
Path number - Max path
- strict
Source booleanPath - Strict source path
- symmetric
Return boolean - Symmetric return
- algorithm
Get
Logical Router Vrf Ecmp Algorithm - Algorithm
- enable bool
- Enable
- max_
path int - Max path
- strict_
source_ boolpath - Strict source path
- symmetric_
return bool - Symmetric return
- algorithm Property Map
- Algorithm
- enable Boolean
- Enable
- max
Path Number - Max path
- strict
Source BooleanPath - Strict source path
- symmetric
Return Boolean - Symmetric return
GetLogicalRouterVrfEcmpAlgorithm
- Balanced
Round GetRobin Logical Router Vrf Ecmp Algorithm Balanced Round Robin - Balanced round robin
- Ip
Hash GetLogical Router Vrf Ecmp Algorithm Ip Hash - Ip hash
- Ip
Modulo GetLogical Router Vrf Ecmp Algorithm Ip Modulo - Ip modulo
- Weighted
Round GetRobin Logical Router Vrf Ecmp Algorithm Weighted Round Robin - Weighted round robin
- Balanced
Round GetRobin Logical Router Vrf Ecmp Algorithm Balanced Round Robin - Balanced round robin
- Ip
Hash GetLogical Router Vrf Ecmp Algorithm Ip Hash - Ip hash
- Ip
Modulo GetLogical Router Vrf Ecmp Algorithm Ip Modulo - Ip modulo
- Weighted
Round GetRobin Logical Router Vrf Ecmp Algorithm Weighted Round Robin - Weighted round robin
- balanced
Round GetRobin Logical Router Vrf Ecmp Algorithm Balanced Round Robin - Balanced round robin
- ip
Hash GetLogical Router Vrf Ecmp Algorithm Ip Hash - Ip hash
- ip
Modulo GetLogical Router Vrf Ecmp Algorithm Ip Modulo - Ip modulo
- weighted
Round GetRobin Logical Router Vrf Ecmp Algorithm Weighted Round Robin - Weighted round robin
- balanced
Round GetRobin Logical Router Vrf Ecmp Algorithm Balanced Round Robin - Balanced round robin
- ip
Hash GetLogical Router Vrf Ecmp Algorithm Ip Hash - Ip hash
- ip
Modulo GetLogical Router Vrf Ecmp Algorithm Ip Modulo - Ip modulo
- weighted
Round GetRobin Logical Router Vrf Ecmp Algorithm Weighted Round Robin - Weighted round robin
- balanced_
round_ Getrobin Logical Router Vrf Ecmp Algorithm Balanced Round Robin - Balanced round robin
- ip_
hash GetLogical Router Vrf Ecmp Algorithm Ip Hash - Ip hash
- ip_
modulo GetLogical Router Vrf Ecmp Algorithm Ip Modulo - Ip modulo
- weighted_
round_ Getrobin Logical Router Vrf Ecmp Algorithm Weighted Round Robin - Weighted round robin
- balanced
Round Property MapRobin - Balanced round robin
- ip
Hash Property Map - Ip hash
- ip
Modulo Property Map - Ip modulo
- weighted
Round Property MapRobin - Weighted round robin
GetLogicalRouterVrfEcmpAlgorithmIpHash
GetLogicalRouterVrfEcmpAlgorithmWeightedRoundRobin
- interfaces List<Property Map>
- Interface
GetLogicalRouterVrfEcmpAlgorithmWeightedRoundRobinInterface
GetLogicalRouterVrfMulticast
- Enable bool
- Enable
- Enable
V6 bool - Enable v6
- Igmp
Get
Logical Router Vrf Multicast Igmp - Igmp
- Interface
Groups List<GetLogical Router Vrf Multicast Interface Group> - Interface group
- Mode string
- Mode
- Msdp
Get
Logical Router Vrf Multicast Msdp - Msdp
- Pim
Get
Logical Router Vrf Multicast Pim - Pim
- Route
Ageout intTime - Route ageout time
- Rp
Get
Logical Router Vrf Multicast Rp - Rp
- Spt
Thresholds List<GetLogical Router Vrf Multicast Spt Threshold> - Spt threshold
- Ssm
Address List<GetSpaces Logical Router Vrf Multicast Ssm Address Space> - Ssm address space
- Static
Routes List<GetLogical Router Vrf Multicast Static Route> - Static route
- Enable bool
- Enable
- Enable
V6 bool - Enable v6
- Igmp
Get
Logical Router Vrf Multicast Igmp - Igmp
- Interface
Groups []GetLogical Router Vrf Multicast Interface Group - Interface group
- Mode string
- Mode
- Msdp
Get
Logical Router Vrf Multicast Msdp - Msdp
- Pim
Get
Logical Router Vrf Multicast Pim - Pim
- Route
Ageout intTime - Route ageout time
- Rp
Get
Logical Router Vrf Multicast Rp - Rp
- Spt
Thresholds []GetLogical Router Vrf Multicast Spt Threshold - Spt threshold
- Ssm
Address []GetSpaces Logical Router Vrf Multicast Ssm Address Space - Ssm address space
- Static
Routes []GetLogical Router Vrf Multicast Static Route - Static route
- enable Boolean
- Enable
- enable
V6 Boolean - Enable v6
- igmp
Get
Logical Router Vrf Multicast Igmp - Igmp
- interface
Groups List<GetLogical Router Vrf Multicast Interface Group> - Interface group
- mode String
- Mode
- msdp
Get
Logical Router Vrf Multicast Msdp - Msdp
- pim
Get
Logical Router Vrf Multicast Pim - Pim
- route
Ageout IntegerTime - Route ageout time
- rp
Get
Logical Router Vrf Multicast Rp - Rp
- spt
Thresholds List<GetLogical Router Vrf Multicast Spt Threshold> - Spt threshold
- ssm
Address List<GetSpaces Logical Router Vrf Multicast Ssm Address Space> - Ssm address space
- static
Routes List<GetLogical Router Vrf Multicast Static Route> - Static route
- enable boolean
- Enable
- enable
V6 boolean - Enable v6
- igmp
Get
Logical Router Vrf Multicast Igmp - Igmp
- interface
Groups GetLogical Router Vrf Multicast Interface Group[] - Interface group
- mode string
- Mode
- msdp
Get
Logical Router Vrf Multicast Msdp - Msdp
- pim
Get
Logical Router Vrf Multicast Pim - Pim
- route
Ageout numberTime - Route ageout time
- rp
Get
Logical Router Vrf Multicast Rp - Rp
- spt
Thresholds GetLogical Router Vrf Multicast Spt Threshold[] - Spt threshold
- ssm
Address GetSpaces Logical Router Vrf Multicast Ssm Address Space[] - Ssm address space
- static
Routes GetLogical Router Vrf Multicast Static Route[] - Static route
- enable bool
- Enable
- enable_
v6 bool - Enable v6
- igmp
Get
Logical Router Vrf Multicast Igmp - Igmp
- interface_
groups Sequence[GetLogical Router Vrf Multicast Interface Group] - Interface group
- mode str
- Mode
- msdp
Get
Logical Router Vrf Multicast Msdp - Msdp
- pim
Get
Logical Router Vrf Multicast Pim - Pim
- route_
ageout_ inttime - Route ageout time
- rp
Get
Logical Router Vrf Multicast Rp - Rp
- spt_
thresholds Sequence[GetLogical Router Vrf Multicast Spt Threshold] - Spt threshold
- ssm_
address_ Sequence[Getspaces Logical Router Vrf Multicast Ssm Address Space] - Ssm address space
- static_
routes Sequence[GetLogical Router Vrf Multicast Static Route] - Static route
- enable Boolean
- Enable
- enable
V6 Boolean - Enable v6
- igmp Property Map
- Igmp
- interface
Groups List<Property Map> - Interface group
- mode String
- Mode
- msdp Property Map
- Msdp
- pim Property Map
- Pim
- route
Ageout NumberTime - Route ageout time
- rp Property Map
- Rp
- spt
Thresholds List<Property Map> - Spt threshold
- ssm
Address List<Property Map>Spaces - Ssm address space
- static
Routes List<Property Map> - Static route
GetLogicalRouterVrfMulticastIgmp
- Dynamic
Get
Logical Router Vrf Multicast Igmp Dynamic - Dynamic
- Enable bool
- Enable
- Statics
List<Get
Logical Router Vrf Multicast Igmp Static> - Static
- Dynamic
Get
Logical Router Vrf Multicast Igmp Dynamic - Dynamic
- Enable bool
- Enable
- Statics
[]Get
Logical Router Vrf Multicast Igmp Static - Static
- dynamic
Get
Logical Router Vrf Multicast Igmp Dynamic - Dynamic
- enable Boolean
- Enable
- statics
List<Get
Logical Router Vrf Multicast Igmp Static> - Static
- dynamic
Get
Logical Router Vrf Multicast Igmp Dynamic - Dynamic
- enable boolean
- Enable
- statics
Get
Logical Router Vrf Multicast Igmp Static[] - Static
- dynamic Property Map
- Dynamic
- enable Boolean
- Enable
- statics List<Property Map>
- Static
GetLogicalRouterVrfMulticastIgmpDynamic
- interfaces List<Property Map>
- Interface
GetLogicalRouterVrfMulticastIgmpDynamicInterface
- Group
Filter string - Group filter
- Max
Groups string - Max groups
- Max
Sources string - Max sources
- Name string
- Name
- Query
Profile string - Query profile
- Robustness string
- Robustness
- Router
Alert boolPolicing - Router alert policing
- Version string
- Version
- Group
Filter string - Group filter
- Max
Groups string - Max groups
- Max
Sources string - Max sources
- Name string
- Name
- Query
Profile string - Query profile
- Robustness string
- Robustness
- Router
Alert boolPolicing - Router alert policing
- Version string
- Version
- group
Filter String - Group filter
- max
Groups String - Max groups
- max
Sources String - Max sources
- name String
- Name
- query
Profile String - Query profile
- robustness String
- Robustness
- router
Alert BooleanPolicing - Router alert policing
- version String
- Version
- group
Filter string - Group filter
- max
Groups string - Max groups
- max
Sources string - Max sources
- name string
- Name
- query
Profile string - Query profile
- robustness string
- Robustness
- router
Alert booleanPolicing - 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_ boolpolicing - Router alert policing
- version str
- Version
- group
Filter String - Group filter
- max
Groups String - Max groups
- max
Sources String - Max sources
- name String
- Name
- query
Profile String - Query profile
- robustness String
- Robustness
- router
Alert BooleanPolicing - Router alert policing
- version String
- Version
GetLogicalRouterVrfMulticastIgmpStatic
- Group
Address string - Group address
- Interface string
- Interface
- Name string
- Name
- Source
Address string - Source address
- Group
Address string - Group address
- Interface string
- Interface
- Name string
- Name
- Source
Address string - Source address
- group
Address String - Group address
- interface_ String
- Interface
- name String
- Name
- source
Address String - Source address
- group
Address string - Group address
- interface string
- Interface
- name string
- Name
- source
Address string - Source address
- group_
address str - Group address
- interface str
- Interface
- name str
- Name
- source_
address str - Source address
- group
Address String - Group address
- interface String
- Interface
- name String
- Name
- source
Address String - Source address
GetLogicalRouterVrfMulticastInterfaceGroup
- Description string
- Description
- Group
Permission GetLogical Router Vrf Multicast Interface Group Group Permission - Group permission
- Igmp
Get
Logical Router Vrf Multicast Interface Group Igmp - Igmp
- Interfaces List<string>
- Interface
- Name string
- Name
- Pim
Get
Logical Router Vrf Multicast Interface Group Pim - Pim
- Description string
- Description
- Group
Permission GetLogical Router Vrf Multicast Interface Group Group Permission - Group permission
- Igmp
Get
Logical Router Vrf Multicast Interface Group Igmp - Igmp
- Interfaces []string
- Interface
- Name string
- Name
- Pim
Get
Logical Router Vrf Multicast Interface Group Pim - Pim
- description String
- Description
- group
Permission GetLogical Router Vrf Multicast Interface Group Group Permission - Group permission
- igmp
Get
Logical Router Vrf Multicast Interface Group Igmp - Igmp
- interfaces List<String>
- Interface
- name String
- Name
- pim
Get
Logical Router Vrf Multicast Interface Group Pim - Pim
- description string
- Description
- group
Permission GetLogical Router Vrf Multicast Interface Group Group Permission - Group permission
- igmp
Get
Logical Router Vrf Multicast Interface Group Igmp - Igmp
- interfaces string[]
- Interface
- name string
- Name
- pim
Get
Logical Router Vrf Multicast Interface Group Pim - Pim
- description str
- Description
- group_
permission GetLogical Router Vrf Multicast Interface Group Group Permission - Group permission
- igmp
Get
Logical Router Vrf Multicast Interface Group Igmp - Igmp
- interfaces Sequence[str]
- Interface
- name str
- Name
- pim
Get
Logical Router Vrf Multicast Interface Group Pim - Pim
- description String
- Description
- group
Permission Property Map - Group permission
- igmp Property Map
- Igmp
- interfaces List<String>
- Interface
- name String
- Name
- pim Property Map
- Pim
GetLogicalRouterVrfMulticastInterfaceGroupGroupPermission
- any
Source List<Property Map>Multicasts - Any source multicast
- source
Specific List<Property Map>Multicasts - Source specific multicast
GetLogicalRouterVrfMulticastInterfaceGroupGroupPermissionAnySourceMulticast
- Group
Address string - Group address
- Included bool
- Included
- Name string
- Name
- Group
Address string - Group address
- Included bool
- Included
- Name string
- Name
- group
Address String - Group address
- included Boolean
- Included
- name String
- Name
- group
Address string - Group address
- included boolean
- Included
- name string
- Name
- group_
address str - Group address
- included bool
- Included
- name str
- Name
- group
Address String - Group address
- included Boolean
- Included
- name String
- Name
GetLogicalRouterVrfMulticastInterfaceGroupGroupPermissionSourceSpecificMulticast
- Group
Address string - Group address
- Included bool
- Included
- Name string
- Name
- Source
Address string - Source address
- Group
Address string - Group address
- Included bool
- Included
- Name string
- Name
- Source
Address string - Source address
- group
Address String - Group address
- included Boolean
- Included
- name String
- Name
- source
Address String - Source address
- group
Address string - Group address
- included boolean
- Included
- name string
- Name
- source
Address string - Source address
- group_
address str - Group address
- included bool
- Included
- name str
- Name
- source_
address str - Source address
- group
Address String - Group address
- included Boolean
- Included
- name String
- Name
- source
Address String - Source address
GetLogicalRouterVrfMulticastInterfaceGroupIgmp
- Enable bool
- Enable
- Immediate
Leave bool - Immediate leave
- Last
Member intQuery Interval - Last member query interval
- Max
Groups string - Max groups
- Max
Query intResponse Time - Max query response time
- Max
Sources string - Max sources
- Mode string
- Mode
- Query
Interval int - Query interval
- Robustness string
- Robustness
- Router
Alert boolPolicing - Router alert policing
- Version string
- Version
- Enable bool
- Enable
- Immediate
Leave bool - Immediate leave
- Last
Member intQuery Interval - Last member query interval
- Max
Groups string - Max groups
- Max
Query intResponse Time - Max query response time
- Max
Sources string - Max sources
- Mode string
- Mode
- Query
Interval int - Query interval
- Robustness string
- Robustness
- Router
Alert boolPolicing - Router alert policing
- Version string
- Version
- enable Boolean
- Enable
- immediate
Leave Boolean - Immediate leave
- last
Member IntegerQuery Interval - Last member query interval
- max
Groups String - Max groups
- max
Query IntegerResponse Time - Max query response time
- max
Sources String - Max sources
- mode String
- Mode
- query
Interval Integer - Query interval
- robustness String
- Robustness
- router
Alert BooleanPolicing - Router alert policing
- version String
- Version
- enable boolean
- Enable
- immediate
Leave boolean - Immediate leave
- last
Member numberQuery Interval - Last member query interval
- max
Groups string - Max groups
- max
Query numberResponse Time - Max query response time
- max
Sources string - Max sources
- mode string
- Mode
- query
Interval number - Query interval
- robustness string
- Robustness
- router
Alert booleanPolicing - Router alert policing
- version string
- Version
- enable bool
- Enable
- immediate_
leave bool - Immediate leave
- last_
member_ intquery_ interval - Last member query interval
- max_
groups str - Max groups
- max_
query_ intresponse_ time - Max query response time
- max_
sources str - Max sources
- mode str
- Mode
- query_
interval int - Query interval
- robustness str
- Robustness
- router_
alert_ boolpolicing - Router alert policing
- version str
- Version
- enable Boolean
- Enable
- immediate
Leave Boolean - Immediate leave
- last
Member NumberQuery Interval - Last member query interval
- max
Groups String - Max groups
- max
Query NumberResponse Time - Max query response time
- max
Sources String - Max sources
- mode String
- Mode
- query
Interval Number - Query interval
- robustness String
- Robustness
- router
Alert BooleanPolicing - Router alert policing
- version String
- Version
GetLogicalRouterVrfMulticastInterfaceGroupPim
- Allowed
Neighbors List<GetLogical Router Vrf Multicast Interface Group Pim Allowed Neighbor> - 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 intInterval - Join prune interval
- Allowed
Neighbors []GetLogical Router Vrf Multicast Interface Group Pim Allowed Neighbor - 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 intInterval - Join prune interval
- allowed
Neighbors List<GetLogical Router Vrf Multicast Interface Group Pim Allowed Neighbor> - Allowed neighbors
- assert
Interval Integer - Assert interval
- bsr
Border Boolean - Bsr border
- dr
Priority Integer - Dr priority
- enable Boolean
- Enable
- hello
Interval Integer - Hello interval
- join
Prune IntegerInterval - Join prune interval
- allowed
Neighbors GetLogical Router Vrf Multicast Interface Group Pim Allowed Neighbor[] - Allowed neighbors
- assert
Interval number - Assert interval
- bsr
Border boolean - Bsr border
- dr
Priority number - Dr priority
- enable boolean
- Enable
- hello
Interval number - Hello interval
- join
Prune numberInterval - Join prune interval
- allowed_
neighbors Sequence[GetLogical Router Vrf Multicast Interface Group Pim Allowed Neighbor] - 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_ intinterval - Join prune interval
- allowed
Neighbors List<Property Map> - Allowed neighbors
- assert
Interval Number - Assert interval
- bsr
Border Boolean - Bsr border
- dr
Priority Number - Dr priority
- enable Boolean
- Enable
- hello
Interval Number - Hello interval
- join
Prune NumberInterval - Join prune interval
GetLogicalRouterVrfMulticastInterfaceGroupPimAllowedNeighbor
- Name string
- Name
- Name string
- Name
- name String
- Name
- name string
- Name
- name str
- Name
- name String
- Name
GetLogicalRouterVrfMulticastMsdp
- Enable bool
- Enable
- Global
Authentication string - Global authentication
- Global
Timer string - Global timer
- Originator
Id GetLogical Router Vrf Multicast Msdp Originator Id - Originator id
- Peers
List<Get
Logical Router Vrf Multicast Msdp Peer> - Peer
- Enable bool
- Enable
- Global
Authentication string - Global authentication
- Global
Timer string - Global timer
- Originator
Id GetLogical Router Vrf Multicast Msdp Originator Id - Originator id
- Peers
[]Get
Logical Router Vrf Multicast Msdp Peer - Peer
- enable Boolean
- Enable
- global
Authentication String - Global authentication
- global
Timer String - Global timer
- originator
Id GetLogical Router Vrf Multicast Msdp Originator Id - Originator id
- peers
List<Get
Logical Router Vrf Multicast Msdp Peer> - Peer
- enable boolean
- Enable
- global
Authentication string - Global authentication
- global
Timer string - Global timer
- originator
Id GetLogical Router Vrf Multicast Msdp Originator Id - Originator id
- peers
Get
Logical Router Vrf Multicast Msdp Peer[] - Peer
- enable bool
- Enable
- global_
authentication str - Global authentication
- global_
timer str - Global timer
- originator_
id GetLogical Router Vrf Multicast Msdp Originator Id - Originator id
- peers
Sequence[Get
Logical Router Vrf Multicast Msdp Peer] - Peer
- enable Boolean
- Enable
- global
Authentication String - Global authentication
- global
Timer String - Global timer
- originator
Id Property Map - Originator id
- peers List<Property Map>
- Peer
GetLogicalRouterVrfMulticastMsdpOriginatorId
- interface_ String
- Interface
- ip String
- Ip
GetLogicalRouterVrfMulticastMsdpPeer
- Authentication string
- Authentication
- Enable bool
- Enable
- Inbound
Sa stringFilter - Inbound sa filter
- Local
Address GetLogical Router Vrf Multicast Msdp Peer Local Address - Local address
- Max
Sa int - Max sa
- Name string
- Name
- Outbound
Sa stringFilter - Outbound sa filter
- Peer
Address GetLogical Router Vrf Multicast Msdp Peer Peer Address - Peer address
- Peer
As string - Peer as
- Authentication string
- Authentication
- Enable bool
- Enable
- Inbound
Sa stringFilter - Inbound sa filter
- Local
Address GetLogical Router Vrf Multicast Msdp Peer Local Address - Local address
- Max
Sa int - Max sa
- Name string
- Name
- Outbound
Sa stringFilter - Outbound sa filter
- Peer
Address GetLogical Router Vrf Multicast Msdp Peer Peer Address - Peer address
- Peer
As string - Peer as
- authentication String
- Authentication
- enable Boolean
- Enable
- inbound
Sa StringFilter - Inbound sa filter
- local
Address GetLogical Router Vrf Multicast Msdp Peer Local Address - Local address
- max
Sa Integer - Max sa
- name String
- Name
- outbound
Sa StringFilter - Outbound sa filter
- peer
Address GetLogical Router Vrf Multicast Msdp Peer Peer Address - Peer address
- peer
As String - Peer as
- authentication string
- Authentication
- enable boolean
- Enable
- inbound
Sa stringFilter - Inbound sa filter
- local
Address GetLogical Router Vrf Multicast Msdp Peer Local Address - Local address
- max
Sa number - Max sa
- name string
- Name
- outbound
Sa stringFilter - Outbound sa filter
- peer
Address GetLogical Router Vrf Multicast Msdp Peer Peer Address - Peer address
- peer
As string - Peer as
- authentication str
- Authentication
- enable bool
- Enable
- inbound_
sa_ strfilter - Inbound sa filter
- local_
address GetLogical Router Vrf Multicast Msdp Peer Local Address - Local address
- max_
sa int - Max sa
- name str
- Name
- outbound_
sa_ strfilter - Outbound sa filter
- peer_
address GetLogical Router Vrf Multicast Msdp Peer Peer Address - Peer address
- peer_
as str - Peer as
- authentication String
- Authentication
- enable Boolean
- Enable
- inbound
Sa StringFilter - Inbound sa filter
- local
Address Property Map - Local address
- max
Sa Number - Max sa
- name String
- Name
- outbound
Sa StringFilter - Outbound sa filter
- peer
Address Property Map - Peer address
- peer
As String - Peer as
GetLogicalRouterVrfMulticastMsdpPeerLocalAddress
- interface_ String
- Interface
- ip String
- Ip
GetLogicalRouterVrfMulticastMsdpPeerPeerAddress
GetLogicalRouterVrfMulticastPim
- Enable bool
- Enable
- Group
Permission string - Group permission
- If
Timer stringGlobal - If timer global
- Interfaces
List<Get
Logical Router Vrf Multicast Pim Interface> - Interface
- Route
Ageout intTime - Route ageout time
- Rp
Get
Logical Router Vrf Multicast Pim Rp - Rp
- Rpf
Lookup stringMode - Rpf lookup mode
- Spt
Thresholds List<GetLogical Router Vrf Multicast Pim Spt Threshold> - Spt threshold
- Ssm
Address GetSpace Logical Router Vrf Multicast Pim Ssm Address Space - Ssm address space
- Enable bool
- Enable
- Group
Permission string - Group permission
- If
Timer stringGlobal - If timer global
- Interfaces
[]Get
Logical Router Vrf Multicast Pim Interface - Interface
- Route
Ageout intTime - Route ageout time
- Rp
Get
Logical Router Vrf Multicast Pim Rp - Rp
- Rpf
Lookup stringMode - Rpf lookup mode
- Spt
Thresholds []GetLogical Router Vrf Multicast Pim Spt Threshold - Spt threshold
- Ssm
Address GetSpace Logical Router Vrf Multicast Pim Ssm Address Space - Ssm address space
- enable Boolean
- Enable
- group
Permission String - Group permission
- if
Timer StringGlobal - If timer global
- interfaces
List<Get
Logical Router Vrf Multicast Pim Interface> - Interface
- route
Ageout IntegerTime - Route ageout time
- rp
Get
Logical Router Vrf Multicast Pim Rp - Rp
- rpf
Lookup StringMode - Rpf lookup mode
- spt
Thresholds List<GetLogical Router Vrf Multicast Pim Spt Threshold> - Spt threshold
- ssm
Address GetSpace Logical Router Vrf Multicast Pim Ssm Address Space - Ssm address space
- enable boolean
- Enable
- group
Permission string - Group permission
- if
Timer stringGlobal - If timer global
- interfaces
Get
Logical Router Vrf Multicast Pim Interface[] - Interface
- route
Ageout numberTime - Route ageout time
- rp
Get
Logical Router Vrf Multicast Pim Rp - Rp
- rpf
Lookup stringMode - Rpf lookup mode
- spt
Thresholds GetLogical Router Vrf Multicast Pim Spt Threshold[] - Spt threshold
- ssm
Address GetSpace Logical Router Vrf Multicast Pim Ssm Address Space - Ssm address space
- enable bool
- Enable
- group_
permission str - Group permission
- if_
timer_ strglobal - If timer global
- interfaces
Sequence[Get
Logical Router Vrf Multicast Pim Interface] - Interface
- route_
ageout_ inttime - Route ageout time
- rp
Get
Logical Router Vrf Multicast Pim Rp - Rp
- rpf_
lookup_ strmode - Rpf lookup mode
- spt_
thresholds Sequence[GetLogical Router Vrf Multicast Pim Spt Threshold] - Spt threshold
- ssm_
address_ Getspace Logical Router Vrf Multicast Pim Ssm Address Space - Ssm address space
- enable Boolean
- Enable
- group
Permission String - Group permission
- if
Timer StringGlobal - If timer global
- interfaces List<Property Map>
- Interface
- route
Ageout NumberTime - Route ageout time
- rp Property Map
- Rp
- rpf
Lookup StringMode - Rpf lookup mode
- spt
Thresholds List<Property Map> - Spt threshold
- ssm
Address Property MapSpace - Ssm address space
GetLogicalRouterVrfMulticastPimInterface
- Description string
- Description
- Dr
Priority int - Dr priority
- If
Timer string - If timer
- Name string
- Name
- Neighbor
Filter string - Neighbor filter
- Send
Bsm bool - Send bsm
- Description string
- Description
- Dr
Priority int - Dr priority
- If
Timer string - If timer
- Name string
- Name
- Neighbor
Filter string - Neighbor filter
- Send
Bsm bool - Send bsm
- description String
- Description
- dr
Priority Integer - Dr priority
- if
Timer String - If timer
- name String
- Name
- neighbor
Filter String - Neighbor filter
- send
Bsm Boolean - Send bsm
- description string
- Description
- dr
Priority number - Dr priority
- if
Timer string - If timer
- name string
- Name
- neighbor
Filter string - Neighbor filter
- send
Bsm 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
- dr
Priority Number - Dr priority
- if
Timer String - If timer
- name String
- Name
- neighbor
Filter String - Neighbor filter
- send
Bsm Boolean - Send bsm
GetLogicalRouterVrfMulticastPimRp
- external
Rps List<Property Map> - External rp
- local
Rp Property Map - Local rp
GetLogicalRouterVrfMulticastPimRpExternalRp
- group_
list str - Group list
- name str
- Name
- override bool
- Override
GetLogicalRouterVrfMulticastPimRpLocalRp
- candidate
Rp Property Map - Candidate rp
- static
Rp Property Map - Static rp
GetLogicalRouterVrfMulticastPimRpLocalRpCandidateRp
- Address string
- Address
- Advertisement
Interval int - Advertisement interval
- Group
List string - Group list
- Interface string
- Interface
- Priority int
- Priority
- Address string
- Address
- Advertisement
Interval int - Advertisement interval
- Group
List string - Group list
- Interface string
- Interface
- Priority int
- Priority
- address String
- Address
- advertisement
Interval Integer - Advertisement interval
- group
List String - Group list
- interface_ String
- Interface
- priority Integer
- Priority
- address string
- Address
- advertisement
Interval number - Advertisement interval
- group
List string - Group list
- interface string
- Interface
- priority number
- Priority
- address str
- Address
- advertisement_
interval int - Advertisement interval
- group_
list str - Group list
- interface str
- Interface
- priority int
- Priority
- address String
- Address
- advertisement
Interval Number - Advertisement interval
- group
List String - Group list
- interface String
- Interface
- priority Number
- Priority
GetLogicalRouterVrfMulticastPimRpLocalRpStaticRp
- address String
- Address
- group
List String - Group list
- interface_ String
- Interface
- override Boolean
- Override
- address str
- Address
- group_
list str - Group list
- interface str
- Interface
- override bool
- Override
GetLogicalRouterVrfMulticastPimSptThreshold
GetLogicalRouterVrfMulticastPimSsmAddressSpace
- Group
List string - Group list
- Group
List string - Group list
- group
List String - Group list
- group
List string - Group list
- group_
list str - Group list
- group
List String - Group list
GetLogicalRouterVrfMulticastRp
- external
Rps List<Property Map> - External rp
- local
Rp Property Map - Local rp
GetLogicalRouterVrfMulticastRpExternalRp
- Group
Addresses List<string> - Group addresses
- Name string
- Name
- Override bool
- Override
- Group
Addresses []string - Group addresses
- Name string
- Name
- Override bool
- Override
- group
Addresses List<String> - Group addresses
- name String
- Name
- override Boolean
- Override
- group
Addresses string[] - Group addresses
- name string
- Name
- override boolean
- Override
- group_
addresses Sequence[str] - Group addresses
- name str
- Name
- override bool
- Override
- group
Addresses List<String> - Group addresses
- name String
- Name
- override Boolean
- Override
GetLogicalRouterVrfMulticastRpLocalRp
- candidate
Rp Property Map - Candidate rp
- static
Rp Property Map - Static rp
GetLogicalRouterVrfMulticastRpLocalRpCandidateRp
- Address string
- Address
- Advertisement
Interval int - Advertisement interval
- Group
Addresses List<string> - Group addresses
- Interface string
- Interface
- Priority int
- Priority
- Address string
- Address
- Advertisement
Interval int - Advertisement interval
- Group
Addresses []string - Group addresses
- Interface string
- Interface
- Priority int
- Priority
- address String
- Address
- advertisement
Interval Integer - Advertisement interval
- group
Addresses List<String> - Group addresses
- interface_ String
- Interface
- priority Integer
- Priority
- address string
- Address
- advertisement
Interval number - Advertisement interval
- group
Addresses string[] - Group addresses
- interface string
- Interface
- priority number
- Priority
- address str
- Address
- advertisement_
interval int - Advertisement interval
- group_
addresses Sequence[str] - Group addresses
- interface str
- Interface
- priority int
- Priority
- address String
- Address
- advertisement
Interval Number - Advertisement interval
- group
Addresses List<String> - Group addresses
- interface String
- Interface
- priority Number
- Priority
GetLogicalRouterVrfMulticastRpLocalRpStaticRp
- Address string
- Address
- Group
Addresses List<string> - Group addresses
- Interface string
- Interface
- Override bool
- Override
- Address string
- Address
- Group
Addresses []string - Group addresses
- Interface string
- Interface
- Override bool
- Override
- address String
- Address
- group
Addresses List<String> - Group addresses
- interface_ String
- Interface
- override Boolean
- Override
- address string
- Address
- group
Addresses 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
- group
Addresses List<String> - Group addresses
- interface String
- Interface
- override Boolean
- Override
GetLogicalRouterVrfMulticastSptThreshold
GetLogicalRouterVrfMulticastSsmAddressSpace
- Group
Address string - Group address
- Included bool
- Included
- Name string
- Name
- Group
Address string - Group address
- Included bool
- Included
- Name string
- Name
- group
Address String - Group address
- included Boolean
- Included
- name String
- Name
- group
Address string - Group address
- included boolean
- Included
- name string
- Name
- group_
address str - Group address
- included bool
- Included
- name str
- Name
- group
Address String - Group address
- included Boolean
- Included
- name String
- Name
GetLogicalRouterVrfMulticastStaticRoute
- Destination string
- Destination
- Interface string
- Interface
- Name string
- Name
- Nexthop
Get
Logical Router Vrf Multicast Static Route Nexthop - Nexthop
- Preference int
- Preference
- Destination string
- Destination
- Interface string
- Interface
- Name string
- Name
- Nexthop
Get
Logical Router Vrf Multicast Static Route Nexthop - Nexthop
- Preference int
- Preference
- destination String
- Destination
- interface_ String
- Interface
- name String
- Name
- nexthop
Get
Logical Router Vrf Multicast Static Route Nexthop - Nexthop
- preference Integer
- Preference
- destination string
- Destination
- interface string
- Interface
- name string
- Name
- nexthop
Get
Logical Router Vrf Multicast Static Route Nexthop - Nexthop
- preference number
- Preference
- destination str
- Destination
- interface str
- Interface
- name str
- Name
- nexthop
Get
Logical Router Vrf Multicast Static Route Nexthop - Nexthop
- preference int
- Preference
- destination String
- Destination
- interface String
- Interface
- name String
- Name
- nexthop Property Map
- Nexthop
- preference Number
- Preference
GetLogicalRouterVrfMulticastStaticRouteNexthop
- Ip
Address string - Ip address
- Ip
Address string - Ip address
- ip
Address String - Ip address
- ip
Address string - Ip address
- ip_
address str - Ip address
- ip
Address String - Ip address
GetLogicalRouterVrfOspf
- Allow
Redist boolDefault Route - Allow redist default route
- Areas
List<Get
Logical Router Vrf Ospf Area> - Area
- Auth
Profiles List<GetLogical Router Vrf Ospf Auth Profile> - Auth profile
- Enable bool
- Enable
- Export
Rules List<GetLogical Router Vrf Ospf Export Rule> - Export rules
- Flood
Prevention GetLogical Router Vrf Ospf Flood Prevention - Flood prevention
- Global
Bfd GetLogical Router Vrf Ospf Global Bfd - Global bfd
- Global
If stringTimer - Global if timer
- Graceful
Restart GetLogical Router Vrf Ospf Graceful Restart - Graceful restart
- Redistribution
Profile string - Redistribution profile
- Reject
Default boolRoute - Reject default route
- Rfc1583 bool
- Rfc1583
- Router
Id string - Router id
- Spf
Timer string - Spf timer
- Vr
Timers GetLogical Router Vrf Ospf Vr Timers - Vr timers
- Allow
Redist boolDefault Route - Allow redist default route
- Areas
[]Get
Logical Router Vrf Ospf Area - Area
- Auth
Profiles []GetLogical Router Vrf Ospf Auth Profile - Auth profile
- Enable bool
- Enable
- Export
Rules []GetLogical Router Vrf Ospf Export Rule - Export rules
- Flood
Prevention GetLogical Router Vrf Ospf Flood Prevention - Flood prevention
- Global
Bfd GetLogical Router Vrf Ospf Global Bfd - Global bfd
- Global
If stringTimer - Global if timer
- Graceful
Restart GetLogical Router Vrf Ospf Graceful Restart - Graceful restart
- Redistribution
Profile string - Redistribution profile
- Reject
Default boolRoute - Reject default route
- Rfc1583 bool
- Rfc1583
- Router
Id string - Router id
- Spf
Timer string - Spf timer
- Vr
Timers GetLogical Router Vrf Ospf Vr Timers - Vr timers
- allow
Redist BooleanDefault Route - Allow redist default route
- areas
List<Get
Logical Router Vrf Ospf Area> - Area
- auth
Profiles List<GetLogical Router Vrf Ospf Auth Profile> - Auth profile
- enable Boolean
- Enable
- export
Rules List<GetLogical Router Vrf Ospf Export Rule> - Export rules
- flood
Prevention GetLogical Router Vrf Ospf Flood Prevention - Flood prevention
- global
Bfd GetLogical Router Vrf Ospf Global Bfd - Global bfd
- global
If StringTimer - Global if timer
- graceful
Restart GetLogical Router Vrf Ospf Graceful Restart - Graceful restart
- redistribution
Profile String - Redistribution profile
- reject
Default BooleanRoute - Reject default route
- rfc1583 Boolean
- Rfc1583
- router
Id String - Router id
- spf
Timer String - Spf timer
- vr
Timers GetLogical Router Vrf Ospf Vr Timers - Vr timers
- allow
Redist booleanDefault Route - Allow redist default route
- areas
Get
Logical Router Vrf Ospf Area[] - Area
- auth
Profiles GetLogical Router Vrf Ospf Auth Profile[] - Auth profile
- enable boolean
- Enable
- export
Rules GetLogical Router Vrf Ospf Export Rule[] - Export rules
- flood
Prevention GetLogical Router Vrf Ospf Flood Prevention - Flood prevention
- global
Bfd GetLogical Router Vrf Ospf Global Bfd - Global bfd
- global
If stringTimer - Global if timer
- graceful
Restart GetLogical Router Vrf Ospf Graceful Restart - Graceful restart
- redistribution
Profile string - Redistribution profile
- reject
Default booleanRoute - Reject default route
- rfc1583 boolean
- Rfc1583
- router
Id string - Router id
- spf
Timer string - Spf timer
- vr
Timers GetLogical Router Vrf Ospf Vr Timers - Vr timers
- allow_
redist_ booldefault_ route - Allow redist default route
- areas
Sequence[Get
Logical Router Vrf Ospf Area] - Area
- auth_
profiles Sequence[GetLogical Router Vrf Ospf Auth Profile] - Auth profile
- enable bool
- Enable
- export_
rules Sequence[GetLogical Router Vrf Ospf Export Rule] - Export rules
- flood_
prevention GetLogical Router Vrf Ospf Flood Prevention - Flood prevention
- global_
bfd GetLogical Router Vrf Ospf Global Bfd - Global bfd
- global_
if_ strtimer - Global if timer
- graceful_
restart GetLogical Router Vrf Ospf Graceful Restart - Graceful restart
- redistribution_
profile str - Redistribution profile
- reject_
default_ boolroute - Reject default route
- rfc1583 bool
- Rfc1583
- router_
id str - Router id
- spf_
timer str - Spf timer
- vr_
timers GetLogical Router Vrf Ospf Vr Timers - Vr timers
- allow
Redist BooleanDefault Route - Allow redist default route
- areas List<Property Map>
- Area
- auth
Profiles List<Property Map> - Auth profile
- enable Boolean
- Enable
- export
Rules List<Property Map> - Export rules
- flood
Prevention Property Map - Flood prevention
- global
Bfd Property Map - Global bfd
- global
If StringTimer - Global if timer
- graceful
Restart Property Map - Graceful restart
- redistribution
Profile String - Redistribution profile
- reject
Default BooleanRoute - Reject default route
- rfc1583 Boolean
- Rfc1583
- router
Id String - Router id
- spf
Timer String - Spf timer
- vr
Timers Property Map - Vr timers
GetLogicalRouterVrfOspfArea
- Authentication string
- Authentication
- Interfaces
List<Get
Logical Router Vrf Ospf Area Interface> - Interface
- Name string
- Name
- Ranges
List<Get
Logical Router Vrf Ospf Area Range> - Range
- Type
Get
Logical Router Vrf Ospf Area Type - Type
- Virtual
Links List<GetLogical Router Vrf Ospf Area Virtual Link> - Virtual link
- Vr
Ranges List<GetLogical Router Vrf Ospf Area Vr Range> - Vr range
- Authentication string
- Authentication
- Interfaces
[]Get
Logical Router Vrf Ospf Area Interface - Interface
- Name string
- Name
- Ranges
[]Get
Logical Router Vrf Ospf Area Range - Range
- Type
Get
Logical Router Vrf Ospf Area Type - Type
- Virtual
Links []GetLogical Router Vrf Ospf Area Virtual Link - Virtual link
- Vr
Ranges []GetLogical Router Vrf Ospf Area Vr Range - Vr range
- authentication String
- Authentication
- interfaces
List<Get
Logical Router Vrf Ospf Area Interface> - Interface
- name String
- Name
- ranges
List<Get
Logical Router Vrf Ospf Area Range> - Range
- type
Get
Logical Router Vrf Ospf Area Type - Type
- virtual
Links List<GetLogical Router Vrf Ospf Area Virtual Link> - Virtual link
- vr
Ranges List<GetLogical Router Vrf Ospf Area Vr Range> - Vr range
- authentication string
- Authentication
- interfaces
Get
Logical Router Vrf Ospf Area Interface[] - Interface
- name string
- Name
- ranges
Get
Logical Router Vrf Ospf Area Range[] - Range
- type
Get
Logical Router Vrf Ospf Area Type - Type
- virtual
Links GetLogical Router Vrf Ospf Area Virtual Link[] - Virtual link
- vr
Ranges GetLogical Router Vrf Ospf Area Vr Range[] - Vr range
- authentication str
- Authentication
- interfaces
Sequence[Get
Logical Router Vrf Ospf Area Interface] - Interface
- name str
- Name
- ranges
Sequence[Get
Logical Router Vrf Ospf Area Range] - Range
- type
Get
Logical Router Vrf Ospf Area Type - Type
- virtual_
links Sequence[GetLogical Router Vrf Ospf Area Virtual Link] - Virtual link
- vr_
ranges Sequence[GetLogical Router Vrf Ospf Area Vr Range] - Vr range
- authentication String
- Authentication
- interfaces List<Property Map>
- Interface
- name String
- Name
- ranges List<Property Map>
- Range
- type Property Map
- Type
- virtual
Links List<Property Map> - Virtual link
- vr
Ranges List<Property Map> - Vr range
GetLogicalRouterVrfOspfAreaInterface
- Authentication string
- Authentication
- Bfd
Get
Logical Router Vrf Ospf Area Interface Bfd - Bfd
- Enable bool
- Enable
- Link
Type GetLogical Router Vrf Ospf Area Interface Link Type - Link type
- Metric int
- Metric
- Mtu
Ignore bool - Mtu ignore
- Name string
- Name
- Passive bool
- Passive
- Priority int
- Priority
- Timing string
- Timing
- Vr
Timing GetLogical Router Vrf Ospf Area Interface Vr Timing - Vr timing
- Authentication string
- Authentication
- Bfd
Get
Logical Router Vrf Ospf Area Interface Bfd - Bfd
- Enable bool
- Enable
- Link
Type GetLogical Router Vrf Ospf Area Interface Link Type - Link type
- Metric int
- Metric
- Mtu
Ignore bool - Mtu ignore
- Name string
- Name
- Passive bool
- Passive
- Priority int
- Priority
- Timing string
- Timing
- Vr
Timing GetLogical Router Vrf Ospf Area Interface Vr Timing - Vr timing
- authentication String
- Authentication
- bfd
Get
Logical Router Vrf Ospf Area Interface Bfd - Bfd
- enable Boolean
- Enable
- link
Type GetLogical Router Vrf Ospf Area Interface Link Type - Link type
- metric Integer
- Metric
- mtu
Ignore Boolean - Mtu ignore
- name String
- Name
- passive Boolean
- Passive
- priority Integer
- Priority
- timing String
- Timing
- vr
Timing GetLogical Router Vrf Ospf Area Interface Vr Timing - Vr timing
- authentication string
- Authentication
- bfd
Get
Logical Router Vrf Ospf Area Interface Bfd - Bfd
- enable boolean
- Enable
- link
Type GetLogical Router Vrf Ospf Area Interface Link Type - Link type
- metric number
- Metric
- mtu
Ignore boolean - Mtu ignore
- name string
- Name
- passive boolean
- Passive
- priority number
- Priority
- timing string
- Timing
- vr
Timing GetLogical Router Vrf Ospf Area Interface Vr Timing - Vr timing
- authentication str
- Authentication
- bfd
Get
Logical Router Vrf Ospf Area Interface Bfd - Bfd
- enable bool
- Enable
- link_
type GetLogical Router Vrf Ospf Area Interface Link Type - Link type
- metric int
- Metric
- mtu_
ignore bool - Mtu ignore
- name str
- Name
- passive bool
- Passive
- priority int
- Priority
- timing str
- Timing
- vr_
timing GetLogical Router Vrf Ospf Area Interface Vr Timing - Vr timing
- authentication String
- Authentication
- bfd Property Map
- Bfd
- enable Boolean
- Enable
- link
Type Property Map - Link type
- metric Number
- Metric
- mtu
Ignore Boolean - Mtu ignore
- name String
- Name
- passive Boolean
- Passive
- priority Number
- Priority
- timing String
- Timing
- vr
Timing Property Map - Vr timing
GetLogicalRouterVrfOspfAreaInterfaceBfd
- Profile string
- Profile
- Profile string
- Profile
- profile String
- Profile
- profile string
- Profile
- profile str
- Profile
- profile String
- Profile
GetLogicalRouterVrfOspfAreaInterfaceLinkType
- broadcast Property Map
- Broadcast
- p2mp Property Map
- P2mp
- p2p Property Map
- P2p
GetLogicalRouterVrfOspfAreaInterfaceLinkTypeP2mp
- neighbors List<Property Map>
- Neighbor
GetLogicalRouterVrfOspfAreaInterfaceLinkTypeP2mpNeighbor
GetLogicalRouterVrfOspfAreaInterfaceVrTiming
- 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
- 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
- dead
Counts Integer - Dead counts
- gr
Delay Integer - Gr delay
- hello
Interval Integer - Hello interval
- retransmit
Interval Integer - Retransmit interval
- transit
Delay Integer - Transit delay
- dead
Counts number - Dead counts
- gr
Delay number - Gr delay
- hello
Interval number - Hello interval
- retransmit
Interval number - Retransmit interval
- transit
Delay 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
- dead
Counts Number - Dead counts
- gr
Delay Number - Gr delay
- hello
Interval Number - Hello interval
- retransmit
Interval Number - Retransmit interval
- transit
Delay Number - Transit delay
GetLogicalRouterVrfOspfAreaRange
- Advertise bool
- Advertise
- Name string
- Name
- Substitute string
- Substitute
- Advertise bool
- Advertise
- Name string
- Name
- Substitute string
- Substitute
- advertise Boolean
- Advertise
- name String
- Name
- substitute String
- Substitute
- advertise boolean
- Advertise
- name string
- Name
- substitute string
- Substitute
- advertise bool
- Advertise
- name str
- Name
- substitute str
- Substitute
- advertise Boolean
- Advertise
- name String
- Name
- substitute String
- Substitute
GetLogicalRouterVrfOspfAreaType
- normal Property Map
- Normal
- nssa Property Map
- Nssa
- stub Property Map
- Stub
GetLogicalRouterVrfOspfAreaTypeNormal
- abr Property Map
- Abr
GetLogicalRouterVrfOspfAreaTypeNormalAbr
- Export
List string - Export list
- Import
List string - Import list
- Inbound
Filter stringList - Inbound filter list
- Outbound
Filter stringList - Outbound filter list
- Export
List string - Export list
- Import
List string - Import list
- Inbound
Filter stringList - Inbound filter list
- Outbound
Filter stringList - Outbound filter list
- export
List String - Export list
- import
List String - Import list
- inbound
Filter StringList - Inbound filter list
- outbound
Filter StringList - Outbound filter list
- export
List string - Export list
- import
List string - Import list
- inbound
Filter stringList - Inbound filter list
- outbound
Filter stringList - Outbound filter list
- export_
list str - Export list
- import_
list str - Import list
- inbound_
filter_ strlist - Inbound filter list
- outbound_
filter_ strlist - Outbound filter list
- export
List String - Export list
- import
List String - Import list
- inbound
Filter StringList - Inbound filter list
- outbound
Filter StringList - Outbound filter list
GetLogicalRouterVrfOspfAreaTypeNssa
- Abr
Get
Logical Router Vrf Ospf Area Type Nssa Abr - Abr
- Accept
Summary bool - Accept summary
- Default
Information GetOriginate Logical Router Vrf Ospf Area Type Nssa Default Information Originate - Default information originate
- Default
Route GetLogical Router Vrf Ospf Area Type Nssa Default Route - Default route
- No
Summary bool - No summary
- Nssa
Ext List<GetRanges Logical Router Vrf Ospf Area Type Nssa Nssa Ext Range> - Nssa ext range
- Abr
Get
Logical Router Vrf Ospf Area Type Nssa Abr - Abr
- Accept
Summary bool - Accept summary
- Default
Information GetOriginate Logical Router Vrf Ospf Area Type Nssa Default Information Originate - Default information originate
- Default
Route GetLogical Router Vrf Ospf Area Type Nssa Default Route - Default route
- No
Summary bool - No summary
- Nssa
Ext []GetRanges Logical Router Vrf Ospf Area Type Nssa Nssa Ext Range - Nssa ext range
- abr
Get
Logical Router Vrf Ospf Area Type Nssa Abr - Abr
- accept
Summary Boolean - Accept summary
- default
Information GetOriginate Logical Router Vrf Ospf Area Type Nssa Default Information Originate - Default information originate
- default
Route GetLogical Router Vrf Ospf Area Type Nssa Default Route - Default route
- no
Summary Boolean - No summary
- nssa
Ext List<GetRanges Logical Router Vrf Ospf Area Type Nssa Nssa Ext Range> - Nssa ext range
- abr
Get
Logical Router Vrf Ospf Area Type Nssa Abr - Abr
- accept
Summary boolean - Accept summary
- default
Information GetOriginate Logical Router Vrf Ospf Area Type Nssa Default Information Originate - Default information originate
- default
Route GetLogical Router Vrf Ospf Area Type Nssa Default Route - Default route
- no
Summary boolean - No summary
- nssa
Ext GetRanges Logical Router Vrf Ospf Area Type Nssa Nssa Ext Range[] - Nssa ext range
- abr
Get
Logical Router Vrf Ospf Area Type Nssa Abr - Abr
- accept_
summary bool - Accept summary
- default_
information_ Getoriginate Logical Router Vrf Ospf Area Type Nssa Default Information Originate - Default information originate
- default_
route GetLogical Router Vrf Ospf Area Type Nssa Default Route - Default route
- no_
summary bool - No summary
- nssa_
ext_ Sequence[Getranges Logical Router Vrf Ospf Area Type Nssa Nssa Ext Range] - Nssa ext range
- abr Property Map
- Abr
- accept
Summary Boolean - Accept summary
- default
Information Property MapOriginate - Default information originate
- default
Route Property Map - Default route
- no
Summary Boolean - No summary
- nssa
Ext List<Property Map>Ranges - Nssa ext range
GetLogicalRouterVrfOspfAreaTypeNssaAbr
- Export
List string - Export list
- Import
List string - Import list
- Inbound
Filter stringList - Inbound filter list
- Nssa
Ext List<GetRanges Logical Router Vrf Ospf Area Type Nssa Abr Nssa Ext Range> - Nssa ext range
- Outbound
Filter stringList - Outbound filter list
- Export
List string - Export list
- Import
List string - Import list
- Inbound
Filter stringList - Inbound filter list
- Nssa
Ext []GetRanges Logical Router Vrf Ospf Area Type Nssa Abr Nssa Ext Range - Nssa ext range
- Outbound
Filter stringList - Outbound filter list
- export
List String - Export list
- import
List String - Import list
- inbound
Filter StringList - Inbound filter list
- nssa
Ext List<GetRanges Logical Router Vrf Ospf Area Type Nssa Abr Nssa Ext Range> - Nssa ext range
- outbound
Filter StringList - Outbound filter list
- export
List string - Export list
- import
List string - Import list
- inbound
Filter stringList - Inbound filter list
- nssa
Ext GetRanges Logical Router Vrf Ospf Area Type Nssa Abr Nssa Ext Range[] - Nssa ext range
- outbound
Filter stringList - Outbound filter list
- export_
list str - Export list
- import_
list str - Import list
- inbound_
filter_ strlist - Inbound filter list
- nssa_
ext_ Sequence[Getranges Logical Router Vrf Ospf Area Type Nssa Abr Nssa Ext Range] - Nssa ext range
- outbound_
filter_ strlist - Outbound filter list
- export
List String - Export list
- import
List String - Import list
- inbound
Filter StringList - Inbound filter list
- nssa
Ext List<Property Map>Ranges - Nssa ext range
- outbound
Filter StringList - Outbound filter list
GetLogicalRouterVrfOspfAreaTypeNssaAbrNssaExtRange
GetLogicalRouterVrfOspfAreaTypeNssaDefaultInformationOriginate
- Metric int
- Metric
- Metric
Type string - Metric type
- Metric int
- Metric
- Metric
Type string - Metric type
- metric Integer
- Metric
- metric
Type String - Metric type
- metric number
- Metric
- metric
Type string - Metric type
- metric int
- Metric
- metric_
type str - Metric type
- metric Number
- Metric
- metric
Type String - Metric type
GetLogicalRouterVrfOspfAreaTypeNssaDefaultRoute
- advertise Property Map
- Advertise
- disable Property Map
- Disable
GetLogicalRouterVrfOspfAreaTypeNssaDefaultRouteAdvertise
GetLogicalRouterVrfOspfAreaTypeNssaNssaExtRange
- advertise Property Map
- Advertise
- name String
- Name
- suppress Property Map
- Suppress
GetLogicalRouterVrfOspfAreaTypeStub
- Abr
Get
Logical Router Vrf Ospf Area Type Stub Abr - Abr
- Accept
Summary bool - Accept summary
- Default
Route GetLogical Router Vrf Ospf Area Type Stub Default Route - Default route
- Default
Route intMetric - Default route metric
- No
Summary bool - No summary
- Abr
Get
Logical Router Vrf Ospf Area Type Stub Abr - Abr
- Accept
Summary bool - Accept summary
- Default
Route GetLogical Router Vrf Ospf Area Type Stub Default Route - Default route
- Default
Route intMetric - Default route metric
- No
Summary bool - No summary
- abr
Get
Logical Router Vrf Ospf Area Type Stub Abr - Abr
- accept
Summary Boolean - Accept summary
- default
Route GetLogical Router Vrf Ospf Area Type Stub Default Route - Default route
- default
Route IntegerMetric - Default route metric
- no
Summary Boolean - No summary
- abr
Get
Logical Router Vrf Ospf Area Type Stub Abr - Abr
- accept
Summary boolean - Accept summary
- default
Route GetLogical Router Vrf Ospf Area Type Stub Default Route - Default route
- default
Route numberMetric - Default route metric
- no
Summary boolean - No summary
- abr
Get
Logical Router Vrf Ospf Area Type Stub Abr - Abr
- accept_
summary bool - Accept summary
- default_
route GetLogical Router Vrf Ospf Area Type Stub Default Route - Default route
- default_
route_ intmetric - Default route metric
- no_
summary bool - No summary
- abr Property Map
- Abr
- accept
Summary Boolean - Accept summary
- default
Route Property Map - Default route
- default
Route NumberMetric - Default route metric
- no
Summary Boolean - No summary
GetLogicalRouterVrfOspfAreaTypeStubAbr
- Export
List string - Export list
- Import
List string - Import list
- Inbound
Filter stringList - Inbound filter list
- Outbound
Filter stringList - Outbound filter list
- Export
List string - Export list
- Import
List string - Import list
- Inbound
Filter stringList - Inbound filter list
- Outbound
Filter stringList - Outbound filter list
- export
List String - Export list
- import
List String - Import list
- inbound
Filter StringList - Inbound filter list
- outbound
Filter StringList - Outbound filter list
- export
List string - Export list
- import
List string - Import list
- inbound
Filter stringList - Inbound filter list
- outbound
Filter stringList - Outbound filter list
- export_
list str - Export list
- import_
list str - Import list
- inbound_
filter_ strlist - Inbound filter list
- outbound_
filter_ strlist - Outbound filter list
- export
List String - Export list
- import
List String - Import list
- inbound
Filter StringList - Inbound filter list
- outbound
Filter StringList - Outbound filter list
GetLogicalRouterVrfOspfAreaTypeStubDefaultRoute
- advertise Property Map
- Advertise
- disable Property Map
- Disable
GetLogicalRouterVrfOspfAreaTypeStubDefaultRouteAdvertise
- Metric int
- Metric
- Metric int
- Metric
- metric Integer
- Metric
- metric number
- Metric
- metric int
- Metric
- metric Number
- Metric
GetLogicalRouterVrfOspfAreaVirtualLink
- Authentication string
- Authentication
- Bfd
Get
Logical Router Vrf Ospf Area Virtual Link Bfd - Bfd
- Enable bool
- Enable
- Instance
Id int - Instance id
- Interface
Id int - Interface id
- Name string
- Name
- Neighbor
Id string - Neighbor id
- Passive bool
- Passive
- Timing string
- Timing
- Transit
Area stringId - Transit area id
- Vr
Timing GetLogical Router Vrf Ospf Area Virtual Link Vr Timing - Vr timing
- Authentication string
- Authentication
- Bfd
Get
Logical Router Vrf Ospf Area Virtual Link Bfd - Bfd
- Enable bool
- Enable
- Instance
Id int - Instance id
- Interface
Id int - Interface id
- Name string
- Name
- Neighbor
Id string - Neighbor id
- Passive bool
- Passive
- Timing string
- Timing
- Transit
Area stringId - Transit area id
- Vr
Timing GetLogical Router Vrf Ospf Area Virtual Link Vr Timing - Vr timing
- authentication String
- Authentication
- bfd
Get
Logical Router Vrf Ospf Area Virtual Link Bfd - Bfd
- enable Boolean
- Enable
- instance
Id Integer - Instance id
- interface
Id Integer - Interface id
- name String
- Name
- neighbor
Id String - Neighbor id
- passive Boolean
- Passive
- timing String
- Timing
- transit
Area StringId - Transit area id
- vr
Timing GetLogical Router Vrf Ospf Area Virtual Link Vr Timing - Vr timing
- authentication string
- Authentication
- bfd
Get
Logical Router Vrf Ospf Area Virtual Link Bfd - Bfd
- enable boolean
- Enable
- instance
Id number - Instance id
- interface
Id number - Interface id
- name string
- Name
- neighbor
Id string - Neighbor id
- passive boolean
- Passive
- timing string
- Timing
- transit
Area stringId - Transit area id
- vr
Timing GetLogical Router Vrf Ospf Area Virtual Link Vr Timing - Vr timing
- authentication str
- Authentication
- bfd
Get
Logical Router Vrf Ospf Area Virtual Link Bfd - 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_ strid - Transit area id
- vr_
timing GetLogical Router Vrf Ospf Area Virtual Link Vr Timing - Vr timing
- authentication String
- Authentication
- bfd Property Map
- Bfd
- enable Boolean
- Enable
- instance
Id Number - Instance id
- interface
Id Number - Interface id
- name String
- Name
- neighbor
Id String - Neighbor id
- passive Boolean
- Passive
- timing String
- Timing
- transit
Area StringId - Transit area id
- vr
Timing Property Map - Vr timing
GetLogicalRouterVrfOspfAreaVirtualLinkBfd
- Profile string
- Profile
- Profile string
- Profile
- profile String
- Profile
- profile string
- Profile
- profile str
- Profile
- profile String
- Profile
GetLogicalRouterVrfOspfAreaVirtualLinkVrTiming
- Dead
Counts int - Dead counts
- Hello
Interval int - Hello interval
- Retransmit
Interval int - Retransmit interval
- Transit
Delay int - Transit delay
- Dead
Counts int - Dead counts
- Hello
Interval int - Hello interval
- Retransmit
Interval int - Retransmit interval
- Transit
Delay int - Transit delay
- dead
Counts Integer - Dead counts
- hello
Interval Integer - Hello interval
- retransmit
Interval Integer - Retransmit interval
- transit
Delay Integer - Transit delay
- dead
Counts number - Dead counts
- hello
Interval number - Hello interval
- retransmit
Interval number - Retransmit interval
- transit
Delay number - Transit delay
- dead_
counts int - Dead counts
- hello_
interval int - Hello interval
- retransmit_
interval int - Retransmit interval
- transit_
delay int - Transit delay
- dead
Counts Number - Dead counts
- hello
Interval Number - Hello interval
- retransmit
Interval Number - Retransmit interval
- transit
Delay Number - Transit delay
GetLogicalRouterVrfOspfAreaVrRange
- Advertise
Get
Logical Router Vrf Ospf Area Vr Range Advertise - Advertise
- Name string
- Name
- Suppress
Get
Logical Router Vrf Ospf Area Vr Range Suppress - Suppress
- Advertise
Get
Logical Router Vrf Ospf Area Vr Range Advertise - Advertise
- Name string
- Name
- Suppress
Get
Logical Router Vrf Ospf Area Vr Range Suppress - Suppress
- advertise
Get
Logical Router Vrf Ospf Area Vr Range Advertise - Advertise
- name String
- Name
- suppress
Get
Logical Router Vrf Ospf Area Vr Range Suppress - Suppress
- advertise
Get
Logical Router Vrf Ospf Area Vr Range Advertise - Advertise
- name string
- Name
- suppress
Get
Logical Router Vrf Ospf Area Vr Range Suppress - Suppress
- advertise
Get
Logical Router Vrf Ospf Area Vr Range Advertise - Advertise
- name str
- Name
- suppress
Get
Logical Router Vrf Ospf Area Vr Range Suppress - Suppress
- advertise Property Map
- Advertise
- name String
- Name
- suppress Property Map
- Suppress
GetLogicalRouterVrfOspfAuthProfile
- Md5s
List<Get
Logical Router Vrf Ospf Auth Profile Md5> - Md5
- Name string
- Name
- Password string
- Password
- Md5s
[]Get
Logical Router Vrf Ospf Auth Profile Md5 - Md5
- Name string
- Name
- Password string
- Password
- md5s
List<Get
Logical Router Vrf Ospf Auth Profile Md5> - Md5
- name String
- Name
- password String
- Password
- md5s
Get
Logical Router Vrf Ospf Auth Profile Md5[] - Md5
- name string
- Name
- password string
- Password
- md5s
Sequence[Get
Logical Router Vrf Ospf Auth Profile Md5] - Md5
- name str
- Name
- password str
- Password
- md5s List<Property Map>
- Md5
- name String
- Name
- password String
- Password
GetLogicalRouterVrfOspfAuthProfileMd5
GetLogicalRouterVrfOspfExportRule
- Metric int
- Metric
- Name string
- Name
- New
Path stringType - New path type
- New
Tag string - New tag
- Metric int
- Metric
- Name string
- Name
- New
Path stringType - New path type
- New
Tag string - New tag
- metric Integer
- Metric
- name String
- Name
- new
Path StringType - New path type
- new
Tag String - New tag
- metric number
- Metric
- name string
- Name
- new
Path stringType - New path type
- new
Tag string - New tag
- metric int
- Metric
- name str
- Name
- new_
path_ strtype - New path type
- new_
tag str - New tag
- metric Number
- Metric
- name String
- Name
- new
Path StringType - New path type
- new
Tag String - New tag
GetLogicalRouterVrfOspfFloodPrevention
- hello Property Map
- Hello
- lsa Property Map
- Lsa
GetLogicalRouterVrfOspfFloodPreventionHello
- enable bool
- Enable
- max_
packet int - Max packet
GetLogicalRouterVrfOspfFloodPreventionLsa
- enable bool
- Enable
- max_
packet int - 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
- Grace
Period int - Grace period
- Helper
Enable bool - Helper enable
- Max
Neighbor intRestart Time - Max neighbor restart time
- Strict
Lsa boolChecking - Strict l s a checking
- Enable bool
- Enable
- Grace
Period int - Grace period
- Helper
Enable bool - Helper enable
- Max
Neighbor intRestart Time - Max neighbor restart time
- Strict
Lsa boolChecking - Strict l s a checking
- enable Boolean
- Enable
- grace
Period Integer - Grace period
- helper
Enable Boolean - Helper enable
- max
Neighbor IntegerRestart Time - Max neighbor restart time
- strict
Lsa BooleanChecking - Strict l s a checking
- enable boolean
- Enable
- grace
Period number - Grace period
- helper
Enable boolean - Helper enable
- max
Neighbor numberRestart Time - Max neighbor restart time
- strict
Lsa booleanChecking - Strict l s a checking
- enable bool
- Enable
- grace_
period int - Grace period
- helper_
enable bool - Helper enable
- max_
neighbor_ intrestart_ time - Max neighbor restart time
- strict_
lsa_ boolchecking - Strict l s a checking
- enable Boolean
- Enable
- grace
Period Number - Grace period
- helper
Enable Boolean - Helper enable
- max
Neighbor NumberRestart Time - Max neighbor restart time
- strict
Lsa BooleanChecking - Strict l s a checking
GetLogicalRouterVrfOspfVrTimers
- Lsa
Interval int - Lsa interval
- Spf
Calculation intDelay - Spf calculation delay
- Lsa
Interval int - Lsa interval
- Spf
Calculation intDelay - Spf calculation delay
- lsa
Interval Integer - Lsa interval
- spf
Calculation IntegerDelay - Spf calculation delay
- lsa
Interval number - Lsa interval
- spf
Calculation numberDelay - Spf calculation delay
- lsa_
interval int - Lsa interval
- spf_
calculation_ intdelay - Spf calculation delay
- lsa
Interval Number - Lsa interval
- spf
Calculation NumberDelay - Spf calculation delay
GetLogicalRouterVrfOspfv3
- Allow
Redist boolDefault Route - Allow redist default route
- Areas
List<Get
Logical Router Vrf Ospfv3Area> - Area
- Auth
Profiles List<GetLogical Router Vrf Ospfv3Auth Profile> - Auth profile
- Disable
Transit boolTraffic - Disable transit traffic
- Enable bool
- Enable
- Export
Rules List<GetLogical Router Vrf Ospfv3Export Rule> - Export rules
- Global
Bfd GetLogical Router Vrf Ospfv3Global Bfd - Global bfd
- Global
If stringTimer - Global if timer
- Graceful
Restart GetLogical Router Vrf Ospfv3Graceful Restart - Graceful restart
- Redistribution
Profile string - Redistribution profile
- Reject
Default boolRoute - Reject default route
- Router
Id string - Router id
- Spf
Timer string - Spf timer
- Vr
Timers GetLogical Router Vrf Ospfv3Vr Timers - Vr timers
- Allow
Redist boolDefault Route - Allow redist default route
- Areas
[]Get
Logical Router Vrf Ospfv3Area - Area
- Auth
Profiles []GetLogical Router Vrf Ospfv3Auth Profile - Auth profile
- Disable
Transit boolTraffic - Disable transit traffic
- Enable bool
- Enable
- Export
Rules []GetLogical Router Vrf Ospfv3Export Rule - Export rules
- Global
Bfd GetLogical Router Vrf Ospfv3Global Bfd - Global bfd
- Global
If stringTimer - Global if timer
- Graceful
Restart GetLogical Router Vrf Ospfv3Graceful Restart - Graceful restart
- Redistribution
Profile string - Redistribution profile
- Reject
Default boolRoute - Reject default route
- Router
Id string - Router id
- Spf
Timer string - Spf timer
- Vr
Timers GetLogical Router Vrf Ospfv3Vr Timers - Vr timers
- allow
Redist BooleanDefault Route - Allow redist default route
- areas
List<Get
Logical Router Vrf Ospfv3Area> - Area
- auth
Profiles List<GetLogical Router Vrf Ospfv3Auth Profile> - Auth profile
- disable
Transit BooleanTraffic - Disable transit traffic
- enable Boolean
- Enable
- export
Rules List<GetLogical Router Vrf Ospfv3Export Rule> - Export rules
- global
Bfd GetLogical Router Vrf Ospfv3Global Bfd - Global bfd
- global
If StringTimer - Global if timer
- graceful
Restart GetLogical Router Vrf Ospfv3Graceful Restart - Graceful restart
- redistribution
Profile String - Redistribution profile
- reject
Default BooleanRoute - Reject default route
- router
Id String - Router id
- spf
Timer String - Spf timer
- vr
Timers GetLogical Router Vrf Ospfv3Vr Timers - Vr timers
- allow
Redist booleanDefault Route - Allow redist default route
- areas
Get
Logical Router Vrf Ospfv3Area[] - Area
- auth
Profiles GetLogical Router Vrf Ospfv3Auth Profile[] - Auth profile
- disable
Transit booleanTraffic - Disable transit traffic
- enable boolean
- Enable
- export
Rules GetLogical Router Vrf Ospfv3Export Rule[] - Export rules
- global
Bfd GetLogical Router Vrf Ospfv3Global Bfd - Global bfd
- global
If stringTimer - Global if timer
- graceful
Restart GetLogical Router Vrf Ospfv3Graceful Restart - Graceful restart
- redistribution
Profile string - Redistribution profile
- reject
Default booleanRoute - Reject default route
- router
Id string - Router id
- spf
Timer string - Spf timer
- vr
Timers GetLogical Router Vrf Ospfv3Vr Timers - Vr timers
- allow_
redist_ booldefault_ route - Allow redist default route
- areas
Sequence[Get
Logical Router Vrf Ospfv3Area] - Area
- auth_
profiles Sequence[GetLogical Router Vrf Ospfv3Auth Profile] - Auth profile
- disable_
transit_ booltraffic - Disable transit traffic
- enable bool
- Enable
- export_
rules Sequence[GetLogical Router Vrf Ospfv3Export Rule] - Export rules
- global_
bfd GetLogical Router Vrf Ospfv3Global Bfd - Global bfd
- global_
if_ strtimer - Global if timer
- graceful_
restart GetLogical Router Vrf Ospfv3Graceful Restart - Graceful restart
- redistribution_
profile str - Redistribution profile
- reject_
default_ boolroute - Reject default route
- router_
id str - Router id
- spf_
timer str - Spf timer
- vr_
timers GetLogical Router Vrf Ospfv3Vr Timers - Vr timers
- allow
Redist BooleanDefault Route - Allow redist default route
- areas List<Property Map>
- Area
- auth
Profiles List<Property Map> - Auth profile
- disable
Transit BooleanTraffic - Disable transit traffic
- enable Boolean
- Enable
- export
Rules List<Property Map> - Export rules
- global
Bfd Property Map - Global bfd
- global
If StringTimer - Global if timer
- graceful
Restart Property Map - Graceful restart
- redistribution
Profile String - Redistribution profile
- reject
Default BooleanRoute - Reject default route
- router
Id String - Router id
- spf
Timer String - Spf timer
- vr
Timers Property Map - Vr timers
GetLogicalRouterVrfOspfv3Area
- Authentication string
- Authentication
- Interfaces
List<Get
Logical Router Vrf Ospfv3Area Interface> - Interface
- Name string
- Name
- Ranges
List<Get
Logical Router Vrf Ospfv3Area Range> - Range
- Type
Get
Logical Router Vrf Ospfv3Area Type - Type
- Virtual
Links List<GetLogical Router Vrf Ospfv3Area Virtual Link> - Virtual link
- Vr
Ranges List<GetLogical Router Vrf Ospfv3Area Vr Range> - Vr range
- Authentication string
- Authentication
- Interfaces
[]Get
Logical Router Vrf Ospfv3Area Interface - Interface
- Name string
- Name
- Ranges
[]Get
Logical Router Vrf Ospfv3Area Range - Range
- Type
Get
Logical Router Vrf Ospfv3Area Type - Type
- Virtual
Links []GetLogical Router Vrf Ospfv3Area Virtual Link - Virtual link
- Vr
Ranges []GetLogical Router Vrf Ospfv3Area Vr Range - Vr range
- authentication String
- Authentication
- interfaces
List<Get
Logical Router Vrf Ospfv3Area Interface> - Interface
- name String
- Name
- ranges
List<Get
Logical Router Vrf Ospfv3Area Range> - Range
- type
Get
Logical Router Vrf Ospfv3Area Type - Type
- virtual
Links List<GetLogical Router Vrf Ospfv3Area Virtual Link> - Virtual link
- vr
Ranges List<GetLogical Router Vrf Ospfv3Area Vr Range> - Vr range
- authentication string
- Authentication
- interfaces
Get
Logical Router Vrf Ospfv3Area Interface[] - Interface
- name string
- Name
- ranges
Get
Logical Router Vrf Ospfv3Area Range[] - Range
- type
Get
Logical Router Vrf Ospfv3Area Type - Type
- virtual
Links GetLogical Router Vrf Ospfv3Area Virtual Link[] - Virtual link
- vr
Ranges GetLogical Router Vrf Ospfv3Area Vr Range[] - Vr range
- authentication str
- Authentication
- interfaces
Sequence[Get
Logical Router Vrf Ospfv3Area Interface] - Interface
- name str
- Name
- ranges
Sequence[Get
Logical Router Vrf Ospfv3Area Range] - Range
- type
Get
Logical Router Vrf Ospfv3Area Type - Type
- virtual_
links Sequence[GetLogical Router Vrf Ospfv3Area Virtual Link] - Virtual link
- vr_
ranges Sequence[GetLogical Router Vrf Ospfv3Area Vr Range] - Vr range
- authentication String
- Authentication
- interfaces List<Property Map>
- Interface
- name String
- Name
- ranges List<Property Map>
- Range
- type Property Map
- Type
- virtual
Links List<Property Map> - Virtual link
- vr
Ranges List<Property Map> - Vr range
GetLogicalRouterVrfOspfv3AreaInterface
- Authentication string
- Authentication
- Bfd
Get
Logical Router Vrf Ospfv3Area Interface Bfd - Bfd
- Enable bool
- Enable
- Instance
Id int - Instance id
- Link
Type GetLogical Router Vrf Ospfv3Area Interface Link Type - Link type
- Metric int
- Metric
- Mtu
Ignore bool - Mtu ignore
- Name string
- Name
- Neighbors
List<Get
Logical Router Vrf Ospfv3Area Interface Neighbor> - Neighbor
- Passive bool
- Passive
- Priority int
- Priority
- Timing string
- Timing
- Vr
Timing GetLogical Router Vrf Ospfv3Area Interface Vr Timing - Vr timing
- Authentication string
- Authentication
- Bfd
Get
Logical Router Vrf Ospfv3Area Interface Bfd - Bfd
- Enable bool
- Enable
- Instance
Id int - Instance id
- Link
Type GetLogical Router Vrf Ospfv3Area Interface Link Type - Link type
- Metric int
- Metric
- Mtu
Ignore bool - Mtu ignore
- Name string
- Name
- Neighbors
[]Get
Logical Router Vrf Ospfv3Area Interface Neighbor - Neighbor
- Passive bool
- Passive
- Priority int
- Priority
- Timing string
- Timing
- Vr
Timing GetLogical Router Vrf Ospfv3Area Interface Vr Timing - Vr timing
- authentication String
- Authentication
- bfd
Get
Logical Router Vrf Ospfv3Area Interface Bfd - Bfd
- enable Boolean
- Enable
- instance
Id Integer - Instance id
- link
Type GetLogical Router Vrf Ospfv3Area Interface Link Type - Link type
- metric Integer
- Metric
- mtu
Ignore Boolean - Mtu ignore
- name String
- Name
- neighbors
List<Get
Logical Router Vrf Ospfv3Area Interface Neighbor> - Neighbor
- passive Boolean
- Passive
- priority Integer
- Priority
- timing String
- Timing
- vr
Timing GetLogical Router Vrf Ospfv3Area Interface Vr Timing - Vr timing
- authentication string
- Authentication
- bfd
Get
Logical Router Vrf Ospfv3Area Interface Bfd - Bfd
- enable boolean
- Enable
- instance
Id number - Instance id
- link
Type GetLogical Router Vrf Ospfv3Area Interface Link Type - Link type
- metric number
- Metric
- mtu
Ignore boolean - Mtu ignore
- name string
- Name
- neighbors
Get
Logical Router Vrf Ospfv3Area Interface Neighbor[] - Neighbor
- passive boolean
- Passive
- priority number
- Priority
- timing string
- Timing
- vr
Timing GetLogical Router Vrf Ospfv3Area Interface Vr Timing - Vr timing
- authentication str
- Authentication
- bfd
Get
Logical Router Vrf Ospfv3Area Interface Bfd - Bfd
- enable bool
- Enable
- instance_
id int - Instance id
- link_
type GetLogical Router Vrf Ospfv3Area Interface Link Type - Link type
- metric int
- Metric
- mtu_
ignore bool - Mtu ignore
- name str
- Name
- neighbors
Sequence[Get
Logical Router Vrf Ospfv3Area Interface Neighbor] - Neighbor
- passive bool
- Passive
- priority int
- Priority
- timing str
- Timing
- vr_
timing GetLogical Router Vrf Ospfv3Area Interface Vr Timing - Vr timing
- authentication String
- Authentication
- bfd Property Map
- Bfd
- enable Boolean
- Enable
- instance
Id Number - Instance id
- link
Type Property Map - Link type
- metric Number
- Metric
- mtu
Ignore Boolean - Mtu ignore
- name String
- Name
- neighbors List<Property Map>
- Neighbor
- passive Boolean
- Passive
- priority Number
- Priority
- timing String
- Timing
- vr
Timing Property Map - Vr timing
GetLogicalRouterVrfOspfv3AreaInterfaceBfd
- Profile string
- Profile
- Profile string
- Profile
- profile String
- Profile
- profile string
- Profile
- profile str
- Profile
- profile String
- Profile
GetLogicalRouterVrfOspfv3AreaInterfaceLinkType
- broadcast Property Map
- Broadcast
- p2mp Property Map
- P2mp
- p2p Property Map
- P2p
GetLogicalRouterVrfOspfv3AreaInterfaceLinkTypeP2mp
- neighbors List<Property Map>
- Neighbor
GetLogicalRouterVrfOspfv3AreaInterfaceLinkTypeP2mpNeighbor
GetLogicalRouterVrfOspfv3AreaInterfaceNeighbor
- Name string
- Name
- Name string
- Name
- name String
- Name
- name string
- Name
- name str
- Name
- name String
- Name
GetLogicalRouterVrfOspfv3AreaInterfaceVrTiming
- 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
- 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
- dead
Counts Integer - Dead counts
- gr
Delay Integer - Gr delay
- hello
Interval Integer - Hello interval
- retransmit
Interval Integer - Retransmit interval
- transit
Delay Integer - Transit delay
- dead
Counts number - Dead counts
- gr
Delay number - Gr delay
- hello
Interval number - Hello interval
- retransmit
Interval number - Retransmit interval
- transit
Delay 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
- dead
Counts Number - Dead counts
- gr
Delay Number - Gr delay
- hello
Interval Number - Hello interval
- retransmit
Interval Number - Retransmit interval
- transit
Delay Number - Transit delay
GetLogicalRouterVrfOspfv3AreaRange
GetLogicalRouterVrfOspfv3AreaType
- normal Property Map
- Normal
- nssa Property Map
- Nssa
- stub Property Map
- Stub
GetLogicalRouterVrfOspfv3AreaTypeNormal
- abr Property Map
- Abr
GetLogicalRouterVrfOspfv3AreaTypeNormalAbr
- Export
List string - Export list
- Import
List string - Import list
- Inbound
Filter stringList - Inbound filter list
- Outbound
Filter stringList - Outbound filter list
- Export
List string - Export list
- Import
List string - Import list
- Inbound
Filter stringList - Inbound filter list
- Outbound
Filter stringList - Outbound filter list
- export
List String - Export list
- import
List String - Import list
- inbound
Filter StringList - Inbound filter list
- outbound
Filter StringList - Outbound filter list
- export
List string - Export list
- import
List string - Import list
- inbound
Filter stringList - Inbound filter list
- outbound
Filter stringList - Outbound filter list
- export_
list str - Export list
- import_
list str - Import list
- inbound_
filter_ strlist - Inbound filter list
- outbound_
filter_ strlist - Outbound filter list
- export
List String - Export list
- import
List String - Import list
- inbound
Filter StringList - Inbound filter list
- outbound
Filter StringList - Outbound filter list
GetLogicalRouterVrfOspfv3AreaTypeNssa
- Abr
Get
Logical Router Vrf Ospfv3Area Type Nssa Abr - Abr
- Accept
Summary bool - Accept summary
- Default
Information GetOriginate Logical Router Vrf Ospfv3Area Type Nssa Default Information Originate - Default information originate
- Default
Route GetLogical Router Vrf Ospfv3Area Type Nssa Default Route - Default route
- No
Summary bool - No summary
- Nssa
Ext List<GetRanges Logical Router Vrf Ospfv3Area Type Nssa Nssa Ext Range> - Nssa ext range
- Abr
Get
Logical Router Vrf Ospfv3Area Type Nssa Abr - Abr
- Accept
Summary bool - Accept summary
- Default
Information GetOriginate Logical Router Vrf Ospfv3Area Type Nssa Default Information Originate - Default information originate
- Default
Route GetLogical Router Vrf Ospfv3Area Type Nssa Default Route - Default route
- No
Summary bool - No summary
- Nssa
Ext []GetRanges Logical Router Vrf Ospfv3Area Type Nssa Nssa Ext Range - Nssa ext range
- abr
Get
Logical Router Vrf Ospfv3Area Type Nssa Abr - Abr
- accept
Summary Boolean - Accept summary
- default
Information GetOriginate Logical Router Vrf Ospfv3Area Type Nssa Default Information Originate - Default information originate
- default
Route GetLogical Router Vrf Ospfv3Area Type Nssa Default Route - Default route
- no
Summary Boolean - No summary
- nssa
Ext List<GetRanges Logical Router Vrf Ospfv3Area Type Nssa Nssa Ext Range> - Nssa ext range
- abr
Get
Logical Router Vrf Ospfv3Area Type Nssa Abr - Abr
- accept
Summary boolean - Accept summary
- default
Information GetOriginate Logical Router Vrf Ospfv3Area Type Nssa Default Information Originate - Default information originate
- default
Route GetLogical Router Vrf Ospfv3Area Type Nssa Default Route - Default route
- no
Summary boolean - No summary
- nssa
Ext GetRanges Logical Router Vrf Ospfv3Area Type Nssa Nssa Ext Range[] - Nssa ext range
- abr
Get
Logical Router Vrf Ospfv3Area Type Nssa Abr - Abr
- accept_
summary bool - Accept summary
- default_
information_ Getoriginate Logical Router Vrf Ospfv3Area Type Nssa Default Information Originate - Default information originate
- default_
route GetLogical Router Vrf Ospfv3Area Type Nssa Default Route - Default route
- no_
summary bool - No summary
- nssa_
ext_ Sequence[Getranges Logical Router Vrf Ospfv3Area Type Nssa Nssa Ext Range] - Nssa ext range
- abr Property Map
- Abr
- accept
Summary Boolean - Accept summary
- default
Information Property MapOriginate - Default information originate
- default
Route Property Map - Default route
- no
Summary Boolean - No summary
- nssa
Ext List<Property Map>Ranges - Nssa ext range
GetLogicalRouterVrfOspfv3AreaTypeNssaAbr
- Export
List string - Export list
- Import
List string - Import list
- Inbound
Filter stringList - Inbound filter list
- Nssa
Ext List<GetRanges Logical Router Vrf Ospfv3Area Type Nssa Abr Nssa Ext Range> - Nssa ext range
- Outbound
Filter stringList - Outbound filter list
- Export
List string - Export list
- Import
List string - Import list
- Inbound
Filter stringList - Inbound filter list
- Nssa
Ext []GetRanges Logical Router Vrf Ospfv3Area Type Nssa Abr Nssa Ext Range - Nssa ext range
- Outbound
Filter stringList - Outbound filter list
- export
List String - Export list
- import
List String - Import list
- inbound
Filter StringList - Inbound filter list
- nssa
Ext List<GetRanges Logical Router Vrf Ospfv3Area Type Nssa Abr Nssa Ext Range> - Nssa ext range
- outbound
Filter StringList - Outbound filter list
- export
List string - Export list
- import
List string - Import list
- inbound
Filter stringList - Inbound filter list
- nssa
Ext GetRanges Logical Router Vrf Ospfv3Area Type Nssa Abr Nssa Ext Range[] - Nssa ext range
- outbound
Filter stringList - Outbound filter list
- export_
list str - Export list
- import_
list str - Import list
- inbound_
filter_ strlist - Inbound filter list
- nssa_
ext_ Sequence[Getranges Logical Router Vrf Ospfv3Area Type Nssa Abr Nssa Ext Range] - Nssa ext range
- outbound_
filter_ strlist - Outbound filter list
- export
List String - Export list
- import
List String - Import list
- inbound
Filter StringList - Inbound filter list
- nssa
Ext List<Property Map>Ranges - Nssa ext range
- outbound
Filter StringList - Outbound filter list
GetLogicalRouterVrfOspfv3AreaTypeNssaAbrNssaExtRange
- Advertise
Get
Logical Router Vrf Ospfv3Area Type Nssa Abr Nssa Ext Range Advertise - Advertise
- Name string
- Name
- Route
Tag int - Route tag
- Suppress
Get
Logical Router Vrf Ospfv3Area Type Nssa Abr Nssa Ext Range Suppress - Suppress
- Advertise
Get
Logical Router Vrf Ospfv3Area Type Nssa Abr Nssa Ext Range Advertise - Advertise
- Name string
- Name
- Route
Tag int - Route tag
- Suppress
Get
Logical Router Vrf Ospfv3Area Type Nssa Abr Nssa Ext Range Suppress - Suppress
- advertise
Get
Logical Router Vrf Ospfv3Area Type Nssa Abr Nssa Ext Range Advertise - Advertise
- name String
- Name
- route
Tag Integer - Route tag
- suppress
Get
Logical Router Vrf Ospfv3Area Type Nssa Abr Nssa Ext Range Suppress - Suppress
- advertise
Get
Logical Router Vrf Ospfv3Area Type Nssa Abr Nssa Ext Range Advertise - Advertise
- name string
- Name
- route
Tag number - Route tag
- suppress
Get
Logical Router Vrf Ospfv3Area Type Nssa Abr Nssa Ext Range Suppress - Suppress
- advertise
Get
Logical Router Vrf Ospfv3Area Type Nssa Abr Nssa Ext Range Advertise - Advertise
- name str
- Name
- route_
tag int - Route tag
- suppress
Get
Logical Router Vrf Ospfv3Area Type Nssa Abr Nssa Ext Range Suppress - Suppress
- advertise Property Map
- Advertise
- name String
- Name
- route
Tag Number - Route tag
- suppress Property Map
- Suppress
GetLogicalRouterVrfOspfv3AreaTypeNssaDefaultInformationOriginate
- Metric int
- Metric
- Metric
Type string - Metric type
- Metric int
- Metric
- Metric
Type string - Metric type
- metric Integer
- Metric
- metric
Type String - Metric type
- metric number
- Metric
- metric
Type string - Metric type
- metric int
- Metric
- metric_
type str - Metric type
- metric Number
- Metric
- metric
Type String - Metric type
GetLogicalRouterVrfOspfv3AreaTypeNssaDefaultRoute
- advertise Property Map
- Advertise
- disable Property Map
- Disable
GetLogicalRouterVrfOspfv3AreaTypeNssaDefaultRouteAdvertise
GetLogicalRouterVrfOspfv3AreaTypeNssaNssaExtRange
- Advertise
Get
Logical Router Vrf Ospfv3Area Type Nssa Nssa Ext Range Advertise - Advertise
- Name string
- Name
- Route
Tag int - Route tag
- Suppress
Get
Logical Router Vrf Ospfv3Area Type Nssa Nssa Ext Range Suppress - Suppress
- Advertise
Get
Logical Router Vrf Ospfv3Area Type Nssa Nssa Ext Range Advertise - Advertise
- Name string
- Name
- Route
Tag int - Route tag
- Suppress
Get
Logical Router Vrf Ospfv3Area Type Nssa Nssa Ext Range Suppress - Suppress
- advertise
Get
Logical Router Vrf Ospfv3Area Type Nssa Nssa Ext Range Advertise - Advertise
- name String
- Name
- route
Tag Integer - Route tag
- suppress
Get
Logical Router Vrf Ospfv3Area Type Nssa Nssa Ext Range Suppress - Suppress
- advertise
Get
Logical Router Vrf Ospfv3Area Type Nssa Nssa Ext Range Advertise - Advertise
- name string
- Name
- route
Tag number - Route tag
- suppress
Get
Logical Router Vrf Ospfv3Area Type Nssa Nssa Ext Range Suppress - Suppress
- advertise
Get
Logical Router Vrf Ospfv3Area Type Nssa Nssa Ext Range Advertise - Advertise
- name str
- Name
- route_
tag int - Route tag
- suppress
Get
Logical Router Vrf Ospfv3Area Type Nssa Nssa Ext Range Suppress - Suppress
- advertise Property Map
- Advertise
- name String
- Name
- route
Tag Number - Route tag
- suppress Property Map
- Suppress
GetLogicalRouterVrfOspfv3AreaTypeStub
- Abr
Get
Logical Router Vrf Ospfv3Area Type Stub Abr - Abr
- Accept
Summary bool - Accept summary
- Default
Route GetLogical Router Vrf Ospfv3Area Type Stub Default Route - Default route
- Default
Route intMetric - Default route metric
- No
Summary bool - No summary
- Abr
Get
Logical Router Vrf Ospfv3Area Type Stub Abr - Abr
- Accept
Summary bool - Accept summary
- Default
Route GetLogical Router Vrf Ospfv3Area Type Stub Default Route - Default route
- Default
Route intMetric - Default route metric
- No
Summary bool - No summary
- abr
Get
Logical Router Vrf Ospfv3Area Type Stub Abr - Abr
- accept
Summary Boolean - Accept summary
- default
Route GetLogical Router Vrf Ospfv3Area Type Stub Default Route - Default route
- default
Route IntegerMetric - Default route metric
- no
Summary Boolean - No summary
- abr
Get
Logical Router Vrf Ospfv3Area Type Stub Abr - Abr
- accept
Summary boolean - Accept summary
- default
Route GetLogical Router Vrf Ospfv3Area Type Stub Default Route - Default route
- default
Route numberMetric - Default route metric
- no
Summary boolean - No summary
- abr
Get
Logical Router Vrf Ospfv3Area Type Stub Abr - Abr
- accept_
summary bool - Accept summary
- default_
route GetLogical Router Vrf Ospfv3Area Type Stub Default Route - Default route
- default_
route_ intmetric - Default route metric
- no_
summary bool - No summary
- abr Property Map
- Abr
- accept
Summary Boolean - Accept summary
- default
Route Property Map - Default route
- default
Route NumberMetric - Default route metric
- no
Summary Boolean - No summary
GetLogicalRouterVrfOspfv3AreaTypeStubAbr
- Export
List string - Export list
- Import
List string - Import list
- Inbound
Filter stringList - Inbound filter list
- Outbound
Filter stringList - Outbound filter list
- Export
List string - Export list
- Import
List string - Import list
- Inbound
Filter stringList - Inbound filter list
- Outbound
Filter stringList - Outbound filter list
- export
List String - Export list
- import
List String - Import list
- inbound
Filter StringList - Inbound filter list
- outbound
Filter StringList - Outbound filter list
- export
List string - Export list
- import
List string - Import list
- inbound
Filter stringList - Inbound filter list
- outbound
Filter stringList - Outbound filter list
- export_
list str - Export list
- import_
list str - Import list
- inbound_
filter_ strlist - Inbound filter list
- outbound_
filter_ strlist - Outbound filter list
- export
List String - Export list
- import
List String - Import list
- inbound
Filter StringList - Inbound filter list
- outbound
Filter StringList - Outbound filter list
GetLogicalRouterVrfOspfv3AreaTypeStubDefaultRoute
- advertise Property Map
- Advertise
- disable Property Map
- Disable
GetLogicalRouterVrfOspfv3AreaTypeStubDefaultRouteAdvertise
- Metric int
- Metric
- Metric int
- Metric
- metric Integer
- Metric
- metric number
- Metric
- metric int
- Metric
- metric Number
- Metric
GetLogicalRouterVrfOspfv3AreaVirtualLink
- Authentication string
- Authentication
- Bfd
Get
Logical Router Vrf Ospfv3Area Virtual Link Bfd - Bfd
- Enable bool
- Enable
- Instance
Id int - Instance id
- Interface
Id int - Interface id
- Name string
- Name
- Neighbor
Id string - Neighbor id
- Passive bool
- Passive
- Timing string
- Timing
- Transit
Area stringId - Transit area id
- Vr
Timing GetLogical Router Vrf Ospfv3Area Virtual Link Vr Timing - Vr timing
- Authentication string
- Authentication
- Bfd
Get
Logical Router Vrf Ospfv3Area Virtual Link Bfd - Bfd
- Enable bool
- Enable
- Instance
Id int - Instance id
- Interface
Id int - Interface id
- Name string
- Name
- Neighbor
Id string - Neighbor id
- Passive bool
- Passive
- Timing string
- Timing
- Transit
Area stringId - Transit area id
- Vr
Timing GetLogical Router Vrf Ospfv3Area Virtual Link Vr Timing - Vr timing
- authentication String
- Authentication
- bfd
Get
Logical Router Vrf Ospfv3Area Virtual Link Bfd - Bfd
- enable Boolean
- Enable
- instance
Id Integer - Instance id
- interface
Id Integer - Interface id
- name String
- Name
- neighbor
Id String - Neighbor id
- passive Boolean
- Passive
- timing String
- Timing
- transit
Area StringId - Transit area id
- vr
Timing GetLogical Router Vrf Ospfv3Area Virtual Link Vr Timing - Vr timing
- authentication string
- Authentication
- bfd
Get
Logical Router Vrf Ospfv3Area Virtual Link Bfd - Bfd
- enable boolean
- Enable
- instance
Id number - Instance id
- interface
Id number - Interface id
- name string
- Name
- neighbor
Id string - Neighbor id
- passive boolean
- Passive
- timing string
- Timing
- transit
Area stringId - Transit area id
- vr
Timing GetLogical Router Vrf Ospfv3Area Virtual Link Vr Timing - Vr timing
- authentication str
- Authentication
- bfd
Get
Logical Router Vrf Ospfv3Area Virtual Link Bfd - 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_ strid - Transit area id
- vr_
timing GetLogical Router Vrf Ospfv3Area Virtual Link Vr Timing - Vr timing
- authentication String
- Authentication
- bfd Property Map
- Bfd
- enable Boolean
- Enable
- instance
Id Number - Instance id
- interface
Id Number - Interface id
- name String
- Name
- neighbor
Id String - Neighbor id
- passive Boolean
- Passive
- timing String
- Timing
- transit
Area StringId - Transit area id
- vr
Timing Property Map - Vr timing
GetLogicalRouterVrfOspfv3AreaVirtualLinkBfd
- Profile string
- Profile
- Profile string
- Profile
- profile String
- Profile
- profile string
- Profile
- profile str
- Profile
- profile String
- Profile
GetLogicalRouterVrfOspfv3AreaVirtualLinkVrTiming
- Dead
Counts int - Dead counts
- Hello
Interval int - Hello interval
- Retransmit
Interval int - Retransmit interval
- Transit
Delay int - Transit delay
- Dead
Counts int - Dead counts
- Hello
Interval int - Hello interval
- Retransmit
Interval int - Retransmit interval
- Transit
Delay int - Transit delay
- dead
Counts Integer - Dead counts
- hello
Interval Integer - Hello interval
- retransmit
Interval Integer - Retransmit interval
- transit
Delay Integer - Transit delay
- dead
Counts number - Dead counts
- hello
Interval number - Hello interval
- retransmit
Interval number - Retransmit interval
- transit
Delay number - Transit delay
- dead_
counts int - Dead counts
- hello_
interval int - Hello interval
- retransmit_
interval int - Retransmit interval
- transit_
delay int - Transit delay
- dead
Counts Number - Dead counts
- hello
Interval Number - Hello interval
- retransmit
Interval Number - Retransmit interval
- transit
Delay Number - Transit delay
GetLogicalRouterVrfOspfv3AreaVrRange
- Advertise
Get
Logical Router Vrf Ospfv3Area Vr Range Advertise - Advertise
- Name string
- Name
- Suppress
Get
Logical Router Vrf Ospfv3Area Vr Range Suppress - Suppress
- Advertise
Get
Logical Router Vrf Ospfv3Area Vr Range Advertise - Advertise
- Name string
- Name
- Suppress
Get
Logical Router Vrf Ospfv3Area Vr Range Suppress - Suppress
- advertise
Get
Logical Router Vrf Ospfv3Area Vr Range Advertise - Advertise
- name String
- Name
- suppress
Get
Logical Router Vrf Ospfv3Area Vr Range Suppress - Suppress
- advertise
Get
Logical Router Vrf Ospfv3Area Vr Range Advertise - Advertise
- name string
- Name
- suppress
Get
Logical Router Vrf Ospfv3Area Vr Range Suppress - Suppress
- advertise Property Map
- Advertise
- name String
- Name
- suppress Property Map
- Suppress
GetLogicalRouterVrfOspfv3AuthProfile
- Ah
Get
Logical Router Vrf Ospfv3Auth Profile Ah - Ah
- Esp
Get
Logical Router Vrf Ospfv3Auth Profile Esp - Esp
- Name string
- Name
- Spi string
- Spi
- Ah
Get
Logical Router Vrf Ospfv3Auth Profile Ah - Ah
- Esp
Get
Logical Router Vrf Ospfv3Auth Profile Esp - Esp
- Name string
- Name
- Spi string
- Spi
- ah
Get
Logical Router Vrf Ospfv3Auth Profile Ah - Ah
- esp
Get
Logical Router Vrf Ospfv3Auth Profile Esp - Esp
- name String
- Name
- spi String
- Spi
- ah
Get
Logical Router Vrf Ospfv3Auth Profile Ah - Ah
- esp
Get
Logical Router Vrf Ospfv3Auth Profile Esp - Esp
- name string
- Name
- spi string
- Spi
- ah Property Map
- Ah
- esp Property Map
- Esp
- name String
- Name
- spi String
- Spi
GetLogicalRouterVrfOspfv3AuthProfileAh
- md5 Property Map
- Md5
- sha1 Property Map
- Sha1
- sha256 Property Map
- Sha256
- sha384 Property Map
- Sha384
- sha512 Property Map
- Sha512
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
- authentication Property Map
- Authentication
- encryption Property Map
- Encryption
GetLogicalRouterVrfOspfv3AuthProfileEspAuthentication
- Md5
Get
Logical Router Vrf Ospfv3Auth Profile Esp Authentication Md5 - Md5
- None
Get
Logical Router Vrf Ospfv3Auth Profile Esp Authentication None - None
- Sha1
Get
Logical Router Vrf Ospfv3Auth Profile Esp Authentication Sha1 - Sha1
- Sha256
Get
Logical Router Vrf Ospfv3Auth Profile Esp Authentication Sha256 - Sha256
- Sha384
Get
Logical Router Vrf Ospfv3Auth Profile Esp Authentication Sha384 - Sha384
- Sha512
Get
Logical Router Vrf Ospfv3Auth Profile Esp Authentication Sha512 - Sha512
- Md5
Get
Logical Router Vrf Ospfv3Auth Profile Esp Authentication Md5 - Md5
- None
Get
Logical Router Vrf Ospfv3Auth Profile Esp Authentication None - None
- Sha1
Get
Logical Router Vrf Ospfv3Auth Profile Esp Authentication Sha1 - Sha1
- Sha256
Get
Logical Router Vrf Ospfv3Auth Profile Esp Authentication Sha256 - Sha256
- Sha384
Get
Logical Router Vrf Ospfv3Auth Profile Esp Authentication Sha384 - Sha384
- Sha512
Get
Logical Router Vrf Ospfv3Auth Profile Esp Authentication Sha512 - Sha512
- md5
Get
Logical Router Vrf Ospfv3Auth Profile Esp Authentication Md5 - Md5
- none
Get
Logical Router Vrf Ospfv3Auth Profile Esp Authentication None - None
- sha1
Get
Logical Router Vrf Ospfv3Auth Profile Esp Authentication Sha1 - Sha1
- sha256
Get
Logical Router Vrf Ospfv3Auth Profile Esp Authentication Sha256 - Sha256
- sha384
Get
Logical Router Vrf Ospfv3Auth Profile Esp Authentication Sha384 - Sha384
- sha512
Get
Logical Router Vrf Ospfv3Auth Profile Esp Authentication Sha512 - Sha512
- md5
Get
Logical Router Vrf Ospfv3Auth Profile Esp Authentication Md5 - Md5
- none
Get
Logical Router Vrf Ospfv3Auth Profile Esp Authentication None - None
- sha1
Get
Logical Router Vrf Ospfv3Auth Profile Esp Authentication Sha1 - Sha1
- sha256
Get
Logical Router Vrf Ospfv3Auth Profile Esp Authentication Sha256 - Sha256
- sha384
Get
Logical Router Vrf Ospfv3Auth Profile Esp Authentication Sha384 - Sha384
- sha512
Get
Logical Router Vrf Ospfv3Auth Profile Esp Authentication Sha512 - Sha512
- md5
Get
Logical Router Vrf Ospfv3Auth Profile Esp Authentication Md5 - Md5
- none
Get
Logical Router Vrf Ospfv3Auth Profile Esp Authentication None - None
- sha1
Get
Logical Router Vrf Ospfv3Auth Profile Esp Authentication Sha1 - Sha1
- sha256
Get
Logical Router Vrf Ospfv3Auth Profile Esp Authentication Sha256 - Sha256
- sha384
Get
Logical Router Vrf Ospfv3Auth Profile Esp Authentication Sha384 - Sha384
- sha512
Get
Logical Router Vrf Ospfv3Auth Profile Esp Authentication Sha512 - Sha512
- md5 Property Map
- Md5
- none Property Map
- None
- sha1 Property Map
- Sha1
- sha256 Property Map
- Sha256
- sha384 Property Map
- Sha384
- sha512 Property Map
- Sha512
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
GetLogicalRouterVrfOspfv3ExportRule
- Metric int
- Metric
- Name string
- Name
- New
Path stringType - New path type
- New
Tag string - New tag
- Metric int
- Metric
- Name string
- Name
- New
Path stringType - New path type
- New
Tag string - New tag
- metric Integer
- Metric
- name String
- Name
- new
Path StringType - New path type
- new
Tag String - New tag
- metric number
- Metric
- name string
- Name
- new
Path stringType - New path type
- new
Tag string - New tag
- metric int
- Metric
- name str
- Name
- new_
path_ strtype - New path type
- new_
tag str - New tag
- metric Number
- Metric
- name String
- Name
- new
Path StringType - New path type
- new
Tag 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
- Grace
Period int - Grace period
- Helper
Enable bool - Helper enable
- Max
Neighbor intRestart Time - Max neighbor restart time
- Strict
Lsa boolChecking - Strict l s a checking
- Enable bool
- Enable
- Grace
Period int - Grace period
- Helper
Enable bool - Helper enable
- Max
Neighbor intRestart Time - Max neighbor restart time
- Strict
Lsa boolChecking - Strict l s a checking
- enable Boolean
- Enable
- grace
Period Integer - Grace period
- helper
Enable Boolean - Helper enable
- max
Neighbor IntegerRestart Time - Max neighbor restart time
- strict
Lsa BooleanChecking - Strict l s a checking
- enable boolean
- Enable
- grace
Period number - Grace period
- helper
Enable boolean - Helper enable
- max
Neighbor numberRestart Time - Max neighbor restart time
- strict
Lsa booleanChecking - Strict l s a checking
- enable bool
- Enable
- grace_
period int - Grace period
- helper_
enable bool - Helper enable
- max_
neighbor_ intrestart_ time - Max neighbor restart time
- strict_
lsa_ boolchecking - Strict l s a checking
- enable Boolean
- Enable
- grace
Period Number - Grace period
- helper
Enable Boolean - Helper enable
- max
Neighbor NumberRestart Time - Max neighbor restart time
- strict
Lsa BooleanChecking - Strict l s a checking
GetLogicalRouterVrfOspfv3VrTimers
- Lsa
Interval int - Lsa interval
- Spf
Calculation intDelay - Spf calculation delay
- Lsa
Interval int - Lsa interval
- Spf
Calculation intDelay - Spf calculation delay
- lsa
Interval Integer - Lsa interval
- spf
Calculation IntegerDelay - Spf calculation delay
- lsa
Interval number - Lsa interval
- spf
Calculation numberDelay - Spf calculation delay
- lsa_
interval int - Lsa interval
- spf_
calculation_ intdelay - Spf calculation delay
- lsa
Interval Number - Lsa interval
- spf
Calculation NumberDelay - Spf calculation delay
GetLogicalRouterVrfRibFilter
- ipv4 Property Map
- Ipv4
- ipv6 Property Map
- Ipv6
GetLogicalRouterVrfRibFilterIpv4
- bgp Property Map
- Bgp
- ospf Property Map
- Ospf
- rip Property Map
- Rip
- static Property Map
- Static
GetLogicalRouterVrfRibFilterIpv4Bgp
- Route
Map string - Route map
- Route
Map string - Route map
- route
Map String - Route map
- route
Map string - Route map
- route_
map str - Route map
- route
Map String - Route map
GetLogicalRouterVrfRibFilterIpv4Ospf
- Route
Map string - Route map
- Route
Map string - Route map
- route
Map String - Route map
- route
Map string - Route map
- route_
map str - Route map
- route
Map String - Route map
GetLogicalRouterVrfRibFilterIpv4Rip
- Route
Map string - Route map
- Route
Map string - Route map
- route
Map String - Route map
- route
Map string - Route map
- route_
map str - Route map
- route
Map String - Route map
GetLogicalRouterVrfRibFilterIpv4Static
- Route
Map string - Route map
- Route
Map string - Route map
- route
Map String - Route map
- route
Map string - Route map
- route_
map str - Route map
- route
Map String - Route map
GetLogicalRouterVrfRibFilterIpv6
- bgp Property Map
- Bgp
- ospfv3 Property Map
- Ospfv3
- static Property Map
- Static
GetLogicalRouterVrfRibFilterIpv6Bgp
- Route
Map string - Route map
- Route
Map string - Route map
- route
Map String - Route map
- route
Map string - Route map
- route_
map str - Route map
- route
Map String - Route map
GetLogicalRouterVrfRibFilterIpv6Ospfv3
- Route
Map string - Route map
- Route
Map string - Route map
- route
Map String - Route map
- route
Map string - Route map
- route_
map str - Route map
- route
Map String - Route map
GetLogicalRouterVrfRibFilterIpv6Static
- Route
Map string - Route map
- Route
Map string - Route map
- route
Map String - Route map
- route
Map string - Route map
- route_
map str - Route map
- route
Map String - Route map
GetLogicalRouterVrfRip
- Auth
Profile string - Auth profile
- Default
Information boolOriginate - Default information originate
- Enable bool
- Enable
- Global
Bfd GetLogical Router Vrf Rip Global Bfd - Global bfd
- Global
Inbound GetDistribute List Logical Router Vrf Rip Global Inbound Distribute List - Global inbound distribute list
- Global
Outbound GetDistribute List Logical Router Vrf Rip Global Outbound Distribute List - Global outbound distribute list
- Global
Timer string - Global timer
- Interfaces
List<Get
Logical Router Vrf Rip Interface> - Interface
- Redistribution
Profile string - Redistribution profile
- Auth
Profile string - Auth profile
- Default
Information boolOriginate - Default information originate
- Enable bool
- Enable
- Global
Bfd GetLogical Router Vrf Rip Global Bfd - Global bfd
- Global
Inbound GetDistribute List Logical Router Vrf Rip Global Inbound Distribute List - Global inbound distribute list
- Global
Outbound GetDistribute List Logical Router Vrf Rip Global Outbound Distribute List - Global outbound distribute list
- Global
Timer string - Global timer
- Interfaces
[]Get
Logical Router Vrf Rip Interface - Interface
- Redistribution
Profile string - Redistribution profile
- auth
Profile String - Auth profile
- default
Information BooleanOriginate - Default information originate
- enable Boolean
- Enable
- global
Bfd GetLogical Router Vrf Rip Global Bfd - Global bfd
- global
Inbound GetDistribute List Logical Router Vrf Rip Global Inbound Distribute List - Global inbound distribute list
- global
Outbound GetDistribute List Logical Router Vrf Rip Global Outbound Distribute List - Global outbound distribute list
- global
Timer String - Global timer
- interfaces
List<Get
Logical Router Vrf Rip Interface> - Interface
- redistribution
Profile String - Redistribution profile
- auth
Profile string - Auth profile
- default
Information booleanOriginate - Default information originate
- enable boolean
- Enable
- global
Bfd GetLogical Router Vrf Rip Global Bfd - Global bfd
- global
Inbound GetDistribute List Logical Router Vrf Rip Global Inbound Distribute List - Global inbound distribute list
- global
Outbound GetDistribute List Logical Router Vrf Rip Global Outbound Distribute List - Global outbound distribute list
- global
Timer string - Global timer
- interfaces
Get
Logical Router Vrf Rip Interface[] - Interface
- redistribution
Profile string - Redistribution profile
- auth_
profile str - Auth profile
- default_
information_ booloriginate - Default information originate
- enable bool
- Enable
- global_
bfd GetLogical Router Vrf Rip Global Bfd - Global bfd
- global_
inbound_ Getdistribute_ list Logical Router Vrf Rip Global Inbound Distribute List - Global inbound distribute list
- global_
outbound_ Getdistribute_ list Logical Router Vrf Rip Global Outbound Distribute List - Global outbound distribute list
- global_
timer str - Global timer
- interfaces
Sequence[Get
Logical Router Vrf Rip Interface] - Interface
- redistribution_
profile str - Redistribution profile
- auth
Profile String - Auth profile
- default
Information BooleanOriginate - Default information originate
- enable Boolean
- Enable
- global
Bfd Property Map - Global bfd
- global
Inbound Property MapDistribute List - Global inbound distribute list
- global
Outbound Property MapDistribute List - Global outbound distribute list
- global
Timer String - Global timer
- interfaces List<Property Map>
- Interface
- redistribution
Profile String - Redistribution profile
GetLogicalRouterVrfRipGlobalBfd
- Profile string
- Profile
- Profile string
- Profile
- profile String
- Profile
- profile string
- Profile
- profile str
- Profile
- profile String
- Profile
GetLogicalRouterVrfRipGlobalInboundDistributeList
- Access
List string - Access list
- Access
List string - Access list
- access
List String - Access list
- access
List string - Access list
- access_
list str - Access list
- access
List String - Access list
GetLogicalRouterVrfRipGlobalOutboundDistributeList
- Access
List string - Access list
- Access
List string - Access list
- access
List String - Access list
- access
List string - Access list
- access_
list str - Access list
- access
List String - Access list
GetLogicalRouterVrfRipInterface
- Authentication string
- Authentication
- Bfd
Get
Logical Router Vrf Rip Interface Bfd - Bfd
- Enable bool
- Enable
- Interface
Inbound GetDistribute List Logical Router Vrf Rip Interface Interface Inbound Distribute List - Interface inbound distribute list
- Interface
Outbound GetDistribute List Logical Router Vrf Rip Interface Interface Outbound Distribute List - Interface outbound distribute list
- Mode string
- Mode
- Name string
- Name
- Split
Horizon string - Split horizon
- Authentication string
- Authentication
- Bfd
Get
Logical Router Vrf Rip Interface Bfd - Bfd
- Enable bool
- Enable
- Interface
Inbound GetDistribute List Logical Router Vrf Rip Interface Interface Inbound Distribute List - Interface inbound distribute list
- Interface
Outbound GetDistribute List Logical Router Vrf Rip Interface Interface Outbound Distribute List - Interface outbound distribute list
- Mode string
- Mode
- Name string
- Name
- Split
Horizon string - Split horizon
- authentication String
- Authentication
- bfd
Get
Logical Router Vrf Rip Interface Bfd - Bfd
- enable Boolean
- Enable
- interface
Inbound GetDistribute List Logical Router Vrf Rip Interface Interface Inbound Distribute List - Interface inbound distribute list
- interface
Outbound GetDistribute List Logical Router Vrf Rip Interface Interface Outbound Distribute List - Interface outbound distribute list
- mode String
- Mode
- name String
- Name
- split
Horizon String - Split horizon
- authentication string
- Authentication
- bfd
Get
Logical Router Vrf Rip Interface Bfd - Bfd
- enable boolean
- Enable
- interface
Inbound GetDistribute List Logical Router Vrf Rip Interface Interface Inbound Distribute List - Interface inbound distribute list
- interface
Outbound GetDistribute List Logical Router Vrf Rip Interface Interface Outbound Distribute List - Interface outbound distribute list
- mode string
- Mode
- name string
- Name
- split
Horizon string - Split horizon
- authentication str
- Authentication
- bfd
Get
Logical Router Vrf Rip Interface Bfd - Bfd
- enable bool
- Enable
- interface_
inbound_ Getdistribute_ list Logical Router Vrf Rip Interface Interface Inbound Distribute List - Interface inbound distribute list
- interface_
outbound_ Getdistribute_ list Logical Router Vrf Rip Interface Interface Outbound Distribute List - Interface outbound distribute list
- mode str
- Mode
- name str
- Name
- split_
horizon str - Split horizon
- authentication String
- Authentication
- bfd Property Map
- Bfd
- enable Boolean
- Enable
- interface
Inbound Property MapDistribute List - Interface inbound distribute list
- interface
Outbound Property MapDistribute List - Interface outbound distribute list
- mode String
- Mode
- name String
- Name
- split
Horizon String - Split horizon
GetLogicalRouterVrfRipInterfaceBfd
- Profile string
- Profile
- Profile string
- Profile
- profile String
- Profile
- profile string
- Profile
- profile str
- Profile
- profile String
- Profile
GetLogicalRouterVrfRipInterfaceInterfaceInboundDistributeList
- Access
List string - Access list
- Metric int
- Metric
- Access
List string - Access list
- Metric int
- Metric
- access
List String - Access list
- metric Integer
- Metric
- access
List string - Access list
- metric number
- Metric
- access_
list str - Access list
- metric int
- Metric
- access
List String - Access list
- metric Number
- Metric
GetLogicalRouterVrfRipInterfaceInterfaceOutboundDistributeList
- Access
List string - Access list
- Metric int
- Metric
- Access
List string - Access list
- Metric int
- Metric
- access
List String - Access list
- metric Integer
- Metric
- access
List string - Access list
- metric number
- Metric
- access_
list str - Access list
- metric int
- Metric
- access
List String - Access list
- metric Number
- Metric
GetLogicalRouterVrfRoutingTable
- ip Property Map
- Ip
- ipv6 Property Map
- Ipv6
GetLogicalRouterVrfRoutingTableIp
- static
Routes List<Property Map> - Static route
GetLogicalRouterVrfRoutingTableIpStaticRoute
- Admin
Dist int - Admin dist
- Bfd
Get
Logical Router Vrf Routing Table Ip Static Route Bfd - Bfd
- Destination string
- Destination
- Interface string
- Interface
- Metric int
- Metric
- Name string
- Name
- Nexthop
Get
Logical Router Vrf Routing Table Ip Static Route Nexthop - Nexthop
- Path
Monitor GetLogical Router Vrf Routing Table Ip Static Route Path Monitor - Path monitor
- Route
Table GetLogical Router Vrf Routing Table Ip Static Route Route Table - Route table
- Admin
Dist int - Admin dist
- Bfd
Get
Logical Router Vrf Routing Table Ip Static Route Bfd - Bfd
- Destination string
- Destination
- Interface string
- Interface
- Metric int
- Metric
- Name string
- Name
- Nexthop
Get
Logical Router Vrf Routing Table Ip Static Route Nexthop - Nexthop
- Path
Monitor GetLogical Router Vrf Routing Table Ip Static Route Path Monitor - Path monitor
- Route
Table GetLogical Router Vrf Routing Table Ip Static Route Route Table - Route table
- admin
Dist Integer - Admin dist
- bfd
Get
Logical Router Vrf Routing Table Ip Static Route Bfd - Bfd
- destination String
- Destination
- interface_ String
- Interface
- metric Integer
- Metric
- name String
- Name
- nexthop
Get
Logical Router Vrf Routing Table Ip Static Route Nexthop - Nexthop
- path
Monitor GetLogical Router Vrf Routing Table Ip Static Route Path Monitor - Path monitor
- route
Table GetLogical Router Vrf Routing Table Ip Static Route Route Table - Route table
- admin
Dist number - Admin dist
- bfd
Get
Logical Router Vrf Routing Table Ip Static Route Bfd - Bfd
- destination string
- Destination
- interface string
- Interface
- metric number
- Metric
- name string
- Name
- nexthop
Get
Logical Router Vrf Routing Table Ip Static Route Nexthop - Nexthop
- path
Monitor GetLogical Router Vrf Routing Table Ip Static Route Path Monitor - Path monitor
- route
Table GetLogical Router Vrf Routing Table Ip Static Route Route Table - Route table
- admin_
dist int - Admin dist
- bfd
Get
Logical Router Vrf Routing Table Ip Static Route Bfd - Bfd
- destination str
- Destination
- interface str
- Interface
- metric int
- Metric
- name str
- Name
- nexthop
Get
Logical Router Vrf Routing Table Ip Static Route Nexthop - Nexthop
- path_
monitor GetLogical Router Vrf Routing Table Ip Static Route Path Monitor - Path monitor
- route_
table GetLogical Router Vrf Routing Table Ip Static Route Route Table - Route table
- admin
Dist Number - Admin dist
- bfd Property Map
- Bfd
- destination String
- Destination
- interface String
- Interface
- metric Number
- Metric
- name String
- Name
- nexthop Property Map
- Nexthop
- path
Monitor Property Map - Path monitor
- route
Table 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
Get
Logical Router Vrf Routing Table Ip Static Route Nexthop Discard - Discard
- Fqdn string
- Fqdn
- Ip
Address string - Ip address
- Ipv6Address string
- Ipv6 address
- Next
Lr string - Next lr
- Next
Vr string - Next vr
- Receive
Get
Logical Router Vrf Routing Table Ip Static Route Nexthop Receive - Receive
- Tunnel string
- Tunnel
- Discard
Get
Logical Router Vrf Routing Table Ip Static Route Nexthop Discard - Discard
- Fqdn string
- Fqdn
- Ip
Address string - Ip address
- Ipv6Address string
- Ipv6 address
- Next
Lr string - Next lr
- Next
Vr string - Next vr
- Receive
Get
Logical Router Vrf Routing Table Ip Static Route Nexthop Receive - Receive
- Tunnel string
- Tunnel
- discard
Get
Logical Router Vrf Routing Table Ip Static Route Nexthop Discard - Discard
- fqdn String
- Fqdn
- ip
Address String - Ip address
- ipv6Address String
- Ipv6 address
- next
Lr String - Next lr
- next
Vr String - Next vr
- receive
Get
Logical Router Vrf Routing Table Ip Static Route Nexthop Receive - Receive
- tunnel String
- Tunnel
- discard
Get
Logical Router Vrf Routing Table Ip Static Route Nexthop Discard - Discard
- fqdn string
- Fqdn
- ip
Address string - Ip address
- ipv6Address string
- Ipv6 address
- next
Lr string - Next lr
- next
Vr string - Next vr
- receive
Get
Logical Router Vrf Routing Table Ip Static Route Nexthop Receive - Receive
- tunnel string
- Tunnel
- discard
Get
Logical Router Vrf Routing Table Ip Static Route Nexthop Discard - Discard
- fqdn str
- Fqdn
- ip_
address str - Ip address
- ipv6_
address str - Ipv6 address
- next_
lr str - Next lr
- next_
vr str - Next vr
- receive
Get
Logical Router Vrf Routing Table Ip Static Route Nexthop Receive - Receive
- tunnel str
- Tunnel
- discard Property Map
- Discard
- fqdn String
- Fqdn
- ip
Address String - Ip address
- ipv6Address String
- Ipv6 address
- next
Lr String - Next lr
- next
Vr String - Next vr
- receive Property Map
- Receive
- tunnel String
- Tunnel
GetLogicalRouterVrfRoutingTableIpStaticRoutePathMonitor
- Enable bool
- Enable
- Failure
Condition string - Failure condition
- Hold
Time int - Hold time
- Monitor
Destinations List<GetLogical Router Vrf Routing Table Ip Static Route Path Monitor Monitor Destination> - Monitor destinations
- Enable bool
- Enable
- Failure
Condition string - Failure condition
- Hold
Time int - Hold time
- Monitor
Destinations []GetLogical Router Vrf Routing Table Ip Static Route Path Monitor Monitor Destination - Monitor destinations
- enable Boolean
- Enable
- failure
Condition String - Failure condition
- hold
Time Integer - Hold time
- monitor
Destinations List<GetLogical Router Vrf Routing Table Ip Static Route Path Monitor Monitor Destination> - Monitor destinations
- enable boolean
- Enable
- failure
Condition string - Failure condition
- hold
Time number - Hold time
- monitor
Destinations GetLogical Router Vrf Routing Table Ip Static Route Path Monitor Monitor Destination[] - Monitor destinations
- enable bool
- Enable
- failure_
condition str - Failure condition
- hold_
time int - Hold time
- monitor_
destinations Sequence[GetLogical Router Vrf Routing Table Ip Static Route Path Monitor Monitor Destination] - Monitor destinations
- enable Boolean
- Enable
- failure
Condition String - Failure condition
- hold
Time Number - Hold time
- monitor
Destinations List<Property Map> - Monitor destinations
GetLogicalRouterVrfRoutingTableIpStaticRoutePathMonitorMonitorDestination
- Count int
- Count
- Destination string
- Destination
- Destination
Fqdn string - Destination fqdn
- Enable bool
- Enable
- Interval int
- Interval
- Name string
- Name
- Source string
- Source
- Count int
- Count
- Destination string
- Destination
- Destination
Fqdn string - Destination fqdn
- Enable bool
- Enable
- Interval int
- Interval
- Name string
- Name
- Source string
- Source
- count Integer
- Count
- destination String
- Destination
- destination
Fqdn String - Destination fqdn
- enable Boolean
- Enable
- interval Integer
- Interval
- name String
- Name
- source String
- Source
- count number
- Count
- destination string
- Destination
- destination
Fqdn 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
- destination
Fqdn String - Destination fqdn
- enable Boolean
- Enable
- interval Number
- Interval
- name String
- Name
- source String
- Source
GetLogicalRouterVrfRoutingTableIpStaticRouteRouteTable
- Both
Get
Logical Router Vrf Routing Table Ip Static Route Route Table Both - Both
- Multicast
Get
Logical Router Vrf Routing Table Ip Static Route Route Table Multicast - Multicast
- No
Install GetLogical Router Vrf Routing Table Ip Static Route Route Table No Install - No install
- Unicast
Get
Logical Router Vrf Routing Table Ip Static Route Route Table Unicast - Unicast
- Both
Get
Logical Router Vrf Routing Table Ip Static Route Route Table Both - Both
- Multicast
Get
Logical Router Vrf Routing Table Ip Static Route Route Table Multicast - Multicast
- No
Install GetLogical Router Vrf Routing Table Ip Static Route Route Table No Install - No install
- Unicast
Get
Logical Router Vrf Routing Table Ip Static Route Route Table Unicast - Unicast
- both
Get
Logical Router Vrf Routing Table Ip Static Route Route Table Both - Both
- multicast
Get
Logical Router Vrf Routing Table Ip Static Route Route Table Multicast - Multicast
- no
Install GetLogical Router Vrf Routing Table Ip Static Route Route Table No Install - No install
- unicast
Get
Logical Router Vrf Routing Table Ip Static Route Route Table Unicast - Unicast
- both
Get
Logical Router Vrf Routing Table Ip Static Route Route Table Both - Both
- multicast
Get
Logical Router Vrf Routing Table Ip Static Route Route Table Multicast - Multicast
- no
Install GetLogical Router Vrf Routing Table Ip Static Route Route Table No Install - No install
- unicast
Get
Logical Router Vrf Routing Table Ip Static Route Route Table Unicast - Unicast
- both
Get
Logical Router Vrf Routing Table Ip Static Route Route Table Both - Both
- multicast
Get
Logical Router Vrf Routing Table Ip Static Route Route Table Multicast - Multicast
- no_
install GetLogical Router Vrf Routing Table Ip Static Route Route Table No Install - No install
- unicast
Get
Logical Router Vrf Routing Table Ip Static Route Route Table Unicast - Unicast
- both Property Map
- Both
- multicast Property Map
- Multicast
- no
Install Property Map - No install
- unicast Property Map
- Unicast
GetLogicalRouterVrfRoutingTableIpv6
- static
Routes List<Property Map> - Static route
GetLogicalRouterVrfRoutingTableIpv6StaticRoute
- Admin
Dist int - Admin dist
- Bfd
Get
Logical Router Vrf Routing Table Ipv6Static Route Bfd - Bfd
- Destination string
- Destination
- Interface string
- Interface
- Metric int
- Metric
- Name string
- Name
- Nexthop
Get
Logical Router Vrf Routing Table Ipv6Static Route Nexthop - Nexthop
- Option
Get
Logical Router Vrf Routing Table Ipv6Static Route Option - Option
- Path
Monitor GetLogical Router Vrf Routing Table Ipv6Static Route Path Monitor - Path monitor
- Route
Table GetLogical Router Vrf Routing Table Ipv6Static Route Route Table - Route table
- Admin
Dist int - Admin dist
- Bfd
Get
Logical Router Vrf Routing Table Ipv6Static Route Bfd - Bfd
- Destination string
- Destination
- Interface string
- Interface
- Metric int
- Metric
- Name string
- Name
- Nexthop
Get
Logical Router Vrf Routing Table Ipv6Static Route Nexthop - Nexthop
- Option
Get
Logical Router Vrf Routing Table Ipv6Static Route Option - Option
- Path
Monitor GetLogical Router Vrf Routing Table Ipv6Static Route Path Monitor - Path monitor
- Route
Table GetLogical Router Vrf Routing Table Ipv6Static Route Route Table - Route table
- admin
Dist Integer - Admin dist
- bfd
Get
Logical Router Vrf Routing Table Ipv6Static Route Bfd - Bfd
- destination String
- Destination
- interface_ String
- Interface
- metric Integer
- Metric
- name String
- Name
- nexthop
Get
Logical Router Vrf Routing Table Ipv6Static Route Nexthop - Nexthop
- option
Get
Logical Router Vrf Routing Table Ipv6Static Route Option - Option
- path
Monitor GetLogical Router Vrf Routing Table Ipv6Static Route Path Monitor - Path monitor
- route
Table GetLogical Router Vrf Routing Table Ipv6Static Route Route Table - Route table
- admin
Dist number - Admin dist
- bfd
Get
Logical Router Vrf Routing Table Ipv6Static Route Bfd - Bfd
- destination string
- Destination
- interface string
- Interface
- metric number
- Metric
- name string
- Name
- nexthop
Get
Logical Router Vrf Routing Table Ipv6Static Route Nexthop - Nexthop
- option
Get
Logical Router Vrf Routing Table Ipv6Static Route Option - Option
- path
Monitor GetLogical Router Vrf Routing Table Ipv6Static Route Path Monitor - Path monitor
- route
Table GetLogical Router Vrf Routing Table Ipv6Static Route Route Table - Route table
- admin_
dist int - Admin dist
- bfd
Get
Logical Router Vrf Routing Table Ipv6Static Route Bfd - Bfd
- destination str
- Destination
- interface str
- Interface
- metric int
- Metric
- name str
- Name
- nexthop
Get
Logical Router Vrf Routing Table Ipv6Static Route Nexthop - Nexthop
- option
Get
Logical Router Vrf Routing Table Ipv6Static Route Option - Option
- path_
monitor GetLogical Router Vrf Routing Table Ipv6Static Route Path Monitor - Path monitor
- route_
table GetLogical Router Vrf Routing Table Ipv6Static Route Route Table - Route table
- admin
Dist 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
- path
Monitor Property Map - Path monitor
- route
Table 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
Get
Logical Router Vrf Routing Table Ipv6Static Route Nexthop Discard - Discard
- Fqdn string
- Fqdn
- Ipv6Address string
- Ipv6 address
- Next
Lr string - Next lr
- Next
Vr string - Next vr
- Receive
Get
Logical Router Vrf Routing Table Ipv6Static Route Nexthop Receive - Receive
- Tunnel string
- Tunnel
- Discard
Get
Logical Router Vrf Routing Table Ipv6Static Route Nexthop Discard - Discard
- Fqdn string
- Fqdn
- Ipv6Address string
- Ipv6 address
- Next
Lr string - Next lr
- Next
Vr string - Next vr
- Receive
Get
Logical Router Vrf Routing Table Ipv6Static Route Nexthop Receive - Receive
- Tunnel string
- Tunnel
- discard
Get
Logical Router Vrf Routing Table Ipv6Static Route Nexthop Discard - Discard
- fqdn String
- Fqdn
- ipv6Address String
- Ipv6 address
- next
Lr String - Next lr
- next
Vr String - Next vr
- receive
Get
Logical Router Vrf Routing Table Ipv6Static Route Nexthop Receive - Receive
- tunnel String
- Tunnel
- discard
Get
Logical Router Vrf Routing Table Ipv6Static Route Nexthop Discard - Discard
- fqdn string
- Fqdn
- ipv6Address string
- Ipv6 address
- next
Lr string - Next lr
- next
Vr string - Next vr
- receive
Get
Logical Router Vrf Routing Table Ipv6Static Route Nexthop Receive - Receive
- tunnel string
- Tunnel
- discard
Get
Logical Router Vrf Routing Table Ipv6Static Route Nexthop Discard - Discard
- fqdn str
- Fqdn
- ipv6_
address str - Ipv6 address
- next_
lr str - Next lr
- next_
vr str - Next vr
- receive
Get
Logical Router Vrf Routing Table Ipv6Static Route Nexthop Receive - Receive
- tunnel str
- Tunnel
- discard Property Map
- Discard
- fqdn String
- Fqdn
- ipv6Address String
- Ipv6 address
- next
Lr String - Next lr
- next
Vr String - Next vr
- receive Property Map
- Receive
- tunnel String
- Tunnel
GetLogicalRouterVrfRoutingTableIpv6StaticRouteOption
- passive Property Map
- Passive
GetLogicalRouterVrfRoutingTableIpv6StaticRoutePathMonitor
- Enable bool
- Enable
- Failure
Condition string - Failure condition
- Hold
Time int - Hold time
- Monitor
Destinations List<GetLogical Router Vrf Routing Table Ipv6Static Route Path Monitor Monitor Destination> - Monitor destinations
- Enable bool
- Enable
- Failure
Condition string - Failure condition
- Hold
Time int - Hold time
- Monitor
Destinations []GetLogical Router Vrf Routing Table Ipv6Static Route Path Monitor Monitor Destination - Monitor destinations
- enable Boolean
- Enable
- failure
Condition String - Failure condition
- hold
Time Integer - Hold time
- monitor
Destinations List<GetLogical Router Vrf Routing Table Ipv6Static Route Path Monitor Monitor Destination> - Monitor destinations
- enable boolean
- Enable
- failure
Condition string - Failure condition
- hold
Time number - Hold time
- monitor
Destinations GetLogical Router Vrf Routing Table Ipv6Static Route Path Monitor Monitor Destination[] - Monitor destinations
- enable bool
- Enable
- failure_
condition str - Failure condition
- hold_
time int - Hold time
- monitor_
destinations Sequence[GetLogical Router Vrf Routing Table Ipv6Static Route Path Monitor Monitor Destination] - Monitor destinations
- enable Boolean
- Enable
- failure
Condition String - Failure condition
- hold
Time Number - Hold time
- monitor
Destinations List<Property Map> - Monitor destinations
GetLogicalRouterVrfRoutingTableIpv6StaticRoutePathMonitorMonitorDestination
- Count int
- Count
- Destination string
- Destination
- Destination
Fqdn string - Destination fqdn
- Enable bool
- Enable
- Interval int
- Interval
- Name string
- Name
- Source string
- Source
- Count int
- Count
- Destination string
- Destination
- Destination
Fqdn string - Destination fqdn
- Enable bool
- Enable
- Interval int
- Interval
- Name string
- Name
- Source string
- Source
- count Integer
- Count
- destination String
- Destination
- destination
Fqdn String - Destination fqdn
- enable Boolean
- Enable
- interval Integer
- Interval
- name String
- Name
- source String
- Source
- count number
- Count
- destination string
- Destination
- destination
Fqdn 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
- destination
Fqdn String - Destination fqdn
- enable Boolean
- Enable
- interval Number
- Interval
- name String
- Name
- source String
- Source
GetLogicalRouterVrfRoutingTableIpv6StaticRouteRouteTable
- Both
Get
Logical Router Vrf Routing Table Ipv6Static Route Route Table Both - Both
- Multicast
Get
Logical Router Vrf Routing Table Ipv6Static Route Route Table Multicast - Multicast
- No
Install GetLogical Router Vrf Routing Table Ipv6Static Route Route Table No Install - No install
- Unicast
Get
Logical Router Vrf Routing Table Ipv6Static Route Route Table Unicast - Unicast
- Both
Get
Logical Router Vrf Routing Table Ipv6Static Route Route Table Both - Both
- Multicast
Get
Logical Router Vrf Routing Table Ipv6Static Route Route Table Multicast - Multicast
- No
Install GetLogical Router Vrf Routing Table Ipv6Static Route Route Table No Install - No install
- Unicast
Get
Logical Router Vrf Routing Table Ipv6Static Route Route Table Unicast - Unicast
- both
Get
Logical Router Vrf Routing Table Ipv6Static Route Route Table Both - Both
- multicast
Get
Logical Router Vrf Routing Table Ipv6Static Route Route Table Multicast - Multicast
- no
Install GetLogical Router Vrf Routing Table Ipv6Static Route Route Table No Install - No install
- unicast
Get
Logical Router Vrf Routing Table Ipv6Static Route Route Table Unicast - Unicast
- both
Get
Logical Router Vrf Routing Table Ipv6Static Route Route Table Both - Both
- multicast
Get
Logical Router Vrf Routing Table Ipv6Static Route Route Table Multicast - Multicast
- no
Install GetLogical Router Vrf Routing Table Ipv6Static Route Route Table No Install - No install
- unicast
Get
Logical Router Vrf Routing Table Ipv6Static Route Route Table Unicast - Unicast
- both
Get
Logical Router Vrf Routing Table Ipv6Static Route Route Table Both - Both
- multicast
Get
Logical Router Vrf Routing Table Ipv6Static Route Route Table Multicast - Multicast
- no_
install GetLogical Router Vrf Routing Table Ipv6Static Route Route Table No Install - No install
- unicast
Get
Logical Router Vrf Routing Table Ipv6Static Route Route Table Unicast - Unicast
- both Property Map
- Both
- multicast Property Map
- Multicast
- no
Install Property Map - No install
- unicast Property Map
- Unicast
GetLogicalRouterVrfVrAdminDists
- 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
Package Details
- Repository
- scm pulumi/pulumi-scm
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scmTerraform Provider.
Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
