fortios.router.Ripng
Explore with Pulumi AI
Configure RIPng.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortios from "@pulumiverse/fortios";
const trname = new fortios.router.Ripng("trname", {
defaultInformationOriginate: "disable",
defaultMetric: 1,
garbageTimer: 120,
maxOutMetric: 0,
redistributes: [
{
metric: 10,
name: "connected",
status: "disable",
},
{
metric: 10,
name: "static",
status: "disable",
},
{
metric: 10,
name: "ospf",
status: "disable",
},
{
metric: 10,
name: "bgp",
status: "disable",
},
{
metric: 10,
name: "isis",
status: "disable",
},
],
timeoutTimer: 180,
updateTimer: 30,
});
import pulumi
import pulumiverse_fortios as fortios
trname = fortios.router.Ripng("trname",
default_information_originate="disable",
default_metric=1,
garbage_timer=120,
max_out_metric=0,
redistributes=[
fortios.router.RipngRedistributeArgs(
metric=10,
name="connected",
status="disable",
),
fortios.router.RipngRedistributeArgs(
metric=10,
name="static",
status="disable",
),
fortios.router.RipngRedistributeArgs(
metric=10,
name="ospf",
status="disable",
),
fortios.router.RipngRedistributeArgs(
metric=10,
name="bgp",
status="disable",
),
fortios.router.RipngRedistributeArgs(
metric=10,
name="isis",
status="disable",
),
],
timeout_timer=180,
update_timer=30)
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumiverse/pulumi-fortios/sdk/go/fortios/router"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := router.NewRipng(ctx, "trname", &router.RipngArgs{
DefaultInformationOriginate: pulumi.String("disable"),
DefaultMetric: pulumi.Int(1),
GarbageTimer: pulumi.Int(120),
MaxOutMetric: pulumi.Int(0),
Redistributes: router.RipngRedistributeArray{
&router.RipngRedistributeArgs{
Metric: pulumi.Int(10),
Name: pulumi.String("connected"),
Status: pulumi.String("disable"),
},
&router.RipngRedistributeArgs{
Metric: pulumi.Int(10),
Name: pulumi.String("static"),
Status: pulumi.String("disable"),
},
&router.RipngRedistributeArgs{
Metric: pulumi.Int(10),
Name: pulumi.String("ospf"),
Status: pulumi.String("disable"),
},
&router.RipngRedistributeArgs{
Metric: pulumi.Int(10),
Name: pulumi.String("bgp"),
Status: pulumi.String("disable"),
},
&router.RipngRedistributeArgs{
Metric: pulumi.Int(10),
Name: pulumi.String("isis"),
Status: pulumi.String("disable"),
},
},
TimeoutTimer: pulumi.Int(180),
UpdateTimer: pulumi.Int(30),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortios = Pulumiverse.Fortios;
return await Deployment.RunAsync(() =>
{
var trname = new Fortios.Router.Ripng("trname", new()
{
DefaultInformationOriginate = "disable",
DefaultMetric = 1,
GarbageTimer = 120,
MaxOutMetric = 0,
Redistributes = new[]
{
new Fortios.Router.Inputs.RipngRedistributeArgs
{
Metric = 10,
Name = "connected",
Status = "disable",
},
new Fortios.Router.Inputs.RipngRedistributeArgs
{
Metric = 10,
Name = "static",
Status = "disable",
},
new Fortios.Router.Inputs.RipngRedistributeArgs
{
Metric = 10,
Name = "ospf",
Status = "disable",
},
new Fortios.Router.Inputs.RipngRedistributeArgs
{
Metric = 10,
Name = "bgp",
Status = "disable",
},
new Fortios.Router.Inputs.RipngRedistributeArgs
{
Metric = 10,
Name = "isis",
Status = "disable",
},
},
TimeoutTimer = 180,
UpdateTimer = 30,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortios.router.Ripng;
import com.pulumi.fortios.router.RipngArgs;
import com.pulumi.fortios.router.inputs.RipngRedistributeArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var trname = new Ripng("trname", RipngArgs.builder()
.defaultInformationOriginate("disable")
.defaultMetric(1)
.garbageTimer(120)
.maxOutMetric(0)
.redistributes(
RipngRedistributeArgs.builder()
.metric(10)
.name("connected")
.status("disable")
.build(),
RipngRedistributeArgs.builder()
.metric(10)
.name("static")
.status("disable")
.build(),
RipngRedistributeArgs.builder()
.metric(10)
.name("ospf")
.status("disable")
.build(),
RipngRedistributeArgs.builder()
.metric(10)
.name("bgp")
.status("disable")
.build(),
RipngRedistributeArgs.builder()
.metric(10)
.name("isis")
.status("disable")
.build())
.timeoutTimer(180)
.updateTimer(30)
.build());
}
}
resources:
trname:
type: fortios:router:Ripng
properties:
defaultInformationOriginate: disable
defaultMetric: 1
garbageTimer: 120
maxOutMetric: 0
redistributes:
- metric: 10
name: connected
status: disable
- metric: 10
name: static
status: disable
- metric: 10
name: ospf
status: disable
- metric: 10
name: bgp
status: disable
- metric: 10
name: isis
status: disable
timeoutTimer: 180
updateTimer: 30
Create Ripng Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Ripng(name: string, args?: RipngArgs, opts?: CustomResourceOptions);
@overload
def Ripng(resource_name: str,
args: Optional[RipngArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Ripng(resource_name: str,
opts: Optional[ResourceOptions] = None,
aggregate_addresses: Optional[Sequence[RipngAggregateAddressArgs]] = None,
default_information_originate: Optional[str] = None,
default_metric: Optional[int] = None,
distances: Optional[Sequence[RipngDistanceArgs]] = None,
distribute_lists: Optional[Sequence[RipngDistributeListArgs]] = None,
dynamic_sort_subtable: Optional[str] = None,
garbage_timer: Optional[int] = None,
get_all_tables: Optional[str] = None,
interfaces: Optional[Sequence[RipngInterfaceArgs]] = None,
max_out_metric: Optional[int] = None,
neighbors: Optional[Sequence[RipngNeighborArgs]] = None,
networks: Optional[Sequence[RipngNetworkArgs]] = None,
offset_lists: Optional[Sequence[RipngOffsetListArgs]] = None,
passive_interfaces: Optional[Sequence[RipngPassiveInterfaceArgs]] = None,
redistributes: Optional[Sequence[RipngRedistributeArgs]] = None,
timeout_timer: Optional[int] = None,
update_timer: Optional[int] = None,
vdomparam: Optional[str] = None)
func NewRipng(ctx *Context, name string, args *RipngArgs, opts ...ResourceOption) (*Ripng, error)
public Ripng(string name, RipngArgs? args = null, CustomResourceOptions? opts = null)
type: fortios:router:Ripng
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args RipngArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args RipngArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args RipngArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RipngArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RipngArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var ripngResource = new Fortios.Router.Ripng("ripngResource", new()
{
AggregateAddresses = new[]
{
new Fortios.Router.Inputs.RipngAggregateAddressArgs
{
Id = 0,
Prefix6 = "string",
},
},
DefaultInformationOriginate = "string",
DefaultMetric = 0,
Distances = new[]
{
new Fortios.Router.Inputs.RipngDistanceArgs
{
AccessList6 = "string",
Distance = 0,
Id = 0,
Prefix6 = "string",
},
},
DistributeLists = new[]
{
new Fortios.Router.Inputs.RipngDistributeListArgs
{
Direction = "string",
Id = 0,
Interface = "string",
Listname = "string",
Status = "string",
},
},
DynamicSortSubtable = "string",
GarbageTimer = 0,
GetAllTables = "string",
Interfaces = new[]
{
new Fortios.Router.Inputs.RipngInterfaceArgs
{
Flags = 0,
Name = "string",
SplitHorizon = "string",
SplitHorizonStatus = "string",
},
},
MaxOutMetric = 0,
Neighbors = new[]
{
new Fortios.Router.Inputs.RipngNeighborArgs
{
Id = 0,
Interface = "string",
Ip6 = "string",
},
},
Networks = new[]
{
new Fortios.Router.Inputs.RipngNetworkArgs
{
Id = 0,
Prefix = "string",
},
},
OffsetLists = new[]
{
new Fortios.Router.Inputs.RipngOffsetListArgs
{
AccessList6 = "string",
Direction = "string",
Id = 0,
Interface = "string",
Offset = 0,
Status = "string",
},
},
PassiveInterfaces = new[]
{
new Fortios.Router.Inputs.RipngPassiveInterfaceArgs
{
Name = "string",
},
},
Redistributes = new[]
{
new Fortios.Router.Inputs.RipngRedistributeArgs
{
Metric = 0,
Name = "string",
Routemap = "string",
Status = "string",
},
},
TimeoutTimer = 0,
UpdateTimer = 0,
Vdomparam = "string",
});
example, err := router.NewRipng(ctx, "ripngResource", &router.RipngArgs{
AggregateAddresses: router.RipngAggregateAddressArray{
&router.RipngAggregateAddressArgs{
Id: pulumi.Int(0),
Prefix6: pulumi.String("string"),
},
},
DefaultInformationOriginate: pulumi.String("string"),
DefaultMetric: pulumi.Int(0),
Distances: router.RipngDistanceArray{
&router.RipngDistanceArgs{
AccessList6: pulumi.String("string"),
Distance: pulumi.Int(0),
Id: pulumi.Int(0),
Prefix6: pulumi.String("string"),
},
},
DistributeLists: router.RipngDistributeListArray{
&router.RipngDistributeListArgs{
Direction: pulumi.String("string"),
Id: pulumi.Int(0),
Interface: pulumi.String("string"),
Listname: pulumi.String("string"),
Status: pulumi.String("string"),
},
},
DynamicSortSubtable: pulumi.String("string"),
GarbageTimer: pulumi.Int(0),
GetAllTables: pulumi.String("string"),
Interfaces: router.RipngInterfaceArray{
&router.RipngInterfaceArgs{
Flags: pulumi.Int(0),
Name: pulumi.String("string"),
SplitHorizon: pulumi.String("string"),
SplitHorizonStatus: pulumi.String("string"),
},
},
MaxOutMetric: pulumi.Int(0),
Neighbors: router.RipngNeighborArray{
&router.RipngNeighborArgs{
Id: pulumi.Int(0),
Interface: pulumi.String("string"),
Ip6: pulumi.String("string"),
},
},
Networks: router.RipngNetworkArray{
&router.RipngNetworkArgs{
Id: pulumi.Int(0),
Prefix: pulumi.String("string"),
},
},
OffsetLists: router.RipngOffsetListArray{
&router.RipngOffsetListArgs{
AccessList6: pulumi.String("string"),
Direction: pulumi.String("string"),
Id: pulumi.Int(0),
Interface: pulumi.String("string"),
Offset: pulumi.Int(0),
Status: pulumi.String("string"),
},
},
PassiveInterfaces: router.RipngPassiveInterfaceArray{
&router.RipngPassiveInterfaceArgs{
Name: pulumi.String("string"),
},
},
Redistributes: router.RipngRedistributeArray{
&router.RipngRedistributeArgs{
Metric: pulumi.Int(0),
Name: pulumi.String("string"),
Routemap: pulumi.String("string"),
Status: pulumi.String("string"),
},
},
TimeoutTimer: pulumi.Int(0),
UpdateTimer: pulumi.Int(0),
Vdomparam: pulumi.String("string"),
})
var ripngResource = new Ripng("ripngResource", RipngArgs.builder()
.aggregateAddresses(RipngAggregateAddressArgs.builder()
.id(0)
.prefix6("string")
.build())
.defaultInformationOriginate("string")
.defaultMetric(0)
.distances(RipngDistanceArgs.builder()
.accessList6("string")
.distance(0)
.id(0)
.prefix6("string")
.build())
.distributeLists(RipngDistributeListArgs.builder()
.direction("string")
.id(0)
.interface_("string")
.listname("string")
.status("string")
.build())
.dynamicSortSubtable("string")
.garbageTimer(0)
.getAllTables("string")
.interfaces(RipngInterfaceArgs.builder()
.flags(0)
.name("string")
.splitHorizon("string")
.splitHorizonStatus("string")
.build())
.maxOutMetric(0)
.neighbors(RipngNeighborArgs.builder()
.id(0)
.interface_("string")
.ip6("string")
.build())
.networks(RipngNetworkArgs.builder()
.id(0)
.prefix("string")
.build())
.offsetLists(RipngOffsetListArgs.builder()
.accessList6("string")
.direction("string")
.id(0)
.interface_("string")
.offset(0)
.status("string")
.build())
.passiveInterfaces(RipngPassiveInterfaceArgs.builder()
.name("string")
.build())
.redistributes(RipngRedistributeArgs.builder()
.metric(0)
.name("string")
.routemap("string")
.status("string")
.build())
.timeoutTimer(0)
.updateTimer(0)
.vdomparam("string")
.build());
ripng_resource = fortios.router.Ripng("ripngResource",
aggregate_addresses=[fortios.router.RipngAggregateAddressArgs(
id=0,
prefix6="string",
)],
default_information_originate="string",
default_metric=0,
distances=[fortios.router.RipngDistanceArgs(
access_list6="string",
distance=0,
id=0,
prefix6="string",
)],
distribute_lists=[fortios.router.RipngDistributeListArgs(
direction="string",
id=0,
interface="string",
listname="string",
status="string",
)],
dynamic_sort_subtable="string",
garbage_timer=0,
get_all_tables="string",
interfaces=[fortios.router.RipngInterfaceArgs(
flags=0,
name="string",
split_horizon="string",
split_horizon_status="string",
)],
max_out_metric=0,
neighbors=[fortios.router.RipngNeighborArgs(
id=0,
interface="string",
ip6="string",
)],
networks=[fortios.router.RipngNetworkArgs(
id=0,
prefix="string",
)],
offset_lists=[fortios.router.RipngOffsetListArgs(
access_list6="string",
direction="string",
id=0,
interface="string",
offset=0,
status="string",
)],
passive_interfaces=[fortios.router.RipngPassiveInterfaceArgs(
name="string",
)],
redistributes=[fortios.router.RipngRedistributeArgs(
metric=0,
name="string",
routemap="string",
status="string",
)],
timeout_timer=0,
update_timer=0,
vdomparam="string")
const ripngResource = new fortios.router.Ripng("ripngResource", {
aggregateAddresses: [{
id: 0,
prefix6: "string",
}],
defaultInformationOriginate: "string",
defaultMetric: 0,
distances: [{
accessList6: "string",
distance: 0,
id: 0,
prefix6: "string",
}],
distributeLists: [{
direction: "string",
id: 0,
"interface": "string",
listname: "string",
status: "string",
}],
dynamicSortSubtable: "string",
garbageTimer: 0,
getAllTables: "string",
interfaces: [{
flags: 0,
name: "string",
splitHorizon: "string",
splitHorizonStatus: "string",
}],
maxOutMetric: 0,
neighbors: [{
id: 0,
"interface": "string",
ip6: "string",
}],
networks: [{
id: 0,
prefix: "string",
}],
offsetLists: [{
accessList6: "string",
direction: "string",
id: 0,
"interface": "string",
offset: 0,
status: "string",
}],
passiveInterfaces: [{
name: "string",
}],
redistributes: [{
metric: 0,
name: "string",
routemap: "string",
status: "string",
}],
timeoutTimer: 0,
updateTimer: 0,
vdomparam: "string",
});
type: fortios:router:Ripng
properties:
aggregateAddresses:
- id: 0
prefix6: string
defaultInformationOriginate: string
defaultMetric: 0
distances:
- accessList6: string
distance: 0
id: 0
prefix6: string
distributeLists:
- direction: string
id: 0
interface: string
listname: string
status: string
dynamicSortSubtable: string
garbageTimer: 0
getAllTables: string
interfaces:
- flags: 0
name: string
splitHorizon: string
splitHorizonStatus: string
maxOutMetric: 0
neighbors:
- id: 0
interface: string
ip6: string
networks:
- id: 0
prefix: string
offsetLists:
- accessList6: string
direction: string
id: 0
interface: string
offset: 0
status: string
passiveInterfaces:
- name: string
redistributes:
- metric: 0
name: string
routemap: string
status: string
timeoutTimer: 0
updateTimer: 0
vdomparam: string
Ripng Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Ripng resource accepts the following input properties:
- Aggregate
Addresses List<Pulumiverse.Fortios. Router. Inputs. Ripng Aggregate Address> - Aggregate address. The structure of
aggregate_address
block is documented below. - Default
Information stringOriginate - Enable/disable generation of default route. Valid values:
enable
,disable
. - Default
Metric int - Default metric.
- Distances
List<Pulumiverse.
Fortios. Router. Inputs. Ripng Distance> - distance The structure of
distance
block is documented below. - Distribute
Lists List<Pulumiverse.Fortios. Router. Inputs. Ripng Distribute List> - Distribute list. The structure of
distribute_list
block is documented below. - Dynamic
Sort stringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- Garbage
Timer int - Garbage timer.
- Get
All stringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- Interfaces
List<Pulumiverse.
Fortios. Router. Inputs. Ripng Interface> - RIPng interface configuration. The structure of
interface
block is documented below. - Max
Out intMetric - Maximum metric allowed to output(0 means 'not set').
- Neighbors
List<Pulumiverse.
Fortios. Router. Inputs. Ripng Neighbor> - neighbor The structure of
neighbor
block is documented below. - Networks
List<Pulumiverse.
Fortios. Router. Inputs. Ripng Network> - Network. The structure of
network
block is documented below. - Offset
Lists List<Pulumiverse.Fortios. Router. Inputs. Ripng Offset List> - Offset list. The structure of
offset_list
block is documented below. - Passive
Interfaces List<Pulumiverse.Fortios. Router. Inputs. Ripng Passive Interface> - Passive interface configuration. The structure of
passive_interface
block is documented below. - Redistributes
List<Pulumiverse.
Fortios. Router. Inputs. Ripng Redistribute> - Redistribute configuration. The structure of
redistribute
block is documented below. - Timeout
Timer int - Timeout timer.
- Update
Timer int - Update timer.
- Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- Aggregate
Addresses []RipngAggregate Address Args - Aggregate address. The structure of
aggregate_address
block is documented below. - Default
Information stringOriginate - Enable/disable generation of default route. Valid values:
enable
,disable
. - Default
Metric int - Default metric.
- Distances
[]Ripng
Distance Args - distance The structure of
distance
block is documented below. - Distribute
Lists []RipngDistribute List Args - Distribute list. The structure of
distribute_list
block is documented below. - Dynamic
Sort stringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- Garbage
Timer int - Garbage timer.
- Get
All stringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- Interfaces
[]Ripng
Interface Args - RIPng interface configuration. The structure of
interface
block is documented below. - Max
Out intMetric - Maximum metric allowed to output(0 means 'not set').
- Neighbors
[]Ripng
Neighbor Args - neighbor The structure of
neighbor
block is documented below. - Networks
[]Ripng
Network Args - Network. The structure of
network
block is documented below. - Offset
Lists []RipngOffset List Args - Offset list. The structure of
offset_list
block is documented below. - Passive
Interfaces []RipngPassive Interface Args - Passive interface configuration. The structure of
passive_interface
block is documented below. - Redistributes
[]Ripng
Redistribute Args - Redistribute configuration. The structure of
redistribute
block is documented below. - Timeout
Timer int - Timeout timer.
- Update
Timer int - Update timer.
- Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- aggregate
Addresses List<RipngAggregate Address> - Aggregate address. The structure of
aggregate_address
block is documented below. - default
Information StringOriginate - Enable/disable generation of default route. Valid values:
enable
,disable
. - default
Metric Integer - Default metric.
- distances
List<Ripng
Distance> - distance The structure of
distance
block is documented below. - distribute
Lists List<RipngDistribute List> - Distribute list. The structure of
distribute_list
block is documented below. - dynamic
Sort StringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- garbage
Timer Integer - Garbage timer.
- get
All StringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- interfaces
List<Ripng
Interface> - RIPng interface configuration. The structure of
interface
block is documented below. - max
Out IntegerMetric - Maximum metric allowed to output(0 means 'not set').
- neighbors
List<Ripng
Neighbor> - neighbor The structure of
neighbor
block is documented below. - networks
List<Ripng
Network> - Network. The structure of
network
block is documented below. - offset
Lists List<RipngOffset List> - Offset list. The structure of
offset_list
block is documented below. - passive
Interfaces List<RipngPassive Interface> - Passive interface configuration. The structure of
passive_interface
block is documented below. - redistributes
List<Ripng
Redistribute> - Redistribute configuration. The structure of
redistribute
block is documented below. - timeout
Timer Integer - Timeout timer.
- update
Timer Integer - Update timer.
- vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- aggregate
Addresses RipngAggregate Address[] - Aggregate address. The structure of
aggregate_address
block is documented below. - default
Information stringOriginate - Enable/disable generation of default route. Valid values:
enable
,disable
. - default
Metric number - Default metric.
- distances
Ripng
Distance[] - distance The structure of
distance
block is documented below. - distribute
Lists RipngDistribute List[] - Distribute list. The structure of
distribute_list
block is documented below. - dynamic
Sort stringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- garbage
Timer number - Garbage timer.
- get
All stringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- interfaces
Ripng
Interface[] - RIPng interface configuration. The structure of
interface
block is documented below. - max
Out numberMetric - Maximum metric allowed to output(0 means 'not set').
- neighbors
Ripng
Neighbor[] - neighbor The structure of
neighbor
block is documented below. - networks
Ripng
Network[] - Network. The structure of
network
block is documented below. - offset
Lists RipngOffset List[] - Offset list. The structure of
offset_list
block is documented below. - passive
Interfaces RipngPassive Interface[] - Passive interface configuration. The structure of
passive_interface
block is documented below. - redistributes
Ripng
Redistribute[] - Redistribute configuration. The structure of
redistribute
block is documented below. - timeout
Timer number - Timeout timer.
- update
Timer number - Update timer.
- vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- aggregate_
addresses Sequence[RipngAggregate Address Args] - Aggregate address. The structure of
aggregate_address
block is documented below. - default_
information_ stroriginate - Enable/disable generation of default route. Valid values:
enable
,disable
. - default_
metric int - Default metric.
- distances
Sequence[Ripng
Distance Args] - distance The structure of
distance
block is documented below. - distribute_
lists Sequence[RipngDistribute List Args] - Distribute list. The structure of
distribute_list
block is documented below. - dynamic_
sort_ strsubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- garbage_
timer int - Garbage timer.
- get_
all_ strtables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- interfaces
Sequence[Ripng
Interface Args] - RIPng interface configuration. The structure of
interface
block is documented below. - max_
out_ intmetric - Maximum metric allowed to output(0 means 'not set').
- neighbors
Sequence[Ripng
Neighbor Args] - neighbor The structure of
neighbor
block is documented below. - networks
Sequence[Ripng
Network Args] - Network. The structure of
network
block is documented below. - offset_
lists Sequence[RipngOffset List Args] - Offset list. The structure of
offset_list
block is documented below. - passive_
interfaces Sequence[RipngPassive Interface Args] - Passive interface configuration. The structure of
passive_interface
block is documented below. - redistributes
Sequence[Ripng
Redistribute Args] - Redistribute configuration. The structure of
redistribute
block is documented below. - timeout_
timer int - Timeout timer.
- update_
timer int - Update timer.
- vdomparam str
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- aggregate
Addresses List<Property Map> - Aggregate address. The structure of
aggregate_address
block is documented below. - default
Information StringOriginate - Enable/disable generation of default route. Valid values:
enable
,disable
. - default
Metric Number - Default metric.
- distances List<Property Map>
- distance The structure of
distance
block is documented below. - distribute
Lists List<Property Map> - Distribute list. The structure of
distribute_list
block is documented below. - dynamic
Sort StringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- garbage
Timer Number - Garbage timer.
- get
All StringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- interfaces List<Property Map>
- RIPng interface configuration. The structure of
interface
block is documented below. - max
Out NumberMetric - Maximum metric allowed to output(0 means 'not set').
- neighbors List<Property Map>
- neighbor The structure of
neighbor
block is documented below. - networks List<Property Map>
- Network. The structure of
network
block is documented below. - offset
Lists List<Property Map> - Offset list. The structure of
offset_list
block is documented below. - passive
Interfaces List<Property Map> - Passive interface configuration. The structure of
passive_interface
block is documented below. - redistributes List<Property Map>
- Redistribute configuration. The structure of
redistribute
block is documented below. - timeout
Timer Number - Timeout timer.
- update
Timer Number - Update timer.
- vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
Outputs
All input properties are implicitly available as output properties. Additionally, the Ripng resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing Ripng Resource
Get an existing Ripng resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: RipngState, opts?: CustomResourceOptions): Ripng
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
aggregate_addresses: Optional[Sequence[RipngAggregateAddressArgs]] = None,
default_information_originate: Optional[str] = None,
default_metric: Optional[int] = None,
distances: Optional[Sequence[RipngDistanceArgs]] = None,
distribute_lists: Optional[Sequence[RipngDistributeListArgs]] = None,
dynamic_sort_subtable: Optional[str] = None,
garbage_timer: Optional[int] = None,
get_all_tables: Optional[str] = None,
interfaces: Optional[Sequence[RipngInterfaceArgs]] = None,
max_out_metric: Optional[int] = None,
neighbors: Optional[Sequence[RipngNeighborArgs]] = None,
networks: Optional[Sequence[RipngNetworkArgs]] = None,
offset_lists: Optional[Sequence[RipngOffsetListArgs]] = None,
passive_interfaces: Optional[Sequence[RipngPassiveInterfaceArgs]] = None,
redistributes: Optional[Sequence[RipngRedistributeArgs]] = None,
timeout_timer: Optional[int] = None,
update_timer: Optional[int] = None,
vdomparam: Optional[str] = None) -> Ripng
func GetRipng(ctx *Context, name string, id IDInput, state *RipngState, opts ...ResourceOption) (*Ripng, error)
public static Ripng Get(string name, Input<string> id, RipngState? state, CustomResourceOptions? opts = null)
public static Ripng get(String name, Output<String> id, RipngState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Aggregate
Addresses List<Pulumiverse.Fortios. Router. Inputs. Ripng Aggregate Address> - Aggregate address. The structure of
aggregate_address
block is documented below. - Default
Information stringOriginate - Enable/disable generation of default route. Valid values:
enable
,disable
. - Default
Metric int - Default metric.
- Distances
List<Pulumiverse.
Fortios. Router. Inputs. Ripng Distance> - distance The structure of
distance
block is documented below. - Distribute
Lists List<Pulumiverse.Fortios. Router. Inputs. Ripng Distribute List> - Distribute list. The structure of
distribute_list
block is documented below. - Dynamic
Sort stringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- Garbage
Timer int - Garbage timer.
- Get
All stringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- Interfaces
List<Pulumiverse.
Fortios. Router. Inputs. Ripng Interface> - RIPng interface configuration. The structure of
interface
block is documented below. - Max
Out intMetric - Maximum metric allowed to output(0 means 'not set').
- Neighbors
List<Pulumiverse.
Fortios. Router. Inputs. Ripng Neighbor> - neighbor The structure of
neighbor
block is documented below. - Networks
List<Pulumiverse.
Fortios. Router. Inputs. Ripng Network> - Network. The structure of
network
block is documented below. - Offset
Lists List<Pulumiverse.Fortios. Router. Inputs. Ripng Offset List> - Offset list. The structure of
offset_list
block is documented below. - Passive
Interfaces List<Pulumiverse.Fortios. Router. Inputs. Ripng Passive Interface> - Passive interface configuration. The structure of
passive_interface
block is documented below. - Redistributes
List<Pulumiverse.
Fortios. Router. Inputs. Ripng Redistribute> - Redistribute configuration. The structure of
redistribute
block is documented below. - Timeout
Timer int - Timeout timer.
- Update
Timer int - Update timer.
- Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- Aggregate
Addresses []RipngAggregate Address Args - Aggregate address. The structure of
aggregate_address
block is documented below. - Default
Information stringOriginate - Enable/disable generation of default route. Valid values:
enable
,disable
. - Default
Metric int - Default metric.
- Distances
[]Ripng
Distance Args - distance The structure of
distance
block is documented below. - Distribute
Lists []RipngDistribute List Args - Distribute list. The structure of
distribute_list
block is documented below. - Dynamic
Sort stringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- Garbage
Timer int - Garbage timer.
- Get
All stringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- Interfaces
[]Ripng
Interface Args - RIPng interface configuration. The structure of
interface
block is documented below. - Max
Out intMetric - Maximum metric allowed to output(0 means 'not set').
- Neighbors
[]Ripng
Neighbor Args - neighbor The structure of
neighbor
block is documented below. - Networks
[]Ripng
Network Args - Network. The structure of
network
block is documented below. - Offset
Lists []RipngOffset List Args - Offset list. The structure of
offset_list
block is documented below. - Passive
Interfaces []RipngPassive Interface Args - Passive interface configuration. The structure of
passive_interface
block is documented below. - Redistributes
[]Ripng
Redistribute Args - Redistribute configuration. The structure of
redistribute
block is documented below. - Timeout
Timer int - Timeout timer.
- Update
Timer int - Update timer.
- Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- aggregate
Addresses List<RipngAggregate Address> - Aggregate address. The structure of
aggregate_address
block is documented below. - default
Information StringOriginate - Enable/disable generation of default route. Valid values:
enable
,disable
. - default
Metric Integer - Default metric.
- distances
List<Ripng
Distance> - distance The structure of
distance
block is documented below. - distribute
Lists List<RipngDistribute List> - Distribute list. The structure of
distribute_list
block is documented below. - dynamic
Sort StringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- garbage
Timer Integer - Garbage timer.
- get
All StringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- interfaces
List<Ripng
Interface> - RIPng interface configuration. The structure of
interface
block is documented below. - max
Out IntegerMetric - Maximum metric allowed to output(0 means 'not set').
- neighbors
List<Ripng
Neighbor> - neighbor The structure of
neighbor
block is documented below. - networks
List<Ripng
Network> - Network. The structure of
network
block is documented below. - offset
Lists List<RipngOffset List> - Offset list. The structure of
offset_list
block is documented below. - passive
Interfaces List<RipngPassive Interface> - Passive interface configuration. The structure of
passive_interface
block is documented below. - redistributes
List<Ripng
Redistribute> - Redistribute configuration. The structure of
redistribute
block is documented below. - timeout
Timer Integer - Timeout timer.
- update
Timer Integer - Update timer.
- vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- aggregate
Addresses RipngAggregate Address[] - Aggregate address. The structure of
aggregate_address
block is documented below. - default
Information stringOriginate - Enable/disable generation of default route. Valid values:
enable
,disable
. - default
Metric number - Default metric.
- distances
Ripng
Distance[] - distance The structure of
distance
block is documented below. - distribute
Lists RipngDistribute List[] - Distribute list. The structure of
distribute_list
block is documented below. - dynamic
Sort stringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- garbage
Timer number - Garbage timer.
- get
All stringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- interfaces
Ripng
Interface[] - RIPng interface configuration. The structure of
interface
block is documented below. - max
Out numberMetric - Maximum metric allowed to output(0 means 'not set').
- neighbors
Ripng
Neighbor[] - neighbor The structure of
neighbor
block is documented below. - networks
Ripng
Network[] - Network. The structure of
network
block is documented below. - offset
Lists RipngOffset List[] - Offset list. The structure of
offset_list
block is documented below. - passive
Interfaces RipngPassive Interface[] - Passive interface configuration. The structure of
passive_interface
block is documented below. - redistributes
Ripng
Redistribute[] - Redistribute configuration. The structure of
redistribute
block is documented below. - timeout
Timer number - Timeout timer.
- update
Timer number - Update timer.
- vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- aggregate_
addresses Sequence[RipngAggregate Address Args] - Aggregate address. The structure of
aggregate_address
block is documented below. - default_
information_ stroriginate - Enable/disable generation of default route. Valid values:
enable
,disable
. - default_
metric int - Default metric.
- distances
Sequence[Ripng
Distance Args] - distance The structure of
distance
block is documented below. - distribute_
lists Sequence[RipngDistribute List Args] - Distribute list. The structure of
distribute_list
block is documented below. - dynamic_
sort_ strsubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- garbage_
timer int - Garbage timer.
- get_
all_ strtables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- interfaces
Sequence[Ripng
Interface Args] - RIPng interface configuration. The structure of
interface
block is documented below. - max_
out_ intmetric - Maximum metric allowed to output(0 means 'not set').
- neighbors
Sequence[Ripng
Neighbor Args] - neighbor The structure of
neighbor
block is documented below. - networks
Sequence[Ripng
Network Args] - Network. The structure of
network
block is documented below. - offset_
lists Sequence[RipngOffset List Args] - Offset list. The structure of
offset_list
block is documented below. - passive_
interfaces Sequence[RipngPassive Interface Args] - Passive interface configuration. The structure of
passive_interface
block is documented below. - redistributes
Sequence[Ripng
Redistribute Args] - Redistribute configuration. The structure of
redistribute
block is documented below. - timeout_
timer int - Timeout timer.
- update_
timer int - Update timer.
- vdomparam str
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- aggregate
Addresses List<Property Map> - Aggregate address. The structure of
aggregate_address
block is documented below. - default
Information StringOriginate - Enable/disable generation of default route. Valid values:
enable
,disable
. - default
Metric Number - Default metric.
- distances List<Property Map>
- distance The structure of
distance
block is documented below. - distribute
Lists List<Property Map> - Distribute list. The structure of
distribute_list
block is documented below. - dynamic
Sort StringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- garbage
Timer Number - Garbage timer.
- get
All StringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- interfaces List<Property Map>
- RIPng interface configuration. The structure of
interface
block is documented below. - max
Out NumberMetric - Maximum metric allowed to output(0 means 'not set').
- neighbors List<Property Map>
- neighbor The structure of
neighbor
block is documented below. - networks List<Property Map>
- Network. The structure of
network
block is documented below. - offset
Lists List<Property Map> - Offset list. The structure of
offset_list
block is documented below. - passive
Interfaces List<Property Map> - Passive interface configuration. The structure of
passive_interface
block is documented below. - redistributes List<Property Map>
- Redistribute configuration. The structure of
redistribute
block is documented below. - timeout
Timer Number - Timeout timer.
- update
Timer Number - Update timer.
- vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
Supporting Types
RipngAggregateAddress, RipngAggregateAddressArgs
RipngDistance, RipngDistanceArgs
- Access
List6 string - Access list for route destination.
- Distance int
- Distance (1 - 255).
- Id int
- Distance ID.
- Prefix6 string
- Distance prefix6.
- Access
List6 string - Access list for route destination.
- Distance int
- Distance (1 - 255).
- Id int
- Distance ID.
- Prefix6 string
- Distance prefix6.
- access
List6 String - Access list for route destination.
- distance Integer
- Distance (1 - 255).
- id Integer
- Distance ID.
- prefix6 String
- Distance prefix6.
- access
List6 string - Access list for route destination.
- distance number
- Distance (1 - 255).
- id number
- Distance ID.
- prefix6 string
- Distance prefix6.
- access_
list6 str - Access list for route destination.
- distance int
- Distance (1 - 255).
- id int
- Distance ID.
- prefix6 str
- Distance prefix6.
- access
List6 String - Access list for route destination.
- distance Number
- Distance (1 - 255).
- id Number
- Distance ID.
- prefix6 String
- Distance prefix6.
RipngDistributeList, RipngDistributeListArgs
- direction String
- Distribute list direction. Valid values:
in
,out
. - id Integer
- Distribute list ID.
- interface_ String
- Distribute list interface name.
- listname String
- Distribute access/prefix list name.
- status String
- status Valid values:
enable
,disable
.
RipngInterface, RipngInterfaceArgs
- Flags int
- Flags.
- Name string
- Interface name.
- Split
Horizon string - Enable/disable split horizon. Valid values:
poisoned
,regular
. - Split
Horizon stringStatus - Enable/disable split horizon. Valid values:
enable
,disable
.
- Flags int
- Flags.
- Name string
- Interface name.
- Split
Horizon string - Enable/disable split horizon. Valid values:
poisoned
,regular
. - Split
Horizon stringStatus - Enable/disable split horizon. Valid values:
enable
,disable
.
- flags Integer
- Flags.
- name String
- Interface name.
- split
Horizon String - Enable/disable split horizon. Valid values:
poisoned
,regular
. - split
Horizon StringStatus - Enable/disable split horizon. Valid values:
enable
,disable
.
- flags number
- Flags.
- name string
- Interface name.
- split
Horizon string - Enable/disable split horizon. Valid values:
poisoned
,regular
. - split
Horizon stringStatus - Enable/disable split horizon. Valid values:
enable
,disable
.
- flags int
- Flags.
- name str
- Interface name.
- split_
horizon str - Enable/disable split horizon. Valid values:
poisoned
,regular
. - split_
horizon_ strstatus - Enable/disable split horizon. Valid values:
enable
,disable
.
- flags Number
- Flags.
- name String
- Interface name.
- split
Horizon String - Enable/disable split horizon. Valid values:
poisoned
,regular
. - split
Horizon StringStatus - Enable/disable split horizon. Valid values:
enable
,disable
.
RipngNeighbor, RipngNeighborArgs
- id Integer
- Neighbor entry ID.
- interface_ String
- Interface name.
- ip6 String
- IPv6 link-local address.
RipngNetwork, RipngNetworkArgs
RipngOffsetList, RipngOffsetListArgs
- access
List6 String - IPv6 access list name.
- direction String
- Offset list direction. Valid values:
in
,out
. - id Integer
- Offset-list ID.
- interface_ String
- Interface name.
- offset Integer
- offset
- status String
- status Valid values:
enable
,disable
.
RipngPassiveInterface, RipngPassiveInterfaceArgs
- Name string
- Passive interface name.
- Name string
- Passive interface name.
- name String
- Passive interface name.
- name string
- Passive interface name.
- name str
- Passive interface name.
- name String
- Passive interface name.
RipngRedistribute, RipngRedistributeArgs
Import
Router Ripng can be imported using any of these accepted formats:
$ pulumi import fortios:router/ripng:Ripng labelname RouterRipng
If you do not want to import arguments of block:
$ export “FORTIOS_IMPORT_TABLE”=“false”
$ pulumi import fortios:router/ripng:Ripng labelname RouterRipng
$ unset “FORTIOS_IMPORT_TABLE”
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- fortios pulumiverse/pulumi-fortios
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
fortios
Terraform Provider.