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

fortimanager.ObjectFirewallMulticastaddress6

Explore with Pulumi AI

Configure IPv6 multicast address.

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

  • tagging: fortimanager.ObjectFirewallMulticastaddress6Tagging

Example Usage

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

const trname = new fortimanager.ObjectFirewallMulticastaddress6("trname", {
    color: 2,
    comment: "terraform-comment",
    ip6: "2001::10/128",
});
Copy
import pulumi
import pulumi_fortimanager as fortimanager

trname = fortimanager.ObjectFirewallMulticastaddress6("trname",
    color=2,
    comment="terraform-comment",
    ip6="2001::10/128")
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.NewObjectFirewallMulticastaddress6(ctx, "trname", &fortimanager.ObjectFirewallMulticastaddress6Args{
			Color:   pulumi.Float64(2),
			Comment: pulumi.String("terraform-comment"),
			Ip6:     pulumi.String("2001::10/128"),
		})
		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.ObjectFirewallMulticastaddress6("trname", new()
    {
        Color = 2,
        Comment = "terraform-comment",
        Ip6 = "2001::10/128",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectFirewallMulticastaddress6;
import com.pulumi.fortimanager.ObjectFirewallMulticastaddress6Args;
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 ObjectFirewallMulticastaddress6("trname", ObjectFirewallMulticastaddress6Args.builder()
            .color(2)
            .comment("terraform-comment")
            .ip6("2001::10/128")
            .build());

    }
}
Copy
resources:
  trname:
    type: fortimanager:ObjectFirewallMulticastaddress6
    properties:
      color: 2
      comment: terraform-comment
      ip6: 2001::10/128
Copy

Create ObjectFirewallMulticastaddress6 Resource

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

Constructor syntax

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

@overload
def ObjectFirewallMulticastaddress6(resource_name: str,
                                    opts: Optional[ResourceOptions] = None,
                                    adom: Optional[str] = None,
                                    color: Optional[float] = None,
                                    comment: Optional[str] = None,
                                    dynamic_sort_subtable: Optional[str] = None,
                                    ip6: Optional[str] = None,
                                    name: Optional[str] = None,
                                    object_firewall_multicastaddress6_id: Optional[str] = None,
                                    scopetype: Optional[str] = None,
                                    taggings: Optional[Sequence[ObjectFirewallMulticastaddress6TaggingArgs]] = None,
                                    visibility: Optional[str] = None)
func NewObjectFirewallMulticastaddress6(ctx *Context, name string, args *ObjectFirewallMulticastaddress6Args, opts ...ResourceOption) (*ObjectFirewallMulticastaddress6, error)
public ObjectFirewallMulticastaddress6(string name, ObjectFirewallMulticastaddress6Args? args = null, CustomResourceOptions? opts = null)
public ObjectFirewallMulticastaddress6(String name, ObjectFirewallMulticastaddress6Args args)
public ObjectFirewallMulticastaddress6(String name, ObjectFirewallMulticastaddress6Args args, CustomResourceOptions options)
type: fortimanager:ObjectFirewallMulticastaddress6
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 ObjectFirewallMulticastaddress6Args
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 ObjectFirewallMulticastaddress6Args
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 ObjectFirewallMulticastaddress6Args
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 ObjectFirewallMulticastaddress6Args
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. ObjectFirewallMulticastaddress6Args
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 objectFirewallMulticastaddress6Resource = new Fortimanager.ObjectFirewallMulticastaddress6("objectFirewallMulticastaddress6Resource", new()
{
    Adom = "string",
    Color = 0,
    Comment = "string",
    DynamicSortSubtable = "string",
    Ip6 = "string",
    Name = "string",
    ObjectFirewallMulticastaddress6Id = "string",
    Scopetype = "string",
    Taggings = new[]
    {
        new Fortimanager.Inputs.ObjectFirewallMulticastaddress6TaggingArgs
        {
            Category = "string",
            Name = "string",
            Tags = "string",
        },
    },
    Visibility = "string",
});
Copy
example, err := fortimanager.NewObjectFirewallMulticastaddress6(ctx, "objectFirewallMulticastaddress6Resource", &fortimanager.ObjectFirewallMulticastaddress6Args{
	Adom:                              pulumi.String("string"),
	Color:                             pulumi.Float64(0),
	Comment:                           pulumi.String("string"),
	DynamicSortSubtable:               pulumi.String("string"),
	Ip6:                               pulumi.String("string"),
	Name:                              pulumi.String("string"),
	ObjectFirewallMulticastaddress6Id: pulumi.String("string"),
	Scopetype:                         pulumi.String("string"),
	Taggings: fortimanager.ObjectFirewallMulticastaddress6TaggingTypeArray{
		&fortimanager.ObjectFirewallMulticastaddress6TaggingTypeArgs{
			Category: pulumi.String("string"),
			Name:     pulumi.String("string"),
			Tags:     pulumi.String("string"),
		},
	},
	Visibility: pulumi.String("string"),
})
Copy
var objectFirewallMulticastaddress6Resource = new ObjectFirewallMulticastaddress6("objectFirewallMulticastaddress6Resource", ObjectFirewallMulticastaddress6Args.builder()
    .adom("string")
    .color(0)
    .comment("string")
    .dynamicSortSubtable("string")
    .ip6("string")
    .name("string")
    .objectFirewallMulticastaddress6Id("string")
    .scopetype("string")
    .taggings(ObjectFirewallMulticastaddress6TaggingArgs.builder()
        .category("string")
        .name("string")
        .tags("string")
        .build())
    .visibility("string")
    .build());
