fortios.router.Multicast6
Explore with Pulumi AI
Configure IPv6 multicast.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortios from "@pulumiverse/fortios";
const trname = new fortios.router.Multicast6("trname", {
multicastPmtu: "disable",
multicastRouting: "disable",
pimSmGlobal: {
registerRateLimit: 0,
},
});
import pulumi
import pulumiverse_fortios as fortios
trname = fortios.router.Multicast6("trname",
multicast_pmtu="disable",
multicast_routing="disable",
pim_sm_global=fortios.router.Multicast6PimSmGlobalArgs(
register_rate_limit=0,
))
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.NewMulticast6(ctx, "trname", &router.Multicast6Args{
MulticastPmtu: pulumi.String("disable"),
MulticastRouting: pulumi.String("disable"),
PimSmGlobal: &router.Multicast6PimSmGlobalArgs{
RegisterRateLimit: pulumi.Int(0),
},
})
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.Multicast6("trname", new()
{
MulticastPmtu = "disable",
MulticastRouting = "disable",
PimSmGlobal = new Fortios.Router.Inputs.Multicast6PimSmGlobalArgs
{
RegisterRateLimit = 0,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortios.router.Multicast6;
import com.pulumi.fortios.router.Multicast6Args;
import com.pulumi.fortios.router.inputs.Multicast6PimSmGlobalArgs;
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 Multicast6("trname", Multicast6Args.builder()
.multicastPmtu("disable")
.multicastRouting("disable")
.pimSmGlobal(Multicast6PimSmGlobalArgs.builder()
.registerRateLimit(0)
.build())
.build());
}
}
resources:
trname:
type: fortios:router:Multicast6
properties:
multicastPmtu: disable
multicastRouting: disable
pimSmGlobal:
registerRateLimit: 0
Create Multicast6 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Multicast6(name: string, args?: Multicast6Args, opts?: CustomResourceOptions);
@overload
def Multicast6(resource_name: str,
args: Optional[Multicast6Args] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Multicast6(resource_name: str,
opts: Optional[ResourceOptions] = None,
dynamic_sort_subtable: Optional[str] = None,
get_all_tables: Optional[str] = None,
interfaces: Optional[Sequence[Multicast6InterfaceArgs]] = None,
multicast_pmtu: Optional[str] = None,
multicast_routing: Optional[str] = None,
pim_sm_global: Optional[Multicast6PimSmGlobalArgs] = None,
vdomparam: Optional[str] = None)
func NewMulticast6(ctx *Context, name string, args *Multicast6Args, opts ...ResourceOption) (*Multicast6, error)
public Multicast6(string name, Multicast6Args? args = null, CustomResourceOptions? opts = null)
public Multicast6(String name, Multicast6Args args)
public Multicast6(String name, Multicast6Args args, CustomResourceOptions options)
type: fortios:router:Multicast6
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 Multicast6Args
- 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 Multicast6Args
- 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 Multicast6Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args Multicast6Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args Multicast6Args
- 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 multicast6Resource = new Fortios.Router.Multicast6("multicast6Resource", new()
{
DynamicSortSubtable = "string",
GetAllTables = "string",
Interfaces = new[]
{
new Fortios.Router.Inputs.Multicast6InterfaceArgs
{
HelloHoldtime = 0,
HelloInterval = 0,
Name = "string",
},
},
MulticastPmtu = "string",
MulticastRouting = "string",
PimSmGlobal = new Fortios.Router.Inputs.Multicast6PimSmGlobalArgs
{
RegisterRateLimit = 0,
RpAddresses = new[]
{
new Fortios.Router.Inputs.Multicast6PimSmGlobalRpAddressArgs
{
Id = 0,
Ip6Address = "string",
},
},
},
Vdomparam = "string",
});
example, err := router.NewMulticast6(ctx, "multicast6Resource", &router.Multicast6Args{
DynamicSortSubtable: pulumi.String("string"),
GetAllTables: pulumi.String("string"),
Interfaces: router.Multicast6InterfaceArray{
&router.Multicast6InterfaceArgs{
HelloHoldtime: pulumi.Int(0),
HelloInterval: pulumi.Int(0),
Name: pulumi.String("string"),
},
},
MulticastPmtu: pulumi.String("string"),
MulticastRouting: pulumi.String("string"),
PimSmGlobal: &router.Multicast6PimSmGlobalArgs{
RegisterRateLimit: pulumi.Int(0),
RpAddresses: router.Multicast6PimSmGlobalRpAddressArray{
&router.Multicast6PimSmGlobalRpAddressArgs{
Id: pulumi.Int(0),
Ip6Address: pulumi.String("string"),
},
},
},
Vdomparam: pulumi.String("string"),
})
var multicast6Resource = new Multicast6("multicast6Resource", Multicast6Args.builder()
.dynamicSortSubtable("string")
.getAllTables("string")
.interfaces(Multicast6InterfaceArgs.builder()
.helloHoldtime(0)
.helloInterval(0)
.name("string")
.build())
.multicastPmtu("string")
.multicastRouting("string")
.pimSmGlobal(Multicast6PimSmGlobalArgs.builder()
.registerRateLimit(0)
.rpAddresses(Multicast6PimSmGlobalRpAddressArgs.builder()
.id(0)
.ip6Address("string")
.build())
.build())
.vdomparam("string")
.build());
multicast6_resource = fortios.router.Multicast6("multicast6Resource",
dynamic_sort_subtable="string",
get_all_tables="string",
interfaces=[fortios.router.Multicast6InterfaceArgs(
hello_holdtime=0,
hello_interval=0,
name="string",
)],
multicast_pmtu="string",
multicast_routing="string",
pim_sm_global=fortios.router.Multicast6PimSmGlobalArgs(
register_rate_limit=0,
rp_addresses=[fortios.router.Multicast6PimSmGlobalRpAddressArgs(
id=0,
ip6_address="string",
)],
),
vdomparam="string")
const multicast6Resource = new fortios.router.Multicast6("multicast6Resource", {
dynamicSortSubtable: "string",
getAllTables: "string",
interfaces: [{
helloHoldtime: 0,
helloInterval: 0,
name: "string",
}],
multicastPmtu: "string",
multicastRouting: "string",
pimSmGlobal: {
registerRateLimit: 0,
rpAddresses: [{
id: 0,
ip6Address: "string",
}],
},
vdomparam: "string",
});
type: fortios:router:Multicast6
properties:
dynamicSortSubtable: string
getAllTables: string
interfaces:
- helloHoldtime: 0
helloInterval: 0
name: string
multicastPmtu: string
multicastRouting: string
pimSmGlobal:
registerRateLimit: 0
rpAddresses:
- id: 0
ip6Address: string
vdomparam: string
Multicast6 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 Multicast6 resource accepts the following input properties:
- 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 ].
- 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, otherwish 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. Multicast6Interface> - Protocol Independent Multicast (PIM) interfaces. The structure of
interface
block is documented below. - Multicast
Pmtu string - Enable/disable PMTU for IPv6 multicast. Valid values:
enable
,disable
. - Multicast
Routing string - Enable/disable IPv6 multicast routing. Valid values:
enable
,disable
. - Pim
Sm Pulumiverse.Global Fortios. Router. Inputs. Multicast6Pim Sm Global - PIM sparse-mode global settings. The structure of
pim_sm_global
block is documented below. - 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.
- 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 ].
- 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, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- Interfaces
[]Multicast6Interface
Args - Protocol Independent Multicast (PIM) interfaces. The structure of
interface
block is documented below. - Multicast
Pmtu string - Enable/disable PMTU for IPv6 multicast. Valid values:
enable
,disable
. - Multicast
Routing string - Enable/disable IPv6 multicast routing. Valid values:
enable
,disable
. - Pim
Sm Multicast6PimGlobal Sm Global Args - PIM sparse-mode global settings. The structure of
pim_sm_global
block is documented below. - 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.
- 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 ].
- 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, otherwish 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<Multicast6Interface>
- Protocol Independent Multicast (PIM) interfaces. The structure of
interface
block is documented below. - multicast
Pmtu String - Enable/disable PMTU for IPv6 multicast. Valid values:
enable
,disable
. - multicast
Routing String - Enable/disable IPv6 multicast routing. Valid values:
enable
,disable
. - pim
Sm Multicast6PimGlobal Sm Global - PIM sparse-mode global settings. The structure of
pim_sm_global
block is documented below. - 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.
- 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 ].
- 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, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- interfaces Multicast6Interface[]
- Protocol Independent Multicast (PIM) interfaces. The structure of
interface
block is documented below. - multicast
Pmtu string - Enable/disable PMTU for IPv6 multicast. Valid values:
enable
,disable
. - multicast
Routing string - Enable/disable IPv6 multicast routing. Valid values:
enable
,disable
. - pim
Sm Multicast6PimGlobal Sm Global - PIM sparse-mode global settings. The structure of
pim_sm_global
block is documented below. - 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.
- 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 ].
- 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, otherwish 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[Multicast6Interface
Args] - Protocol Independent Multicast (PIM) interfaces. The structure of
interface
block is documented below. - multicast_
pmtu str - Enable/disable PMTU for IPv6 multicast. Valid values:
enable
,disable
. - multicast_
routing str - Enable/disable IPv6 multicast routing. Valid values:
enable
,disable
. - pim_
sm_ Multicast6Pimglobal Sm Global Args - PIM sparse-mode global settings. The structure of
pim_sm_global
block is documented below. - 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.
- 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 ].
- 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, otherwish 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>
- Protocol Independent Multicast (PIM) interfaces. The structure of
interface
block is documented below. - multicast
Pmtu String - Enable/disable PMTU for IPv6 multicast. Valid values:
enable
,disable
. - multicast
Routing String - Enable/disable IPv6 multicast routing. Valid values:
enable
,disable
. - pim
Sm Property MapGlobal - PIM sparse-mode global settings. The structure of
pim_sm_global
block is documented below. - 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 Multicast6 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 Multicast6 Resource
Get an existing Multicast6 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?: Multicast6State, opts?: CustomResourceOptions): Multicast6
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
dynamic_sort_subtable: Optional[str] = None,
get_all_tables: Optional[str] = None,
interfaces: Optional[Sequence[Multicast6InterfaceArgs]] = None,
multicast_pmtu: Optional[str] = None,
multicast_routing: Optional[str] = None,
pim_sm_global: Optional[Multicast6PimSmGlobalArgs] = None,
vdomparam: Optional[str] = None) -> Multicast6
func GetMulticast6(ctx *Context, name string, id IDInput, state *Multicast6State, opts ...ResourceOption) (*Multicast6, error)
public static Multicast6 Get(string name, Input<string> id, Multicast6State? state, CustomResourceOptions? opts = null)
public static Multicast6 get(String name, Output<String> id, Multicast6State 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.
- 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 ].
- 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, otherwish 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. Multicast6Interface> - Protocol Independent Multicast (PIM) interfaces. The structure of
interface
block is documented below. - Multicast
Pmtu string - Enable/disable PMTU for IPv6 multicast. Valid values:
enable
,disable
. - Multicast
Routing string - Enable/disable IPv6 multicast routing. Valid values:
enable
,disable
. - Pim
Sm Pulumiverse.Global Fortios. Router. Inputs. Multicast6Pim Sm Global - PIM sparse-mode global settings. The structure of
pim_sm_global
block is documented below. - 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.
- 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 ].
- 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, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- Interfaces
[]Multicast6Interface
Args - Protocol Independent Multicast (PIM) interfaces. The structure of
interface
block is documented below. - Multicast
Pmtu string - Enable/disable PMTU for IPv6 multicast. Valid values:
enable
,disable
. - Multicast
Routing string - Enable/disable IPv6 multicast routing. Valid values:
enable
,disable
. - Pim
Sm Multicast6PimGlobal Sm Global Args - PIM sparse-mode global settings. The structure of
pim_sm_global
block is documented below. - 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.
- 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 ].
- 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, otherwish 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<Multicast6Interface>
- Protocol Independent Multicast (PIM) interfaces. The structure of
interface
block is documented below. - multicast
Pmtu String - Enable/disable PMTU for IPv6 multicast. Valid values:
enable
,disable
. - multicast
Routing String - Enable/disable IPv6 multicast routing. Valid values:
enable
,disable
. - pim
Sm Multicast6PimGlobal Sm Global - PIM sparse-mode global settings. The structure of
pim_sm_global
block is documented below. - 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.
- 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 ].
- 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, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- interfaces Multicast6Interface[]
- Protocol Independent Multicast (PIM) interfaces. The structure of
interface
block is documented below. - multicast
Pmtu string - Enable/disable PMTU for IPv6 multicast. Valid values:
enable
,disable
. - multicast
Routing string - Enable/disable IPv6 multicast routing. Valid values:
enable
,disable
. - pim
Sm Multicast6PimGlobal Sm Global - PIM sparse-mode global settings. The structure of
pim_sm_global
block is documented below. - 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.
- 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 ].
- 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, otherwish 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[Multicast6Interface
Args] - Protocol Independent Multicast (PIM) interfaces. The structure of
interface
block is documented below. - multicast_
pmtu str - Enable/disable PMTU for IPv6 multicast. Valid values:
enable
,disable
. - multicast_
routing str - Enable/disable IPv6 multicast routing. Valid values:
enable
,disable
. - pim_
sm_ Multicast6Pimglobal Sm Global Args - PIM sparse-mode global settings. The structure of
pim_sm_global
block is documented below. - 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.
- 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 ].
- 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, otherwish 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>
- Protocol Independent Multicast (PIM) interfaces. The structure of
interface
block is documented below. - multicast
Pmtu String - Enable/disable PMTU for IPv6 multicast. Valid values:
enable
,disable
. - multicast
Routing String - Enable/disable IPv6 multicast routing. Valid values:
enable
,disable
. - pim
Sm Property MapGlobal - PIM sparse-mode global settings. The structure of
pim_sm_global
block is documented below. - 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
Multicast6Interface, Multicast6InterfaceArgs
- Hello
Holdtime int - Time before old neighbor information expires in seconds (1 - 65535, default = 105).
- Hello
Interval int - Interval between sending PIM hello messages in seconds (1 - 65535, default = 30).
- Name string
- Interface name.
- Hello
Holdtime int - Time before old neighbor information expires in seconds (1 - 65535, default = 105).
- Hello
Interval int - Interval between sending PIM hello messages in seconds (1 - 65535, default = 30).
- Name string
- Interface name.
- hello
Holdtime Integer - Time before old neighbor information expires in seconds (1 - 65535, default = 105).
- hello
Interval Integer - Interval between sending PIM hello messages in seconds (1 - 65535, default = 30).
- name String
- Interface name.
- hello
Holdtime number - Time before old neighbor information expires in seconds (1 - 65535, default = 105).
- hello
Interval number - Interval between sending PIM hello messages in seconds (1 - 65535, default = 30).
- name string
- Interface name.
- hello_
holdtime int - Time before old neighbor information expires in seconds (1 - 65535, default = 105).
- hello_
interval int - Interval between sending PIM hello messages in seconds (1 - 65535, default = 30).
- name str
- Interface name.
- hello
Holdtime Number - Time before old neighbor information expires in seconds (1 - 65535, default = 105).
- hello
Interval Number - Interval between sending PIM hello messages in seconds (1 - 65535, default = 30).
- name String
- Interface name.
Multicast6PimSmGlobal, Multicast6PimSmGlobalArgs
- Register
Rate intLimit - Limit of packets/sec per source registered through this RP (0 means unlimited).
- Rp
Addresses List<Pulumiverse.Fortios. Router. Inputs. Multicast6Pim Sm Global Rp Address> - Statically configured RP addresses. The structure of
rp_address
block is documented below.
- Register
Rate intLimit - Limit of packets/sec per source registered through this RP (0 means unlimited).
- Rp
Addresses []Multicast6PimSm Global Rp Address - Statically configured RP addresses. The structure of
rp_address
block is documented below.
- register
Rate IntegerLimit - Limit of packets/sec per source registered through this RP (0 means unlimited).
- rp
Addresses List<Multicast6PimSm Global Rp Address> - Statically configured RP addresses. The structure of
rp_address
block is documented below.
- register
Rate numberLimit - Limit of packets/sec per source registered through this RP (0 means unlimited).
- rp
Addresses Multicast6PimSm Global Rp Address[] - Statically configured RP addresses. The structure of
rp_address
block is documented below.
- register_
rate_ intlimit - Limit of packets/sec per source registered through this RP (0 means unlimited).
- rp_
addresses Sequence[Multicast6PimSm Global Rp Address] - Statically configured RP addresses. The structure of
rp_address
block is documented below.
- register
Rate NumberLimit - Limit of packets/sec per source registered through this RP (0 means unlimited).
- rp
Addresses List<Property Map> - Statically configured RP addresses. The structure of
rp_address
block is documented below.
Multicast6PimSmGlobalRpAddress, Multicast6PimSmGlobalRpAddressArgs
- Id int
- ID of the entry.
- Ip6Address string
- RP router IPv6 address.
- Id int
- ID of the entry.
- Ip6Address string
- RP router IPv6 address.
- id Integer
- ID of the entry.
- ip6Address String
- RP router IPv6 address.
- id number
- ID of the entry.
- ip6Address string
- RP router IPv6 address.
- id int
- ID of the entry.
- ip6_
address str - RP router IPv6 address.
- id Number
- ID of the entry.
- ip6Address String
- RP router IPv6 address.
Import
Router Multicast6 can be imported using any of these accepted formats:
$ pulumi import fortios:router/multicast6:Multicast6 labelname RouterMulticast6
If you do not want to import arguments of block:
$ export “FORTIOS_IMPORT_TABLE”=“false”
$ pulumi import fortios:router/multicast6:Multicast6 labelname RouterMulticast6
$ 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.