1. Packages
  2. Fortimanager Provider
  3. API Docs
  4. ObjectFirewallMulticastaddress
fortimanager 1.14.0 published on Tuesday, Apr 15, 2025 by fortinetdev

fortimanager.ObjectFirewallMulticastaddress

Explore with Pulumi AI

Configure multicast addresses.

The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.

  • tagging: fortimanager.ObjectFirewallMulticastaddressTagging

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";

const trname = new fortimanager.ObjectFirewallMulticastaddress("trname", {
    color: 0,
    subnets: [
        "255.255.111.0",
        "255.255.255.255",
    ],
    type: "broadcastmask",
});
Copy
import pulumi
import pulumi_fortimanager as fortimanager

trname = fortimanager.ObjectFirewallMulticastaddress("trname",
    color=0,
    subnets=[
        "255.255.111.0",
        "255.255.255.255",
    ],
    type="broadcastmask")
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := fortimanager.NewObjectFirewallMulticastaddress(ctx, "trname", &fortimanager.ObjectFirewallMulticastaddressArgs{
			Color: pulumi.Float64(0),
			Subnets: pulumi.StringArray{
				pulumi.String("255.255.111.0"),
				pulumi.String("255.255.255.255"),
			},
			Type: pulumi.String("broadcastmask"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortimanager = Pulumi.Fortimanager;

return await Deployment.RunAsync(() => 
{
    var trname = new Fortimanager.ObjectFirewallMulticastaddress("trname", new()
    {
        Color = 0,
        Subnets = new[]
        {
            "255.255.111.0",
            "255.255.255.255",
        },
        Type = "broadcastmask",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectFirewallMulticastaddress;
import com.pulumi.fortimanager.ObjectFirewallMulticastaddressArgs;
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 ObjectFirewallMulticastaddress("trname", ObjectFirewallMulticastaddressArgs.builder()
            .color(0)
            .subnets(            
                "255.255.111.0",
                "255.255.255.255")
            .type("broadcastmask")
            .build());

    }
}
Copy
resources:
  trname:
    type: fortimanager:ObjectFirewallMulticastaddress
    properties:
      color: 0
      subnets:
        - 255.255.111.0
        - 255.255.255.255
      type: broadcastmask
Copy

Create ObjectFirewallMulticastaddress Resource

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

Constructor syntax

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

@overload
def ObjectFirewallMulticastaddress(resource_name: str,
                                   opts: Optional[ResourceOptions] = None,
                                   adom: Optional[str] = None,
                                   associated_interface: Optional[str] = None,
                                   color: Optional[float] = None,
                                   comment: Optional[str] = None,
                                   dynamic_sort_subtable: Optional[str] = None,
                                   end_ip: Optional[str] = None,
                                   name: Optional[str] = None,
                                   object_firewall_multicastaddress_id: Optional[str] = None,
                                   scopetype: Optional[str] = None,
                                   start_ip: Optional[str] = None,
                                   subnets: Optional[Sequence[str]] = None,
                                   taggings: Optional[Sequence[ObjectFirewallMulticastaddressTaggingArgs]] = None,
                                   type: Optional[str] = None,
                                   visibility: Optional[str] = None)
func NewObjectFirewallMulticastaddress(ctx *Context, name string, args *ObjectFirewallMulticastaddressArgs, opts ...ResourceOption) (*ObjectFirewallMulticastaddress, error)
public ObjectFirewallMulticastaddress(string name, ObjectFirewallMulticastaddressArgs? args = null, CustomResourceOptions? opts = null)
public ObjectFirewallMulticastaddress(String name, ObjectFirewallMulticastaddressArgs args)
public ObjectFirewallMulticastaddress(String name, ObjectFirewallMulticastaddressArgs args, CustomResourceOptions options)
type: fortimanager:ObjectFirewallMulticastaddress
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 ObjectFirewallMulticastaddressArgs
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 ObjectFirewallMulticastaddressArgs
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 ObjectFirewallMulticastaddressArgs
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 ObjectFirewallMulticastaddressArgs
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. ObjectFirewallMulticastaddressArgs
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 objectFirewallMulticastaddressResource = new Fortimanager.ObjectFirewallMulticastaddress("objectFirewallMulticastaddressResource", new()
{
    Adom = "string",
    AssociatedInterface = "string",
    Color = 0,
    Comment = "string",
    DynamicSortSubtable = "string",
    EndIp = "string",
    Name = "string",
    ObjectFirewallMulticastaddressId = "string",
    Scopetype = "string",
    StartIp = "string",
    Subnets = new[]
    {
        "string",
    },
    Taggings = new[]
    {
        new Fortimanager.Inputs.ObjectFirewallMulticastaddressTaggingArgs
        {
            Category = "string",
            Name = "string",
            Tags = new[]
            {
                "string",
            },
        },
    },
    Type = "string",
    Visibility = "string",
});
Copy
example, err := fortimanager.NewObjectFirewallMulticastaddress(ctx, "objectFirewallMulticastaddressResource", &fortimanager.ObjectFirewallMulticastaddressArgs{
	Adom:                             pulumi.String("string"),
	AssociatedInterface:              pulumi.String("string"),
	Color:                            pulumi.Float64(0),
	Comment:                          pulumi.String("string"),
	DynamicSortSubtable:              pulumi.String("string"),
	EndIp:                            pulumi.String("string"),
	Name:                             pulumi.String("string"),
	ObjectFirewallMulticastaddressId: pulumi.String("string"),
	Scopetype:                        pulumi.String("string"),
	StartIp:                          pulumi.String("string"),
	Subnets: pulumi.StringArray{
		pulumi.String("string"),
	},
	Taggings: fortimanager.ObjectFirewallMulticastaddressTaggingTypeArray{
		&fortimanager.ObjectFirewallMulticastaddressTaggingTypeArgs{
			Category: pulumi.String("string"),
			Name:     pulumi.String("string"),
			Tags: pulumi.StringArray{
				pulumi.String("string"),
			},
		},
	},
	Type:       pulumi.String("string"),
	Visibility: pulumi.String("string"),
})
Copy
var objectFirewallMulticastaddressResource = new ObjectFirewallMulticastaddress("objectFirewallMulticastaddressResource", ObjectFirewallMulticastaddressArgs.builder()
    .adom("string")
    .associatedInterface("string")
    .color(0)
    .comment("string")
    .dynamicSortSubtable("string")
    .endIp("string")
    .name("string")
    .objectFirewallMulticastaddressId("string")
    .scopetype("string")
    .startIp("string")
    .subnets("string")
    .taggings(ObjectFirewallMulticastaddressTaggingArgs.builder()
        .category("string")
        .name("string")
        .tags("string")
        .build())
    .type("string")
    .visibility("string")
    .build());
Copy
object_firewall_multicastaddress_resource = fortimanager.ObjectFirewallMulticastaddress("objectFirewallMulticastaddressResource",
    adom="string",
    associated_interface="string",
    color=0,
    comment="string",
    dynamic_sort_subtable="string",
    end_ip="string",
    name="string",
    object_firewall_multicastaddress_id="string",
    scopetype="string",
    start_ip="string",
    subnets=["string"],
    taggings=[{
        "category": "string",
        "name": "string",
        "tags": ["string"],
    }],
    type="string",
    visibility="string")
Copy
const objectFirewallMulticastaddressResource = new fortimanager.ObjectFirewallMulticastaddress("objectFirewallMulticastaddressResource", {
    adom: "string",
    associatedInterface: "string",
    color: 0,
    comment: "string",
    dynamicSortSubtable: "string",
    endIp: "string",
    name: "string",
    objectFirewallMulticastaddressId: "string",
    scopetype: "string",
    startIp: "string",
    subnets: ["string"],
    taggings: [{
        category: "string",
        name: "string",
        tags: ["string"],
    }],
    type: "string",
    visibility: "string",
});
Copy
type: fortimanager:ObjectFirewallMulticastaddress
properties:
    adom: string
    associatedInterface: string
    color: 0
    comment: string
    dynamicSortSubtable: string
    endIp: string
    name: string
    objectFirewallMulticastaddressId: string
    scopetype: string
    startIp: string
    subnets:
        - string
    taggings:
        - category: string
          name: string
          tags:
            - string
    type: string
    visibility: string
Copy

ObjectFirewallMulticastaddress 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 ObjectFirewallMulticastaddress resource accepts the following input properties:

Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
AssociatedInterface string
Interface associated with the address object. When setting up a policy, only addresses associated with this interface are available.
Color double
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
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
EndIp string
Final IPv4 address (inclusive) in the range for the address.
Name string
Multicast address name.
ObjectFirewallMulticastaddressId string
an identifier for the resource with format {{name}}.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
StartIp string
First IPv4 address (inclusive) in the range for the address.
Subnets List<string>
Broadcast address and subnet.
Taggings List<ObjectFirewallMulticastaddressTagging>
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.
Visibility string
Enable/disable visibility of the multicast address on the GUI. Valid values: disable, enable.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
AssociatedInterface string
Interface associated with the address object. When setting up a policy, only addresses associated with this interface are available.
Color float64
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
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
EndIp string
Final IPv4 address (inclusive) in the range for the address.
Name string
Multicast address name.
ObjectFirewallMulticastaddressId string
an identifier for the resource with format {{name}}.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
StartIp string
First IPv4 address (inclusive) in the range for the address.
Subnets []string
Broadcast address and subnet.
Taggings []ObjectFirewallMulticastaddressTaggingTypeArgs
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.
Visibility string
Enable/disable visibility of the multicast address on the GUI. Valid values: disable, enable.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
associatedInterface String
Interface associated with the address object. When setting up a policy, only addresses associated with this interface are available.
color Double
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
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
endIp String
Final IPv4 address (inclusive) in the range for the address.
name String
Multicast address name.
objectFirewallMulticastaddressId String
an identifier for the resource with format {{name}}.
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
startIp String
First IPv4 address (inclusive) in the range for the address.
subnets List<String>
Broadcast address and subnet.
taggings List<ObjectFirewallMulticastaddressTagging>
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.
visibility String
Enable/disable visibility of the multicast address on the GUI. Valid values: disable, enable.
adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
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
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
endIp string
Final IPv4 address (inclusive) in the range for the address.
name string
Multicast address name.
objectFirewallMulticastaddressId string
an identifier for the resource with format {{name}}.
scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
startIp string
First IPv4 address (inclusive) in the range for the address.
subnets string[]
Broadcast address and subnet.
taggings ObjectFirewallMulticastaddressTagging[]
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.
visibility string
Enable/disable visibility of the multicast address on the GUI. Valid values: disable, enable.
adom str
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
associated_interface str
Interface associated with the address object. When setting up a policy, only addresses associated with this interface are available.
color float
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
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
end_ip str
Final IPv4 address (inclusive) in the range for the address.
name str
Multicast address name.
object_firewall_multicastaddress_id str
an identifier for the resource with format {{name}}.
scopetype str
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
start_ip str
First IPv4 address (inclusive) in the range for the address.
subnets Sequence[str]
Broadcast address and subnet.
taggings Sequence[ObjectFirewallMulticastaddressTaggingArgs]
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.
visibility str
Enable/disable visibility of the multicast address on the GUI. Valid values: disable, enable.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
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
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
endIp String
Final IPv4 address (inclusive) in the range for the address.
name String
Multicast address name.
objectFirewallMulticastaddressId String
an identifier for the resource with format {{name}}.
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
startIp String
First IPv4 address (inclusive) in the range for the address.
subnets List<String>
Broadcast address and subnet.
taggings List<Property Map>
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.
visibility String
Enable/disable visibility of the multicast address on the GUI. Valid values: disable, enable.

Outputs

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

Get an existing ObjectFirewallMulticastaddress 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?: ObjectFirewallMulticastaddressState, opts?: CustomResourceOptions): ObjectFirewallMulticastaddress
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        adom: Optional[str] = None,
        associated_interface: Optional[str] = None,
        color: Optional[float] = None,
        comment: Optional[str] = None,
        dynamic_sort_subtable: Optional[str] = None,
        end_ip: Optional[str] = None,
        name: Optional[str] = None,
        object_firewall_multicastaddress_id: Optional[str] = None,
        scopetype: Optional[str] = None,
        start_ip: Optional[str] = None,
        subnets: Optional[Sequence[str]] = None,
        taggings: Optional[Sequence[ObjectFirewallMulticastaddressTaggingArgs]] = None,
        type: Optional[str] = None,
        visibility: Optional[str] = None) -> ObjectFirewallMulticastaddress
func GetObjectFirewallMulticastaddress(ctx *Context, name string, id IDInput, state *ObjectFirewallMulticastaddressState, opts ...ResourceOption) (*ObjectFirewallMulticastaddress, error)
public static ObjectFirewallMulticastaddress Get(string name, Input<string> id, ObjectFirewallMulticastaddressState? state, CustomResourceOptions? opts = null)
public static ObjectFirewallMulticastaddress get(String name, Output<String> id, ObjectFirewallMulticastaddressState state, CustomResourceOptions options)
resources:  _:    type: fortimanager:ObjectFirewallMulticastaddress    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:
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
AssociatedInterface string
Interface associated with the address object. When setting up a policy, only addresses associated with this interface are available.
Color double
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
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
EndIp string
Final IPv4 address (inclusive) in the range for the address.
Name string
Multicast address name.
ObjectFirewallMulticastaddressId string
an identifier for the resource with format {{name}}.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
StartIp string
First IPv4 address (inclusive) in the range for the address.
Subnets List<string>
Broadcast address and subnet.
Taggings List<ObjectFirewallMulticastaddressTagging>
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.
Visibility string
Enable/disable visibility of the multicast address on the GUI. Valid values: disable, enable.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
AssociatedInterface string
Interface associated with the address object. When setting up a policy, only addresses associated with this interface are available.
Color float64
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
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
EndIp string
Final IPv4 address (inclusive) in the range for the address.
Name string
Multicast address name.
ObjectFirewallMulticastaddressId string
an identifier for the resource with format {{name}}.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
StartIp string
First IPv4 address (inclusive) in the range for the address.
Subnets []string
Broadcast address and subnet.
Taggings []ObjectFirewallMulticastaddressTaggingTypeArgs
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.
Visibility string
Enable/disable visibility of the multicast address on the GUI. Valid values: disable, enable.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
associatedInterface String
Interface associated with the address object. When setting up a policy, only addresses associated with this interface are available.
color Double
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
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
endIp String
Final IPv4 address (inclusive) in the range for the address.
name String
Multicast address name.
objectFirewallMulticastaddressId String
an identifier for the resource with format {{name}}.
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
startIp String
First IPv4 address (inclusive) in the range for the address.
subnets List<String>
Broadcast address and subnet.
taggings List<ObjectFirewallMulticastaddressTagging>
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.
visibility String
Enable/disable visibility of the multicast address on the GUI. Valid values: disable, enable.
adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
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
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
endIp string
Final IPv4 address (inclusive) in the range for the address.
name string
Multicast address name.
objectFirewallMulticastaddressId string
an identifier for the resource with format {{name}}.
scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
startIp string
First IPv4 address (inclusive) in the range for the address.
subnets string[]
Broadcast address and subnet.
taggings ObjectFirewallMulticastaddressTagging[]
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.
visibility string
Enable/disable visibility of the multicast address on the GUI. Valid values: disable, enable.
adom str
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
associated_interface str
Interface associated with the address object. When setting up a policy, only addresses associated with this interface are available.
color float
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
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
end_ip str
Final IPv4 address (inclusive) in the range for the address.
name str
Multicast address name.
object_firewall_multicastaddress_id str
an identifier for the resource with format {{name}}.
scopetype str
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
start_ip str
First IPv4 address (inclusive) in the range for the address.
subnets Sequence[str]
Broadcast address and subnet.
taggings Sequence[ObjectFirewallMulticastaddressTaggingArgs]
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.
visibility str
Enable/disable visibility of the multicast address on the GUI. Valid values: disable, enable.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
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
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
endIp String
Final IPv4 address (inclusive) in the range for the address.
name String
Multicast address name.
objectFirewallMulticastaddressId String
an identifier for the resource with format {{name}}.
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
startIp String
First IPv4 address (inclusive) in the range for the address.
subnets List<String>
Broadcast address and subnet.
taggings List<Property Map>
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.
visibility String
Enable/disable visibility of the multicast address on the GUI. Valid values: disable, enable.

Supporting Types

ObjectFirewallMulticastaddressTagging
, ObjectFirewallMulticastaddressTaggingArgs

Category string
Tag category.
Name string
Tagging entry name.
Tags List<string>
Tags.
Category string
Tag category.
Name string
Tagging entry name.
Tags []string
Tags.
category String
Tag category.
name String
Tagging entry name.
tags List<String>
Tags.
category string
Tag category.
name string
Tagging entry name.
tags string[]
Tags.
category str
Tag category.
name str
Tagging entry name.
tags Sequence[str]
Tags.
category String
Tag category.
name String
Tagging entry name.
tags List<String>
Tags.

Import

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

$ export “FORTIMANAGER_IMPORT_TABLE”=“true”

$ pulumi import fortimanager:index/objectFirewallMulticastaddress:ObjectFirewallMulticastaddress labelname {{name}}
Copy

$ unset “FORTIMANAGER_IMPORT_TABLE”

-> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
fortimanager fortinetdev/terraform-provider-fortimanager
License
Notes
This Pulumi package is based on the fortimanager Terraform Provider.