1. Packages
  2. Fortios
  3. API Docs
  4. firewall
  5. Multicastaddress
Fortios v0.0.6 published on Tuesday, Jul 9, 2024 by pulumiverse

fortios.firewall.Multicastaddress

Explore with Pulumi AI

Configure multicast addresses.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as fortios from "@pulumiverse/fortios";

const trname = new fortios.firewall.Multicastaddress("trname", {
    color: 0,
    endIp: "224.0.0.22",
    startIp: "224.0.0.11",
    subnet: "224.0.0.11 224.0.0.22",
    type: "multicastrange",
    visibility: "enable",
});
Copy
import pulumi
import pulumiverse_fortios as fortios

trname = fortios.firewall.Multicastaddress("trname",
    color=0,
    end_ip="224.0.0.22",
    start_ip="224.0.0.11",
    subnet="224.0.0.11 224.0.0.22",
    type="multicastrange",
    visibility="enable")
Copy
package main

import (
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/pulumiverse/pulumi-fortios/sdk/go/fortios/firewall"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := firewall.NewMulticastaddress(ctx, "trname", &firewall.MulticastaddressArgs{
			Color:      pulumi.Int(0),
			EndIp:      pulumi.String("224.0.0.22"),
			StartIp:    pulumi.String("224.0.0.11"),
			Subnet:     pulumi.String("224.0.0.11 224.0.0.22"),
			Type:       pulumi.String("multicastrange"),
			Visibility: pulumi.String("enable"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortios = Pulumiverse.Fortios;

return await Deployment.RunAsync(() => 
{
    var trname = new Fortios.Firewall.Multicastaddress("trname", new()
    {
        Color = 0,
        EndIp = "224.0.0.22",
        StartIp = "224.0.0.11",
        Subnet = "224.0.0.11 224.0.0.22",
        Type = "multicastrange",
        Visibility = "enable",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortios.firewall.Multicastaddress;
import com.pulumi.fortios.firewall.MulticastaddressArgs;
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 Multicastaddress("trname", MulticastaddressArgs.builder()
            .color(0)
            .endIp("224.0.0.22")
            .startIp("224.0.0.11")
            .subnet("224.0.0.11 224.0.0.22")
            .type("multicastrange")
            .visibility("enable")
            .build());

    }
}
Copy
resources:
  trname:
    type: fortios:firewall:Multicastaddress
    properties:
      color: 0
      endIp: 224.0.0.22
      startIp: 224.0.0.11
      subnet: 224.0.0.11 224.0.0.22
      type: multicastrange
      visibility: enable
Copy

Create Multicastaddress Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new Multicastaddress(name: string, args?: MulticastaddressArgs, opts?: CustomResourceOptions);
@overload
def Multicastaddress(resource_name: str,
                     args: Optional[MulticastaddressArgs] = None,
                     opts: Optional[ResourceOptions] = None)

@overload
def Multicastaddress(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     associated_interface: Optional[str] = None,
                     color: Optional[int] = None,
                     comment: Optional[str] = None,
                     dynamic_sort_subtable: Optional[str] = None,
                     end_ip: Optional[str] = None,
                     get_all_tables: Optional[str] = None,
                     name: Optional[str] = None,
                     start_ip: Optional[str] = None,
                     subnet: Optional[str] = None,
                     taggings: Optional[Sequence[MulticastaddressTaggingArgs]] = None,
                     type: Optional[str] = None,
                     vdomparam: Optional[str] = None,
                     visibility: Optional[str] = None)
func NewMulticastaddress(ctx *Context, name string, args *MulticastaddressArgs, opts ...ResourceOption) (*Multicastaddress, error)
public Multicastaddress(string name, MulticastaddressArgs? args = null, CustomResourceOptions? opts = null)
public Multicastaddress(String name, MulticastaddressArgs args)
public Multicastaddress(String name, MulticastaddressArgs args, CustomResourceOptions options)
type: fortios:firewall:Multicastaddress
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args MulticastaddressArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args MulticastaddressArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args MulticastaddressArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args MulticastaddressArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. MulticastaddressArgs
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 multicastaddressResource = new Fortios.Firewall.Multicastaddress("multicastaddressResource", new()
{
    AssociatedInterface = "string",
    Color = 0,
    Comment = "string",
    DynamicSortSubtable = "string",
    EndIp = "string",
    GetAllTables = "string",
    Name = "string",
    StartIp = "string",
    Subnet = "string",
    Taggings = new[]
    {
        new Fortios.Firewall.Inputs.MulticastaddressTaggingArgs
        {
            Category = "string",
            Name = "string",
            Tags = new[]
            {
                new Fortios.Firewall.Inputs.MulticastaddressTaggingTagArgs
                {
                    Name = "string",
                },
            },
        },
    },
    Type = "string",
    Vdomparam = "string",
    Visibility = "string",
});
Copy
example, err := firewall.NewMulticastaddress(ctx, "multicastaddressResource", &firewall.MulticastaddressArgs{
	AssociatedInterface: pulumi.String("string"),
	Color:               pulumi.Int(0),
	Comment:             pulumi.String("string"),
	DynamicSortSubtable: pulumi.String("string"),
	EndIp:               pulumi.String("string"),
	GetAllTables:        pulumi.String("string"),
	Name:                pulumi.String("string"),
	StartIp:             pulumi.String("string"),
	Subnet:              pulumi.String("string"),
	Taggings: firewall.MulticastaddressTaggingArray{
		&firewall.MulticastaddressTaggingArgs{
			Category: pulumi.String("string"),
			Name:     pulumi.String("string"),
			Tags: firewall.MulticastaddressTaggingTagArray{
				&firewall.MulticastaddressTaggingTagArgs{
					Name: pulumi.String("string"),
				},
			},
		},
	},
	Type:       pulumi.String("string"),
	Vdomparam:  pulumi.String("string"),
	Visibility: pulumi.String("string"),
})
Copy
var multicastaddressResource = new Multicastaddress("multicastaddressResource", MulticastaddressArgs.builder()
    .associatedInterface("string")
    .color(0)
    .comment("string")
    .dynamicSortSubtable("string")
    .endIp("string")
    .getAllTables("string")
    .name("string")
    .startIp("string")
    .subnet("string")
    .taggings(MulticastaddressTaggingArgs.builder()
        .category("string")
        .name("string")
        .tags(MulticastaddressTaggingTagArgs.builder()
            .name("string")
            .build())
        .build())
    .type("string")
    .vdomparam("string")
    .visibility("string")
    .build());
Copy
multicastaddress_resource = fortios.firewall.Multicastaddress("multicastaddressResource",
    associated_interface="string",
    color=0,
    comment="string",
    dynamic_sort_subtable="string",
    end_ip="string",
    get_all_tables="string",
    name="string",
    start_ip="string",
    subnet="string",
    taggings=[{
        "category": "string",
        "name": "string",
        "tags": [{
            "name": "string",
        }],
    }],
    type="string",
    vdomparam="string",
    visibility="string")
Copy
const multicastaddressResource = new fortios.firewall.Multicastaddress("multicastaddressResource", {
    associatedInterface: "string",
    color: 0,
    comment: "string",
    dynamicSortSubtable: "string",
    endIp: "string",
    getAllTables: "string",
    name: "string",
    startIp: "string",
    subnet: "string",
    taggings: [{
        category: "string",
        name: "string",
        tags: [{
            name: "string",
        }],
    }],
    type: "string",
    vdomparam: "string",
    visibility: "string",
});
Copy
type: fortios:firewall:Multicastaddress
properties:
    associatedInterface: string
    color: 0
    comment: string
    dynamicSortSubtable: string
    endIp: string
    getAllTables: string
    name: string
    startIp: string
    subnet: string
    taggings:
        - category: string
          name: string
          tags:
            - name: string
    type: string
    vdomparam: string
    visibility: string
Copy

Multicastaddress Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The Multicastaddress resource accepts the following input properties:

AssociatedInterface string
Interface associated with the address object. When setting up a policy, only addresses associated with this interface are available.
Color int
Integer value to determine the color of the icon in the GUI (1 - 32, default = 0, which sets value to 1).
Comment string
Comment.
DynamicSortSubtable string
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 ].
EndIp string
Final IPv4 address (inclusive) in the range for the address.
GetAllTables string
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.
Name string
Multicast address name.
StartIp string
First IPv4 address (inclusive) in the range for the address.
Subnet string
Broadcast address and subnet.
Taggings List<Pulumiverse.Fortios.Firewall.Inputs.MulticastaddressTagging>
Config object tagging. The structure of tagging block is documented below.
Type string
Type of address object: multicast IP address range or broadcast IP/mask to be treated as a multicast address. Valid values: multicastrange, broadcastmask.
Vdomparam Changes to this property will trigger replacement. 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.
Visibility string
Enable/disable visibility of the multicast address on the GUI. Valid values: enable, disable.
AssociatedInterface string
Interface associated with the address object. When setting up a policy, only addresses associated with this interface are available.
Color int
Integer value to determine the color of the icon in the GUI (1 - 32, default = 0, which sets value to 1).
Comment string
Comment.
DynamicSortSubtable string
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 ].
EndIp string
Final IPv4 address (inclusive) in the range for the address.
GetAllTables string
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.
Name string
Multicast address name.
StartIp string
First IPv4 address (inclusive) in the range for the address.
Subnet string
Broadcast address and subnet.
Taggings []MulticastaddressTaggingArgs
Config object tagging. The structure of tagging block is documented below.
Type string
Type of address object: multicast IP address range or broadcast IP/mask to be treated as a multicast address. Valid values: multicastrange, broadcastmask.
Vdomparam Changes to this property will trigger replacement. 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.
Visibility string
Enable/disable visibility of the multicast address on the GUI. Valid values: enable, disable.
associatedInterface String
Interface associated with the address object. When setting up a policy, only addresses associated with this interface are available.
color Integer
Integer value to determine the color of the icon in the GUI (1 - 32, default = 0, which sets value to 1).
comment String
Comment.
dynamicSortSubtable String
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 ].
endIp String
Final IPv4 address (inclusive) in the range for the address.
getAllTables String
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.
name String
Multicast address name.
startIp String
First IPv4 address (inclusive) in the range for the address.
subnet String
Broadcast address and subnet.
taggings List<MulticastaddressTagging>
Config object tagging. The structure of tagging block is documented below.
type String
Type of address object: multicast IP address range or broadcast IP/mask to be treated as a multicast address. Valid values: multicastrange, broadcastmask.
vdomparam Changes to this property will trigger replacement. 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.
visibility String
Enable/disable visibility of the multicast address on the GUI. Valid values: enable, disable.
associatedInterface string
Interface associated with the address object. When setting up a policy, only addresses associated with this interface are available.
color number
Integer value to determine the color of the icon in the GUI (1 - 32, default = 0, which sets value to 1).
comment string
Comment.
dynamicSortSubtable string
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 ].
endIp string
Final IPv4 address (inclusive) in the range for the address.
getAllTables string
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.
name string
Multicast address name.
startIp string
First IPv4 address (inclusive) in the range for the address.
subnet string
Broadcast address and subnet.
taggings MulticastaddressTagging[]
Config object tagging. The structure of tagging block is documented below.
type string
Type of address object: multicast IP address range or broadcast IP/mask to be treated as a multicast address. Valid values: multicastrange, broadcastmask.
vdomparam Changes to this property will trigger replacement. 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.
visibility string
Enable/disable visibility of the multicast address on the GUI. Valid values: enable, disable.
associated_interface str
Interface associated with the address object. When setting up a policy, only addresses associated with this interface are available.
color int
Integer value to determine the color of the icon in the GUI (1 - 32, default = 0, which sets value to 1).
comment str
Comment.
dynamic_sort_subtable str
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 ].
end_ip str
Final IPv4 address (inclusive) in the range for the address.
get_all_tables str
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.
name str
Multicast address name.
start_ip str
First IPv4 address (inclusive) in the range for the address.
subnet str
Broadcast address and subnet.
taggings Sequence[MulticastaddressTaggingArgs]
Config object tagging. The structure of tagging block is documented below.
type str
Type of address object: multicast IP address range or broadcast IP/mask to be treated as a multicast address. Valid values: multicastrange, broadcastmask.
vdomparam Changes to this property will trigger replacement. 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.
visibility str
Enable/disable visibility of the multicast address on the GUI. Valid values: enable, disable.
associatedInterface String
Interface associated with the address object. When setting up a policy, only addresses associated with this interface are available.
color Number
Integer value to determine the color of the icon in the GUI (1 - 32, default = 0, which sets value to 1).
comment String
Comment.
dynamicSortSubtable String
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 ].
endIp String
Final IPv4 address (inclusive) in the range for the address.
getAllTables String
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.
name String
Multicast address name.
startIp String
First IPv4 address (inclusive) in the range for the address.
subnet String
Broadcast address and subnet.
taggings List<Property Map>
Config object tagging. The structure of tagging block is documented below.
type String
Type of address object: multicast IP address range or broadcast IP/mask to be treated as a multicast address. Valid values: multicastrange, broadcastmask.
vdomparam Changes to this property will trigger replacement. 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.
visibility String
Enable/disable visibility of the multicast address on the GUI. Valid values: enable, disable.

