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,
}],
});
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,
)])
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
})
}
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,
},
},
});
});
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());
}
}
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}
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 string
- The unique name of the resource.
- args Addrgrp6Args
- 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 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 string
- The unique name of the resource.
- args Addrgrp6Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args Addrgrp6Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
});
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"),
})
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());
addrgrp6_resource = fortios.firewall.Addrgrp6("addrgrp6Resource",
members=[fortios.firewall.Addrgrp6MemberArgs(
name="string",
)],
get_all_tables="string",
dynamic_sort_subtable="string",
exclude="string",
exclude_members=[fortios.firewall.Addrgrp6ExcludeMemberArgs(
name="string",
)],
fabric_object="string",
color=0,
comment="string",
name="string",
taggings=[fortios.firewall.Addrgrp6TaggingArgs(
category="string",
name="string",
tags=[fortios.firewall.Addrgrp6TaggingTagArgs(
name="string",
)],
)],
uuid="string",
vdomparam="string",
visibility="string")
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",
});
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
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
The Addrgrp6 resource accepts the following input properties:
- Members
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.
- 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 ].
- Exclude string
- Enable/disable address6 exclusion. Valid values:
enable
,disable
. - Exclude
Members List<Pulumiverse.Fortios. Firewall. Inputs. Addrgrp6Exclude Member> - Address6 exclusion member. The structure of
exclude_member
block is documented below. - Fabric
Object string - Security Fabric global object setting. Valid values:
enable
,disable
. - 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 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 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
[]Addrgrp6Member
Args - 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.
- 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 ].
- Exclude string
- Enable/disable address6 exclusion. Valid values:
enable
,disable
. - Exclude
Members []Addrgrp6ExcludeMember Args - Address6 exclusion member. The structure of
exclude_member
block is documented below. - Fabric
Object string - Security Fabric global object setting. Valid values:
enable
,disable
. - 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 address group name.
- Taggings
[]Addrgrp6Tagging
Args - 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 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 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.
- 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 ].
- exclude String
- Enable/disable address6 exclusion. Valid values:
enable
,disable
. - exclude
Members List<Addrgrp6ExcludeMember> - Address6 exclusion member. The structure of
exclude_member
block is documented below. - fabric
Object String - Security Fabric global object setting. Valid values:
enable
,disable
. - 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 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 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 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.
- 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 ].
- exclude string
- Enable/disable address6 exclusion. Valid values:
enable
,disable
. - exclude
Members Addrgrp6ExcludeMember[] - Address6 exclusion member. The structure of
exclude_member
block is documented below. - fabric
Object string - Security Fabric global object setting. Valid values:
enable
,disable
. - 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 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 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
Sequence[Addrgrp6Member
Args] - 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_ 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 ].
- exclude str
- Enable/disable address6 exclusion. Valid values:
enable
,disable
. - exclude_
members Sequence[Addrgrp6ExcludeMember Args] - 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_ 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 address group name.
- taggings
Sequence[Addrgrp6Tagging
Args] - 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 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 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.
- 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 ].
- exclude String
- Enable/disable address6 exclusion. Valid values:
enable
,disable
. - exclude
Members List<Property Map> - Address6 exclusion member. The structure of
exclude_member
block is documented below. - fabric
Object String - Security Fabric global object setting. Valid values:
enable
,disable
. - 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 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 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)
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
- 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.
- 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 ].
- Exclude string
- Enable/disable address6 exclusion. Valid values:
enable
,disable
. - Exclude
Members List<Pulumiverse.Fortios. Firewall. Inputs. Addrgrp6Exclude Member> - Address6 exclusion member. The structure of
exclude_member
block is documented below. - Fabric
Object string - Security Fabric global object setting. Valid values:
enable
,disable
. - 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.
- 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 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.
- 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 ].
- Exclude string
- Enable/disable address6 exclusion. Valid values:
enable
,disable
. - Exclude
Members []Addrgrp6ExcludeMember Args - Address6 exclusion member. The structure of
exclude_member
block is documented below. - Fabric
Object string - Security Fabric global object setting. Valid values:
enable
,disable
. - 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.
- Members
[]Addrgrp6Member
Args - Address objects contained within the group. The structure of
member
block is documented below. - Name string
- IPv6 address group name.
- Taggings
[]Addrgrp6Tagging
Args - 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 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.
- 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 ].
- exclude String
- Enable/disable address6 exclusion. Valid values:
enable
,disable
. - exclude
Members List<Addrgrp6ExcludeMember> - Address6 exclusion member. The structure of
exclude_member
block is documented below. - fabric
Object String - Security Fabric global object setting. Valid values:
enable
,disable
. - 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.
- 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 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.
- 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 ].
- exclude string
- Enable/disable address6 exclusion. Valid values:
enable
,disable
. - exclude
Members Addrgrp6ExcludeMember[] - Address6 exclusion member. The structure of
exclude_member
block is documented below. - fabric
Object string - Security Fabric global object setting. Valid values:
enable
,disable
. - 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.
- 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 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_ 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 ].
- exclude str
- Enable/disable address6 exclusion. Valid values:
enable
,disable
. - exclude_
members Sequence[Addrgrp6ExcludeMember Args] - 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_ 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.
- members
Sequence[Addrgrp6Member
Args] - Address objects contained within the group. The structure of
member
block is documented below. - name str
- IPv6 address group name.
- taggings
Sequence[Addrgrp6Tagging
Args] - 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 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.
- 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 ].
- exclude String
- Enable/disable address6 exclusion. Valid values:
enable
,disable
. - exclude
Members List<Property Map> - Address6 exclusion member. The structure of
exclude_member
block is documented below. - fabric
Object String - Security Fabric global object setting. Valid values:
enable
,disable
. - 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.
- 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 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.
- List<Pulumiverse.
Fortios. Firewall. Inputs. Addrgrp6Tagging Tag> - Tags. The structure of
tags
block is documented below.
- Category string
- Tag category.
- Name string
- Tagging entry name.
- []Addrgrp6Tagging
Tag - Tags. The structure of
tags
block is documented below.
- category String
- Tag category.
- name String
- Tagging entry name.
- List<Addrgrp6Tagging
Tag> - Tags. The structure of
tags
block is documented below.
- category string
- Tag category.
- name string
- Tagging entry name.
- Addrgrp6Tagging
Tag[] - Tags. The structure of
tags
block is documented below.
- category str
- Tag category.
- name str
- Tagging entry name.
- Sequence[Addrgrp6Tagging
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.
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}}
If you do not want to import arguments of block:
$ export “FORTIOS_IMPORT_TABLE”=“false”
$ pulumi import fortios:firewall/addrgrp6:Addrgrp6 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.