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",
});
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")
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
})
}
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",
});
});
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());
}
}
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
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 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 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 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 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 String
- The unique name of the resource.
- args 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",
});
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"),
})
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());
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=[fortios.firewall.MulticastaddressTaggingArgs(
category="string",
name="string",
tags=[fortios.firewall.MulticastaddressTaggingTagArgs(
name="string",
)],
)],
type="string",
vdomparam="string",
visibility="string")
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",
});
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
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
The Multicastaddress resource accepts the following input properties:
- Associated
Interface 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.
- 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 ].
- End
Ip string - Final IPv4 address (inclusive) in the range for the address.
- 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.
- Name string
- Multicast address name.
- Start
Ip string - First IPv4 address (inclusive) in the range for the address.
- Subnet string
- Broadcast address and subnet.
- Taggings
List<Pulumiverse.
Fortios. Firewall. Inputs. Multicastaddress Tagging> - 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 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 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.
- 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 ].
- End
Ip string - Final IPv4 address (inclusive) in the range for the address.
- 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.
- Name string
- Multicast address name.
- Start
Ip string - First IPv4 address (inclusive) in the range for the address.
- Subnet string
- Broadcast address and subnet.
- Taggings
[]Multicastaddress
Tagging Args - 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 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 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.
- 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 ].
- end
Ip String - Final IPv4 address (inclusive) in the range for the address.
- 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.
- name String
- Multicast address name.
- start
Ip String - First IPv4 address (inclusive) in the range for the address.
- subnet String
- Broadcast address and subnet.
- taggings
List<Multicastaddress
Tagging> - 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 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 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.
- 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 ].
- end
Ip string - Final IPv4 address (inclusive) in the range for the address.
- 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.
- name string
- Multicast address name.
- start
Ip string - First IPv4 address (inclusive) in the range for the address.
- subnet string
- Broadcast address and subnet.
- taggings
Multicastaddress
Tagging[] - 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 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_ 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 ].
- end_
ip str - Final IPv4 address (inclusive) in the range for the address.
- 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.
- 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[Multicastaddress
Tagging Args] - 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 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
.
- associated
Interface 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.
- 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 ].
- end
Ip String - Final IPv4 address (inclusive) in the range for the address.
- 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.
- name String
- Multicast address name.
- start
Ip 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 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)
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.
- Associated
Interface 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.
- 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 ].
- End
Ip string - Final IPv4 address (inclusive) in the range for the address.
- 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.
- Name string
- Multicast address name.
- Start
Ip string - First IPv4 address (inclusive) in the range for the address.
- Subnet string
- Broadcast address and subnet.
- Taggings
List<Pulumiverse.
Fortios. Firewall. Inputs. Multicastaddress Tagging> - 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 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 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.
- 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 ].
- End
Ip string - Final IPv4 address (inclusive) in the range for the address.
- 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.
- Name string
- Multicast address name.
- Start
Ip string - First IPv4 address (inclusive) in the range for the address.
- Subnet string
- Broadcast address and subnet.
- Taggings
[]Multicastaddress
Tagging Args - 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 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 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.
- 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 ].
- end
Ip String - Final IPv4 address (inclusive) in the range for the address.
- 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.
- name String
- Multicast address name.
- start
Ip String - First IPv4 address (inclusive) in the range for the address.
- subnet String
- Broadcast address and subnet.
- taggings
List<Multicastaddress
Tagging> - 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 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 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.
- 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 ].
- end
Ip string - Final IPv4 address (inclusive) in the range for the address.
- 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.
- name string
- Multicast address name.
- start
Ip string - First IPv4 address (inclusive) in the range for the address.
- subnet string
- Broadcast address and subnet.
- taggings
Multicastaddress
Tagging[] - 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 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_ 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 ].
- end_
ip str - Final IPv4 address (inclusive) in the range for the address.
- 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.
- 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[Multicastaddress
Tagging Args] - 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 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
.
- associated
Interface 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.
- 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 ].
- end
Ip String - Final IPv4 address (inclusive) in the range for the address.
- 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.
- name String
- Multicast address name.
- start
Ip 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 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.
- List<Pulumiverse.
Fortios. Firewall. Inputs. Multicastaddress Tagging Tag> - Tags. The structure of
tags
block is documented below.
- Category string
- Tag category.
- Name string
- Tagging entry name.
- []Multicastaddress
Tagging Tag - Tags. The structure of
tags
block is documented below.
- category String
- Tag category.
- name String
- Tagging entry name.
- List<Multicastaddress
Tagging Tag> - Tags. The structure of
tags
block is documented below.
- category string
- Tag category.
- name string
- Tagging entry name.
- Multicastaddress
Tagging Tag[] - Tags. The structure of
tags
block is documented below.
- category str
- Tag category.
- name str
- Tagging entry name.
- Sequence[Multicastaddress
Tagging Tag] - Tags. The structure of
tags
block is documented below.
- category String
- Tag category.
- name String
- Tagging entry name.
- 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}}
If you do not want to import arguments of block:
$ export “FORTIOS_IMPORT_TABLE”=“false”
$ pulumi import fortios:firewall/multicastaddress:Multicastaddress labelname {{name}}
$ 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.