Copy
object_firewall_multicastaddress6_resource = fortimanager.ObjectFirewallMulticastaddress6("objectFirewallMulticastaddress6Resource",
    adom="string",
    color=0,
    comment="string",
    dynamic_sort_subtable="string",
    ip6="string",
    name="string",
    object_firewall_multicastaddress6_id="string",
    scopetype="string",
    taggings=[{
        "category": "string",
        "name": "string",
        "tags": "string",
    }],
    visibility="string")
Copy
const objectFirewallMulticastaddress6Resource = new fortimanager.ObjectFirewallMulticastaddress6("objectFirewallMulticastaddress6Resource", {
    adom: "string",
    color: 0,
    comment: "string",
    dynamicSortSubtable: "string",
    ip6: "string",
    name: "string",
    objectFirewallMulticastaddress6Id: "string",
    scopetype: "string",
    taggings: [{
        category: "string",
        name: "string",
        tags: "string",
    }],
    visibility: "string",
});
Copy
type: fortimanager:ObjectFirewallMulticastaddress6
properties:
    adom: string
    color: 0
    comment: string
    dynamicSortSubtable: string
    ip6: string
    name: string
    objectFirewallMulticastaddress6Id: string
    scopetype: string
    taggings:
        - category: string
          name: string
          tags: string
    visibility: string
Copy

ObjectFirewallMulticastaddress6 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 ObjectFirewallMulticastaddress6 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.
Color double
Color of icon on the GUI.
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.
Ip6 string
IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
Name string
IPv6 multicast address name.
ObjectFirewallMulticastaddress6Id 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.
Taggings List<ObjectFirewallMulticastaddress6Tagging>
Tagging. The structure of tagging block is documented below.
Visibility string
Enable/disable visibility of the IPv6 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.
Color float64
Color of icon on the GUI.
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.
Ip6 string
IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
Name string
IPv6 multicast address name.
ObjectFirewallMulticastaddress6Id 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.
Taggings []ObjectFirewallMulticastaddress6TaggingTypeArgs
Tagging. The structure of tagging block is documented below.
Visibility string
Enable/disable visibility of the IPv6 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.
color Double
Color of icon on the GUI.
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.
ip6 String
IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
name String
IPv6 multicast address name.
objectFirewallMulticastaddress6Id 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.
taggings List<ObjectFirewallMulticastaddress6Tagging>
Tagging. The structure of tagging block is documented below.
visibility String
Enable/disable visibility of the IPv6 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.
color number
Color of icon on the GUI.
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.
ip6 string
IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
name string
IPv6 multicast address name.
objectFirewallMulticastaddress6Id 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.
taggings ObjectFirewallMulticastaddress6Tagging[]
Tagging. The structure of tagging block is documented below.
visibility string
Enable/disable visibility of the IPv6 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.
color float
Color of icon on the GUI.
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.
ip6 str
IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
name str
IPv6 multicast address name.
object_firewall_multicastaddress6_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.
taggings Sequence[ObjectFirewallMulticastaddress6TaggingArgs]
Tagging. The structure of tagging block is documented below.
visibility str
Enable/disable visibility of the IPv6 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.
color Number
Color of icon on the GUI.
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.
ip6 String
IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
name String
IPv6 multicast address name.
objectFirewallMulticastaddress6Id 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.
taggings List<Property Map>
Tagging. The structure of tagging block is documented below.
visibility String
Enable/disable visibility of the IPv6 multicast address on the GUI. Valid values: disable, enable.

