Viewing docs for Strata Cloud Manager v0.4.3 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 2026 by Pulumi
Viewing docs for Strata Cloud Manager v0.4.3 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 2026 by Pulumi
Retrieves a listing of config items.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as scm from "@pulumi/scm";
// Fetch a list of all logical routers
const allLogicalRouters = scm.getLogicalRouterList({
folder: "ngfw-shared",
limit: 100,
});
export const scmLogicalRouterList = allLogicalRouters.then(allLogicalRouters => .reduce((__obj, router) => ({ ...__obj, [router.name]: router })));
import pulumi
import pulumi_scm as scm
# Fetch a list of all logical routers
all_logical_routers = scm.get_logical_router_list(folder="ngfw-shared",
limit=100)
pulumi.export("scmLogicalRouterList", {router.name: router for router in all_logical_routers.datas})
Example coming soon!
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scm = Pulumi.Scm;
return await Deployment.RunAsync(() =>
{
// Fetch a list of all logical routers
var allLogicalRouters = Scm.GetLogicalRouterList.Invoke(new()
{
Folder = "ngfw-shared",
Limit = 100,
});
return new Dictionary<string, object?>
{
["scmLogicalRouterList"] = ,
};
});
Example coming soon!
Example coming soon!
Using getLogicalRouterList
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 getLogicalRouterList(args: GetLogicalRouterListArgs, opts?: InvokeOptions): Promise<GetLogicalRouterListResult>
function getLogicalRouterListOutput(args: GetLogicalRouterListOutputArgs, opts?: InvokeOptions): Output<GetLogicalRouterListResult>def get_logical_router_list(device: Optional[str] = None,
folder: Optional[str] = None,
limit: Optional[int] = None,
name: Optional[str] = None,
offset: Optional[int] = None,
pagination: Optional[bool] = None,
snippet: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetLogicalRouterListResult
def get_logical_router_list_output(device: Optional[pulumi.Input[str]] = None,
folder: Optional[pulumi.Input[str]] = None,
limit: Optional[pulumi.Input[int]] = None,
name: Optional[pulumi.Input[str]] = None,
offset: Optional[pulumi.Input[int]] = None,
pagination: Optional[pulumi.Input[bool]] = None,
snippet: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetLogicalRouterListResult]func GetLogicalRouterList(ctx *Context, args *GetLogicalRouterListArgs, opts ...InvokeOption) (*GetLogicalRouterListResult, error)
func GetLogicalRouterListOutput(ctx *Context, args *GetLogicalRouterListOutputArgs, opts ...InvokeOption) GetLogicalRouterListResultOutput> Note: This function is named GetLogicalRouterList in the Go SDK.
public static class GetLogicalRouterList
{
public static Task<GetLogicalRouterListResult> InvokeAsync(GetLogicalRouterListArgs args, InvokeOptions? opts = null)
public static Output<GetLogicalRouterListResult> Invoke(GetLogicalRouterListInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetLogicalRouterListResult> getLogicalRouterList(GetLogicalRouterListArgs args, InvokeOptions options)
public static Output<GetLogicalRouterListResult> getLogicalRouterList(GetLogicalRouterListArgs args, InvokeOptions options)
fn::invoke:
function: scm:index/getLogicalRouterList:getLogicalRouterList
arguments:
# arguments dictionaryThe following arguments are supported:
- Device string
- The device of the item.
- Folder string
- The folder of the item. Default: Shared.
- Limit int
- The max number of items to return. Default: 200.
- Name string
- The name of the item.
- Offset int
- The offset of the first item to return.
- Pagination bool
- The parameter to mention if the response should be paginated. By default, its set to false
- Snippet string
- The snippet of the item.
- Device string
- The device of the item.
- Folder string
- The folder of the item. Default: Shared.
- Limit int
- The max number of items to return. Default: 200.
- Name string
- The name of the item.
- Offset int
- The offset of the first item to return.
- Pagination bool
- The parameter to mention if the response should be paginated. By default, its set to false
- Snippet string
- The snippet of the item.
- device String
- The device of the item.
- folder String
- The folder of the item. Default: Shared.
- limit Integer
- The max number of items to return. Default: 200.
- name String
- The name of the item.
- offset Integer
- The offset of the first item to return.
- pagination Boolean
- The parameter to mention if the response should be paginated. By default, its set to false
- snippet String
- The snippet of the item.
- device string
- The device of the item.
- folder string
- The folder of the item. Default: Shared.
- limit number
- The max number of items to return. Default: 200.
- name string
- The name of the item.
- offset number
- The offset of the first item to return.
- pagination boolean
- The parameter to mention if the response should be paginated. By default, its set to false
- snippet string
- The snippet of the item.
- device str
- The device of the item.
- folder str
- The folder of the item. Default: Shared.
- limit int
- The max number of items to return. Default: 200.
- name str
- The name of the item.
- offset int
- The offset of the first item to return.
- pagination bool
- The parameter to mention if the response should be paginated. By default, its set to false
- snippet str
- The snippet of the item.
- device String
- The device of the item.
- folder String
- The folder of the item. Default: Shared.
- limit Number
- The max number of items to return. Default: 200.
- name String
- The name of the item.
- offset Number
- The offset of the first item to return.
- pagination Boolean
- The parameter to mention if the response should be paginated. By default, its set to false
- snippet String
- The snippet of the item.
getLogicalRouterList Result
The following output properties are available:
- Datas
List<Get
Logical Router List Data> - The data.
- Id string
- The provider-assigned unique ID for this managed resource.
- Tfid string
- Total int
- The total number of items.
- Device string
- The device of the item.
- Folder string
- The folder of the item. Default: Shared.
- Limit int
- The max number of items to return. Default: 200.
- Name string
- The name of the item.
- Offset int
- The offset of the first item to return.
- Pagination bool
- The parameter to mention if the response should be paginated. By default, its set to false
- Snippet string
- The snippet of the item.
- Datas
[]Get
Logical Router List Data - The data.
- Id string
- The provider-assigned unique ID for this managed resource.
- Tfid string
- Total int
- The total number of items.
- Device string
- The device of the item.
- Folder string
- The folder of the item. Default: Shared.
- Limit int
- The max number of items to return. Default: 200.
- Name string
- The name of the item.
- Offset int
- The offset of the first item to return.
- Pagination bool
- The parameter to mention if the response should be paginated. By default, its set to false
- Snippet string
- The snippet of the item.
- datas
List<Get
Logical Router List Data> - The data.
- id String
- The provider-assigned unique ID for this managed resource.
- tfid String
- total Integer
- The total number of items.
- device String
- The device of the item.
- folder String
- The folder of the item. Default: Shared.
- limit Integer
- The max number of items to return. Default: 200.
- name String
- The name of the item.
- offset Integer
- The offset of the first item to return.
- pagination Boolean
- The parameter to mention if the response should be paginated. By default, its set to false
- snippet String
- The snippet of the item.
- datas
Get
Logical Router List Data[] - The data.
- id string
- The provider-assigned unique ID for this managed resource.
- tfid string
- total number
- The total number of items.
- device string
- The device of the item.
- folder string
- The folder of the item. Default: Shared.
- limit number
- The max number of items to return. Default: 200.
- name string
- The name of the item.
- offset number
- The offset of the first item to return.
- pagination boolean
- The parameter to mention if the response should be paginated. By default, its set to false
- snippet string
- The snippet of the item.
- datas
Sequence[Get
Logical Router List Data] - The data.
- id str
- The provider-assigned unique ID for this managed resource.
- tfid str
- total int
- The total number of items.
- device str
- The device of the item.
- folder str
- The folder of the item. Default: Shared.
- limit int
- The max number of items to return. Default: 200.
- name str
- The name of the item.
- offset int
- The offset of the first item to return.
- pagination bool
- The parameter to mention if the response should be paginated. By default, its set to false
- snippet str
- The snippet of the item.
- datas List<Property Map>
- The data.
- id String
- The provider-assigned unique ID for this managed resource.
- tfid String
- total Number
- The total number of items.
- device String
- The device of the item.
- folder String
- The folder of the item. Default: Shared.
- limit Number
- The max number of items to return. Default: 200.
- name String
- The name of the item.
- offset Number
- The offset of the first item to return.
- pagination Boolean
- The parameter to mention if the response should be paginated. By default, its set to false
- snippet String
- The snippet of the item.
Supporting Types
GetLogicalRouterListData
- 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 List Data 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 List Data 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 List Data 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 List Data 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 List Data 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
GetLogicalRouterListDataVrf
- Admin
Dists GetLogical Router List Data Vrf Admin Dists - Admin dists
- Bgp
Get
Logical Router List Data Vrf Bgp - Bgp
- Ecmp
Get
Logical Router List Data Vrf Ecmp - Ecmp
- Global
Vrid int - Global vrid
- Interfaces List<string>
- Interface
- Multicast
Get
Logical Router List Data Vrf Multicast - Multicast
- Name string
- Name
- Ospf
Get
Logical Router List Data Vrf Ospf - Ospf
- Ospfv3
Get
Logical Router List Data Vrf Ospfv3 - Ospfv3
- Rib
Filter GetLogical Router List Data Vrf Rib Filter - Rib filter
- Rip
Get
Logical Router List Data Vrf Rip - Rip
- Routing
Table GetLogical Router List Data Vrf Routing Table - Routing table
- Sdwan
Type string - Sdwan type
- Vr
Admin GetDists Logical Router List Data Vrf Vr Admin Dists - Vr admin dists
- Zone
Name string - Zone name
- Admin
Dists GetLogical Router List Data Vrf Admin Dists - Admin dists
- Bgp
Get
Logical Router List Data Vrf Bgp - Bgp
- Ecmp
Get
Logical Router List Data Vrf Ecmp - Ecmp
- Global
Vrid int - Global vrid
- Interfaces []string
- Interface
- Multicast
Get
Logical Router List Data Vrf Multicast - Multicast
- Name string
- Name
- Ospf
Get
Logical Router List Data Vrf Ospf - Ospf
- Ospfv3
Get
Logical Router List Data Vrf Ospfv3 - Ospfv3
- Rib
Filter GetLogical Router List Data Vrf Rib Filter - Rib filter
- Rip
Get
Logical Router List Data Vrf Rip - Rip
- Routing
Table GetLogical Router List Data Vrf Routing Table - Routing table
- Sdwan
Type string - Sdwan type
- Vr
Admin GetDists Logical Router List Data Vrf Vr Admin Dists - Vr admin dists
- Zone
Name string - Zone name
- admin
Dists GetLogical Router List Data Vrf Admin Dists - Admin dists
- bgp
Get
Logical Router List Data Vrf Bgp - Bgp
- ecmp
Get
Logical Router List Data Vrf Ecmp - Ecmp
- global
Vrid Integer - Global vrid
- interfaces List<String>
- Interface
- multicast
Get
Logical Router List Data Vrf Multicast - Multicast
- name String
- Name
- ospf
Get
Logical Router List Data Vrf Ospf - Ospf
- ospfv3
Get
Logical Router List Data Vrf Ospfv3 - Ospfv3
- rib
Filter GetLogical Router List Data Vrf Rib Filter - Rib filter
- rip
Get
Logical Router List Data Vrf Rip - Rip
- routing
Table GetLogical Router List Data Vrf Routing Table - Routing table
- sdwan
Type String - Sdwan type
- vr
Admin GetDists Logical Router List Data Vrf Vr Admin Dists - Vr admin dists
- zone
Name String - Zone name
- admin
Dists GetLogical Router List Data Vrf Admin Dists - Admin dists
- bgp
Get
Logical Router List Data Vrf Bgp - Bgp
- ecmp
Get
Logical Router List Data Vrf Ecmp - Ecmp
- global
Vrid number - Global vrid
- interfaces string[]
- Interface
- multicast
Get
Logical Router List Data Vrf Multicast - Multicast
- name string
- Name
- ospf
Get
Logical Router List Data Vrf Ospf - Ospf
- ospfv3
Get
Logical Router List Data Vrf Ospfv3 - Ospfv3
- rib
Filter GetLogical Router List Data Vrf Rib Filter - Rib filter
- rip
Get
Logical Router List Data Vrf Rip - Rip
- routing
Table GetLogical Router List Data Vrf Routing Table - Routing table
- sdwan
Type string - Sdwan type
- vr
Admin GetDists Logical Router List Data Vrf Vr Admin Dists - Vr admin dists
- zone
Name string - Zone name
- admin_
dists GetLogical Router List Data Vrf Admin Dists - Admin dists
- bgp
Get
Logical Router List Data Vrf Bgp - Bgp
- ecmp
Get
Logical Router List Data Vrf Ecmp - Ecmp
- global_
vrid int - Global vrid
- interfaces Sequence[str]
- Interface
- multicast
Get
Logical Router List Data Vrf Multicast - Multicast
- name str
- Name
- ospf
Get
Logical Router List Data Vrf Ospf - Ospf
- ospfv3
Get
Logical Router List Data Vrf Ospfv3 - Ospfv3
- rib_
filter GetLogical Router List Data Vrf Rib Filter - Rib filter
- rip
Get
Logical Router List Data Vrf Rip - Rip
- routing_
table GetLogical Router List Data Vrf Routing Table - Routing table
- sdwan_
type str - Sdwan type
- vr_
admin_ Getdists Logical Router List Data 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
GetLogicalRouterListDataVrfAdminDists
- 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
GetLogicalRouterListDataVrfBgp
- Advertise
Network GetLogical Router List Data Vrf Bgp Advertise Network - Advertise network
- Aggregate
Get
Logical Router List Data Vrf Bgp Aggregate - Aggregate
- Aggregate
Routes List<GetLogical Router List Data 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 List Data Vrf Bgp Global Bfd - Global bfd
- Graceful
Restart GetLogical Router List Data 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 List Data Vrf Bgp Med - Med
- Peer
Groups List<GetLogical Router List Data Vrf Bgp Peer Group> - Peer group
- Policy
Get
Logical Router List Data Vrf Bgp Policy - Policy
- Redist
Rules List<GetLogical Router List Data Vrf Bgp Redist Rule> - Redist rules
- Redistribution
Profile GetLogical Router List Data Vrf Bgp Redistribution Profile - Redistribution profile
- Reject
Default boolRoute - Reject default route
- Router
Id string - Router id
- Advertise
Network GetLogical Router List Data Vrf Bgp Advertise Network - Advertise network
- Aggregate
Get
Logical Router List Data Vrf Bgp Aggregate - Aggregate
- Aggregate
Routes []GetLogical Router List Data 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 List Data Vrf Bgp Global Bfd - Global bfd
- Graceful
Restart GetLogical Router List Data 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 List Data Vrf Bgp Med - Med
- Peer
Groups []GetLogical Router List Data Vrf Bgp Peer Group - Peer group
- Policy
Get
Logical Router List Data Vrf Bgp Policy - Policy
- Redist
Rules []GetLogical Router List Data Vrf Bgp Redist Rule - Redist rules
- Redistribution
Profile GetLogical Router List Data Vrf Bgp Redistribution Profile - Redistribution profile
- Reject
Default boolRoute - Reject default route
- Router
Id string - Router id
- advertise
Network GetLogical Router List Data Vrf Bgp Advertise Network - Advertise network
- aggregate
Get
Logical Router List Data Vrf Bgp Aggregate - Aggregate
- aggregate
Routes List<GetLogical Router List Data 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 List Data Vrf Bgp Global Bfd - Global bfd
- graceful
Restart GetLogical Router List Data 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 List Data Vrf Bgp Med - Med
- peer
Groups List<GetLogical Router List Data Vrf Bgp Peer Group> - Peer group
- policy
Get
Logical Router List Data Vrf Bgp Policy - Policy
- redist
Rules List<GetLogical Router List Data Vrf Bgp Redist Rule> - Redist rules
- redistribution
Profile GetLogical Router List Data Vrf Bgp Redistribution Profile - Redistribution profile
- reject
Default BooleanRoute - Reject default route
- router
Id String - Router id
- advertise
Network GetLogical Router List Data Vrf Bgp Advertise Network - Advertise network
- aggregate
Get
Logical Router List Data Vrf Bgp Aggregate - Aggregate
- aggregate
Routes GetLogical Router List Data 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 List Data Vrf Bgp Global Bfd - Global bfd
- graceful
Restart GetLogical Router List Data 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 List Data Vrf Bgp Med - Med
- peer
Groups GetLogical Router List Data Vrf Bgp Peer Group[] - Peer group
- policy
Get
Logical Router List Data Vrf Bgp Policy - Policy
- redist
Rules GetLogical Router List Data Vrf Bgp Redist Rule[] - Redist rules
- redistribution
Profile GetLogical Router List Data Vrf Bgp Redistribution Profile - Redistribution profile
- reject
Default booleanRoute - Reject default route
- router
Id string - Router id
- advertise_
network GetLogical Router List Data Vrf Bgp Advertise Network - Advertise network
- aggregate
Get
Logical Router List Data Vrf Bgp Aggregate - Aggregate
- aggregate_
routes Sequence[GetLogical Router List Data 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 List Data Vrf Bgp Global Bfd - Global bfd
- graceful_
restart GetLogical Router List Data 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 List Data Vrf Bgp Med - Med
- peer_
groups Sequence[GetLogical Router List Data Vrf Bgp Peer Group] - Peer group
- policy
Get
Logical Router List Data Vrf Bgp Policy - Policy
- redist_
rules Sequence[GetLogical Router List Data Vrf Bgp Redist Rule] - Redist rules
- redistribution_
profile GetLogical Router List Data 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
GetLogicalRouterListDataVrfBgpAdvertiseNetwork
- ipv4 Property Map
- Ipv4
- ipv6 Property Map
- Ipv6
GetLogicalRouterListDataVrfBgpAdvertiseNetworkIpv4
- networks List<Property Map>
- Network
GetLogicalRouterListDataVrfBgpAdvertiseNetworkIpv4Network
GetLogicalRouterListDataVrfBgpAdvertiseNetworkIpv6
- networks List<Property Map>
- Network
GetLogicalRouterListDataVrfBgpAdvertiseNetworkIpv6Network
GetLogicalRouterListDataVrfBgpAggregate
- 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
GetLogicalRouterListDataVrfBgpAggregateRoute
- 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 List Data 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 List Data 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 List Data 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 List Data 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 List Data 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
GetLogicalRouterListDataVrfBgpAggregateRouteType
- ipv4 Property Map
- Ipv4
- ipv6 Property Map
- Ipv6
GetLogicalRouterListDataVrfBgpAggregateRouteTypeIpv4
- 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
GetLogicalRouterListDataVrfBgpAggregateRouteTypeIpv6
- 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
GetLogicalRouterListDataVrfBgpGlobalBfd
- Profile string
- Profile
- Profile string
- Profile
- profile String
- Profile
- profile string
- Profile
- profile str
- Profile
- profile String
- Profile
GetLogicalRouterListDataVrfBgpGracefulRestart
- 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
GetLogicalRouterListDataVrfBgpMed
- 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
GetLogicalRouterListDataVrfBgpPeerGroup
- Address
Family GetLogical Router List Data Vrf Bgp Peer Group Address Family - Address family
- Aggregated
Confed boolAs Path - Aggregated confed as path
- Connection
Options GetLogical Router List Data Vrf Bgp Peer Group Connection Options - Connection options
- Enable bool
- Enable
- Filtering
Profile GetLogical Router List Data Vrf Bgp Peer Group Filtering Profile - Filtering profile
- Name string
- Name
- Peers
List<Get
Logical Router List Data Vrf Bgp Peer Group Peer> - Peer
- Soft
Reset boolWith Stored Info - Soft reset with stored info
- Type
Get
Logical Router List Data Vrf Bgp Peer Group Type - Type
- Address
Family GetLogical Router List Data Vrf Bgp Peer Group Address Family - Address family
- Aggregated
Confed boolAs Path - Aggregated confed as path
- Connection
Options GetLogical Router List Data Vrf Bgp Peer Group Connection Options - Connection options
- Enable bool
- Enable
- Filtering
Profile GetLogical Router List Data Vrf Bgp Peer Group Filtering Profile - Filtering profile
- Name string
- Name
- Peers
[]Get
Logical Router List Data Vrf Bgp Peer Group Peer - Peer
- Soft
Reset boolWith Stored Info - Soft reset with stored info
- Type
Get
Logical Router List Data Vrf Bgp Peer Group Type - Type
- address
Family GetLogical Router List Data Vrf Bgp Peer Group Address Family - Address family
- aggregated
Confed BooleanAs Path - Aggregated confed as path
- connection
Options GetLogical Router List Data Vrf Bgp Peer Group Connection Options - Connection options
- enable Boolean
- Enable
- filtering
Profile GetLogical Router List Data Vrf Bgp Peer Group Filtering Profile - Filtering profile
- name String
- Name
- peers
List<Get
Logical Router List Data Vrf Bgp Peer Group Peer> - Peer
- soft
Reset BooleanWith Stored Info - Soft reset with stored info
- type
Get
Logical Router List Data Vrf Bgp Peer Group Type - Type
- address
Family GetLogical Router List Data Vrf Bgp Peer Group Address Family - Address family
- aggregated
Confed booleanAs Path - Aggregated confed as path
- connection
Options GetLogical Router List Data Vrf Bgp Peer Group Connection Options - Connection options
- enable boolean
- Enable
- filtering
Profile GetLogical Router List Data Vrf Bgp Peer Group Filtering Profile - Filtering profile
- name string
- Name
- peers
Get
Logical Router List Data Vrf Bgp Peer Group Peer[] - Peer
- soft
Reset booleanWith Stored Info - Soft reset with stored info
- type
Get
Logical Router List Data Vrf Bgp Peer Group Type - Type
- address_
family GetLogical Router List Data Vrf Bgp Peer Group Address Family - Address family
- aggregated_
confed_ boolas_ path - Aggregated confed as path
- connection_
options GetLogical Router List Data Vrf Bgp Peer Group Connection Options - Connection options
- enable bool
- Enable
- filtering_
profile GetLogical Router List Data Vrf Bgp Peer Group Filtering Profile - Filtering profile
- name str
- Name
- peers
Sequence[Get
Logical Router List Data Vrf Bgp Peer Group Peer] - Peer
- soft_
reset_ boolwith_ stored_ info - Soft reset with stored info
- type
Get
Logical Router List Data 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
GetLogicalRouterListDataVrfBgpPeerGroupAddressFamily
GetLogicalRouterListDataVrfBgpPeerGroupConnectionOptions
- 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
GetLogicalRouterListDataVrfBgpPeerGroupFilteringProfile
GetLogicalRouterListDataVrfBgpPeerGroupPeer
- Bfd
Get
Logical Router List Data Vrf Bgp Peer Group Peer Bfd - Bfd
- Connection
Options GetLogical Router List Data 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 List Data Vrf Bgp Peer Group Peer Inherit - Inherit
- Local
Address GetLogical Router List Data Vrf Bgp Peer Group Peer Local Address - Local address
- Name string
- Name
- Passive bool
- Passive
- Peer
Address GetLogical Router List Data 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 List Data Vrf Bgp Peer Group Peer Subsequent Address Family Identifier - Subsequent address family identifier
- Bfd
Get
Logical Router List Data Vrf Bgp Peer Group Peer Bfd - Bfd
- Connection
Options GetLogical Router List Data 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 List Data Vrf Bgp Peer Group Peer Inherit - Inherit
- Local
Address GetLogical Router List Data Vrf Bgp Peer Group Peer Local Address - Local address
- Name string
- Name
- Passive bool
- Passive
- Peer
Address GetLogical Router List Data 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 List Data Vrf Bgp Peer Group Peer Subsequent Address Family Identifier - Subsequent address family identifier
- bfd
Get
Logical Router List Data Vrf Bgp Peer Group Peer Bfd - Bfd
- connection
Options GetLogical Router List Data 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 List Data Vrf Bgp Peer Group Peer Inherit - Inherit
- local
Address GetLogical Router List Data Vrf Bgp Peer Group Peer Local Address - Local address
- name String
- Name
- passive Boolean
- Passive
- peer
Address GetLogical Router List Data 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 List Data Vrf Bgp Peer Group Peer Subsequent Address Family Identifier - Subsequent address family identifier
- bfd
Get
Logical Router List Data Vrf Bgp Peer Group Peer Bfd - Bfd
- connection
Options GetLogical Router List Data 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 List Data Vrf Bgp Peer Group Peer Inherit - Inherit
- local
Address GetLogical Router List Data Vrf Bgp Peer Group Peer Local Address - Local address
- name string
- Name
- passive boolean
- Passive
- peer
Address GetLogical Router List Data 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 List Data Vrf Bgp Peer Group Peer Subsequent Address Family Identifier - Subsequent address family identifier
- bfd
Get
Logical Router List Data Vrf Bgp Peer Group Peer Bfd - Bfd
- connection_
options GetLogical Router List Data 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 List Data Vrf Bgp Peer Group Peer Inherit - Inherit
- local_
address GetLogical Router List Data Vrf Bgp Peer Group Peer Local Address - Local address
- name str
- Name
- passive bool
- Passive
- peer_
address GetLogical Router List Data 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 List Data 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
GetLogicalRouterListDataVrfBgpPeerGroupPeerBfd
- Multihop
Get
Logical Router List Data Vrf Bgp Peer Group Peer Bfd Multihop - Multihop
- Profile string
- Profile
- Multihop
Get
Logical Router List Data Vrf Bgp Peer Group Peer Bfd Multihop - Multihop
- Profile string
- Profile
- multihop
Get
Logical Router List Data Vrf Bgp Peer Group Peer Bfd Multihop - Multihop
- profile String
- Profile
- multihop
Get
Logical Router List Data Vrf Bgp Peer Group Peer Bfd Multihop - Multihop
- profile string
- Profile
- multihop
Get
Logical Router List Data Vrf Bgp Peer Group Peer Bfd Multihop - Multihop
- profile str
- Profile
- multihop Property Map
- Multihop
- profile String
- Profile
GetLogicalRouterListDataVrfBgpPeerGroupPeerBfdMultihop
- 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
GetLogicalRouterListDataVrfBgpPeerGroupPeerConnectionOptions
- Authentication string
- Authentication
- Dampening string
- Dampening
- Hold
Time string - Hold time
- Idle
Hold intTime - Idle hold time
- Incoming
Bgp GetConnection Logical Router List Data 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 List Data 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 List Data 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 List Data 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 List Data 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 List Data 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 List Data 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 List Data 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 List Data 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 List Data 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
GetLogicalRouterListDataVrfBgpPeerGroupPeerConnectionOptionsIncomingBgpConnection
- 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
GetLogicalRouterListDataVrfBgpPeerGroupPeerConnectionOptionsOutgoingBgpConnection
- allow bool
- Allow
- local_
port int - Local port
GetLogicalRouterListDataVrfBgpPeerGroupPeerInherit
GetLogicalRouterListDataVrfBgpPeerGroupPeerInheritNo
- address
Family Property Map - Address family
- filtering
Profile Property Map - Filtering profile
GetLogicalRouterListDataVrfBgpPeerGroupPeerInheritNoAddressFamily
GetLogicalRouterListDataVrfBgpPeerGroupPeerInheritNoFilteringProfile
GetLogicalRouterListDataVrfBgpPeerGroupPeerLocalAddress
- interface_ String
- Interface
- ip String
- Ip
GetLogicalRouterListDataVrfBgpPeerGroupPeerPeerAddress
GetLogicalRouterListDataVrfBgpPeerGroupPeerSubsequentAddressFamilyIdentifier
GetLogicalRouterListDataVrfBgpPeerGroupType
- ebgp Property Map
- Ebgp
- ebgp
Confed Property Map - Ebgp confed
- ibgp Property Map
- Ibgp
- ibgp
Confed Property Map - Ibgp confed
GetLogicalRouterListDataVrfBgpPeerGroupTypeEbgp
- 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
GetLogicalRouterListDataVrfBgpPeerGroupTypeEbgpConfed
- 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
GetLogicalRouterListDataVrfBgpPeerGroupTypeIbgp
- 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
GetLogicalRouterListDataVrfBgpPeerGroupTypeIbgpConfed
- 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
GetLogicalRouterListDataVrfBgpPolicy
- aggregation Property Map
- Aggregation
- conditional
Advertisement Property Map - Conditional advertisement
- export Property Map
- Export
- import Property Map
- Import
GetLogicalRouterListDataVrfBgpPolicyAggregation
- addresses List<Property Map>
- Address
GetLogicalRouterListDataVrfBgpPolicyAggregationAddress
- Advertise
Filters List<GetLogical Router List Data Vrf Bgp Policy Aggregation Address Advertise Filter> - Advertise filters
- Aggregate
Route GetAttributes Logical Router List Data 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 List Data Vrf Bgp Policy Aggregation Address Suppress Filter> - Suppress filters
- Advertise
Filters []GetLogical Router List Data Vrf Bgp Policy Aggregation Address Advertise Filter - Advertise filters
- Aggregate
Route GetAttributes Logical Router List Data 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 List Data Vrf Bgp Policy Aggregation Address Suppress Filter - Suppress filters
- advertise
Filters List<GetLogical Router List Data Vrf Bgp Policy Aggregation Address Advertise Filter> - Advertise filters
- aggregate
Route GetAttributes Logical Router List Data 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 List Data Vrf Bgp Policy Aggregation Address Suppress Filter> - Suppress filters
- advertise
Filters GetLogical Router List Data Vrf Bgp Policy Aggregation Address Advertise Filter[] - Advertise filters
- aggregate
Route GetAttributes Logical Router List Data 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 List Data Vrf Bgp Policy Aggregation Address Suppress Filter[] - Suppress filters
- advertise_
filters Sequence[GetLogical Router List Data Vrf Bgp Policy Aggregation Address Advertise Filter] - Advertise filters
- aggregate_
route_ Getattributes Logical Router List Data 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 List Data 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
GetLogicalRouterListDataVrfBgpPolicyAggregationAddressAdvertiseFilter
- Enable bool
- Enable
- Match
Get
Logical Router List Data Vrf Bgp Policy Aggregation Address Advertise Filter Match - Match
- Name string
- Name
- Enable bool
- Enable
- Match
Get
Logical Router List Data Vrf Bgp Policy Aggregation Address Advertise Filter Match - Match
- Name string
- Name
- enable Boolean
- Enable
- match
Get
Logical Router List Data Vrf Bgp Policy Aggregation Address Advertise Filter Match - Match
- name String
- Name
- enable boolean
- Enable
- match
Get
Logical Router List Data Vrf Bgp Policy Aggregation Address Advertise Filter Match - Match
- name string
- Name
- enable bool
- Enable
- match
Get
Logical Router List Data Vrf Bgp Policy Aggregation Address Advertise Filter Match - Match
- name str
- Name
- enable Boolean
- Enable
- match Property Map
- Match
- name String
- Name
GetLogicalRouterListDataVrfBgpPolicyAggregationAddressAdvertiseFilterMatch
- Address
Prefixes List<GetLogical Router List Data Vrf Bgp Policy Aggregation Address Advertise Filter Match Address Prefix> - Address prefix
- Afi string
- Afi
- As
Path GetLogical Router List Data Vrf Bgp Policy Aggregation Address Advertise Filter Match As Path - As path
- Community
Get
Logical Router List Data Vrf Bgp Policy Aggregation Address Advertise Filter Match Community - Community
- Extended
Community GetLogical Router List Data 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 List Data Vrf Bgp Policy Aggregation Address Advertise Filter Match Address Prefix - Address prefix
- Afi string
- Afi
- As
Path GetLogical Router List Data Vrf Bgp Policy Aggregation Address Advertise Filter Match As Path - As path
- Community
Get
Logical Router List Data Vrf Bgp Policy Aggregation Address Advertise Filter Match Community - Community
- Extended
Community GetLogical Router List Data 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 List Data Vrf Bgp Policy Aggregation Address Advertise Filter Match Address Prefix> - Address prefix
- afi String
- Afi
- as
Path GetLogical Router List Data Vrf Bgp Policy Aggregation Address Advertise Filter Match As Path - As path
- community
Get
Logical Router List Data Vrf Bgp Policy Aggregation Address Advertise Filter Match Community - Community
- extended
Community GetLogical Router List Data 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 List Data Vrf Bgp Policy Aggregation Address Advertise Filter Match Address Prefix[] - Address prefix
- afi string
- Afi
- as
Path GetLogical Router List Data Vrf Bgp Policy Aggregation Address Advertise Filter Match As Path - As path
- community
Get
Logical Router List Data Vrf Bgp Policy Aggregation Address Advertise Filter Match Community - Community
- extended
Community GetLogical Router List Data 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 List Data Vrf Bgp Policy Aggregation Address Advertise Filter Match Address Prefix] - Address prefix
- afi str
- Afi
- as_
path GetLogical Router List Data Vrf Bgp Policy Aggregation Address Advertise Filter Match As Path - As path
- community
Get
Logical Router List Data Vrf Bgp Policy Aggregation Address Advertise Filter Match Community - Community
- extended_
community GetLogical Router List Data 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
GetLogicalRouterListDataVrfBgpPolicyAggregationAddressAdvertiseFilterMatchAddressPrefix
GetLogicalRouterListDataVrfBgpPolicyAggregationAddressAdvertiseFilterMatchAsPath
- Regex string
- Regex
- Regex string
- Regex
- regex String
- Regex
- regex string
- Regex
- regex str
- Regex
- regex String
- Regex
GetLogicalRouterListDataVrfBgpPolicyAggregationAddressAdvertiseFilterMatchCommunity
- Regex string
- Regex
- Regex string
- Regex
- regex String
- Regex
- regex string
- Regex
- regex str
- Regex
- regex String
- Regex
GetLogicalRouterListDataVrfBgpPolicyAggregationAddressAdvertiseFilterMatchExtendedCommunity
- Regex string
- Regex
- Regex string
- Regex
- regex String
- Regex
- regex string
- Regex
- regex str
- Regex
- regex String
- Regex
GetLogicalRouterListDataVrfBgpPolicyAggregationAddressAggregateRouteAttributes
- As
Path GetLogical Router List Data Vrf Bgp Policy Aggregation Address Aggregate Route Attributes As Path - As path
- As
Path intLimit - As path limit
- Community
Get
Logical Router List Data Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Community - Community
- Extended
Community GetLogical Router List Data 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 List Data Vrf Bgp Policy Aggregation Address Aggregate Route Attributes As Path - As path
- As
Path intLimit - As path limit
- Community
Get
Logical Router List Data Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Community - Community
- Extended
Community GetLogical Router List Data 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 List Data Vrf Bgp Policy Aggregation Address Aggregate Route Attributes As Path - As path
- as
Path IntegerLimit - As path limit
- community
Get
Logical Router List Data Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Community - Community
- extended
Community GetLogical Router List Data 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 List Data Vrf Bgp Policy Aggregation Address Aggregate Route Attributes As Path - As path
- as
Path numberLimit - As path limit
- community
Get
Logical Router List Data Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Community - Community
- extended
Community GetLogical Router List Data 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 List Data Vrf Bgp Policy Aggregation Address Aggregate Route Attributes As Path - As path
- as_
path_ intlimit - As path limit
- community
Get
Logical Router List Data Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Community - Community
- extended_
community GetLogical Router List Data 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
GetLogicalRouterListDataVrfBgpPolicyAggregationAddressAggregateRouteAttributesAsPath
- none
Get
Logical Router List Data Vrf Bgp Policy Aggregation Address Aggregate Route Attributes As Path None - None
- prepend Integer
- Prepend
- remove
Get
Logical Router List Data Vrf Bgp Policy Aggregation Address Aggregate Route Attributes As Path Remove - Remove
- remove
And IntegerPrepend - Remove and prepend
- none Property Map
- None
- prepend Number
- Prepend
- remove Property Map
- Remove
- remove
And NumberPrepend - Remove and prepend
GetLogicalRouterListDataVrfBgpPolicyAggregationAddressAggregateRouteAttributesCommunity
- Appends List<string>
- Append
- None
Get
Logical Router List Data Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Community None - None
- Overwrites List<string>
- Overwrite
- Remove
All GetLogical Router List Data 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 List Data Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Community None - None
- Overwrites []string
- Overwrite
- Remove
All GetLogical Router List Data 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 List Data Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Community None - None
- overwrites List<String>
- Overwrite
- remove
All GetLogical Router List Data 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 List Data Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Community None - None
- overwrites string[]
- Overwrite
- remove
All GetLogical Router List Data 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 List Data Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Community None - None
- overwrites Sequence[str]
- Overwrite
- remove_
all GetLogical Router List Data 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
GetLogicalRouterListDataVrfBgpPolicyAggregationAddressAggregateRouteAttributesExtendedCommunity
- Appends List<string>
- Append
- None
Get
Logical Router List Data Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Extended Community None - None
- Overwrites List<string>
- Overwrite
- Remove
All GetLogical Router List Data 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 List Data Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Extended Community None - None
- Overwrites []string
- Overwrite
- Remove
All GetLogical Router List Data 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 List Data Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Extended Community None - None
- overwrites List<String>
- Overwrite
- remove
All GetLogical Router List Data 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 List Data Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Extended Community None - None
- overwrites string[]
- Overwrite
- remove
All GetLogical Router List Data 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 List Data Vrf Bgp Policy Aggregation Address Aggregate Route Attributes Extended Community None - None
- overwrites Sequence[str]
- Overwrite
- remove_
all GetLogical Router List Data 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
GetLogicalRouterListDataVrfBgpPolicyAggregationAddressSuppressFilter
- Enable bool
- Enable
- Match
Get
Logical Router List Data Vrf Bgp Policy Aggregation Address Suppress Filter Match - Match
- Name string
- Name
- Enable bool
- Enable
- Match
Get
Logical Router List Data Vrf Bgp Policy Aggregation Address Suppress Filter Match - Match
- Name string
- Name
- enable Boolean
- Enable
- match
Get
Logical Router List Data Vrf Bgp Policy Aggregation Address Suppress Filter Match - Match
- name String
- Name
- enable boolean
- Enable
- match
Get
Logical Router List Data Vrf Bgp Policy Aggregation Address Suppress Filter Match - Match
- name string
- Name
- enable bool
- Enable
- match
Get
Logical Router List Data Vrf Bgp Policy Aggregation Address Suppress Filter Match - Match
- name str
- Name
- enable Boolean
- Enable
- match Property Map
- Match
- name String
- Name
GetLogicalRouterListDataVrfBgpPolicyAggregationAddressSuppressFilterMatch
- Address
Prefixes List<GetLogical Router List Data Vrf Bgp Policy Aggregation Address Suppress Filter Match Address Prefix> - Address prefix
- Afi string
- Afi
- As
Path GetLogical Router List Data Vrf Bgp Policy Aggregation Address Suppress Filter Match As Path - As path
- Community
Get
Logical Router List Data Vrf Bgp Policy Aggregation Address Suppress Filter Match Community - Community
- Extended
Community GetLogical Router List Data 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 List Data Vrf Bgp Policy Aggregation Address Suppress Filter Match Address Prefix - Address prefix
- Afi string
- Afi
- As
Path GetLogical Router List Data Vrf Bgp Policy Aggregation Address Suppress Filter Match As Path - As path
- Community
Get
Logical Router List Data Vrf Bgp Policy Aggregation Address Suppress Filter Match Community - Community
- Extended
Community GetLogical Router List Data 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 List Data Vrf Bgp Policy Aggregation Address Suppress Filter Match Address Prefix> - Address prefix
- afi String
- Afi
- as
Path GetLogical Router List Data Vrf Bgp Policy Aggregation Address Suppress Filter Match As Path - As path
- community
Get
Logical Router List Data Vrf Bgp Policy Aggregation Address Suppress Filter Match Community - Community
- extended
Community GetLogical Router List Data 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 List Data Vrf Bgp Policy Aggregation Address Suppress Filter Match Address Prefix[] - Address prefix
- afi string
- Afi
- as
Path GetLogical Router List Data Vrf Bgp Policy Aggregation Address Suppress Filter Match As Path - As path
- community
Get
Logical Router List Data Vrf Bgp Policy Aggregation Address Suppress Filter Match Community - Community
- extended
Community GetLogical Router List Data 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 List Data Vrf Bgp Policy Aggregation Address Suppress Filter Match Address Prefix] - Address prefix
- afi str
- Afi
- as_
path GetLogical Router List Data Vrf Bgp Policy Aggregation Address Suppress Filter Match As Path - As path
- community
Get
Logical Router List Data Vrf Bgp Policy Aggregation Address Suppress Filter Match Community - Community
- extended_
community GetLogical Router List Data 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
GetLogicalRouterListDataVrfBgpPolicyAggregationAddressSuppressFilterMatchAddressPrefix
GetLogicalRouterListDataVrfBgpPolicyAggregationAddressSuppressFilterMatchAsPath
- Regex string
- Regex
- Regex string
- Regex
- regex String
- Regex
- regex string
- Regex
- regex str
- Regex
- regex String
- Regex
GetLogicalRouterListDataVrfBgpPolicyAggregationAddressSuppressFilterMatchCommunity
- Regex string
- Regex
- Regex string
- Regex
- regex String
- Regex
- regex string
- Regex
- regex str
- Regex
- regex String
- Regex
GetLogicalRouterListDataVrfBgpPolicyAggregationAddressSuppressFilterMatchExtendedCommunity
- Regex string
- Regex
- Regex string
- Regex
- regex String
- Regex
- regex string
- Regex
- regex str
- Regex
- regex String
- Regex
GetLogicalRouterListDataVrfBgpPolicyConditionalAdvertisement
- policies List<Property Map>
- Policy
GetLogicalRouterListDataVrfBgpPolicyConditionalAdvertisementPolicy
- Advertise
Filters List<GetLogical Router List Data Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter> - Advertise filters
- Enable bool
- Enable
- Name string
- Name
- Non
Exist List<GetFilters Logical Router List Data Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter> - Non exist filters
- Used
Bies List<string> - Used by
- Advertise
Filters []GetLogical Router List Data Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter - Advertise filters
- Enable bool
- Enable
- Name string
- Name
- Non
Exist []GetFilters Logical Router List Data Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter - Non exist filters
- Used
Bies []string - Used by
- advertise
Filters List<GetLogical Router List Data Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter> - Advertise filters
- enable Boolean
- Enable
- name String
- Name
- non
Exist List<GetFilters Logical Router List Data Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter> - Non exist filters
- used
Bies List<String> - Used by
- advertise
Filters GetLogical Router List Data Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter[] - Advertise filters
- enable boolean
- Enable
- name string
- Name
- non
Exist GetFilters Logical Router List Data Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter[] - Non exist filters
- used
Bies string[] - Used by
- advertise_
filters Sequence[GetLogical Router List Data Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter] - Advertise filters
- enable bool
- Enable
- name str
- Name
- non_
exist_ Sequence[Getfilters Logical Router List Data 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
GetLogicalRouterListDataVrfBgpPolicyConditionalAdvertisementPolicyAdvertiseFilter
- Enable bool
- Enable
- Match
Get
Logical Router List Data Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match - Match
- Name string
- Name
- Enable bool
- Enable
- Match
Get
Logical Router List Data Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match - Match
- Name string
- Name
- enable Boolean
- Enable
- match
Get
Logical Router List Data Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match - Match
- name String
- Name
- enable boolean
- Enable
- match
Get
Logical Router List Data Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match - Match
- name string
- Name
- enable Boolean
- Enable
- match Property Map
- Match
- name String
- Name
GetLogicalRouterListDataVrfBgpPolicyConditionalAdvertisementPolicyAdvertiseFilterMatch
- Address
Prefixes List<GetLogical Router List Data Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match Address Prefix> - Address prefix
- Afi string
- Afi
- As
Path GetLogical Router List Data Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match As Path - As path
- Community
Get
Logical Router List Data Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match Community - Community
- Extended
Community GetLogical Router List Data 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 List Data Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match Address Prefix - Address prefix
- Afi string
- Afi
- As
Path GetLogical Router List Data Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match As Path - As path
- Community
Get
Logical Router List Data Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match Community - Community
- Extended
Community GetLogical Router List Data 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 List Data Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match Address Prefix> - Address prefix
- afi String
- Afi
- as
Path GetLogical Router List Data Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match As Path - As path
- community
Get
Logical Router List Data Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match Community - Community
- extended
Community GetLogical Router List Data 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 List Data Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match Address Prefix[] - Address prefix
- afi string
- Afi
- as
Path GetLogical Router List Data Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match As Path - As path
- community
Get
Logical Router List Data Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match Community - Community
- extended
Community GetLogical Router List Data 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 List Data Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match Address Prefix] - Address prefix
- afi str
- Afi
- as_
path GetLogical Router List Data Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match As Path - As path
- community
Get
Logical Router List Data Vrf Bgp Policy Conditional Advertisement Policy Advertise Filter Match Community - Community
- extended_
community GetLogical Router List Data 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
GetLogicalRouterListDataVrfBgpPolicyConditionalAdvertisementPolicyAdvertiseFilterMatchAddressPrefix
GetLogicalRouterListDataVrfBgpPolicyConditionalAdvertisementPolicyAdvertiseFilterMatchAsPath
- Regex string
- Regex
- Regex string
- Regex
- regex String
- Regex
- regex string
- Regex
- regex str
- Regex
- regex String
- Regex
GetLogicalRouterListDataVrfBgpPolicyConditionalAdvertisementPolicyAdvertiseFilterMatchCommunity
- Regex string
- Regex
- Regex string
- Regex
- regex String
- Regex
- regex string
- Regex
- regex str
- Regex
- regex String
- Regex
GetLogicalRouterListDataVrfBgpPolicyConditionalAdvertisementPolicyAdvertiseFilterMatchExtendedCommunity
- Regex string
- Regex
- Regex string
- Regex
- regex String
- Regex
- regex string
- Regex
- regex str
- Regex
- regex String
- Regex
GetLogicalRouterListDataVrfBgpPolicyConditionalAdvertisementPolicyNonExistFilter
- Enable bool
- Enable
- Match
Get
Logical Router List Data Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match - Match
- Name string
- Name
- Enable bool
- Enable
- Match
Get
Logical Router List Data Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match - Match
- Name string
- Name
- enable Boolean
- Enable
- match
Get
Logical Router List Data Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match - Match
- name String
- Name
- enable boolean
- Enable
- match
Get
Logical Router List Data Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match - Match
- name string
- Name
- enable bool
- Enable
- match
Get
Logical Router List Data Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match - Match
- name str
- Name
- enable Boolean
- Enable
- match Property Map
- Match
- name String
- Name
GetLogicalRouterListDataVrfBgpPolicyConditionalAdvertisementPolicyNonExistFilterMatch
- Address
Prefixes List<GetLogical Router List Data Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match Address Prefix> - Address prefix
- Afi string
- Afi
- As
Path GetLogical Router List Data Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match As Path - As path
- Community
Get
Logical Router List Data Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match Community - Community
- Extended
Community GetLogical Router List Data 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 List Data Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match Address Prefix - Address prefix
- Afi string
- Afi
- As
Path GetLogical Router List Data Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match As Path - As path
- Community
Get
Logical Router List Data Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match Community - Community
- Extended
Community GetLogical Router List Data 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 List Data Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match Address Prefix> - Address prefix
- afi String
- Afi
- as
Path GetLogical Router List Data Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match As Path - As path
- community
Get
Logical Router List Data Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match Community - Community
- extended
Community GetLogical Router List Data 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 List Data Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match Address Prefix[] - Address prefix
- afi string
- Afi
- as
Path GetLogical Router List Data Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match As Path - As path
- community
Get
Logical Router List Data Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match Community - Community
- extended
Community GetLogical Router List Data 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 List Data Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match Address Prefix] - Address prefix
- afi str
- Afi
- as_
path GetLogical Router List Data Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match As Path - As path
- community
Get
Logical Router List Data Vrf Bgp Policy Conditional Advertisement Policy Non Exist Filter Match Community - Community
- extended_
community GetLogical Router List Data 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
GetLogicalRouterListDataVrfBgpPolicyConditionalAdvertisementPolicyNonExistFilterMatchAddressPrefix
GetLogicalRouterListDataVrfBgpPolicyConditionalAdvertisementPolicyNonExistFilterMatchAsPath
- Regex string
- Regex
- Regex string
- Regex
- regex String
- Regex
- regex string
- Regex
- regex str
- Regex
- regex String
- Regex
GetLogicalRouterListDataVrfBgpPolicyConditionalAdvertisementPolicyNonExistFilterMatchCommunity
- Regex string
- Regex
- Regex string
- Regex
- regex String
- Regex
- regex string
- Regex
- regex str
- Regex
- regex String
- Regex
GetLogicalRouterListDataVrfBgpPolicyConditionalAdvertisementPolicyNonExistFilterMatchExtendedCommunity
- Regex string
- Regex
- Regex string
- Regex
- regex String
- Regex
- regex string
- Regex
- regex str
- Regex
- regex String
- Regex
GetLogicalRouterListDataVrfBgpPolicyExport
- rules List<Property Map>
- Rules
GetLogicalRouterListDataVrfBgpPolicyExportRule
- Action
Get
Logical Router List Data Vrf Bgp Policy Export Rule Action - Action
- Enable bool
- Enable
- Match
Get
Logical Router List Data Vrf Bgp Policy Export Rule Match - Match
- Name string
- Name
- Used
Bies List<string> - Used by
- Action
Get
Logical Router List Data Vrf Bgp Policy Export Rule Action - Action
- Enable bool
- Enable
- Match
Get
Logical Router List Data Vrf Bgp Policy Export Rule Match - Match
- Name string
- Name
- Used
Bies []string - Used by
- action
Get
Logical Router List Data Vrf Bgp Policy Export Rule Action - Action
- enable Boolean
- Enable
- match
Get
Logical Router List Data Vrf Bgp Policy Export Rule Match - Match
- name String
- Name
- used
Bies List<String> - Used by
- action
Get
Logical Router List Data Vrf Bgp Policy Export Rule Action - Action
- enable boolean
- Enable
- match
Get
Logical Router List Data Vrf Bgp Policy Export Rule Match - Match
- name string
- Name
- used
Bies string[] - Used by
- action
Get
Logical Router List Data Vrf Bgp Policy Export Rule Action - Action
- enable bool
- Enable
- match
Get
Logical Router List Data 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
GetLogicalRouterListDataVrfBgpPolicyExportRuleAction
- allow Property Map
- Allow
- deny Property Map
- Deny
GetLogicalRouterListDataVrfBgpPolicyExportRuleActionAllow
- update Property Map
- Update
GetLogicalRouterListDataVrfBgpPolicyExportRuleActionAllowUpdate
- As
Path GetLogical Router List Data Vrf Bgp Policy Export Rule Action Allow Update As Path - As path
- As
Path intLimit - As path limit
- Community
Get
Logical Router List Data Vrf Bgp Policy Export Rule Action Allow Update Community - Community
- Extended
Community GetLogical Router List Data 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 List Data Vrf Bgp Policy Export Rule Action Allow Update As Path - As path
- As
Path intLimit - As path limit
- Community
Get
Logical Router List Data Vrf Bgp Policy Export Rule Action Allow Update Community - Community
- Extended
Community GetLogical Router List Data 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 List Data Vrf Bgp Policy Export Rule Action Allow Update As Path - As path
- as
Path IntegerLimit - As path limit
- community
Get
Logical Router List Data Vrf Bgp Policy Export Rule Action Allow Update Community - Community
- extended
Community GetLogical Router List Data 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 List Data Vrf Bgp Policy Export Rule Action Allow Update As Path - As path
- as
Path numberLimit - As path limit
- community
Get
Logical Router List Data Vrf Bgp Policy Export Rule Action Allow Update Community - Community
- extended
Community GetLogical Router List Data 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 List Data Vrf Bgp Policy Export Rule Action Allow Update As Path - As path
- as_
path_ intlimit - As path limit
- community
Get
Logical Router List Data Vrf Bgp Policy Export Rule Action Allow Update Community - Community
- extended_
community GetLogical Router List Data 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
GetLogicalRouterListDataVrfBgpPolicyExportRuleActionAllowUpdateAsPath
- none
Get
Logical Router List Data Vrf Bgp Policy Export Rule Action Allow Update As Path None - None
- prepend Integer
- Prepend
- remove
Get
Logical Router List Data Vrf Bgp Policy Export Rule Action Allow Update As Path Remove - Remove
- remove
And IntegerPrepend - Remove and prepend
- none
Get
Logical Router List Data Vrf Bgp Policy Export Rule Action Allow Update As Path None - None
- prepend number
- Prepend
- remove
Get
Logical Router List Data Vrf Bgp Policy Export Rule Action Allow Update 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
GetLogicalRouterListDataVrfBgpPolicyExportRuleActionAllowUpdateCommunity
- Appends List<string>
- Append
- None
Get
Logical Router List Data Vrf Bgp Policy Export Rule Action Allow Update Community None - None
- Overwrites List<string>
- Overwrite
- Remove
All GetLogical Router List Data 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 List Data Vrf Bgp Policy Export Rule Action Allow Update Community None - None
- Overwrites []string
- Overwrite
- Remove
All GetLogical Router List Data 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 List Data Vrf Bgp Policy Export Rule Action Allow Update Community None - None
- overwrites List<String>
- Overwrite
- remove
All GetLogical Router List Data 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 List Data Vrf Bgp Policy Export Rule Action Allow Update Community None - None
- overwrites string[]
- Overwrite
- remove
All GetLogical Router List Data 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 List Data Vrf Bgp Policy Export Rule Action Allow Update Community None - None
- overwrites Sequence[str]
- Overwrite
- remove_
all GetLogical Router List Data 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
GetLogicalRouterListDataVrfBgpPolicyExportRuleActionAllowUpdateExtendedCommunity
- Appends List<string>
- Append
- None
Get
Logical Router List Data Vrf Bgp Policy Export Rule Action Allow Update Extended Community None - None
- Overwrites List<string>
- Overwrite
- Remove
All GetLogical Router List Data 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 List Data Vrf Bgp Policy Export Rule Action Allow Update Extended Community None - None
- Overwrites []string
- Overwrite
- Remove
All GetLogical Router List Data 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 List Data Vrf Bgp Policy Export Rule Action Allow Update Extended Community None - None
- overwrites List<String>
- Overwrite
- remove
All GetLogical Router List Data 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 List Data Vrf Bgp Policy Export Rule Action Allow Update Extended Community None - None
- overwrites string[]
- Overwrite
- remove
All GetLogical Router List Data 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 List Data Vrf Bgp Policy Export Rule Action Allow Update Extended Community None - None
- overwrites Sequence[str]
- Overwrite
- remove_
all GetLogical Router List Data 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
GetLogicalRouterListDataVrfBgpPolicyExportRuleMatch
- Address
Prefixes List<GetLogical Router List Data Vrf Bgp Policy Export Rule Match Address Prefix> - Address prefix
- Afi string
- Afi
- As
Path GetLogical Router List Data Vrf Bgp Policy Export Rule Match As Path - As path
- Community
Get
Logical Router List Data Vrf Bgp Policy Export Rule Match Community - Community
- Extended
Community GetLogical Router List Data 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 List Data Vrf Bgp Policy Export Rule Match Address Prefix - Address prefix
- Afi string
- Afi
- As
Path GetLogical Router List Data Vrf Bgp Policy Export Rule Match As Path - As path
- Community
Get
Logical Router List Data Vrf Bgp Policy Export Rule Match Community - Community
- Extended
Community GetLogical Router List Data 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 List Data Vrf Bgp Policy Export Rule Match Address Prefix> - Address prefix
- afi String
- Afi
- as
Path GetLogical Router List Data Vrf Bgp Policy Export Rule Match As Path - As path
- community
Get
Logical Router List Data Vrf Bgp Policy Export Rule Match Community - Community
- extended
Community GetLogical Router List Data 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 List Data Vrf Bgp Policy Export Rule Match Address Prefix[] - Address prefix
- afi string
- Afi
- as
Path GetLogical Router List Data Vrf Bgp Policy Export Rule Match As Path - As path
- community
Get
Logical Router List Data Vrf Bgp Policy Export Rule Match Community - Community
- extended
Community GetLogical Router List Data 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 List Data Vrf Bgp Policy Export Rule Match Address Prefix] - Address prefix
- afi str
- Afi
- as_
path GetLogical Router List Data Vrf Bgp Policy Export Rule Match As Path - As path
- community
Get
Logical Router List Data Vrf Bgp Policy Export Rule Match Community - Community
- extended_
community GetLogical Router List Data 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
GetLogicalRouterListDataVrfBgpPolicyExportRuleMatchAddressPrefix
GetLogicalRouterListDataVrfBgpPolicyExportRuleMatchAsPath
- Regex string
- Regex
- Regex string
- Regex
- regex String
- Regex
- regex string
- Regex
- regex str
- Regex
- regex String
- Regex
GetLogicalRouterListDataVrfBgpPolicyExportRuleMatchCommunity
- Regex string
- Regex
- Regex string
- Regex
- regex String
- Regex
- regex string
- Regex
- regex str
- Regex
- regex String
- Regex
GetLogicalRouterListDataVrfBgpPolicyExportRuleMatchExtendedCommunity
- Regex string
- Regex
- Regex string
- Regex
- regex String
- Regex
- regex string
- Regex
- regex str
- Regex
- regex String
- Regex
GetLogicalRouterListDataVrfBgpPolicyImport
- rules List<Property Map>
- Rules
GetLogicalRouterListDataVrfBgpPolicyImportRule
- Action
Get
Logical Router List Data Vrf Bgp Policy Import Rule Action - Action
- Enable bool
- Enable
- Match
Get
Logical Router List Data Vrf Bgp Policy Import Rule Match - Match
- Name string
- Name
- Used
Bies List<string> - Used by
- Action
Get
Logical Router List Data Vrf Bgp Policy Import Rule Action - Action
- Enable bool
- Enable
- Match
Get
Logical Router List Data Vrf Bgp Policy Import Rule Match - Match
- Name string
- Name
- Used
Bies []string - Used by
- action
Get
Logical Router List Data Vrf Bgp Policy Import Rule Action - Action
- enable Boolean
- Enable
- match
Get
Logical Router List Data Vrf Bgp Policy Import Rule Match - Match
- name String
- Name
- used
Bies List<String> - Used by
- action
Get
Logical Router List Data Vrf Bgp Policy Import Rule Action - Action
- enable boolean
- Enable
- match
Get
Logical Router List Data Vrf Bgp Policy Import Rule Match - Match
- name string
- Name
- used
Bies string[] - Used by
- action
Get
Logical Router List Data Vrf Bgp Policy Import Rule Action - Action
- enable bool
- Enable
- match
Get
Logical Router List Data 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
GetLogicalRouterListDataVrfBgpPolicyImportRuleAction
- allow Property Map
- Allow
- deny Property Map
- Deny
GetLogicalRouterListDataVrfBgpPolicyImportRuleActionAllow
- Dampening string
- Dampening
- Update
Get
Logical Router List Data Vrf Bgp Policy Import Rule Action Allow Update - Update
- Dampening string
- Dampening
- Update
Get
Logical Router List Data Vrf Bgp Policy Import Rule Action Allow Update - Update
- dampening String
- Dampening
- update
Get
Logical Router List Data Vrf Bgp Policy Import Rule Action Allow Update - Update
- dampening string
- Dampening
- update
Get
Logical Router List Data Vrf Bgp Policy Import Rule Action Allow Update - Update
- dampening str
- Dampening
- update
Get
Logical Router List Data Vrf Bgp Policy Import Rule Action Allow Update - Update
- dampening String
- Dampening
- update Property Map
- Update
GetLogicalRouterListDataVrfBgpPolicyImportRuleActionAllowUpdate
- As
Path GetLogical Router List Data Vrf Bgp Policy Import Rule Action Allow Update As Path - As path
- As
Path intLimit - As path limit
- Community
Get
Logical Router List Data Vrf Bgp Policy Import Rule Action Allow Update Community - Community
- Extended
Community GetLogical Router List Data 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 List Data Vrf Bgp Policy Import Rule Action Allow Update As Path - As path
- As
Path intLimit - As path limit
- Community
Get
Logical Router List Data Vrf Bgp Policy Import Rule Action Allow Update Community - Community
- Extended
Community GetLogical Router List Data 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 List Data Vrf Bgp Policy Import Rule Action Allow Update As Path - As path
- as
Path IntegerLimit - As path limit
- community
Get
Logical Router List Data Vrf Bgp Policy Import Rule Action Allow Update Community - Community
- extended
Community GetLogical Router List Data 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 List Data Vrf Bgp Policy Import Rule Action Allow Update As Path - As path
- as
Path numberLimit - As path limit
- community
Get
Logical Router List Data Vrf Bgp Policy Import Rule Action Allow Update Community - Community
- extended
Community GetLogical Router List Data 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 List Data Vrf Bgp Policy Import Rule Action Allow Update As Path - As path
- as_
path_ intlimit - As path limit
- community
Get
Logical Router List Data Vrf Bgp Policy Import Rule Action Allow Update Community - Community
- extended_
community GetLogical Router List Data 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
GetLogicalRouterListDataVrfBgpPolicyImportRuleActionAllowUpdateAsPath
- none
Get
Logical Router List Data Vrf Bgp Policy Import Rule Action Allow Update As Path None - None
- prepend Integer
- Prepend
- remove
Get
Logical Router List Data Vrf Bgp Policy Import Rule Action Allow Update As Path Remove - Remove
- remove
And IntegerPrepend - Remove and prepend
- none
Get
Logical Router List Data Vrf Bgp Policy Import Rule Action Allow Update As Path None - None
- prepend number
- Prepend
- remove
Get
Logical Router List Data Vrf Bgp Policy Import Rule Action Allow Update 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
GetLogicalRouterListDataVrfBgpPolicyImportRuleActionAllowUpdateCommunity
- Appends List<string>
- Append
- None
Get
Logical Router List Data Vrf Bgp Policy Import Rule Action Allow Update Community None - None
- Overwrites List<string>
- Overwrite
- Remove
All GetLogical Router List Data 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 List Data Vrf Bgp Policy Import Rule Action Allow Update Community None - None
- Overwrites []string
- Overwrite
- Remove
All GetLogical Router List Data 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 List Data Vrf Bgp Policy Import Rule Action Allow Update Community None - None
- overwrites List<String>
- Overwrite
- remove
All GetLogical Router List Data 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 List Data Vrf Bgp Policy Import Rule Action Allow Update Community None - None
- overwrites string[]
- Overwrite
- remove
All GetLogical Router List Data 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 List Data Vrf Bgp Policy Import Rule Action Allow Update Community None - None
- overwrites Sequence[str]
- Overwrite
- remove_
all GetLogical Router List Data 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
GetLogicalRouterListDataVrfBgpPolicyImportRuleActionAllowUpdateExtendedCommunity
- Appends List<string>
- Append
- None
Get
Logical Router List Data Vrf Bgp Policy Import Rule Action Allow Update Extended Community None - None
- Overwrites List<string>
- Overwrite
- Remove
All GetLogical Router List Data 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 List Data Vrf Bgp Policy Import Rule Action Allow Update Extended Community None - None
- Overwrites []string
- Overwrite
- Remove
All GetLogical Router List Data 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 List Data Vrf Bgp Policy Import Rule Action Allow Update Extended Community None - None
- overwrites List<String>
- Overwrite
- remove
All GetLogical Router List Data 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 List Data Vrf Bgp Policy Import Rule Action Allow Update Extended Community None - None
- overwrites string[]
- Overwrite
- remove
All GetLogical Router List Data 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 List Data Vrf Bgp Policy Import Rule Action Allow Update Extended Community None - None
- overwrites Sequence[str]
- Overwrite
- remove_
all GetLogical Router List Data 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
GetLogicalRouterListDataVrfBgpPolicyImportRuleMatch
- Address
Prefixes List<GetLogical Router List Data Vrf Bgp Policy Import Rule Match Address Prefix> - Address prefix
- Afi string
- Afi
- As
Path GetLogical Router List Data Vrf Bgp Policy Import Rule Match As Path - As path
- Community
Get
Logical Router List Data Vrf Bgp Policy Import Rule Match Community - Community
- Extended
Community GetLogical Router List Data 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 List Data Vrf Bgp Policy Import Rule Match Address Prefix - Address prefix
- Afi string
- Afi
- As
Path GetLogical Router List Data Vrf Bgp Policy Import Rule Match As Path - As path
- Community
Get
Logical Router List Data Vrf Bgp Policy Import Rule Match Community - Community
- Extended
Community GetLogical Router List Data 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 List Data Vrf Bgp Policy Import Rule Match Address Prefix> - Address prefix
- afi String
- Afi
- as
Path GetLogical Router List Data Vrf Bgp Policy Import Rule Match As Path - As path
- community
Get
Logical Router List Data Vrf Bgp Policy Import Rule Match Community - Community
- extended
Community GetLogical Router List Data 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 List Data Vrf Bgp Policy Import Rule Match Address Prefix[] - Address prefix
- afi string
- Afi
- as
Path GetLogical Router List Data Vrf Bgp Policy Import Rule Match As Path - As path
- community
Get
Logical Router List Data Vrf Bgp Policy Import Rule Match Community - Community
- extended
Community GetLogical Router List Data 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 List Data Vrf Bgp Policy Import Rule Match Address Prefix] - Address prefix
- afi str
- Afi
- as_
path GetLogical Router List Data Vrf Bgp Policy Import Rule Match As Path - As path
- community
Get
Logical Router List Data Vrf Bgp Policy Import Rule Match Community - Community
- extended_
community GetLogical Router List Data 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
GetLogicalRouterListDataVrfBgpPolicyImportRuleMatchAddressPrefix
GetLogicalRouterListDataVrfBgpPolicyImportRuleMatchAsPath
- Regex string
- Regex
- Regex string
- Regex
- regex String
- Regex
- regex string
- Regex
- regex str
- Regex
- regex String
- Regex
GetLogicalRouterListDataVrfBgpPolicyImportRuleMatchCommunity
- Regex string
- Regex
- Regex string
- Regex
- regex String
- Regex
- regex string
- Regex
- regex str
- Regex
- regex String
- Regex
GetLogicalRouterListDataVrfBgpPolicyImportRuleMatchExtendedCommunity
- Regex string
- Regex
- Regex string
- Regex
- regex String
- Regex
- regex string
- Regex
- regex str
- Regex
- regex String
- Regex
GetLogicalRouterListDataVrfBgpRedistRule
- 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
GetLogicalRouterListDataVrfBgpRedistributionProfile
- ipv4 Property Map
- Ipv4
- ipv6 Property Map
- Ipv6
GetLogicalRouterListDataVrfBgpRedistributionProfileIpv4
- Unicast string
- Unicast
- Unicast string
- Unicast
- unicast String
- Unicast
- unicast string
- Unicast
- unicast str
- Unicast
- unicast String
- Unicast
GetLogicalRouterListDataVrfBgpRedistributionProfileIpv6
- Unicast string
- Unicast
- Unicast string
- Unicast
- unicast String
- Unicast
- unicast string
- Unicast
- unicast str
- Unicast
- unicast String
- Unicast
GetLogicalRouterListDataVrfEcmp
- Algorithm
Get
Logical Router List Data 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 List Data 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 List Data 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 List Data 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 List Data 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
GetLogicalRouterListDataVrfEcmpAlgorithm
- Balanced
Round GetRobin Logical Router List Data Vrf Ecmp Algorithm Balanced Round Robin - Balanced round robin
- Ip
Hash GetLogical Router List Data Vrf Ecmp Algorithm Ip Hash - Ip hash
- Ip
Modulo GetLogical Router List Data Vrf Ecmp Algorithm Ip Modulo - Ip modulo
- Weighted
Round GetRobin Logical Router List Data Vrf Ecmp Algorithm Weighted Round Robin - Weighted round robin
- Balanced
Round GetRobin Logical Router List Data Vrf Ecmp Algorithm Balanced Round Robin - Balanced round robin
- Ip
Hash GetLogical Router List Data Vrf Ecmp Algorithm Ip Hash - Ip hash
- Ip
Modulo GetLogical Router List Data Vrf Ecmp Algorithm Ip Modulo - Ip modulo
- Weighted
Round GetRobin Logical Router List Data Vrf Ecmp Algorithm Weighted Round Robin - Weighted round robin
- balanced
Round GetRobin Logical Router List Data Vrf Ecmp Algorithm Balanced Round Robin - Balanced round robin
- ip
Hash GetLogical Router List Data Vrf Ecmp Algorithm Ip Hash - Ip hash
- ip
Modulo GetLogical Router List Data Vrf Ecmp Algorithm Ip Modulo - Ip modulo
- weighted
Round GetRobin Logical Router List Data Vrf Ecmp Algorithm Weighted Round Robin - Weighted round robin
- balanced
Round GetRobin Logical Router List Data Vrf Ecmp Algorithm Balanced Round Robin - Balanced round robin
- ip
Hash GetLogical Router List Data Vrf Ecmp Algorithm Ip Hash - Ip hash
- ip
Modulo GetLogical Router List Data Vrf Ecmp Algorithm Ip Modulo - Ip modulo
- weighted
Round GetRobin Logical Router List Data Vrf Ecmp Algorithm Weighted Round Robin - Weighted round robin
- balanced_
round_ Getrobin Logical Router List Data Vrf Ecmp Algorithm Balanced Round Robin - Balanced round robin
- ip_
hash GetLogical Router List Data Vrf Ecmp Algorithm Ip Hash - Ip hash
- ip_
modulo GetLogical Router List Data Vrf Ecmp Algorithm Ip Modulo - Ip modulo
- weighted_
round_ Getrobin Logical Router List Data 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
GetLogicalRouterListDataVrfEcmpAlgorithmIpHash
GetLogicalRouterListDataVrfEcmpAlgorithmWeightedRoundRobin
- interfaces List<Property Map>
- Interface
GetLogicalRouterListDataVrfEcmpAlgorithmWeightedRoundRobinInterface
GetLogicalRouterListDataVrfMulticast
- Enable bool
- Enable
- Enable
V6 bool - Enable v6
- Igmp
Get
Logical Router List Data Vrf Multicast Igmp - Igmp
- Interface
Groups List<GetLogical Router List Data Vrf Multicast Interface Group> - Interface group
- Mode string
- Mode
- Msdp
Get
Logical Router List Data Vrf Multicast Msdp - Msdp
- Pim
Get
Logical Router List Data Vrf Multicast Pim - Pim
- Route
Ageout intTime - Route ageout time
- Rp
Get
Logical Router List Data Vrf Multicast Rp - Rp
- Spt
Thresholds List<GetLogical Router List Data Vrf Multicast Spt Threshold> - Spt threshold
- Ssm
Address List<GetSpaces Logical Router List Data Vrf Multicast Ssm Address Space> - Ssm address space
- Static
Routes List<GetLogical Router List Data Vrf Multicast Static Route> - Static route
- Enable bool
- Enable
- Enable
V6 bool - Enable v6
- Igmp
Get
Logical Router List Data Vrf Multicast Igmp - Igmp
- Interface
Groups []GetLogical Router List Data Vrf Multicast Interface Group - Interface group
- Mode string
- Mode
- Msdp
Get
Logical Router List Data Vrf Multicast Msdp - Msdp
- Pim
Get
Logical Router List Data Vrf Multicast Pim - Pim
- Route
Ageout intTime - Route ageout time
- Rp
Get
Logical Router List Data Vrf Multicast Rp - Rp
- Spt
Thresholds []GetLogical Router List Data Vrf Multicast Spt Threshold - Spt threshold
- Ssm
Address []GetSpaces Logical Router List Data Vrf Multicast Ssm Address Space - Ssm address space
- Static
Routes []GetLogical Router List Data Vrf Multicast Static Route - Static route
- enable Boolean
- Enable
- enable
V6 Boolean - Enable v6
- igmp
Get
Logical Router List Data Vrf Multicast Igmp - Igmp
- interface
Groups List<GetLogical Router List Data Vrf Multicast Interface Group> - Interface group
- mode String
- Mode
- msdp
Get
Logical Router List Data Vrf Multicast Msdp - Msdp
- pim
Get
Logical Router List Data Vrf Multicast Pim - Pim
- route
Ageout IntegerTime - Route ageout time
- rp
Get
Logical Router List Data Vrf Multicast Rp - Rp
- spt
Thresholds List<GetLogical Router List Data Vrf Multicast Spt Threshold> - Spt threshold
- ssm
Address List<GetSpaces Logical Router List Data Vrf Multicast Ssm Address Space> - Ssm address space
- static
Routes List<GetLogical Router List Data Vrf Multicast Static Route> - Static route
- enable boolean
- Enable
- enable
V6 boolean - Enable v6
- igmp
Get
Logical Router List Data Vrf Multicast Igmp - Igmp
- interface
Groups GetLogical Router List Data Vrf Multicast Interface Group[] - Interface group
- mode string
- Mode
- msdp
Get
Logical Router List Data Vrf Multicast Msdp - Msdp
- pim
Get
Logical Router List Data Vrf Multicast Pim - Pim
- route
Ageout numberTime - Route ageout time
- rp
Get
Logical Router List Data Vrf Multicast Rp - Rp
- spt
Thresholds GetLogical Router List Data Vrf Multicast Spt Threshold[] - Spt threshold
- ssm
Address GetSpaces Logical Router List Data Vrf Multicast Ssm Address Space[] - Ssm address space
- static
Routes GetLogical Router List Data Vrf Multicast Static Route[] - Static route
- enable bool
- Enable
- enable_
v6 bool - Enable v6
- igmp
Get
Logical Router List Data Vrf Multicast Igmp - Igmp
- interface_
groups Sequence[GetLogical Router List Data Vrf Multicast Interface Group] - Interface group
- mode str
- Mode
- msdp
Get
Logical Router List Data Vrf Multicast Msdp - Msdp
- pim
Get
Logical Router List Data Vrf Multicast Pim - Pim
- route_
ageout_ inttime - Route ageout time
- rp
Get
Logical Router List Data Vrf Multicast Rp - Rp
- spt_
thresholds Sequence[GetLogical Router List Data Vrf Multicast Spt Threshold] - Spt threshold
- ssm_
address_ Sequence[Getspaces Logical Router List Data Vrf Multicast Ssm Address Space] - Ssm address space
- static_
routes Sequence[GetLogical Router List Data 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
GetLogicalRouterListDataVrfMulticastIgmp
- dynamic
Get
Logical Router List Data Vrf Multicast Igmp Dynamic - Dynamic
- enable boolean
- Enable
- statics
Get
Logical Router List Data Vrf Multicast Igmp Static[] - Static
- dynamic Property Map
- Dynamic
- enable Boolean
- Enable
- statics List<Property Map>
- Static
GetLogicalRouterListDataVrfMulticastIgmpDynamic
- interfaces List<Property Map>
- Interface
GetLogicalRouterListDataVrfMulticastIgmpDynamicInterface
- 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
GetLogicalRouterListDataVrfMulticastIgmpStatic
- 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
GetLogicalRouterListDataVrfMulticastInterfaceGroup
- Description string
- Description
- Group
Permission GetLogical Router List Data Vrf Multicast Interface Group Group Permission - Group permission
- Igmp
Get
Logical Router List Data Vrf Multicast Interface Group Igmp - Igmp
- Interfaces List<string>
- Interface
- Name string
- Name
- Pim
Get
Logical Router List Data Vrf Multicast Interface Group Pim - Pim
- Description string
- Description
- Group
Permission GetLogical Router List Data Vrf Multicast Interface Group Group Permission - Group permission
- Igmp
Get
Logical Router List Data Vrf Multicast Interface Group Igmp - Igmp
- Interfaces []string
- Interface
- Name string
- Name
- Pim
Get
Logical Router List Data Vrf Multicast Interface Group Pim - Pim
- description String
- Description
- group
Permission GetLogical Router List Data Vrf Multicast Interface Group Group Permission - Group permission
- igmp
Get
Logical Router List Data Vrf Multicast Interface Group Igmp - Igmp
- interfaces List<String>
- Interface
- name String
- Name
- pim
Get
Logical Router List Data Vrf Multicast Interface Group Pim - Pim
- description string
- Description
- group
Permission GetLogical Router List Data Vrf Multicast Interface Group Group Permission - Group permission
- igmp
Get
Logical Router List Data Vrf Multicast Interface Group Igmp - Igmp
- interfaces string[]
- Interface
- name string
- Name
- pim
Get
Logical Router List Data Vrf Multicast Interface Group Pim - Pim
- description str
- Description
- group_
permission GetLogical Router List Data Vrf Multicast Interface Group Group Permission - Group permission
- igmp
Get
Logical Router List Data Vrf Multicast Interface Group Igmp - Igmp
- interfaces Sequence[str]
- Interface
- name str
- Name
- pim
Get
Logical Router List Data 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
GetLogicalRouterListDataVrfMulticastInterfaceGroupGroupPermission
- any
Source List<Property Map>Multicasts - Any source multicast
- source
Specific List<Property Map>Multicasts - Source specific multicast
GetLogicalRouterListDataVrfMulticastInterfaceGroupGroupPermissionAnySourceMulticast
- 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
GetLogicalRouterListDataVrfMulticastInterfaceGroupGroupPermissionSourceSpecificMulticast
- 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
GetLogicalRouterListDataVrfMulticastInterfaceGroupIgmp
- 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
GetLogicalRouterListDataVrfMulticastInterfaceGroupPim
- Allowed
Neighbors List<GetLogical Router List Data 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 List Data 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 List Data 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 List Data 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 List Data 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
GetLogicalRouterListDataVrfMulticastInterfaceGroupPimAllowedNeighbor
- Name string
- Name
- Name string
- Name
- name String
- Name
- name string
- Name
- name str
- Name
- name String
- Name
GetLogicalRouterListDataVrfMulticastMsdp
- Enable bool
- Enable
- Global
Authentication string - Global authentication
- Global
Timer string - Global timer
- Originator
Id GetLogical Router List Data Vrf Multicast Msdp Originator Id - Originator id
- Peers
List<Get
Logical Router List Data Vrf Multicast Msdp Peer> - Peer
- Enable bool
- Enable
- Global
Authentication string - Global authentication
- Global
Timer string - Global timer
- Originator
Id GetLogical Router List Data Vrf Multicast Msdp Originator Id - Originator id
- Peers
[]Get
Logical Router List Data Vrf Multicast Msdp Peer - Peer
- enable Boolean
- Enable
- global
Authentication String - Global authentication
- global
Timer String - Global timer
- originator
Id GetLogical Router List Data Vrf Multicast Msdp Originator Id - Originator id
- peers
List<Get
Logical Router List Data Vrf Multicast Msdp Peer> - Peer
- enable boolean
- Enable
- global
Authentication string - Global authentication
- global
Timer string - Global timer
- originator
Id GetLogical Router List Data Vrf Multicast Msdp Originator Id - Originator id
- peers
Get
Logical Router List Data Vrf Multicast Msdp Peer[] - Peer
- enable bool
- Enable
- global_
authentication str - Global authentication
- global_
timer str - Global timer
- originator_
id GetLogical Router List Data Vrf Multicast Msdp Originator Id - Originator id
- peers
Sequence[Get
Logical Router List Data 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
GetLogicalRouterListDataVrfMulticastMsdpOriginatorId
- interface_ String
- Interface
- ip String
- Ip
GetLogicalRouterListDataVrfMulticastMsdpPeer
- Authentication string
- Authentication
- Enable bool
- Enable
- Inbound
Sa stringFilter - Inbound sa filter
- Local
Address GetLogical Router List Data 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 List Data 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 List Data 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 List Data 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 List Data 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 List Data 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 List Data 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 List Data 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 List Data 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 List Data 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
GetLogicalRouterListDataVrfMulticastMsdpPeerLocalAddress
- interface_ String
- Interface
- ip String
- Ip
GetLogicalRouterListDataVrfMulticastMsdpPeerPeerAddress
GetLogicalRouterListDataVrfMulticastPim
- Enable bool
- Enable
- Group
Permission string - Group permission
- If
Timer stringGlobal - If timer global
- Interfaces
List<Get
Logical Router List Data Vrf Multicast Pim Interface> - Interface
- Route
Ageout intTime - Route ageout time
- Rp
Get
Logical Router List Data Vrf Multicast Pim Rp - Rp
- Rpf
Lookup stringMode - Rpf lookup mode
- Spt
Thresholds List<GetLogical Router List Data Vrf Multicast Pim Spt Threshold> - Spt threshold
- Ssm
Address GetSpace Logical Router List Data 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 List Data Vrf Multicast Pim Interface - Interface
- Route
Ageout intTime - Route ageout time
- Rp
Get
Logical Router List Data Vrf Multicast Pim Rp - Rp
- Rpf
Lookup stringMode - Rpf lookup mode
- Spt
Thresholds []GetLogical Router List Data Vrf Multicast Pim Spt Threshold - Spt threshold
- Ssm
Address GetSpace Logical Router List Data 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 List Data Vrf Multicast Pim Interface> - Interface
- route
Ageout IntegerTime - Route ageout time
- rp
Get
Logical Router List Data Vrf Multicast Pim Rp - Rp
- rpf
Lookup StringMode - Rpf lookup mode
- spt
Thresholds List<GetLogical Router List Data Vrf Multicast Pim Spt Threshold> - Spt threshold
- ssm
Address GetSpace Logical Router List Data 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 List Data Vrf Multicast Pim Interface[] - Interface
- route
Ageout numberTime - Route ageout time
- rp
Get
Logical Router List Data Vrf Multicast Pim Rp - Rp
- rpf
Lookup stringMode - Rpf lookup mode
- spt
Thresholds GetLogical Router List Data Vrf Multicast Pim Spt Threshold[] - Spt threshold
- ssm
Address GetSpace Logical Router List Data 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 List Data Vrf Multicast Pim Interface] - Interface
- route_
ageout_ inttime - Route ageout time
- rp
Get
Logical Router List Data Vrf Multicast Pim Rp - Rp
- rpf_
lookup_ strmode - Rpf lookup mode
- spt_
thresholds Sequence[GetLogical Router List Data Vrf Multicast Pim Spt Threshold] - Spt threshold
- ssm_
address_ Getspace Logical Router List Data 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
GetLogicalRouterListDataVrfMulticastPimInterface
- 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
GetLogicalRouterListDataVrfMulticastPimRp
- external
Rps List<Property Map> - External rp
- local
Rp Property Map - Local rp
GetLogicalRouterListDataVrfMulticastPimRpExternalRp
- group_
list str - Group list
- name str
- Name
- override bool
- Override
GetLogicalRouterListDataVrfMulticastPimRpLocalRp
- candidate
Rp Property Map - Candidate rp
- static
Rp Property Map - Static rp
GetLogicalRouterListDataVrfMulticastPimRpLocalRpCandidateRp
- 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
GetLogicalRouterListDataVrfMulticastPimRpLocalRpStaticRp
- 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
GetLogicalRouterListDataVrfMulticastPimSptThreshold
GetLogicalRouterListDataVrfMulticastPimSsmAddressSpace
- 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
GetLogicalRouterListDataVrfMulticastRp
- external
Rps List<Property Map> - External rp
- local
Rp Property Map - Local rp
GetLogicalRouterListDataVrfMulticastRpExternalRp
- 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
GetLogicalRouterListDataVrfMulticastRpLocalRp
- candidate
Rp Property Map - Candidate rp
- static
Rp Property Map - Static rp
GetLogicalRouterListDataVrfMulticastRpLocalRpCandidateRp
- 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
GetLogicalRouterListDataVrfMulticastRpLocalRpStaticRp
- 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
GetLogicalRouterListDataVrfMulticastSptThreshold
GetLogicalRouterListDataVrfMulticastSsmAddressSpace
- 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
GetLogicalRouterListDataVrfMulticastStaticRoute
- Destination string
- Destination
- Interface string
- Interface
- Name string
- Name
- Nexthop
Get
Logical Router List Data Vrf Multicast Static Route Nexthop - Nexthop
- Preference int
- Preference
- Destination string
- Destination
- Interface string
- Interface
- Name string
- Name
- Nexthop
Get
Logical Router List Data Vrf Multicast Static Route Nexthop - Nexthop
- Preference int
- Preference
- destination String
- Destination
- interface_ String
- Interface
- name String
- Name
- nexthop
Get
Logical Router List Data Vrf Multicast Static Route Nexthop - Nexthop
- preference Integer
- Preference
- destination string
- Destination
- interface string
- Interface
- name string
- Name
- nexthop
Get
Logical Router List Data Vrf Multicast Static Route Nexthop - Nexthop
- preference number
- Preference
- destination str
- Destination
- interface str
- Interface
- name str
- Name
- nexthop
Get
Logical Router List Data 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
GetLogicalRouterListDataVrfMulticastStaticRouteNexthop
- 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
GetLogicalRouterListDataVrfOspf
- Allow
Redist boolDefault Route - Allow redist default route
- Areas
List<Get
Logical Router List Data Vrf Ospf Area> - Area
- Auth
Profiles List<GetLogical Router List Data Vrf Ospf Auth Profile> - Auth profile
- Enable bool
- Enable
- Export
Rules List<GetLogical Router List Data Vrf Ospf Export Rule> - Export rules
- Flood
Prevention GetLogical Router List Data Vrf Ospf Flood Prevention - Flood prevention
- Global
Bfd GetLogical Router List Data Vrf Ospf Global Bfd - Global bfd
- Global
If stringTimer - Global if timer
- Graceful
Restart GetLogical Router List Data 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 List Data Vrf Ospf Vr Timers - Vr timers
- Allow
Redist boolDefault Route - Allow redist default route
- Areas
[]Get
Logical Router List Data Vrf Ospf Area - Area
- Auth
Profiles []GetLogical Router List Data Vrf Ospf Auth Profile - Auth profile
- Enable bool
- Enable
- Export
Rules []GetLogical Router List Data Vrf Ospf Export Rule - Export rules
- Flood
Prevention GetLogical Router List Data Vrf Ospf Flood Prevention - Flood prevention
- Global
Bfd GetLogical Router List Data Vrf Ospf Global Bfd - Global bfd
- Global
If stringTimer - Global if timer
- Graceful
Restart GetLogical Router List Data 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 List Data Vrf Ospf Vr Timers - Vr timers
- allow
Redist BooleanDefault Route - Allow redist default route
- areas
List<Get
Logical Router List Data Vrf Ospf Area> - Area
- auth
Profiles List<GetLogical Router List Data Vrf Ospf Auth Profile> - Auth profile
- enable Boolean
- Enable
- export
Rules List<GetLogical Router List Data Vrf Ospf Export Rule> - Export rules
- flood
Prevention GetLogical Router List Data Vrf Ospf Flood Prevention - Flood prevention
- global
Bfd GetLogical Router List Data Vrf Ospf Global Bfd - Global bfd
- global
If StringTimer - Global if timer
- graceful
Restart GetLogical Router List Data 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 List Data Vrf Ospf Vr Timers - Vr timers
- allow
Redist booleanDefault Route - Allow redist default route
- areas
Get
Logical Router List Data Vrf Ospf Area[] - Area
- auth
Profiles GetLogical Router List Data Vrf Ospf Auth Profile[] - Auth profile
- enable boolean
- Enable
- export
Rules GetLogical Router List Data Vrf Ospf Export Rule[] - Export rules
- flood
Prevention GetLogical Router List Data Vrf Ospf Flood Prevention - Flood prevention
- global
Bfd GetLogical Router List Data Vrf Ospf Global Bfd - Global bfd
- global
If stringTimer - Global if timer
- graceful
Restart GetLogical Router List Data 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 List Data Vrf Ospf Vr Timers - Vr timers
- allow_
redist_ booldefault_ route - Allow redist default route
- areas
Sequence[Get
Logical Router List Data Vrf Ospf Area] - Area
- auth_
profiles Sequence[GetLogical Router List Data Vrf Ospf Auth Profile] - Auth profile
- enable bool
- Enable
- export_
rules Sequence[GetLogical Router List Data Vrf Ospf Export Rule] - Export rules
- flood_
prevention GetLogical Router List Data Vrf Ospf Flood Prevention - Flood prevention
- global_
bfd GetLogical Router List Data Vrf Ospf Global Bfd - Global bfd
- global_
if_ strtimer - Global if timer
- graceful_
restart GetLogical Router List Data 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 List Data 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
GetLogicalRouterListDataVrfOspfArea
- Authentication string
- Authentication
- Interfaces
List<Get
Logical Router List Data Vrf Ospf Area Interface> - Interface
- Name string
- Name
- Ranges
List<Get
Logical Router List Data Vrf Ospf Area Range> - Range
- Type
Get
Logical Router List Data Vrf Ospf Area Type - Type
- Virtual
Links List<GetLogical Router List Data Vrf Ospf Area Virtual Link> - Virtual link
- Vr
Ranges List<GetLogical Router List Data Vrf Ospf Area Vr Range> - Vr range
- Authentication string
- Authentication
- Interfaces
[]Get
Logical Router List Data Vrf Ospf Area Interface - Interface
- Name string
- Name
- Ranges
[]Get
Logical Router List Data Vrf Ospf Area Range - Range
- Type
Get
Logical Router List Data Vrf Ospf Area Type - Type
- Virtual
Links []GetLogical Router List Data Vrf Ospf Area Virtual Link - Virtual link
- Vr
Ranges []GetLogical Router List Data Vrf Ospf Area Vr Range - Vr range
- authentication String
- Authentication
- interfaces
List<Get
Logical Router List Data Vrf Ospf Area Interface> - Interface
- name String
- Name
- ranges
List<Get
Logical Router List Data Vrf Ospf Area Range> - Range
- type
Get
Logical Router List Data Vrf Ospf Area Type - Type
- virtual
Links List<GetLogical Router List Data Vrf Ospf Area Virtual Link> - Virtual link
- vr
Ranges List<GetLogical Router List Data Vrf Ospf Area Vr Range> - Vr range
- authentication string
- Authentication
- interfaces
Get
Logical Router List Data Vrf Ospf Area Interface[] - Interface
- name string
- Name
- ranges
Get
Logical Router List Data Vrf Ospf Area Range[] - Range
- type
Get
Logical Router List Data Vrf Ospf Area Type - Type
- virtual
Links GetLogical Router List Data Vrf Ospf Area Virtual Link[] - Virtual link
- vr
Ranges GetLogical Router List Data Vrf Ospf Area Vr Range[] - Vr range
- authentication str
- Authentication
- interfaces
Sequence[Get
Logical Router List Data Vrf Ospf Area Interface] - Interface
- name str
- Name
- ranges
Sequence[Get
Logical Router List Data Vrf Ospf Area Range] - Range
- type
Get
Logical Router List Data Vrf Ospf Area Type - Type
- virtual_
links Sequence[GetLogical Router List Data Vrf Ospf Area Virtual Link] - Virtual link
- vr_
ranges Sequence[GetLogical Router List Data 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
GetLogicalRouterListDataVrfOspfAreaInterface
- Authentication string
- Authentication
- Bfd
Get
Logical Router List Data Vrf Ospf Area Interface Bfd - Bfd
- Enable bool
- Enable
- Link
Type GetLogical Router List Data 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 List Data Vrf Ospf Area Interface Vr Timing - Vr timing
- Authentication string
- Authentication
- Bfd
Get
Logical Router List Data Vrf Ospf Area Interface Bfd - Bfd
- Enable bool
- Enable
- Link
Type GetLogical Router List Data 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 List Data Vrf Ospf Area Interface Vr Timing - Vr timing
- authentication String
- Authentication
- bfd
Get
Logical Router List Data Vrf Ospf Area Interface Bfd - Bfd
- enable Boolean
- Enable
- link
Type GetLogical Router List Data 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 List Data Vrf Ospf Area Interface Vr Timing - Vr timing
- authentication string
- Authentication
- bfd
Get
Logical Router List Data Vrf Ospf Area Interface Bfd - Bfd
- enable boolean
- Enable
- link
Type GetLogical Router List Data 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 List Data Vrf Ospf Area Interface Vr Timing - Vr timing
- authentication str
- Authentication
- bfd
Get
Logical Router List Data Vrf Ospf Area Interface Bfd - Bfd
- enable bool
- Enable
- link_
type GetLogical Router List Data 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 List Data 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
GetLogicalRouterListDataVrfOspfAreaInterfaceBfd
- Profile string
- Profile
- Profile string
- Profile
- profile String
- Profile
- profile string
- Profile
- profile str
- Profile
- profile String
- Profile
GetLogicalRouterListDataVrfOspfAreaInterfaceLinkType
- broadcast Property Map
- Broadcast
- p2mp Property Map
- P2mp
- p2p Property Map
- P2p
GetLogicalRouterListDataVrfOspfAreaInterfaceLinkTypeP2mp
- neighbors List<Property Map>
- Neighbor
GetLogicalRouterListDataVrfOspfAreaInterfaceLinkTypeP2mpNeighbor
GetLogicalRouterListDataVrfOspfAreaInterfaceVrTiming
- 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
GetLogicalRouterListDataVrfOspfAreaRange
- 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
GetLogicalRouterListDataVrfOspfAreaType
- normal Property Map
- Normal
- nssa Property Map
- Nssa
- stub Property Map
- Stub
GetLogicalRouterListDataVrfOspfAreaTypeNormal
- abr Property Map
- Abr
GetLogicalRouterListDataVrfOspfAreaTypeNormalAbr
- 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
GetLogicalRouterListDataVrfOspfAreaTypeNssa
- Abr
Get
Logical Router List Data Vrf Ospf Area Type Nssa Abr - Abr
- Accept
Summary bool - Accept summary
- Default
Information GetOriginate Logical Router List Data Vrf Ospf Area Type Nssa Default Information Originate - Default information originate
- Default
Route GetLogical Router List Data Vrf Ospf Area Type Nssa Default Route - Default route
- No
Summary bool - No summary
- Nssa
Ext List<GetRanges Logical Router List Data Vrf Ospf Area Type Nssa Nssa Ext Range> - Nssa ext range
- Abr
Get
Logical Router List Data Vrf Ospf Area Type Nssa Abr - Abr
- Accept
Summary bool - Accept summary
- Default
Information GetOriginate Logical Router List Data Vrf Ospf Area Type Nssa Default Information Originate - Default information originate
- Default
Route GetLogical Router List Data Vrf Ospf Area Type Nssa Default Route - Default route
- No
Summary bool - No summary
- Nssa
Ext []GetRanges Logical Router List Data Vrf Ospf Area Type Nssa Nssa Ext Range - Nssa ext range
- abr
Get
Logical Router List Data Vrf Ospf Area Type Nssa Abr - Abr
- accept
Summary Boolean - Accept summary
- default
Information GetOriginate Logical Router List Data Vrf Ospf Area Type Nssa Default Information Originate - Default information originate
- default
Route GetLogical Router List Data Vrf Ospf Area Type Nssa Default Route - Default route
- no
Summary Boolean - No summary
- nssa
Ext List<GetRanges Logical Router List Data Vrf Ospf Area Type Nssa Nssa Ext Range> - Nssa ext range
- abr
Get
Logical Router List Data Vrf Ospf Area Type Nssa Abr - Abr
- accept
Summary boolean - Accept summary
- default
Information GetOriginate Logical Router List Data Vrf Ospf Area Type Nssa Default Information Originate - Default information originate
- default
Route GetLogical Router List Data Vrf Ospf Area Type Nssa Default Route - Default route
- no
Summary boolean - No summary
- nssa
Ext GetRanges Logical Router List Data Vrf Ospf Area Type Nssa Nssa Ext Range[] - Nssa ext range
- abr
Get
Logical Router List Data Vrf Ospf Area Type Nssa Abr - Abr
- accept_
summary bool - Accept summary
- default_
information_ Getoriginate Logical Router List Data Vrf Ospf Area Type Nssa Default Information Originate - Default information originate
- default_
route GetLogical Router List Data Vrf Ospf Area Type Nssa Default Route - Default route
- no_
summary bool - No summary
- nssa_
ext_ Sequence[Getranges Logical Router List Data 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
GetLogicalRouterListDataVrfOspfAreaTypeNssaAbr
- Export
List string - Export list
- Import
List string - Import list
- Inbound
Filter stringList - Inbound filter list
- Nssa
Ext List<GetRanges Logical Router List Data 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 List Data 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 List Data 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 List Data 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 List Data 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
GetLogicalRouterListDataVrfOspfAreaTypeNssaAbrNssaExtRange
GetLogicalRouterListDataVrfOspfAreaTypeNssaDefaultInformationOriginate
- 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
GetLogicalRouterListDataVrfOspfAreaTypeNssaDefaultRoute
- advertise Property Map
- Advertise
- disable Property Map
- Disable
GetLogicalRouterListDataVrfOspfAreaTypeNssaDefaultRouteAdvertise
GetLogicalRouterListDataVrfOspfAreaTypeNssaNssaExtRange
- advertise Property Map
- Advertise
- name String
- Name
- suppress Property Map
- Suppress
GetLogicalRouterListDataVrfOspfAreaTypeStub
- Abr
Get
Logical Router List Data Vrf Ospf Area Type Stub Abr - Abr
- Accept
Summary bool - Accept summary
- Default
Route GetLogical Router List Data Vrf Ospf Area Type Stub Default Route - Default route
- Default
Route intMetric - Default route metric
- No
Summary bool - No summary
- Abr
Get
Logical Router List Data Vrf Ospf Area Type Stub Abr - Abr
- Accept
Summary bool - Accept summary
- Default
Route GetLogical Router List Data Vrf Ospf Area Type Stub Default Route - Default route
- Default
Route intMetric - Default route metric
- No
Summary bool - No summary
- abr
Get
Logical Router List Data Vrf Ospf Area Type Stub Abr - Abr
- accept
Summary Boolean - Accept summary
- default
Route GetLogical Router List Data Vrf Ospf Area Type Stub Default Route - Default route
- default
Route IntegerMetric - Default route metric
- no
Summary Boolean - No summary
- abr
Get
Logical Router List Data Vrf Ospf Area Type Stub Abr - Abr
- accept
Summary boolean - Accept summary
- default
Route GetLogical Router List Data Vrf Ospf Area Type Stub Default Route - Default route
- default
Route numberMetric - Default route metric
- no
Summary boolean - No summary
- abr
Get
Logical Router List Data Vrf Ospf Area Type Stub Abr - Abr
- accept_
summary bool - Accept summary
- default_
route GetLogical Router List Data 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
GetLogicalRouterListDataVrfOspfAreaTypeStubAbr
- 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
GetLogicalRouterListDataVrfOspfAreaTypeStubDefaultRoute
- advertise Property Map
- Advertise
- disable Property Map
- Disable
GetLogicalRouterListDataVrfOspfAreaTypeStubDefaultRouteAdvertise
- Metric int
- Metric
- Metric int
- Metric
- metric Integer
- Metric
- metric number
- Metric
- metric int
- Metric
- metric Number
- Metric
GetLogicalRouterListDataVrfOspfAreaVirtualLink
- Authentication string
- Authentication
- Bfd
Get
Logical Router List Data 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 List Data Vrf Ospf Area Virtual Link Vr Timing - Vr timing
- Authentication string
- Authentication
- Bfd
Get
Logical Router List Data 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 List Data Vrf Ospf Area Virtual Link Vr Timing - Vr timing
- authentication String
- Authentication
- bfd
Get
Logical Router List Data 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 List Data Vrf Ospf Area Virtual Link Vr Timing - Vr timing
- authentication string
- Authentication
- bfd
Get
Logical Router List Data 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 List Data Vrf Ospf Area Virtual Link Vr Timing - Vr timing
- authentication str
- Authentication
- bfd
Get
Logical Router List Data 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 List Data 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
GetLogicalRouterListDataVrfOspfAreaVirtualLinkBfd
- Profile string
- Profile
- Profile string
- Profile
- profile String
- Profile
- profile string
- Profile
- profile str
- Profile
- profile String
- Profile
GetLogicalRouterListDataVrfOspfAreaVirtualLinkVrTiming
- 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
GetLogicalRouterListDataVrfOspfAreaVrRange
- advertise Property Map
- Advertise
- name String
- Name
- suppress Property Map
- Suppress
GetLogicalRouterListDataVrfOspfAuthProfile
- Md5s
List<Get
Logical Router List Data Vrf Ospf Auth Profile Md5> - Md5
- Name string
- Name
- Password string
- Password
- Md5s
[]Get
Logical Router List Data Vrf Ospf Auth Profile Md5 - Md5
- Name string
- Name
- Password string
- Password
- md5s
List<Get
Logical Router List Data Vrf Ospf Auth Profile Md5> - Md5
- name String
- Name
- password String
- Password
- md5s
Get
Logical Router List Data Vrf Ospf Auth Profile Md5[] - Md5
- name string
- Name
- password string
- Password
- md5s
Sequence[Get
Logical Router List Data Vrf Ospf Auth Profile Md5] - Md5
- name str
- Name
- password str
- Password
- md5s List<Property Map>
- Md5
- name String
- Name
- password String
- Password
GetLogicalRouterListDataVrfOspfAuthProfileMd5
GetLogicalRouterListDataVrfOspfExportRule
- 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
GetLogicalRouterListDataVrfOspfFloodPrevention
- hello Property Map
- Hello
- lsa Property Map
- Lsa
GetLogicalRouterListDataVrfOspfFloodPreventionHello
- enable bool
- Enable
- max_
packet int - Max packet
GetLogicalRouterListDataVrfOspfFloodPreventionLsa
- enable bool
- Enable
- max_
packet int - Max packet
GetLogicalRouterListDataVrfOspfGlobalBfd
- Profile string
- Profile
- Profile string
- Profile
- profile String
- Profile
- profile string
- Profile
- profile str
- Profile
- profile String
- Profile
GetLogicalRouterListDataVrfOspfGracefulRestart
- 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
GetLogicalRouterListDataVrfOspfVrTimers
- 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
GetLogicalRouterListDataVrfOspfv3
- Allow
Redist boolDefault Route - Allow redist default route
- Areas
List<Get
Logical Router List Data Vrf Ospfv3Area> - Area
- Auth
Profiles List<GetLogical Router List Data Vrf Ospfv3Auth Profile> - Auth profile
- Disable
Transit boolTraffic - Disable transit traffic
- Enable bool
- Enable
- Export
Rules List<GetLogical Router List Data Vrf Ospfv3Export Rule> - Export rules
- Global
Bfd GetLogical Router List Data Vrf Ospfv3Global Bfd - Global bfd
- Global
If stringTimer - Global if timer
- Graceful
Restart GetLogical Router List Data 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 List Data Vrf Ospfv3Vr Timers - Vr timers
- Allow
Redist boolDefault Route - Allow redist default route
- Areas
[]Get
Logical Router List Data Vrf Ospfv3Area - Area
- Auth
Profiles []GetLogical Router List Data Vrf Ospfv3Auth Profile - Auth profile
- Disable
Transit boolTraffic - Disable transit traffic
- Enable bool
- Enable
- Export
Rules []GetLogical Router List Data Vrf Ospfv3Export Rule - Export rules
- Global
Bfd GetLogical Router List Data Vrf Ospfv3Global Bfd - Global bfd
- Global
If stringTimer - Global if timer
- Graceful
Restart GetLogical Router List Data 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 List Data Vrf Ospfv3Vr Timers - Vr timers
- allow
Redist BooleanDefault Route - Allow redist default route
- areas
List<Get
Logical Router List Data Vrf Ospfv3Area> - Area
- auth
Profiles List<GetLogical Router List Data Vrf Ospfv3Auth Profile> - Auth profile
- disable
Transit BooleanTraffic - Disable transit traffic
- enable Boolean
- Enable
- export
Rules List<GetLogical Router List Data Vrf Ospfv3Export Rule> - Export rules
- global
Bfd GetLogical Router List Data Vrf Ospfv3Global Bfd - Global bfd
- global
If StringTimer - Global if timer
- graceful
Restart GetLogical Router List Data 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 List Data Vrf Ospfv3Vr Timers - Vr timers
- allow
Redist booleanDefault Route - Allow redist default route
- areas
Get
Logical Router List Data Vrf Ospfv3Area[] - Area
- auth
Profiles GetLogical Router List Data Vrf Ospfv3Auth Profile[] - Auth profile
- disable
Transit booleanTraffic - Disable transit traffic
- enable boolean
- Enable
- export
Rules GetLogical Router List Data Vrf Ospfv3Export Rule[] - Export rules
- global
Bfd GetLogical Router List Data Vrf Ospfv3Global Bfd - Global bfd
- global
If stringTimer - Global if timer
- graceful
Restart GetLogical Router List Data 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 List Data Vrf Ospfv3Vr Timers - Vr timers
- allow_
redist_ booldefault_ route - Allow redist default route
- areas
Sequence[Get
Logical Router List Data Vrf Ospfv3Area] - Area
- auth_
profiles Sequence[GetLogical Router List Data Vrf Ospfv3Auth Profile] - Auth profile
- disable_
transit_ booltraffic - Disable transit traffic
- enable bool
- Enable
- export_
rules Sequence[GetLogical Router List Data Vrf Ospfv3Export Rule] - Export rules
- global_
bfd GetLogical Router List Data Vrf Ospfv3Global Bfd - Global bfd
- global_
if_ strtimer - Global if timer
- graceful_
restart GetLogical Router List Data 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 List Data 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
GetLogicalRouterListDataVrfOspfv3Area
- Authentication string
- Authentication
- Interfaces
List<Get
Logical Router List Data Vrf Ospfv3Area Interface> - Interface
- Name string
- Name
- Ranges
List<Get
Logical Router List Data Vrf Ospfv3Area Range> - Range
- Type
Get
Logical Router List Data Vrf Ospfv3Area Type - Type
- Virtual
Links List<GetLogical Router List Data Vrf Ospfv3Area Virtual Link> - Virtual link
- Vr
Ranges List<GetLogical Router List Data Vrf Ospfv3Area Vr Range> - Vr range
- Authentication string
- Authentication
- Interfaces
[]Get
Logical Router List Data Vrf Ospfv3Area Interface - Interface
- Name string
- Name
- Ranges
[]Get
Logical Router List Data Vrf Ospfv3Area Range - Range
- Type
Get
Logical Router List Data Vrf Ospfv3Area Type - Type
- Virtual
Links []GetLogical Router List Data Vrf Ospfv3Area Virtual Link - Virtual link
- Vr
Ranges []GetLogical Router List Data Vrf Ospfv3Area Vr Range - Vr range
- authentication String
- Authentication
- interfaces
List<Get
Logical Router List Data Vrf Ospfv3Area Interface> - Interface
- name String
- Name
- ranges
List<Get
Logical Router List Data Vrf Ospfv3Area Range> - Range
- type
Get
Logical Router List Data Vrf Ospfv3Area Type - Type
- virtual
Links List<GetLogical Router List Data Vrf Ospfv3Area Virtual Link> - Virtual link
- vr
Ranges List<GetLogical Router List Data Vrf Ospfv3Area Vr Range> - Vr range
- authentication string
- Authentication
- interfaces
Get
Logical Router List Data Vrf Ospfv3Area Interface[] - Interface
- name string
- Name
- ranges
Get
Logical Router List Data Vrf Ospfv3Area Range[] - Range
- type
Get
Logical Router List Data Vrf Ospfv3Area Type - Type
- virtual
Links GetLogical Router List Data Vrf Ospfv3Area Virtual Link[] - Virtual link
- vr
Ranges GetLogical Router List Data Vrf Ospfv3Area Vr Range[] - Vr range
- authentication str
- Authentication
- interfaces
Sequence[Get
Logical Router List Data Vrf Ospfv3Area Interface] - Interface
- name str
- Name
- ranges
Sequence[Get
Logical Router List Data Vrf Ospfv3Area Range] - Range
- type
Get
Logical Router List Data Vrf Ospfv3Area Type - Type
- virtual_
links Sequence[GetLogical Router List Data Vrf Ospfv3Area Virtual Link] - Virtual link
- vr_
ranges Sequence[GetLogical Router List Data 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
GetLogicalRouterListDataVrfOspfv3AreaInterface
- Authentication string
- Authentication
- Bfd
Get
Logical Router List Data Vrf Ospfv3Area Interface Bfd - Bfd
- Enable bool
- Enable
- Instance
Id int - Instance id
- Link
Type GetLogical Router List Data Vrf Ospfv3Area Interface Link Type - Link type
- Metric int
- Metric
- Mtu
Ignore bool - Mtu ignore
- Name string
- Name
- Neighbors
List<Get
Logical Router List Data Vrf Ospfv3Area Interface Neighbor> - Neighbor
- Passive bool
- Passive
- Priority int
- Priority
- Timing string
- Timing
- Vr
Timing GetLogical Router List Data Vrf Ospfv3Area Interface Vr Timing - Vr timing
- Authentication string
- Authentication
- Bfd
Get
Logical Router List Data Vrf Ospfv3Area Interface Bfd - Bfd
- Enable bool
- Enable
- Instance
Id int - Instance id
- Link
Type GetLogical Router List Data Vrf Ospfv3Area Interface Link Type - Link type
- Metric int
- Metric
- Mtu
Ignore bool - Mtu ignore
- Name string
- Name
- Neighbors
[]Get
Logical Router List Data Vrf Ospfv3Area Interface Neighbor - Neighbor
- Passive bool
- Passive
- Priority int
- Priority
- Timing string
- Timing
- Vr
Timing GetLogical Router List Data Vrf Ospfv3Area Interface Vr Timing - Vr timing
- authentication String
- Authentication
- bfd
Get
Logical Router List Data Vrf Ospfv3Area Interface Bfd - Bfd
- enable Boolean
- Enable
- instance
Id Integer - Instance id
- link
Type GetLogical Router List Data Vrf Ospfv3Area Interface Link Type - Link type
- metric Integer
- Metric
- mtu
Ignore Boolean - Mtu ignore
- name String
- Name
- neighbors
List<Get
Logical Router List Data Vrf Ospfv3Area Interface Neighbor> - Neighbor
- passive Boolean
- Passive
- priority Integer
- Priority
- timing String
- Timing
- vr
Timing GetLogical Router List Data Vrf Ospfv3Area Interface Vr Timing - Vr timing
- authentication string
- Authentication
- bfd
Get
Logical Router List Data Vrf Ospfv3Area Interface Bfd - Bfd
- enable boolean
- Enable
- instance
Id number - Instance id
- link
Type GetLogical Router List Data Vrf Ospfv3Area Interface Link Type - Link type
- metric number
- Metric
- mtu
Ignore boolean - Mtu ignore
- name string
- Name
- neighbors
Get
Logical Router List Data Vrf Ospfv3Area Interface Neighbor[] - Neighbor
- passive boolean
- Passive
- priority number
- Priority
- timing string
- Timing
- vr
Timing GetLogical Router List Data Vrf Ospfv3Area Interface Vr Timing - Vr timing
- authentication str
- Authentication
- bfd
Get
Logical Router List Data Vrf Ospfv3Area Interface Bfd - Bfd
- enable bool
- Enable
- instance_
id int - Instance id
- link_
type GetLogical Router List Data Vrf Ospfv3Area Interface Link Type - Link type
- metric int
- Metric
- mtu_
ignore bool - Mtu ignore
- name str
- Name
- neighbors
Sequence[Get
Logical Router List Data Vrf Ospfv3Area Interface Neighbor] - Neighbor
- passive bool
- Passive
- priority int
- Priority
- timing str
- Timing
- vr_
timing GetLogical Router List Data 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
GetLogicalRouterListDataVrfOspfv3AreaInterfaceBfd
- Profile string
- Profile
- Profile string
- Profile
- profile String
- Profile
- profile string
- Profile
- profile str
- Profile
- profile String
- Profile
GetLogicalRouterListDataVrfOspfv3AreaInterfaceLinkType
- broadcast Property Map
- Broadcast
- p2mp Property Map
- P2mp
- p2p Property Map
- P2p
GetLogicalRouterListDataVrfOspfv3AreaInterfaceLinkTypeP2mp
- neighbors List<Property Map>
- Neighbor
GetLogicalRouterListDataVrfOspfv3AreaInterfaceLinkTypeP2mpNeighbor
GetLogicalRouterListDataVrfOspfv3AreaInterfaceNeighbor
- Name string
- Name
- Name string
- Name
- name String
- Name
- name string
- Name
- name str
- Name
- name String
- Name
GetLogicalRouterListDataVrfOspfv3AreaInterfaceVrTiming
- 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
GetLogicalRouterListDataVrfOspfv3AreaRange
GetLogicalRouterListDataVrfOspfv3AreaType
- normal Property Map
- Normal
- nssa Property Map
- Nssa
- stub Property Map
- Stub
GetLogicalRouterListDataVrfOspfv3AreaTypeNormal
- abr Property Map
- Abr
GetLogicalRouterListDataVrfOspfv3AreaTypeNormalAbr
- 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
GetLogicalRouterListDataVrfOspfv3AreaTypeNssa
- Abr
Get
Logical Router List Data Vrf Ospfv3Area Type Nssa Abr - Abr
- Accept
Summary bool - Accept summary
- Default
Information GetOriginate Logical Router List Data Vrf Ospfv3Area Type Nssa Default Information Originate - Default information originate
- Default
Route GetLogical Router List Data Vrf Ospfv3Area Type Nssa Default Route - Default route
- No
Summary bool - No summary
- Nssa
Ext List<GetRanges Logical Router List Data Vrf Ospfv3Area Type Nssa Nssa Ext Range> - Nssa ext range
- Abr
Get
Logical Router List Data Vrf Ospfv3Area Type Nssa Abr - Abr
- Accept
Summary bool - Accept summary
- Default
Information GetOriginate Logical Router List Data Vrf Ospfv3Area Type Nssa Default Information Originate - Default information originate
- Default
Route GetLogical Router List Data Vrf Ospfv3Area Type Nssa Default Route - Default route
- No
Summary bool - No summary
- Nssa
Ext []GetRanges Logical Router List Data Vrf Ospfv3Area Type Nssa Nssa Ext Range - Nssa ext range
- abr
Get
Logical Router List Data Vrf Ospfv3Area Type Nssa Abr - Abr
- accept
Summary Boolean - Accept summary
- default
Information GetOriginate Logical Router List Data Vrf Ospfv3Area Type Nssa Default Information Originate - Default information originate
- default
Route GetLogical Router List Data Vrf Ospfv3Area Type Nssa Default Route - Default route
- no
Summary Boolean - No summary
- nssa
Ext List<GetRanges Logical Router List Data Vrf Ospfv3Area Type Nssa Nssa Ext Range> - Nssa ext range
- abr
Get
Logical Router List Data Vrf Ospfv3Area Type Nssa Abr - Abr
- accept
Summary boolean - Accept summary
- default
Information GetOriginate Logical Router List Data Vrf Ospfv3Area Type Nssa Default Information Originate - Default information originate
- default
Route GetLogical Router List Data Vrf Ospfv3Area Type Nssa Default Route - Default route
- no
Summary boolean - No summary
- nssa
Ext GetRanges Logical Router List Data Vrf Ospfv3Area Type Nssa Nssa Ext Range[] - Nssa ext range
- abr
Get
Logical Router List Data Vrf Ospfv3Area Type Nssa Abr - Abr
- accept_
summary bool - Accept summary
- default_
information_ Getoriginate Logical Router List Data Vrf Ospfv3Area Type Nssa Default Information Originate - Default information originate
- default_
route GetLogical Router List Data Vrf Ospfv3Area Type Nssa Default Route - Default route
- no_
summary bool - No summary
- nssa_
ext_ Sequence[Getranges Logical Router List Data 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
GetLogicalRouterListDataVrfOspfv3AreaTypeNssaAbr
- Export
List string - Export list
- Import
List string - Import list
- Inbound
Filter stringList - Inbound filter list
- Nssa
Ext List<GetRanges Logical Router List Data 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 List Data 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 List Data 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 List Data 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 List Data 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
GetLogicalRouterListDataVrfOspfv3AreaTypeNssaAbrNssaExtRange
- Advertise
Get
Logical Router List Data Vrf Ospfv3Area Type Nssa Abr Nssa Ext Range Advertise - Advertise
- Name string
- Name
- Route
Tag int - Route tag
- Suppress
Get
Logical Router List Data Vrf Ospfv3Area Type Nssa Abr Nssa Ext Range Suppress - Suppress
- Advertise
Get
Logical Router List Data Vrf Ospfv3Area Type Nssa Abr Nssa Ext Range Advertise - Advertise
- Name string
- Name
- Route
Tag int - Route tag
- Suppress
Get
Logical Router List Data Vrf Ospfv3Area Type Nssa Abr Nssa Ext Range Suppress - Suppress
- advertise
Get
Logical Router List Data Vrf Ospfv3Area Type Nssa Abr Nssa Ext Range Advertise - Advertise
- name String
- Name
- route
Tag Integer - Route tag
- suppress
Get
Logical Router List Data Vrf Ospfv3Area Type Nssa Abr Nssa Ext Range Suppress - Suppress
- advertise
Get
Logical Router List Data Vrf Ospfv3Area Type Nssa Abr Nssa Ext Range Advertise - Advertise
- name string
- Name
- route
Tag number - Route tag
- suppress
Get
Logical Router List Data 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
GetLogicalRouterListDataVrfOspfv3AreaTypeNssaDefaultInformationOriginate
- 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
GetLogicalRouterListDataVrfOspfv3AreaTypeNssaDefaultRoute
- advertise Property Map
- Advertise
- disable Property Map
- Disable
GetLogicalRouterListDataVrfOspfv3AreaTypeNssaDefaultRouteAdvertise
GetLogicalRouterListDataVrfOspfv3AreaTypeNssaNssaExtRange
- Advertise
Get
Logical Router List Data Vrf Ospfv3Area Type Nssa Nssa Ext Range Advertise - Advertise
- Name string
- Name
- Route
Tag int - Route tag
- Suppress
Get
Logical Router List Data Vrf Ospfv3Area Type Nssa Nssa Ext Range Suppress - Suppress
- Advertise
Get
Logical Router List Data Vrf Ospfv3Area Type Nssa Nssa Ext Range Advertise - Advertise
- Name string
- Name
- Route
Tag int - Route tag
- Suppress
Get
Logical Router List Data Vrf Ospfv3Area Type Nssa Nssa Ext Range Suppress - Suppress
- advertise
Get
Logical Router List Data Vrf Ospfv3Area Type Nssa Nssa Ext Range Advertise - Advertise
- name String
- Name
- route
Tag Integer - Route tag
- suppress
Get
Logical Router List Data Vrf Ospfv3Area Type Nssa Nssa Ext Range Suppress - Suppress
- advertise
Get
Logical Router List Data Vrf Ospfv3Area Type Nssa Nssa Ext Range Advertise - Advertise
- name string
- Name
- route
Tag number - Route tag
- suppress
Get
Logical Router List Data 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
GetLogicalRouterListDataVrfOspfv3AreaTypeStub
- Abr
Get
Logical Router List Data Vrf Ospfv3Area Type Stub Abr - Abr
- Accept
Summary bool - Accept summary
- Default
Route GetLogical Router List Data Vrf Ospfv3Area Type Stub Default Route - Default route
- Default
Route intMetric - Default route metric
- No
Summary bool - No summary
- Abr
Get
Logical Router List Data Vrf Ospfv3Area Type Stub Abr - Abr
- Accept
Summary bool - Accept summary
- Default
Route GetLogical Router List Data Vrf Ospfv3Area Type Stub Default Route - Default route
- Default
Route intMetric - Default route metric
- No
Summary bool - No summary
- abr
Get
Logical Router List Data Vrf Ospfv3Area Type Stub Abr - Abr
- accept
Summary Boolean - Accept summary
- default
Route GetLogical Router List Data Vrf Ospfv3Area Type Stub Default Route - Default route
- default
Route IntegerMetric - Default route metric
- no
Summary Boolean - No summary
- abr
Get
Logical Router List Data Vrf Ospfv3Area Type Stub Abr - Abr
- accept
Summary boolean - Accept summary
- default
Route GetLogical Router List Data Vrf Ospfv3Area Type Stub Default Route - Default route
- default
Route numberMetric - Default route metric
- no
Summary boolean - No summary
- abr
Get
Logical Router List Data Vrf Ospfv3Area Type Stub Abr - Abr
- accept_
summary bool - Accept summary
- default_
route GetLogical Router List Data 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
GetLogicalRouterListDataVrfOspfv3AreaTypeStubAbr
- 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
GetLogicalRouterListDataVrfOspfv3AreaTypeStubDefaultRoute
- advertise Property Map
- Advertise
- disable Property Map
- Disable
GetLogicalRouterListDataVrfOspfv3AreaTypeStubDefaultRouteAdvertise
- Metric int
- Metric
- Metric int
- Metric
- metric Integer
- Metric
- metric number
- Metric
- metric int
- Metric
- metric Number
- Metric
GetLogicalRouterListDataVrfOspfv3AreaVirtualLink
- Authentication string
- Authentication
- Bfd
Get
Logical Router List Data 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 List Data Vrf Ospfv3Area Virtual Link Vr Timing - Vr timing
- Authentication string
- Authentication
- Bfd
Get
Logical Router List Data 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 List Data Vrf Ospfv3Area Virtual Link Vr Timing - Vr timing
- authentication String
- Authentication
- bfd
Get
Logical Router List Data 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 List Data Vrf Ospfv3Area Virtual Link Vr Timing - Vr timing
- authentication string
- Authentication
- bfd
Get
Logical Router List Data 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 List Data Vrf Ospfv3Area Virtual Link Vr Timing - Vr timing
- authentication str
- Authentication
- bfd
Get
Logical Router List Data 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 List Data 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
GetLogicalRouterListDataVrfOspfv3AreaVirtualLinkBfd
- Profile string
- Profile
- Profile string
- Profile
- profile String
- Profile
- profile string
- Profile
- profile str
- Profile
- profile String
- Profile
GetLogicalRouterListDataVrfOspfv3AreaVirtualLinkVrTiming
- 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
GetLogicalRouterListDataVrfOspfv3AreaVrRange
- advertise Property Map
- Advertise
- name String
- Name
- suppress Property Map
- Suppress
GetLogicalRouterListDataVrfOspfv3AuthProfile
- Ah
Get
Logical Router List Data Vrf Ospfv3Auth Profile Ah - Ah
- Esp
Get
Logical Router List Data Vrf Ospfv3Auth Profile Esp - Esp
- Name string
- Name
- Spi string
- Spi
- Ah
Get
Logical Router List Data Vrf Ospfv3Auth Profile Ah - Ah
- Esp
Get
Logical Router List Data Vrf Ospfv3Auth Profile Esp - Esp
- Name string
- Name
- Spi string
- Spi
- ah
Get
Logical Router List Data Vrf Ospfv3Auth Profile Ah - Ah
- esp
Get
Logical Router List Data Vrf Ospfv3Auth Profile Esp - Esp
- name String
- Name
- spi String
- Spi
- ah
Get
Logical Router List Data Vrf Ospfv3Auth Profile Ah - Ah
- esp
Get
Logical Router List Data 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
GetLogicalRouterListDataVrfOspfv3AuthProfileAh
- Md5
Get
Logical Router List Data Vrf Ospfv3Auth Profile Ah Md5 - Md5
- Sha1
Get
Logical Router List Data Vrf Ospfv3Auth Profile Ah Sha1 - Sha1
- Sha256
Get
Logical Router List Data Vrf Ospfv3Auth Profile Ah Sha256 - Sha256
- Sha384
Get
Logical Router List Data Vrf Ospfv3Auth Profile Ah Sha384 - Sha384
- Sha512
Get
Logical Router List Data Vrf Ospfv3Auth Profile Ah Sha512 - Sha512
- Md5
Get
Logical Router List Data Vrf Ospfv3Auth Profile Ah Md5 - Md5
- Sha1
Get
Logical Router List Data Vrf Ospfv3Auth Profile Ah Sha1 - Sha1
- Sha256
Get
Logical Router List Data Vrf Ospfv3Auth Profile Ah Sha256 - Sha256
- Sha384
Get
Logical Router List Data Vrf Ospfv3Auth Profile Ah Sha384 - Sha384
- Sha512
Get
Logical Router List Data Vrf Ospfv3Auth Profile Ah Sha512 - Sha512
- md5
Get
Logical Router List Data Vrf Ospfv3Auth Profile Ah Md5 - Md5
- sha1
Get
Logical Router List Data Vrf Ospfv3Auth Profile Ah Sha1 - Sha1
- sha256
Get
Logical Router List Data Vrf Ospfv3Auth Profile Ah Sha256 - Sha256
- sha384
Get
Logical Router List Data Vrf Ospfv3Auth Profile Ah Sha384 - Sha384
- sha512
Get
Logical Router List Data Vrf Ospfv3Auth Profile Ah Sha512 - Sha512
- md5
Get
Logical Router List Data Vrf Ospfv3Auth Profile Ah Md5 - Md5
- sha1
Get
Logical Router List Data Vrf Ospfv3Auth Profile Ah Sha1 - Sha1
- sha256
Get
Logical Router List Data Vrf Ospfv3Auth Profile Ah Sha256 - Sha256
- sha384
Get
Logical Router List Data Vrf Ospfv3Auth Profile Ah Sha384 - Sha384
- sha512
Get
Logical Router List Data Vrf Ospfv3Auth Profile Ah Sha512 - Sha512
- md5
Get
Logical Router List Data Vrf Ospfv3Auth Profile Ah Md5 - Md5
- sha1
Get
Logical Router List Data Vrf Ospfv3Auth Profile Ah Sha1 - Sha1
- sha256
Get
Logical Router List Data Vrf Ospfv3Auth Profile Ah Sha256 - Sha256
- sha384
Get
Logical Router List Data Vrf Ospfv3Auth Profile Ah Sha384 - Sha384
- sha512
Get
Logical Router List Data Vrf Ospfv3Auth Profile Ah Sha512 - Sha512
- md5 Property Map
- Md5
- sha1 Property Map
- Sha1
- sha256 Property Map
- Sha256
- sha384 Property Map
- Sha384
- sha512 Property Map
- Sha512
GetLogicalRouterListDataVrfOspfv3AuthProfileAhMd5
- Key string
- Key
- Key string
- Key
- key String
- Key
- key string
- Key
- key str
- Key
- key String
- Key
GetLogicalRouterListDataVrfOspfv3AuthProfileAhSha1
- Key string
- Key
- Key string
- Key
- key String
- Key
- key string
- Key
- key str
- Key
- key String
- Key
GetLogicalRouterListDataVrfOspfv3AuthProfileAhSha256
- Key string
- Key
- Key string
- Key
- key String
- Key
- key string
- Key
- key str
- Key
- key String
- Key
GetLogicalRouterListDataVrfOspfv3AuthProfileAhSha384
- Key string
- Key
- Key string
- Key
- key String
- Key
- key string
- Key
- key str
- Key
- key String
- Key
GetLogicalRouterListDataVrfOspfv3AuthProfileAhSha512
- Key string
- Key
- Key string
- Key
- key String
- Key
- key string
- Key
- key str
- Key
- key String
- Key
GetLogicalRouterListDataVrfOspfv3AuthProfileEsp
- authentication Property Map
- Authentication
- encryption Property Map
- Encryption
GetLogicalRouterListDataVrfOspfv3AuthProfileEspAuthentication
- Md5
Get
Logical Router List Data Vrf Ospfv3Auth Profile Esp Authentication Md5 - Md5
- None
Get
Logical Router List Data Vrf Ospfv3Auth Profile Esp Authentication None - None
- Sha1
Get
Logical Router List Data Vrf Ospfv3Auth Profile Esp Authentication Sha1 - Sha1
- Sha256
Get
Logical Router List Data Vrf Ospfv3Auth Profile Esp Authentication Sha256 - Sha256
- Sha384
Get
Logical Router List Data Vrf Ospfv3Auth Profile Esp Authentication Sha384 - Sha384
- Sha512
Get
Logical Router List Data Vrf Ospfv3Auth Profile Esp Authentication Sha512 - Sha512
- Md5
Get
Logical Router List Data Vrf Ospfv3Auth Profile Esp Authentication Md5 - Md5
- None
Get
Logical Router List Data Vrf Ospfv3Auth Profile Esp Authentication None - None
- Sha1
Get
Logical Router List Data Vrf Ospfv3Auth Profile Esp Authentication Sha1 - Sha1
- Sha256
Get
Logical Router List Data Vrf Ospfv3Auth Profile Esp Authentication Sha256 - Sha256
- Sha384
Get
Logical Router List Data Vrf Ospfv3Auth Profile Esp Authentication Sha384 - Sha384
- Sha512
Get
Logical Router List Data Vrf Ospfv3Auth Profile Esp Authentication Sha512 - Sha512
- md5
Get
Logical Router List Data Vrf Ospfv3Auth Profile Esp Authentication Md5 - Md5
- none
Get
Logical Router List Data Vrf Ospfv3Auth Profile Esp Authentication None - None
- sha1
Get
Logical Router List Data Vrf Ospfv3Auth Profile Esp Authentication Sha1 - Sha1
- sha256
Get
Logical Router List Data Vrf Ospfv3Auth Profile Esp Authentication Sha256 - Sha256
- sha384
Get
Logical Router List Data Vrf Ospfv3Auth Profile Esp Authentication Sha384 - Sha384
- sha512
Get
Logical Router List Data Vrf Ospfv3Auth Profile Esp Authentication Sha512 - Sha512
- md5
Get
Logical Router List Data Vrf Ospfv3Auth Profile Esp Authentication Md5 - Md5
- none
Get
Logical Router List Data Vrf Ospfv3Auth Profile Esp Authentication None - None
- sha1
Get
Logical Router List Data Vrf Ospfv3Auth Profile Esp Authentication Sha1 - Sha1
- sha256
Get
Logical Router List Data Vrf Ospfv3Auth Profile Esp Authentication Sha256 - Sha256
- sha384
Get
Logical Router List Data Vrf Ospfv3Auth Profile Esp Authentication Sha384 - Sha384
- sha512
Get
Logical Router List Data Vrf Ospfv3Auth Profile Esp Authentication Sha512 - Sha512
- md5
Get
Logical Router List Data Vrf Ospfv3Auth Profile Esp Authentication Md5 - Md5
- none
Get
Logical Router List Data Vrf Ospfv3Auth Profile Esp Authentication None - None
- sha1
Get
Logical Router List Data Vrf Ospfv3Auth Profile Esp Authentication Sha1 - Sha1
- sha256
Get
Logical Router List Data Vrf Ospfv3Auth Profile Esp Authentication Sha256 - Sha256
- sha384
Get
Logical Router List Data Vrf Ospfv3Auth Profile Esp Authentication Sha384 - Sha384
- sha512
Get
Logical Router List Data 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
GetLogicalRouterListDataVrfOspfv3AuthProfileEspAuthenticationMd5
- Key string
- Key
- Key string
- Key
- key String
- Key
- key string
- Key
- key str
- Key
- key String
- Key
GetLogicalRouterListDataVrfOspfv3AuthProfileEspAuthenticationSha1
- Key string
- Key
- Key string
- Key
- key String
- Key
- key string
- Key
- key str
- Key
- key String
- Key
GetLogicalRouterListDataVrfOspfv3AuthProfileEspAuthenticationSha256
- Key string
- Key
- Key string
- Key
- key String
- Key
- key string
- Key
- key str
- Key
- key String
- Key
GetLogicalRouterListDataVrfOspfv3AuthProfileEspAuthenticationSha384
- Key string
- Key
- Key string
- Key
- key String
- Key
- key string
- Key
- key str
- Key
- key String
- Key
GetLogicalRouterListDataVrfOspfv3AuthProfileEspAuthenticationSha512
- Key string
- Key
- Key string
- Key
- key String
- Key
- key string
- Key
- key str
- Key
- key String
- Key
GetLogicalRouterListDataVrfOspfv3AuthProfileEspEncryption
GetLogicalRouterListDataVrfOspfv3ExportRule
- 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
GetLogicalRouterListDataVrfOspfv3GlobalBfd
- Profile string
- Profile
- Profile string
- Profile
- profile String
- Profile
- profile string
- Profile
- profile str
- Profile
- profile String
- Profile
GetLogicalRouterListDataVrfOspfv3GracefulRestart
- 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
GetLogicalRouterListDataVrfOspfv3VrTimers
- 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
GetLogicalRouterListDataVrfRibFilter
- ipv4 Property Map
- Ipv4
- ipv6 Property Map
- Ipv6
GetLogicalRouterListDataVrfRibFilterIpv4
- bgp Property Map
- Bgp
- ospf Property Map
- Ospf
- rip Property Map
- Rip
- static Property Map
- Static
GetLogicalRouterListDataVrfRibFilterIpv4Bgp
- 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
GetLogicalRouterListDataVrfRibFilterIpv4Ospf
- 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
GetLogicalRouterListDataVrfRibFilterIpv4Rip
- 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
GetLogicalRouterListDataVrfRibFilterIpv4Static
- 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
GetLogicalRouterListDataVrfRibFilterIpv6
- bgp Property Map
- Bgp
- ospfv3 Property Map
- Ospfv3
- static Property Map
- Static
GetLogicalRouterListDataVrfRibFilterIpv6Bgp
- 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
GetLogicalRouterListDataVrfRibFilterIpv6Ospfv3
- 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
GetLogicalRouterListDataVrfRibFilterIpv6Static
- 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
GetLogicalRouterListDataVrfRip
- Auth
Profile string - Auth profile
- Default
Information boolOriginate - Default information originate
- Enable bool
- Enable
- Global
Bfd GetLogical Router List Data Vrf Rip Global Bfd - Global bfd
- Global
Inbound GetDistribute List Logical Router List Data Vrf Rip Global Inbound Distribute List - Global inbound distribute list
- Global
Outbound GetDistribute List Logical Router List Data Vrf Rip Global Outbound Distribute List - Global outbound distribute list
- Global
Timer string - Global timer
- Interfaces
List<Get
Logical Router List Data 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 List Data Vrf Rip Global Bfd - Global bfd
- Global
Inbound GetDistribute List Logical Router List Data Vrf Rip Global Inbound Distribute List - Global inbound distribute list
- Global
Outbound GetDistribute List Logical Router List Data Vrf Rip Global Outbound Distribute List - Global outbound distribute list
- Global
Timer string - Global timer
- Interfaces
[]Get
Logical Router List Data 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 List Data Vrf Rip Global Bfd - Global bfd
- global
Inbound GetDistribute List Logical Router List Data Vrf Rip Global Inbound Distribute List - Global inbound distribute list
- global
Outbound GetDistribute List Logical Router List Data Vrf Rip Global Outbound Distribute List - Global outbound distribute list
- global
Timer String - Global timer
- interfaces
List<Get
Logical Router List Data 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 List Data Vrf Rip Global Bfd - Global bfd
- global
Inbound GetDistribute List Logical Router List Data Vrf Rip Global Inbound Distribute List - Global inbound distribute list
- global
Outbound GetDistribute List Logical Router List Data Vrf Rip Global Outbound Distribute List - Global outbound distribute list
- global
Timer string - Global timer
- interfaces
Get
Logical Router List Data 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 List Data Vrf Rip Global Bfd - Global bfd
- global_
inbound_ Getdistribute_ list Logical Router List Data Vrf Rip Global Inbound Distribute List - Global inbound distribute list
- global_
outbound_ Getdistribute_ list Logical Router List Data Vrf Rip Global Outbound Distribute List - Global outbound distribute list
- global_
timer str - Global timer
- interfaces
Sequence[Get
Logical Router List Data 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
GetLogicalRouterListDataVrfRipGlobalBfd
- Profile string
- Profile
- Profile string
- Profile
- profile String
- Profile
- profile string
- Profile
- profile str
- Profile
- profile String
- Profile
GetLogicalRouterListDataVrfRipGlobalInboundDistributeList
- 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
GetLogicalRouterListDataVrfRipGlobalOutboundDistributeList
- 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
GetLogicalRouterListDataVrfRipInterface
- Authentication string
- Authentication
- Bfd
Get
Logical Router List Data Vrf Rip Interface Bfd - Bfd
- Enable bool
- Enable
- Interface
Inbound GetDistribute List Logical Router List Data Vrf Rip Interface Interface Inbound Distribute List - Interface inbound distribute list
- Interface
Outbound GetDistribute List Logical Router List Data 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 List Data Vrf Rip Interface Bfd - Bfd
- Enable bool
- Enable
- Interface
Inbound GetDistribute List Logical Router List Data Vrf Rip Interface Interface Inbound Distribute List - Interface inbound distribute list
- Interface
Outbound GetDistribute List Logical Router List Data 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 List Data Vrf Rip Interface Bfd - Bfd
- enable Boolean
- Enable
- interface
Inbound GetDistribute List Logical Router List Data Vrf Rip Interface Interface Inbound Distribute List - Interface inbound distribute list
- interface
Outbound GetDistribute List Logical Router List Data 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 List Data Vrf Rip Interface Bfd - Bfd
- enable boolean
- Enable
- interface
Inbound GetDistribute List Logical Router List Data Vrf Rip Interface Interface Inbound Distribute List - Interface inbound distribute list
- interface
Outbound GetDistribute List Logical Router List Data 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 List Data Vrf Rip Interface Bfd - Bfd
- enable bool
- Enable
- interface_
inbound_ Getdistribute_ list Logical Router List Data Vrf Rip Interface Interface Inbound Distribute List - Interface inbound distribute list
- interface_
outbound_ Getdistribute_ list Logical Router List Data 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
GetLogicalRouterListDataVrfRipInterfaceBfd
- Profile string
- Profile
- Profile string
- Profile
- profile String
- Profile
- profile string
- Profile
- profile str
- Profile
- profile String
- Profile
GetLogicalRouterListDataVrfRipInterfaceInterfaceInboundDistributeList
- 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
GetLogicalRouterListDataVrfRipInterfaceInterfaceOutboundDistributeList
- 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
GetLogicalRouterListDataVrfRoutingTable
- ip Property Map
- Ip
- ipv6 Property Map
- Ipv6
GetLogicalRouterListDataVrfRoutingTableIp
- static
Routes List<Property Map> - Static route
GetLogicalRouterListDataVrfRoutingTableIpStaticRoute
- Admin
Dist int - Admin dist
- Bfd
Get
Logical Router List Data Vrf Routing Table Ip Static Route Bfd - Bfd
- Destination string
- Destination
- Interface string
- Interface
- Metric int
- Metric
- Name string
- Name
- Nexthop
Get
Logical Router List Data Vrf Routing Table Ip Static Route Nexthop - Nexthop
- Path
Monitor GetLogical Router List Data Vrf Routing Table Ip Static Route Path Monitor - Path monitor
- Route
Table GetLogical Router List Data Vrf Routing Table Ip Static Route Route Table - Route table
- Admin
Dist int - Admin dist
- Bfd
Get
Logical Router List Data Vrf Routing Table Ip Static Route Bfd - Bfd
- Destination string
- Destination
- Interface string
- Interface
- Metric int
- Metric
- Name string
- Name
- Nexthop
Get
Logical Router List Data Vrf Routing Table Ip Static Route Nexthop - Nexthop
- Path
Monitor GetLogical Router List Data Vrf Routing Table Ip Static Route Path Monitor - Path monitor
- Route
Table GetLogical Router List Data Vrf Routing Table Ip Static Route Route Table - Route table
- admin
Dist Integer - Admin dist
- bfd
Get
Logical Router List Data Vrf Routing Table Ip Static Route Bfd - Bfd
- destination String
- Destination
- interface_ String
- Interface
- metric Integer
- Metric
- name String
- Name
- nexthop
Get
Logical Router List Data Vrf Routing Table Ip Static Route Nexthop - Nexthop
- path
Monitor GetLogical Router List Data Vrf Routing Table Ip Static Route Path Monitor - Path monitor
- route
Table GetLogical Router List Data Vrf Routing Table Ip Static Route Route Table - Route table
- admin
Dist number - Admin dist
- bfd
Get
Logical Router List Data Vrf Routing Table Ip Static Route Bfd - Bfd
- destination string
- Destination
- interface string
- Interface
- metric number
- Metric
- name string
- Name
- nexthop
Get
Logical Router List Data Vrf Routing Table Ip Static Route Nexthop - Nexthop
- path
Monitor GetLogical Router List Data Vrf Routing Table Ip Static Route Path Monitor - Path monitor
- route
Table GetLogical Router List Data Vrf Routing Table Ip Static Route Route Table - Route table
- admin_
dist int - Admin dist
- bfd
Get
Logical Router List Data Vrf Routing Table Ip Static Route Bfd - Bfd
- destination str
- Destination
- interface str
- Interface
- metric int
- Metric
- name str
- Name
- nexthop
Get
Logical Router List Data Vrf Routing Table Ip Static Route Nexthop - Nexthop
- path_
monitor GetLogical Router List Data Vrf Routing Table Ip Static Route Path Monitor - Path monitor
- route_
table GetLogical Router List Data 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
GetLogicalRouterListDataVrfRoutingTableIpStaticRouteBfd
- Profile string
- Profile
- Profile string
- Profile
- profile String
- Profile
- profile string
- Profile
- profile str
- Profile
- profile String
- Profile
GetLogicalRouterListDataVrfRoutingTableIpStaticRouteNexthop
- Discard
Get
Logical Router List Data 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 List Data Vrf Routing Table Ip Static Route Nexthop Receive - Receive
- Tunnel string
- Tunnel
- Discard
Get
Logical Router List Data 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 List Data Vrf Routing Table Ip Static Route Nexthop Receive - Receive
- Tunnel string
- Tunnel
- discard
Get
Logical Router List Data 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 List Data Vrf Routing Table Ip Static Route Nexthop Receive - Receive
- tunnel String
- Tunnel
- discard
Get
Logical Router List Data 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 List Data Vrf Routing Table Ip Static Route Nexthop Receive - Receive
- tunnel string
- Tunnel
- discard
Get
Logical Router List Data 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 List Data 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
GetLogicalRouterListDataVrfRoutingTableIpStaticRoutePathMonitor
- Enable bool
- Enable
- Failure
Condition string - Failure condition
- Hold
Time int - Hold time
- Monitor
Destinations List<GetLogical Router List Data 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 List Data 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 List Data 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 List Data 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 List Data 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
GetLogicalRouterListDataVrfRoutingTableIpStaticRoutePathMonitorMonitorDestination
- 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
GetLogicalRouterListDataVrfRoutingTableIpStaticRouteRouteTable
- Both
Get
Logical Router List Data Vrf Routing Table Ip Static Route Route Table Both - Both
- Multicast
Get
Logical Router List Data Vrf Routing Table Ip Static Route Route Table Multicast - Multicast
- No
Install GetLogical Router List Data Vrf Routing Table Ip Static Route Route Table No Install - No install
- Unicast
Get
Logical Router List Data Vrf Routing Table Ip Static Route Route Table Unicast - Unicast
- Both
Get
Logical Router List Data Vrf Routing Table Ip Static Route Route Table Both - Both
- Multicast
Get
Logical Router List Data Vrf Routing Table Ip Static Route Route Table Multicast - Multicast
- No
Install GetLogical Router List Data Vrf Routing Table Ip Static Route Route Table No Install - No install
- Unicast
Get
Logical Router List Data Vrf Routing Table Ip Static Route Route Table Unicast - Unicast
- both
Get
Logical Router List Data Vrf Routing Table Ip Static Route Route Table Both - Both
- multicast
Get
Logical Router List Data Vrf Routing Table Ip Static Route Route Table Multicast - Multicast
- no
Install GetLogical Router List Data Vrf Routing Table Ip Static Route Route Table No Install - No install
- unicast
Get
Logical Router List Data Vrf Routing Table Ip Static Route Route Table Unicast - Unicast
- both
Get
Logical Router List Data Vrf Routing Table Ip Static Route Route Table Both - Both
- multicast
Get
Logical Router List Data Vrf Routing Table Ip Static Route Route Table Multicast - Multicast
- no
Install GetLogical Router List Data Vrf Routing Table Ip Static Route Route Table No Install - No install
- unicast
Get
Logical Router List Data Vrf Routing Table Ip Static Route Route Table Unicast - Unicast
- both
Get
Logical Router List Data Vrf Routing Table Ip Static Route Route Table Both - Both
- multicast
Get
Logical Router List Data Vrf Routing Table Ip Static Route Route Table Multicast - Multicast
- no_
install GetLogical Router List Data Vrf Routing Table Ip Static Route Route Table No Install - No install
- unicast
Get
Logical Router List Data 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
GetLogicalRouterListDataVrfRoutingTableIpv6
- static
Routes List<Property Map> - Static route
GetLogicalRouterListDataVrfRoutingTableIpv6StaticRoute
- Admin
Dist int - Admin dist
- Bfd
Get
Logical Router List Data Vrf Routing Table Ipv6Static Route Bfd - Bfd
- Destination string
- Destination
- Interface string
- Interface
- Metric int
- Metric
- Name string
- Name
- Nexthop
Get
Logical Router List Data Vrf Routing Table Ipv6Static Route Nexthop - Nexthop
- Option
Get
Logical Router List Data Vrf Routing Table Ipv6Static Route Option - Option
- Path
Monitor GetLogical Router List Data Vrf Routing Table Ipv6Static Route Path Monitor - Path monitor
- Route
Table GetLogical Router List Data Vrf Routing Table Ipv6Static Route Route Table - Route table
- Admin
Dist int - Admin dist
- Bfd
Get
Logical Router List Data Vrf Routing Table Ipv6Static Route Bfd - Bfd
- Destination string
- Destination
- Interface string
- Interface
- Metric int
- Metric
- Name string
- Name
- Nexthop
Get
Logical Router List Data Vrf Routing Table Ipv6Static Route Nexthop - Nexthop
- Option
Get
Logical Router List Data Vrf Routing Table Ipv6Static Route Option - Option
- Path
Monitor GetLogical Router List Data Vrf Routing Table Ipv6Static Route Path Monitor - Path monitor
- Route
Table GetLogical Router List Data Vrf Routing Table Ipv6Static Route Route Table - Route table
- admin
Dist Integer - Admin dist
- bfd
Get
Logical Router List Data Vrf Routing Table Ipv6Static Route Bfd - Bfd
- destination String
- Destination
- interface_ String
- Interface
- metric Integer
- Metric
- name String
- Name
- nexthop
Get
Logical Router List Data Vrf Routing Table Ipv6Static Route Nexthop - Nexthop
- option
Get
Logical Router List Data Vrf Routing Table Ipv6Static Route Option - Option
- path
Monitor GetLogical Router List Data Vrf Routing Table Ipv6Static Route Path Monitor - Path monitor
- route
Table GetLogical Router List Data Vrf Routing Table Ipv6Static Route Route Table - Route table
- admin
Dist number - Admin dist
- bfd
Get
Logical Router List Data Vrf Routing Table Ipv6Static Route Bfd - Bfd
- destination string
- Destination
- interface string
- Interface
- metric number
- Metric
- name string
- Name
- nexthop
Get
Logical Router List Data Vrf Routing Table Ipv6Static Route Nexthop - Nexthop
- option
Get
Logical Router List Data Vrf Routing Table Ipv6Static Route Option - Option
- path
Monitor GetLogical Router List Data Vrf Routing Table Ipv6Static Route Path Monitor - Path monitor
- route
Table GetLogical Router List Data Vrf Routing Table Ipv6Static Route Route Table - Route table
- admin_
dist int - Admin dist
- bfd
Get
Logical Router List Data Vrf Routing Table Ipv6Static Route Bfd - Bfd
- destination str
- Destination
- interface str
- Interface
- metric int
- Metric
- name str
- Name
- nexthop
Get
Logical Router List Data Vrf Routing Table Ipv6Static Route Nexthop - Nexthop
- option
Get
Logical Router List Data Vrf Routing Table Ipv6Static Route Option - Option
- path_
monitor GetLogical Router List Data Vrf Routing Table Ipv6Static Route Path Monitor - Path monitor
- route_
table GetLogical Router List Data 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
GetLogicalRouterListDataVrfRoutingTableIpv6StaticRouteBfd
- Profile string
- Profile
- Profile string
- Profile
- profile String
- Profile
- profile string
- Profile
- profile str
- Profile
- profile String
- Profile
GetLogicalRouterListDataVrfRoutingTableIpv6StaticRouteNexthop
- Discard
Get
Logical Router List Data 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 List Data Vrf Routing Table Ipv6Static Route Nexthop Receive - Receive
- Tunnel string
- Tunnel
- Discard
Get
Logical Router List Data 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 List Data Vrf Routing Table Ipv6Static Route Nexthop Receive - Receive
- Tunnel string
- Tunnel
- discard
Get
Logical Router List Data 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 List Data Vrf Routing Table Ipv6Static Route Nexthop Receive - Receive
- tunnel String
- Tunnel
- discard
Get
Logical Router List Data 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 List Data Vrf Routing Table Ipv6Static Route Nexthop Receive - Receive
- tunnel string
- Tunnel
- discard
Get
Logical Router List Data 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 List Data 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
GetLogicalRouterListDataVrfRoutingTableIpv6StaticRouteOption
- passive Property Map
- Passive
GetLogicalRouterListDataVrfRoutingTableIpv6StaticRoutePathMonitor
- Enable bool
- Enable
- Failure
Condition string - Failure condition
- Hold
Time int - Hold time
- Monitor
Destinations List<GetLogical Router List Data 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 List Data 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 List Data 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 List Data 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 List Data 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
GetLogicalRouterListDataVrfRoutingTableIpv6StaticRoutePathMonitorMonitorDestination
- 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
GetLogicalRouterListDataVrfRoutingTableIpv6StaticRouteRouteTable
- Both
Get
Logical Router List Data Vrf Routing Table Ipv6Static Route Route Table Both - Both
- Multicast
Get
Logical Router List Data Vrf Routing Table Ipv6Static Route Route Table Multicast - Multicast
- No
Install GetLogical Router List Data Vrf Routing Table Ipv6Static Route Route Table No Install - No install
- Unicast
Get
Logical Router List Data Vrf Routing Table Ipv6Static Route Route Table Unicast - Unicast
- Both
Get
Logical Router List Data Vrf Routing Table Ipv6Static Route Route Table Both - Both
- Multicast
Get
Logical Router List Data Vrf Routing Table Ipv6Static Route Route Table Multicast - Multicast
- No
Install GetLogical Router List Data Vrf Routing Table Ipv6Static Route Route Table No Install - No install
- Unicast
Get
Logical Router List Data Vrf Routing Table Ipv6Static Route Route Table Unicast - Unicast
- both
Get
Logical Router List Data Vrf Routing Table Ipv6Static Route Route Table Both - Both
- multicast
Get
Logical Router List Data Vrf Routing Table Ipv6Static Route Route Table Multicast - Multicast
- no
Install GetLogical Router List Data Vrf Routing Table Ipv6Static Route Route Table No Install - No install
- unicast
Get
Logical Router List Data Vrf Routing Table Ipv6Static Route Route Table Unicast - Unicast
- both
Get
Logical Router List Data Vrf Routing Table Ipv6Static Route Route Table Both - Both
- multicast
Get
Logical Router List Data Vrf Routing Table Ipv6Static Route Route Table Multicast - Multicast
- no
Install GetLogical Router List Data Vrf Routing Table Ipv6Static Route Route Table No Install - No install
- unicast
Get
Logical Router List Data Vrf Routing Table Ipv6Static Route Route Table Unicast - Unicast
- both
Get
Logical Router List Data Vrf Routing Table Ipv6Static Route Route Table Both - Both
- multicast
Get
Logical Router List Data Vrf Routing Table Ipv6Static Route Route Table Multicast - Multicast
- no_
install GetLogical Router List Data Vrf Routing Table Ipv6Static Route Route Table No Install - No install
- unicast
Get
Logical Router List Data 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
GetLogicalRouterListDataVrfVrAdminDists
- 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.
Viewing docs for Strata Cloud Manager v0.4.3 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 2026 by Pulumi