Outputs

All input properties are implicitly available as output properties. Additionally, the Multicastaddress 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 Multicastaddress Resource

Get an existing Multicastaddress 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?: MulticastaddressState, opts?: CustomResourceOptions): Multicastaddress
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        associated_interface: Optional[str] = None,
        color: Optional[int] = None,
        comment: Optional[str] = None,
        dynamic_sort_subtable: Optional[str] = None,
        end_ip: Optional[str] = None,
        get_all_tables: Optional[str] = None,
        name: Optional[str] = None,
        start_ip: Optional[str] = None,
        subnet: Optional[str] = None,
        taggings: Optional[Sequence[MulticastaddressTaggingArgs]] = None,
        type: Optional[str] = None,
        vdomparam: Optional[str] = None,
        visibility: Optional[str] = None) -> Multicastaddress
func GetMulticastaddress(ctx *Context, name string, id IDInput, state *MulticastaddressState, opts ...ResourceOption) (*Multicastaddress, error)
public static Multicastaddress Get(string name, Input<string> id, MulticastaddressState? state, CustomResourceOptions? opts = null)
public static Multicastaddress get(String name, Output<String> id, MulticastaddressState state, CustomResourceOptions options)
resources:  _:    type: fortios:firewall:Multicastaddress    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
AssociatedInterface string
Interface associated with the address object. When setting up a policy, only addresses associated with this interface are available.
Color int
Integer value to determine the color of the icon in the GUI (1 - 32, default = 0, which sets value to 1).
Comment string
Comment.
DynamicSortSubtable string
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 ].
EndIp string
Final IPv4 address (inclusive) in the range for the address.
GetAllTables string
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.
Name string
Multicast address name.
StartIp string
First IPv4 address (inclusive) in the range for the address.
Subnet string
Broadcast address and subnet.
Taggings List<Pulumiverse.Fortios.Firewall.Inputs.MulticastaddressTagging>
Config object tagging. The structure of tagging block is documented below.
Type string
Type of address object: multicast IP address range or broadcast IP/mask to be treated as a multicast address. Valid values: multicastrange, broadcastmask.
Vdomparam Changes to this property will trigger replacement. 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.
Visibility string
Enable/disable visibility of the multicast address on the GUI. Valid values: enable, disable.
AssociatedInterface string
Interface associated with the address object. When setting up a policy, only addresses associated with this interface are available.
Color int
Integer value to determine the color of the icon in the GUI (1 - 32, default = 0, which sets value to 1).
Comment string
Comment.
DynamicSortSubtable string
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 ].
EndIp string
Final IPv4 address (inclusive) in the range for the address.
GetAllTables string
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.
Name string
Multicast address name.
StartIp string
First IPv4 address (inclusive) in the range for the address.
Subnet string
Broadcast address and subnet.
Taggings []MulticastaddressTaggingArgs
Config object tagging. The structure of tagging block is documented below.
Type string
Type of address object: multicast IP address range or broadcast IP/mask to be treated as a multicast address. Valid values: multicastrange, broadcastmask.
Vdomparam Changes to this property will trigger replacement. 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.
Visibility string
Enable/disable visibility of the multicast address on the GUI. Valid values: enable, disable.
associatedInterface String
Interface associated with the address object. When setting up a policy, only addresses associated with this interface are available.
color Integer
Integer value to determine the color of the icon in the GUI (1 - 32, default = 0, which sets value to 1).
comment String
Comment.
dynamicSortSubtable String
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 ].
endIp String
Final IPv4 address (inclusive) in the range for the address.
getAllTables String
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.
name String
Multicast address name.
startIp String
First IPv4 address (inclusive) in the range for the address.
subnet String
Broadcast address and subnet.
taggings List<MulticastaddressTagging>
Config object tagging. The structure of tagging block is documented below.
type String
Type of address object: multicast IP address range or broadcast IP/mask to be treated as a multicast address. Valid values: multicastrange, broadcastmask.
vdomparam Changes to this property will trigger replacement. 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.
visibility String
Enable/disable visibility of the multicast address on the GUI. Valid values: enable, disable.
associatedInterface string
Interface associated with the address object. When setting up a policy, only addresses associated with this interface are available.
color number
Integer value to determine the color of the icon in the GUI (1 - 32, default = 0, which sets value to 1).
comment string
Comment.
dynamicSortSubtable string
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 ].
endIp string
Final IPv4 address (inclusive) in the range for the address.
getAllTables string
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.
name string
Multicast address name.
startIp string
First IPv4 address (inclusive) in the range for the address.
subnet string
Broadcast address and subnet.
taggings MulticastaddressTagging[]
Config object tagging. The structure of tagging block is documented below.
type string
Type of address object: multicast IP address range or broadcast IP/mask to be treated as a multicast address. Valid values: multicastrange, broadcastmask.
vdomparam Changes to this property will trigger replacement. 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.
visibility string
Enable/disable visibility of the multicast address on the GUI. Valid values: enable, disable.
associated_interface str
Interface associated with the address object. When setting up a policy, only addresses associated with this interface are available.
color int
Integer value to determine the color of the icon in the GUI (1 - 32, default = 0, which sets value to 1).
comment str
Comment.
dynamic_sort_subtable str
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 ].
end_ip str
Final IPv4 address (inclusive) in the range for the address.
get_all_tables str
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.
name str
Multicast address name.
start_ip str
First IPv4 address (inclusive) in the range for the address.
subnet str
Broadcast address and subnet.
taggings Sequence[MulticastaddressTaggingArgs]
Config object tagging. The structure of tagging block is documented below.
type str
Type of address object: multicast IP address range or broadcast IP/mask to be treated as a multicast address. Valid values: multicastrange, broadcastmask.
vdomparam Changes to this property will trigger replacement. 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.
visibility str
Enable/disable visibility of the multicast address on the GUI. Valid values: enable, disable.
associatedInterface String
Interface associated with the address object. When setting up a policy, only addresses associated with this interface are available.
color Number
Integer value to determine the color of the icon in the GUI (1 - 32, default = 0, which sets value to 1).
comment String
Comment.
dynamicSortSubtable String
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 ].
endIp String
Final IPv4 address (inclusive) in the range for the address.
getAllTables String
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.
name String
Multicast address name.
startIp String
First IPv4 address (inclusive) in the range for the address.
subnet String
Broadcast address and subnet.
taggings List<Property Map>
Config object tagging. The structure of tagging block is documented below.
type String
Type of address object: multicast IP address range or broadcast IP/mask to be treated as a multicast address. Valid values: multicastrange, broadcastmask.
vdomparam Changes to this property will trigger replacement. 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.
visibility String
Enable/disable visibility of the multicast address on the GUI. Valid values: enable, disable.