Outputs

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

Get an existing ObjectFirewallMulticastaddress6 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?: ObjectFirewallMulticastaddress6State, opts?: CustomResourceOptions): ObjectFirewallMulticastaddress6
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        adom: Optional[str] = None,
        color: Optional[float] = None,
        comment: Optional[str] = None,
        dynamic_sort_subtable: Optional[str] = None,
        ip6: Optional[str] = None,
        name: Optional[str] = None,
        object_firewall_multicastaddress6_id: Optional[str] = None,
        scopetype: Optional[str] = None,
        taggings: Optional[Sequence[ObjectFirewallMulticastaddress6TaggingArgs]] = None,
        visibility: Optional[str] = None) -> ObjectFirewallMulticastaddress6
func GetObjectFirewallMulticastaddress6(ctx *Context, name string, id IDInput, state *ObjectFirewallMulticastaddress6State, opts ...ResourceOption) (*ObjectFirewallMulticastaddress6, error)
public static ObjectFirewallMulticastaddress6 Get(string name, Input<string> id, ObjectFirewallMulticastaddress6State? state, CustomResourceOptions? opts = null)
public static ObjectFirewallMulticastaddress6 get(String name, Output<String> id, ObjectFirewallMulticastaddress6State state, CustomResourceOptions options)
resources:  _:    type: fortimanager:ObjectFirewallMulticastaddress6    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.
Color double
Color of icon on the GUI.
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.
Ip6 string
IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
Name string
IPv6 multicast address name.
ObjectFirewallMulticastaddress6Id 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.
Taggings List<ObjectFirewallMulticastaddress6Tagging>
Tagging. The structure of tagging block is documented below.
Visibility string
Enable/disable visibility of the IPv6 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.
Color float64
Color of icon on the GUI.
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.
Ip6 string
IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
Name string
IPv6 multicast address name.
ObjectFirewallMulticastaddress6Id 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.
Taggings []ObjectFirewallMulticastaddress6TaggingTypeArgs
Tagging. The structure of tagging block is documented below.
Visibility string
Enable/disable visibility of the IPv6 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.
color Double
Color of icon on the GUI.
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.
ip6 String
IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
name String
IPv6 multicast address name.
objectFirewallMulticastaddress6Id 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.
taggings List<ObjectFirewallMulticastaddress6Tagging>
Tagging. The structure of tagging block is documented below.
visibility String
Enable/disable visibility of the IPv6 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.
color number
Color of icon on the GUI.
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.
ip6 string
IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
name string
IPv6 multicast address name.
objectFirewallMulticastaddress6Id 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.
taggings ObjectFirewallMulticastaddress6Tagging[]
Tagging. The structure of tagging block is documented below.
visibility string
Enable/disable visibility of the IPv6 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.
color float
Color of icon on the GUI.
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.
ip6 str
IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
name str
IPv6 multicast address name.
object_firewall_multicastaddress6_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.
taggings Sequence[ObjectFirewallMulticastaddress6TaggingArgs]
Tagging. The structure of tagging block is documented below.
visibility str
Enable/disable visibility of the IPv6 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.
color Number
Color of icon on the GUI.
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.
ip6 String
IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
name String
IPv6 multicast address name.
objectFirewallMulticastaddress6Id 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.
taggings List<Property Map>
Tagging. The structure of tagging block is documented below.
visibility String
Enable/disable visibility of the IPv6 multicast address on the GUI. Valid values: disable, enable.

Supporting Types

ObjectFirewallMulticastaddress6Tagging
, ObjectFirewallMulticastaddress6TaggingArgs

Category string
Tag category.
Name string
Tagging entry name.
Tags string
Tags.
Category string
Tag category.
Name string
Tagging entry name.
Tags string
Tags.
category String
Tag category.
name String
Tagging entry name.
tags String
Tags.
category string
Tag category.
name string
Tagging entry name.
tags string
Tags.
category str
Tag category.
name str
Tagging entry name.
tags str
Tags.
category String
Tag category.
name String
Tagging entry name.
tags String
Tags.

Import

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

$ export “FORTIMANAGER_IMPORT_TABLE”=“true”

$ pulumi import fortimanager:index/objectFirewallMulticastaddress6:ObjectFirewallMulticastaddress6 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.