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

fortios.firewall.Addrgrp6

Explore with Pulumi AI

Configure IPv6 address groups.

Example Usage

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

const trname1 = new fortios.firewall.Address6("trname1", {
    cacheTtl: 0,
    color: 0,
    endIp: "::",
    host: "",
    hostType: "any",
    ip6: "fdff:ffff::/120",
    startIp: "",
    type: "ipprefix",
    visibility: "enable",
});
const trname = new fortios.firewall.Addrgrp6("trname", {
    color: 0,
    visibility: "enable",
    members: [{
        name: trname1.name,
    }],
});
Copy
import pulumi
import pulumiverse_fortios as fortios

trname1 = fortios.firewall.Address6("trname1",
    cache_ttl=0,
    color=0,
    end_ip="::",
    host="",
    host_type="any",
    ip6="fdff:ffff::/120",
    start_ip="",
    type="ipprefix",
    visibility="enable")
trname = fortios.firewall.Addrgrp6("trname",
    color=0,
    visibility="enable",
    members=[fortios.firewall.Addrgrp6MemberArgs(
        name=trname1.name,
    )])
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		trname1, err := firewall.NewAddress6(ctx, "trname1", &firewall.Address6Args{
			CacheTtl:   pulumi.Int(0),
			Color:      pulumi.Int(0),
			EndIp:      pulumi.String("::"),
			Host:       pulumi.String(""),
			HostType:   pulumi.String("any"),
			Ip6:        pulumi.String("fdff:ffff::/120"),
			StartIp:    pulumi.String(""),
			Type:       pulumi.String("ipprefix"),
			Visibility: pulumi.String("enable"),
		})
		if err != nil {
			return err
		}
		_, err = firewall.NewAddrgrp6(ctx, "trname", &firewall.Addrgrp6Args{
			Color:      pulumi.Int(0),
			Visibility: pulumi.String("enable"),
			Members: firewall.Addrgrp6MemberArray{
				&firewall.Addrgrp6MemberArgs{
					Name: trname1.Name,
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortios = Pulumiverse.Fortios;

return await Deployment.RunAsync(() => 
{
    var trname1 = new Fortios.Firewall.Address6("trname1", new()
    {
        CacheTtl = 0,
        Color = 0,
        EndIp = "::",
        Host = "",
        HostType = "any",
        Ip6 = "fdff:ffff::/120",
        StartIp = "",
        Type = "ipprefix",
        Visibility = "enable",
    });

    var trname = new Fortios.Firewall.Addrgrp6("trname", new()
    {
        Color = 0,
        Visibility = "enable",
        Members = new[]
        {
            new Fortios.Firewall.Inputs.Addrgrp6MemberArgs
            {
                Name = trname1.Name,
            },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortios.firewall.Address6;
import com.pulumi.fortios.firewall.Address6Args;
import com.pulumi.fortios.firewall.Addrgrp6;
import com.pulumi.fortios.firewall.Addrgrp6Args;
import com.pulumi.fortios.firewall.inputs.Addrgrp6MemberArgs;
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 trname1 = new Address6("trname1", Address6Args.builder()
            .cacheTtl(0)
            .color(0)
            .endIp("::")
            .host("")
            .hostType("any")
            .ip6("fdff:ffff::/120")
            .startIp("")
            .type("ipprefix")
            .visibility("enable")
            .build());

        var trname = new Addrgrp6("trname", Addrgrp6Args.builder()
            .color(0)
            .visibility("enable")
            .members(Addrgrp6MemberArgs.builder()
                .name(trname1.name())
                .build())
            .build());

    }
}
Copy
resources:
  trname1:
    type: fortios:firewall:Address6
    properties:
      cacheTtl: 0
      color: 0
      endIp: '::'
      host:
      hostType: any
      ip6: fdff:ffff::/120
      startIp:
      type: ipprefix
      visibility: enable
  trname:
    type: fortios:firewall:Addrgrp6
    properties:
      color: 0
      visibility: enable
      members:
        - name: ${trname1.name}
Copy

Create Addrgrp6 Resource

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

Constructor syntax

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

@overload
def Addrgrp6(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             members: Optional[Sequence[Addrgrp6MemberArgs]] = None,
             get_all_tables: Optional[str] = None,
             dynamic_sort_subtable: Optional[str] = None,
             exclude: Optional[str] = None,
             exclude_members: Optional[Sequence[Addrgrp6ExcludeMemberArgs]] = None,
             fabric_object: Optional[str] = None,
             color: Optional[int] = None,
             comment: Optional[str] = None,
             name: Optional[str] = None,
             taggings: Optional[Sequence[Addrgrp6TaggingArgs]] = None,
             uuid: Optional[str] = None,
             vdomparam: Optional[str] = None,
             visibility: Optional[str] = None)
func NewAddrgrp6(ctx *Context, name string, args Addrgrp6Args, opts ...ResourceOption) (*Addrgrp6, error)
public Addrgrp6(string name, Addrgrp6Args args, CustomResourceOptions? opts = null)
public Addrgrp6(String name, Addrgrp6Args args)
public Addrgrp6(String name, Addrgrp6Args args, CustomResourceOptions options)
type: fortios:firewall:Addrgrp6
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 This property is required. Addrgrp6Args
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 This property is required. Addrgrp6Args
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 This property is required. Addrgrp6Args
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 This property is required. Addrgrp6Args
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. Addrgrp6Args
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 addrgrp6Resource = new Fortios.Firewall.Addrgrp6("addrgrp6Resource", new()
{
    Members = new[]
    {
        new Fortios.Firewall.Inputs.Addrgrp6MemberArgs
        {
            Name = "string",
        },
    },
    GetAllTables = "string",
    DynamicSortSubtable = "string",
    Exclude = "string",
    ExcludeMembers = new[]
    {
        new Fortios.Firewall.Inputs.Addrgrp6ExcludeMemberArgs
        {
            Name = "string",
        },
    },
    FabricObject = "string",
    Color = 0,
    Comment = "string",
    Name = "string",
    Taggings = new[]
    {
        new Fortios.Firewall.Inputs.Addrgrp6TaggingArgs
        {
            Category = "string",
            Name = "string",
            Tags = new[]
            {
                new Fortios.Firewall.Inputs.Addrgrp6TaggingTagArgs
                {
                    Name = "string",
                },
            },
        },
    },
    Uuid = "string",
    Vdomparam = "string",
    Visibility = "string",
});
Copy
example, err := firewall.NewAddrgrp6(ctx, "addrgrp6Resource", &firewall.Addrgrp6Args{
	Members: firewall.Addrgrp6MemberArray{
		&firewall.Addrgrp6MemberArgs{
			Name: pulumi.String("string"),
		},
	},
	GetAllTables:        pulumi.String("string"),
	DynamicSortSubtable: pulumi.String("string"),
	Exclude:             pulumi.String("string"),
	ExcludeMembers: firewall.Addrgrp6ExcludeMemberArray{
		&firewall.Addrgrp6ExcludeMemberArgs{
			Name: pulumi.String("string"),
		},
	},
	FabricObject: pulumi.String("string"),
	Color:        pulumi.Int(0),
	Comment:      pulumi.String("string"),
	Name:         pulumi.String("string"),
	Taggings: firewall.Addrgrp6TaggingArray{
		&firewall.Addrgrp6TaggingArgs{
			Category: pulumi.String("string"),
			Name:     pulumi.String("string"),
			Tags: firewall.Addrgrp6TaggingTagArray{
				&firewall.Addrgrp6TaggingTagArgs{
					Name: pulumi.String("string"),
				},
			},
		},
	},
	Uuid:       pulumi.String("string"),
	Vdomparam:  pulumi.String("string"),
	Visibility: pulumi.String("string"),
})
Copy
var addrgrp6Resource = new Addrgrp6("addrgrp6Resource", Addrgrp6Args.builder()
    .members(Addrgrp6MemberArgs.builder()
        .name("string")
        .build())
    .getAllTables("string")
    .dynamicSortSubtable("string")
    .exclude("string")
    .excludeMembers(Addrgrp6ExcludeMemberArgs.builder()
        .name("string")
        .build())
    .fabricObject("string")
    .color(0)
    .comment("string")
    .name("string")
    .taggings(Addrgrp6TaggingArgs.builder()
        .category("string")
        .name("string")
        .tags(Addrgrp6TaggingTagArgs.builder()
            .name("string")
            .build())
        .build())
    .uuid("string")
    .vdomparam("string")
    .visibility("string")
    .build());
Copy
addrgrp6_resource = fortios.firewall.Addrgrp6("addrgrp6Resource",
    members=[{
        "name": "string",
    }],
    get_all_tables="string",
    dynamic_sort_subtable="string",
    exclude="string",
    exclude_members=[{
        "name": "string",
    }],
    fabric_object="string",
    color=0,
    comment="string",
    name="string",
    taggings=[{
        "category": "string",
        "name": "string",
        "tags": [{
            "name": "string",
        }],
    }],
    uuid="string",
    vdomparam="string",
    visibility="string")
Copy
const addrgrp6Resource = new fortios.firewall.Addrgrp6("addrgrp6Resource", {
    members: [{
        name: "string",
    }],
    getAllTables: "string",
    dynamicSortSubtable: "string",
    exclude: "string",
    excludeMembers: [{
        name: "string",
    }],
    fabricObject: "string",
    color: 0,
    comment: "string",
    name: "string",
    taggings: [{
        category: "string",
        name: "string",
        tags: [{
            name: "string",
        }],
    }],
    uuid: "string",
    vdomparam: "string",
    visibility: "string",
});
Copy
type: fortios:firewall:Addrgrp6
properties:
    color: 0
    comment: string
    dynamicSortSubtable: string
    exclude: string
    excludeMembers:
        - name: string
    fabricObject: string
    getAllTables: string
    members:
        - name: string
    name: string
    taggings:
        - category: string
          name: string
          tags:
            - name: string
    uuid: string
    vdomparam: string
    visibility: string
Copy

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

Members This property is required. List<Pulumiverse.Fortios.Firewall.Inputs.Addrgrp6Member>
Address objects contained within the group. The structure of member block is documented below.
Color int
Integer value to determine the color of the icon in the GUI (1 - 32, default = 0, which sets the value to 1).
Comment string
Comment.
DynamicSortSubtable string
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
Exclude string
Enable/disable address6 exclusion. Valid values: enable, disable.
ExcludeMembers List<Pulumiverse.Fortios.Firewall.Inputs.Addrgrp6ExcludeMember>
Address6 exclusion member. The structure of exclude_member block is documented below.
FabricObject string
Security Fabric global object setting. Valid values: enable, disable.
GetAllTables string
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
Name string
IPv6 address group name.
Taggings List<Pulumiverse.Fortios.Firewall.Inputs.Addrgrp6Tagging>
Config object tagging. The structure of tagging block is documented below.
Uuid string
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
Vdomparam Changes to this property will trigger replacement. string
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
Visibility string
Enable/disable address group6 visibility in the GUI. Valid values: enable, disable.
Members This property is required. []Addrgrp6MemberArgs
Address objects contained within the group. The structure of member block is documented below.
Color int
Integer value to determine the color of the icon in the GUI (1 - 32, default = 0, which sets the value to 1).
Comment string
Comment.
DynamicSortSubtable string
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
Exclude string
Enable/disable address6 exclusion. Valid values: enable, disable.
ExcludeMembers []Addrgrp6ExcludeMemberArgs
Address6 exclusion member. The structure of exclude_member block is documented below.
FabricObject string
Security Fabric global object setting. Valid values: enable, disable.
GetAllTables string
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
Name string
IPv6 address group name.
Taggings []Addrgrp6TaggingArgs
Config object tagging. The structure of tagging block is documented below.
Uuid string
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
Vdomparam Changes to this property will trigger replacement. string
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
Visibility string
Enable/disable address group6 visibility in the GUI. Valid values: enable, disable.
members This property is required. List<Addrgrp6Member>
Address objects contained within the group. The structure of member block is documented below.
color Integer
Integer value to determine the color of the icon in the GUI (1 - 32, default = 0, which sets the value to 1).
comment String
Comment.
dynamicSortSubtable String
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
exclude String
Enable/disable address6 exclusion. Valid values: enable, disable.
excludeMembers List<Addrgrp6ExcludeMember>
Address6 exclusion member. The structure of exclude_member block is documented below.
fabricObject String
Security Fabric global object setting. Valid values: enable, disable.
getAllTables String
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
name String
IPv6 address group name.
taggings List<Addrgrp6Tagging>
Config object tagging. The structure of tagging block is documented below.
uuid String
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
vdomparam Changes to this property will trigger replacement. String
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
visibility String
Enable/disable address group6 visibility in the GUI. Valid values: enable, disable.
members This property is required. Addrgrp6Member[]
Address objects contained within the group. The structure of member block is documented below.
color number
Integer value to determine the color of the icon in the GUI (1 - 32, default = 0, which sets the value to 1).
comment string
Comment.
dynamicSortSubtable string
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
exclude string
Enable/disable address6 exclusion. Valid values: enable, disable.
excludeMembers Addrgrp6ExcludeMember[]
Address6 exclusion member. The structure of exclude_member block is documented below.
fabricObject string
Security Fabric global object setting. Valid values: enable, disable.
getAllTables string
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
name string
IPv6 address group name.
taggings Addrgrp6Tagging[]
Config object tagging. The structure of tagging block is documented below.
uuid string
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
vdomparam Changes to this property will trigger replacement. string
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
visibility string
Enable/disable address group6 visibility in the GUI. Valid values: enable, disable.
members This property is required. Sequence[Addrgrp6MemberArgs]
Address objects contained within the group. The structure of member block is documented below.
color int
Integer value to determine the color of the icon in the GUI (1 - 32, default = 0, which sets the value to 1).
comment str
Comment.
dynamic_sort_subtable str
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
exclude str
Enable/disable address6 exclusion. Valid values: enable, disable.
exclude_members Sequence[Addrgrp6ExcludeMemberArgs]
Address6 exclusion member. The structure of exclude_member block is documented below.
fabric_object str
Security Fabric global object setting. Valid values: enable, disable.
get_all_tables str
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
name str
IPv6 address group name.
taggings Sequence[Addrgrp6TaggingArgs]
Config object tagging. The structure of tagging block is documented below.
uuid str
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
vdomparam Changes to this property will trigger replacement. str
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
visibility str
Enable/disable address group6 visibility in the GUI. Valid values: enable, disable.
members This property is required. List<Property Map>
Address objects contained within the group. The structure of member block is documented below.
color Number
Integer value to determine the color of the icon in the GUI (1 - 32, default = 0, which sets the value to 1).
comment String
Comment.
dynamicSortSubtable String
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
exclude String
Enable/disable address6 exclusion. Valid values: enable, disable.
excludeMembers List<Property Map>
Address6 exclusion member. The structure of exclude_member block is documented below.
fabricObject String
Security Fabric global object setting. Valid values: enable, disable.
getAllTables String
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
name String
IPv6 address group name.
taggings List<Property Map>
Config object tagging. The structure of tagging block is documented below.
uuid String
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
vdomparam Changes to this property will trigger replacement. String
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
visibility String
Enable/disable address group6 visibility in the GUI. Valid values: enable, disable.

Outputs

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

Get an existing Addrgrp6 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?: Addrgrp6State, opts?: CustomResourceOptions): Addrgrp6
@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,
        exclude: Optional[str] = None,
        exclude_members: Optional[Sequence[Addrgrp6ExcludeMemberArgs]] = None,
        fabric_object: Optional[str] = None,
        get_all_tables: Optional[str] = None,
        members: Optional[Sequence[Addrgrp6MemberArgs]] = None,
        name: Optional[str] = None,
        taggings: Optional[Sequence[Addrgrp6TaggingArgs]] = None,
        uuid: Optional[str] = None,
        vdomparam: Optional[str] = None,
        visibility: Optional[str] = None) -> Addrgrp6
func GetAddrgrp6(ctx *Context, name string, id IDInput, state *Addrgrp6State, opts ...ResourceOption) (*Addrgrp6, error)
public static Addrgrp6 Get(string name, Input<string> id, Addrgrp6State? state, CustomResourceOptions? opts = null)
public static Addrgrp6 get(String name, Output<String> id, Addrgrp6State state, CustomResourceOptions options)
resources:  _:    type: fortios:firewall:Addrgrp6    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:
Color int
Integer value to determine the color of the icon in the GUI (1 - 32, default = 0, which sets the value to 1).
Comment string
Comment.
DynamicSortSubtable string
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
Exclude string
Enable/disable address6 exclusion. Valid values: enable, disable.
ExcludeMembers List<Pulumiverse.Fortios.Firewall.Inputs.Addrgrp6ExcludeMember>
Address6 exclusion member. The structure of exclude_member block is documented below.
FabricObject string
Security Fabric global object setting. Valid values: enable, disable.
GetAllTables string
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
Members List<Pulumiverse.Fortios.Firewall.Inputs.Addrgrp6Member>
Address objects contained within the group. The structure of member block is documented below.
Name string
IPv6 address group name.
Taggings List<Pulumiverse.Fortios.Firewall.Inputs.Addrgrp6Tagging>
Config object tagging. The structure of tagging block is documented below.
Uuid string
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
Vdomparam Changes to this property will trigger replacement. string
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
Visibility string
Enable/disable address group6 visibility in the GUI. Valid values: enable, disable.
Color int
Integer value to determine the color of the icon in the GUI (1 - 32, default = 0, which sets the value to 1).
Comment string
Comment.
DynamicSortSubtable string
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
Exclude string
Enable/disable address6 exclusion. Valid values: enable, disable.
ExcludeMembers []Addrgrp6ExcludeMemberArgs
Address6 exclusion member. The structure of exclude_member block is documented below.
FabricObject string
Security Fabric global object setting. Valid values: enable, disable.
GetAllTables string
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
Members []Addrgrp6MemberArgs
Address objects contained within the group. The structure of member block is documented below.
Name string
IPv6 address group name.
Taggings []Addrgrp6TaggingArgs
Config object tagging. The structure of tagging block is documented below.
Uuid string
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
Vdomparam Changes to this property will trigger replacement. string
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
Visibility string
Enable/disable address group6 visibility in the GUI. Valid values: enable, disable.
color Integer
Integer value to determine the color of the icon in the GUI (1 - 32, default = 0, which sets the value to 1).
comment String
Comment.
dynamicSortSubtable String
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
exclude String
Enable/disable address6 exclusion. Valid values: enable, disable.
excludeMembers List<Addrgrp6ExcludeMember>
Address6 exclusion member. The structure of exclude_member block is documented below.
fabricObject String
Security Fabric global object setting. Valid values: enable, disable.
getAllTables String
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
members List<Addrgrp6Member>
Address objects contained within the group. The structure of member block is documented below.
name String
IPv6 address group name.
taggings List<Addrgrp6Tagging>
Config object tagging. The structure of tagging block is documented below.
uuid String
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
vdomparam Changes to this property will trigger replacement. String
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
visibility String
Enable/disable address group6 visibility in the GUI. Valid values: enable, disable.
color number
Integer value to determine the color of the icon in the GUI (1 - 32, default = 0, which sets the value to 1).
comment string
Comment.
dynamicSortSubtable string
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
exclude string
Enable/disable address6 exclusion. Valid values: enable, disable.
excludeMembers Addrgrp6ExcludeMember[]
Address6 exclusion member. The structure of exclude_member block is documented below.
fabricObject string
Security Fabric global object setting. Valid values: enable, disable.
getAllTables string
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
members Addrgrp6Member[]
Address objects contained within the group. The structure of member block is documented below.
name string
IPv6 address group name.
taggings Addrgrp6Tagging[]
Config object tagging. The structure of tagging block is documented below.
uuid string
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
vdomparam Changes to this property will trigger replacement. string
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
visibility string
Enable/disable address group6 visibility in the GUI. Valid values: enable, disable.
color int
Integer value to determine the color of the icon in the GUI (1 - 32, default = 0, which sets the value to 1).
comment str
Comment.
dynamic_sort_subtable str
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
exclude str
Enable/disable address6 exclusion. Valid values: enable, disable.
exclude_members Sequence[Addrgrp6ExcludeMemberArgs]
Address6 exclusion member. The structure of exclude_member block is documented below.
fabric_object str
Security Fabric global object setting. Valid values: enable, disable.
get_all_tables str
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
members Sequence[Addrgrp6MemberArgs]
Address objects contained within the group. The structure of member block is documented below.
name str
IPv6 address group name.
taggings Sequence[Addrgrp6TaggingArgs]
Config object tagging. The structure of tagging block is documented below.
uuid str
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
vdomparam Changes to this property will trigger replacement. str
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
visibility str
Enable/disable address group6 visibility in the GUI. Valid values: enable, disable.
color Number
Integer value to determine the color of the icon in the GUI (1 - 32, default = 0, which sets the value to 1).
comment String
Comment.
dynamicSortSubtable String
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
exclude String
Enable/disable address6 exclusion. Valid values: enable, disable.
excludeMembers List<Property Map>
Address6 exclusion member. The structure of exclude_member block is documented below.
fabricObject String
Security Fabric global object setting. Valid values: enable, disable.
getAllTables String
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
members List<Property Map>
Address objects contained within the group. The structure of member block is documented below.
name String
IPv6 address group name.
taggings List<Property Map>
Config object tagging. The structure of tagging block is documented below.
uuid String
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
vdomparam Changes to this property will trigger replacement. String
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
visibility String
Enable/disable address group6 visibility in the GUI. Valid values: enable, disable.

Supporting Types

Addrgrp6ExcludeMember
, Addrgrp6ExcludeMemberArgs

Name string
Address6 name.
Name string
Address6 name.
name String
Address6 name.
name string
Address6 name.
name str
Address6 name.
name String
Address6 name.

Addrgrp6Member
, Addrgrp6MemberArgs

Name string
Address6/addrgrp6 name.
Name string
Address6/addrgrp6 name.
name String
Address6/addrgrp6 name.
name string
Address6/addrgrp6 name.
name str
Address6/addrgrp6 name.
name String
Address6/addrgrp6 name.

Addrgrp6Tagging
, Addrgrp6TaggingArgs

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

Addrgrp6TaggingTag
, Addrgrp6TaggingTagArgs

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 Addrgrp6 can be imported using any of these accepted formats:

$ pulumi import fortios:firewall/addrgrp6:Addrgrp6 labelname {{name}}
Copy

If you do not want to import arguments of block:

$ export “FORTIOS_IMPORT_TABLE”=“false”

$ pulumi import fortios:firewall/addrgrp6:Addrgrp6 labelname {{name}}
Copy

$ unset “FORTIOS_IMPORT_TABLE”

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

Package Details

Repository
fortios pulumiverse/pulumi-fortios
License
Apache-2.0
Notes
This Pulumi package is based on the fortios Terraform Provider.