Supporting Types

MulticastaddressTagging
, MulticastaddressTaggingArgs

Category string
Tag category.
Name string
Tagging entry name.
Tags List<Pulumiverse.Fortios.Firewall.Inputs.MulticastaddressTaggingTag>
Tags. The structure of tags block is documented below.
Category string
Tag category.
Name string
Tagging entry name.
Tags []MulticastaddressTaggingTag
Tags. The structure of tags block is documented below.
category String
Tag category.
name String
Tagging entry name.
tags List<MulticastaddressTaggingTag>
Tags. The structure of tags block is documented below.
category string
Tag category.
name string
Tagging entry name.
tags MulticastaddressTaggingTag[]
Tags. The structure of tags block is documented below.
category str
Tag category.
name str
Tagging entry name.
tags Sequence[MulticastaddressTaggingTag]
Tags. The structure of tags block is documented below.
category String
Tag category.
name String
Tagging entry name.
tags List<Property Map>
Tags. The structure of tags block is documented below.

MulticastaddressTaggingTag
, MulticastaddressTaggingTagArgs

Name string
Tag name.
Name string
Tag name.
name String
Tag name.
name string
Tag name.
name str
Tag name.
name String
Tag name.

Import

Firewall MulticastAddress can be imported using any of these accepted formats:

$ pulumi import fortios:firewall/multicastaddress:Multicastaddress labelname {{name}}
Copy

If you do not want to import arguments of block:

$ export “FORTIOS_IMPORT_TABLE”=“false”

$ pulumi import fortios:firewall/multicastaddress:Multicastaddress labelname {{name}}
Copy

$ 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.