fortios.firewall.Multicastaddress6
Explore with Pulumi AI
Configure IPv6 multicast address.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortios from "@pulumiverse/fortios";
const trname = new fortios.firewall.Multicastaddress6("trname", {
color: 0,
ip6: "ff02::1:ff0e:8c6c/128",
visibility: "enable",
});
import pulumi
import pulumiverse_fortios as fortios
trname = fortios.firewall.Multicastaddress6("trname",
color=0,
ip6="ff02::1:ff0e:8c6c/128",
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.NewMulticastaddress6(ctx, "trname", &firewall.Multicastaddress6Args{
Color: pulumi.Int(0),
Ip6: pulumi.String("ff02::1:ff0e:8c6c/128"),
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.Multicastaddress6("trname", new()
{
Color = 0,
Ip6 = "ff02::1:ff0e:8c6c/128",
Visibility = "enable",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortios.firewall.Multicastaddress6;
import com.pulumi.fortios.firewall.Multicastaddress6Args;
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 Multicastaddress6("trname", Multicastaddress6Args.builder()
.color(0)
.ip6("ff02::1:ff0e:8c6c/128")
.visibility("enable")
.build());
}
}
resources:
trname:
type: fortios:firewall:Multicastaddress6
properties:
color: 0
ip6: ff02::1:ff0e:8c6c/128
visibility: enable
Create Multicastaddress6 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Multicastaddress6(name: string, args: Multicastaddress6Args, opts?: CustomResourceOptions);
@overload
def Multicastaddress6(resource_name: str,
args: Multicastaddress6Args,
opts: Optional[ResourceOptions] = None)
@overload
def Multicastaddress6(resource_name: str,
opts: Optional[ResourceOptions] = None,
ip6: Optional[str] = None,
color: Optional[int] = None,
comment: Optional[str] = None,
dynamic_sort_subtable: Optional[str] = None,
get_all_tables: Optional[str] = None,
name: Optional[str] = None,
taggings: Optional[Sequence[Multicastaddress6TaggingArgs]] = None,
vdomparam: Optional[str] = None,
visibility: Optional[str] = None)
func NewMulticastaddress6(ctx *Context, name string, args Multicastaddress6Args, opts ...ResourceOption) (*Multicastaddress6, error)
public Multicastaddress6(string name, Multicastaddress6Args args, CustomResourceOptions? opts = null)
public Multicastaddress6(String name, Multicastaddress6Args args)
public Multicastaddress6(String name, Multicastaddress6Args args, CustomResourceOptions options)
type: fortios:firewall:Multicastaddress6
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 Multicastaddress6Args
- 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 Multicastaddress6Args
- 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 Multicastaddress6Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args Multicastaddress6Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args Multicastaddress6Args
- 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 multicastaddress6Resource = new Fortios.Firewall.Multicastaddress6("multicastaddress6Resource", new()
{
Ip6 = "string",
Color = 0,
Comment = "string",
DynamicSortSubtable = "string",
GetAllTables = "string",
Name = "string",
Taggings = new[]
{
new Fortios.Firewall.Inputs.Multicastaddress6TaggingArgs
{
Category = "string",
Name = "string",
Tags = new[]
{
new Fortios.Firewall.Inputs.Multicastaddress6TaggingTagArgs
{
Name = "string",
},
},
},
},
Vdomparam = "string",
Visibility = "string",
});
example, err := firewall.NewMulticastaddress6(ctx, "multicastaddress6Resource", &firewall.Multicastaddress6Args{
Ip6: pulumi.String("string"),
Color: pulumi.Int(0),
Comment: pulumi.String("string"),
DynamicSortSubtable: pulumi.String("string"),
GetAllTables: pulumi.String("string"),
Name: pulumi.String("string"),
Taggings: firewall.Multicastaddress6TaggingArray{
&firewall.Multicastaddress6TaggingArgs{
Category: pulumi.String("string"),
Name: pulumi.String("string"),
Tags: firewall.Multicastaddress6TaggingTagArray{
&firewall.Multicastaddress6TaggingTagArgs{
Name: pulumi.String("string"),
},
},
},
},
Vdomparam: pulumi.String("string"),
Visibility: pulumi.String("string"),
})
var multicastaddress6Resource = new Multicastaddress6("multicastaddress6Resource", Multicastaddress6Args.builder()
.ip6("string")
.color(0)
.comment("string")
.dynamicSortSubtable("string")
.getAllTables("string")
.name("string")
.taggings(Multicastaddress6TaggingArgs.builder()
.category("string")
.name("string")
.tags(Multicastaddress6TaggingTagArgs.builder()
.name("string")
.build())
.build())
.vdomparam("string")
.visibility("string")
.build());
multicastaddress6_resource = fortios.firewall.Multicastaddress6("multicastaddress6Resource",
ip6="string",
color=0,
comment="string",
dynamic_sort_subtable="string",
get_all_tables="string",
name="string",
taggings=[fortios.firewall.Multicastaddress6TaggingArgs(
category="string",
name="string",
tags=[fortios.firewall.Multicastaddress6TaggingTagArgs(
name="string",
)],
)],
vdomparam="string",
visibility="string")
const multicastaddress6Resource = new fortios.firewall.Multicastaddress6("multicastaddress6Resource", {
ip6: "string",
color: 0,
comment: "string",
dynamicSortSubtable: "string",
getAllTables: "string",
name: "string",
taggings: [{
category: "string",
name: "string",
tags: [{
name: "string",
}],
}],
vdomparam: "string",
visibility: "string",
});
type: fortios:firewall:Multicastaddress6
properties:
color: 0
comment: string
dynamicSortSubtable: string
getAllTables: string
ip6: string
name: string
taggings:
- category: string
name: string
tags:
- name: string
vdomparam: string
visibility: string
Multicastaddress6 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 Multicastaddress6 resource accepts the following input properties:
- Ip6 string
- IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
- Color int
- Color of icon on the GUI.
- 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 ].
- 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
- IPv6 multicast address name.
- Taggings
List<Pulumiverse.
Fortios. Firewall. Inputs. Multicastaddress6Tagging> - Config object tagging. The structure of
tagging
block is documented below. - Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- Visibility string
- Enable/disable visibility of the IPv6 multicast address on the GUI. Valid values:
enable
,disable
.
- Ip6 string
- IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
- Color int
- Color of icon on the GUI.
- 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 ].
- 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
- IPv6 multicast address name.
- Taggings
[]Multicastaddress6Tagging
Args - Config object tagging. The structure of
tagging
block is documented below. - Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- Visibility string
- Enable/disable visibility of the IPv6 multicast address on the GUI. Valid values:
enable
,disable
.
- ip6 String
- IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
- color Integer
- Color of icon on the GUI.
- 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 ].
- 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
- IPv6 multicast address name.
- taggings List<Multicastaddress6Tagging>
- Config object tagging. The structure of
tagging
block is documented below. - vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- visibility String
- Enable/disable visibility of the IPv6 multicast address on the GUI. Valid values:
enable
,disable
.
- ip6 string
- IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
- color number
- Color of icon on the GUI.
- 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 ].
- 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
- IPv6 multicast address name.
- taggings Multicastaddress6Tagging[]
- Config object tagging. The structure of
tagging
block is documented below. - vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- visibility string
- Enable/disable visibility of the IPv6 multicast address on the GUI. Valid values:
enable
,disable
.
- ip6 str
- IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
- color int
- Color of icon on the GUI.
- 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 ].
- 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
- IPv6 multicast address name.
- taggings
Sequence[Multicastaddress6Tagging
Args] - Config object tagging. The structure of
tagging
block is documented below. - vdomparam str
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- visibility str
- Enable/disable visibility of the IPv6 multicast address on the GUI. Valid values:
enable
,disable
.
- ip6 String
- IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
- color Number
- Color of icon on the GUI.
- 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 ].
- 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
- IPv6 multicast address name.
- taggings List<Property Map>
- Config object tagging. The structure of
tagging
block is documented below. - vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- visibility String
- Enable/disable visibility of the IPv6 multicast address on the GUI. Valid values:
enable
,disable
.
Outputs
All input properties are implicitly available as output properties. Additionally, the Multicastaddress6 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 Multicastaddress6 Resource
Get an existing Multicastaddress6 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?: Multicastaddress6State, opts?: CustomResourceOptions): Multicastaddress6
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
color: Optional[int] = None,
comment: Optional[str] = None,
dynamic_sort_subtable: Optional[str] = None,
get_all_tables: Optional[str] = None,
ip6: Optional[str] = None,
name: Optional[str] = None,
taggings: Optional[Sequence[Multicastaddress6TaggingArgs]] = None,
vdomparam: Optional[str] = None,
visibility: Optional[str] = None) -> Multicastaddress6
func GetMulticastaddress6(ctx *Context, name string, id IDInput, state *Multicastaddress6State, opts ...ResourceOption) (*Multicastaddress6, error)
public static Multicastaddress6 Get(string name, Input<string> id, Multicastaddress6State? state, CustomResourceOptions? opts = null)
public static Multicastaddress6 get(String name, Output<String> id, Multicastaddress6State 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.
- Color int
- Color of icon on the GUI.
- 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 ].
- 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.
- Ip6 string
- IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
- Name string
- IPv6 multicast address name.
- Taggings
List<Pulumiverse.
Fortios. Firewall. Inputs. Multicastaddress6Tagging> - Config object tagging. The structure of
tagging
block is documented below. - Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- Visibility string
- Enable/disable visibility of the IPv6 multicast address on the GUI. Valid values:
enable
,disable
.
- Color int
- Color of icon on the GUI.
- 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 ].
- 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.
- Ip6 string
- IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
- Name string
- IPv6 multicast address name.
- Taggings
[]Multicastaddress6Tagging
Args - Config object tagging. The structure of
tagging
block is documented below. - Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- Visibility string
- Enable/disable visibility of the IPv6 multicast address on the GUI. Valid values:
enable
,disable
.
- color Integer
- Color of icon on the GUI.
- 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 ].
- 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.
- ip6 String
- IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
- name String
- IPv6 multicast address name.
- taggings List<Multicastaddress6Tagging>
- Config object tagging. The structure of
tagging
block is documented below. - vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- visibility String
- Enable/disable visibility of the IPv6 multicast address on the GUI. Valid values:
enable
,disable
.
- color number
- Color of icon on the GUI.
- 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 ].
- 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.
- ip6 string
- IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
- name string
- IPv6 multicast address name.
- taggings Multicastaddress6Tagging[]
- Config object tagging. The structure of
tagging
block is documented below. - vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- visibility string
- Enable/disable visibility of the IPv6 multicast address on the GUI. Valid values:
enable
,disable
.
- color int
- Color of icon on the GUI.
- 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 ].
- 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.
- ip6 str
- IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
- name str
- IPv6 multicast address name.
- taggings
Sequence[Multicastaddress6Tagging
Args] - Config object tagging. The structure of
tagging
block is documented below. - vdomparam str
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- visibility str
- Enable/disable visibility of the IPv6 multicast address on the GUI. Valid values:
enable
,disable
.
- color Number
- Color of icon on the GUI.
- 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 ].
- 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.
- ip6 String
- IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
- name String
- IPv6 multicast address name.
- taggings List<Property Map>
- Config object tagging. The structure of
tagging
block is documented below. - vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- visibility String
- Enable/disable visibility of the IPv6 multicast address on the GUI. Valid values:
enable
,disable
.
Supporting Types
Multicastaddress6Tagging, Multicastaddress6TaggingArgs
- Category string
- Tag category.
- Name string
- Tagging entry name.
- List<Pulumiverse.
Fortios. Firewall. Inputs. Multicastaddress6Tagging Tag> - Tags. The structure of
tags
block is documented below.
- Category string
- Tag category.
- Name string
- Tagging entry name.
- []Multicastaddress6Tagging
Tag - Tags. The structure of
tags
block is documented below.
- category String
- Tag category.
- name String
- Tagging entry name.
- List<Multicastaddress6Tagging
Tag> - Tags. The structure of
tags
block is documented below.
- category string
- Tag category.
- name string
- Tagging entry name.
- Multicastaddress6Tagging
Tag[] - Tags. The structure of
tags
block is documented below.
- category str
- Tag category.
- name str
- Tagging entry name.
- Sequence[Multicastaddress6Tagging
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.
Multicastaddress6TaggingTag, Multicastaddress6TaggingTagArgs
- 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 MulticastAddress6 can be imported using any of these accepted formats:
$ pulumi import fortios:firewall/multicastaddress6:Multicastaddress6 labelname {{name}}
If you do not want to import arguments of block:
$ export “FORTIOS_IMPORT_TABLE”=“false”
$ pulumi import fortios:firewall/multicastaddress6:Multicastaddress6 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.