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

fortios.firewall.Address6

Explore with Pulumi AI

fortios logo
Fortios v0.0.6 published on Tuesday, Jul 9, 2024 by pulumiverse

    Configure IPv6 firewall addresses.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortios from "@pulumiverse/fortios";
    
    const trname = new fortios.firewall.Address6("trname", {
        cacheTtl: 0,
        color: 0,
        endIp: "::",
        host: "fdff:ffff::",
        hostType: "any",
        ip6: "fdff:ffff::/120",
        startIp: "fdff:ffff::",
        type: "ipprefix",
        visibility: "enable",
    });
    
    import pulumi
    import pulumiverse_fortios as fortios
    
    trname = fortios.firewall.Address6("trname",
        cache_ttl=0,
        color=0,
        end_ip="::",
        host="fdff:ffff::",
        host_type="any",
        ip6="fdff:ffff::/120",
        start_ip="fdff:ffff::",
        type="ipprefix",
        visibility="enable")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-fortios/sdk/go/fortios/firewall"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := firewall.NewAddress6(ctx, "trname", &firewall.Address6Args{
    			CacheTtl:   pulumi.Int(0),
    			Color:      pulumi.Int(0),
    			EndIp:      pulumi.String("::"),
    			Host:       pulumi.String("fdff:ffff::"),
    			HostType:   pulumi.String("any"),
    			Ip6:        pulumi.String("fdff:ffff::/120"),
    			StartIp:    pulumi.String("fdff:ffff::"),
    			Type:       pulumi.String("ipprefix"),
    			Visibility: pulumi.String("enable"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Fortios = Pulumiverse.Fortios;
    
    return await Deployment.RunAsync(() => 
    {
        var trname = new Fortios.Firewall.Address6("trname", new()
        {
            CacheTtl = 0,
            Color = 0,
            EndIp = "::",
            Host = "fdff:ffff::",
            HostType = "any",
            Ip6 = "fdff:ffff::/120",
            StartIp = "fdff:ffff::",
            Type = "ipprefix",
            Visibility = "enable",
        });
    
    });
    
    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 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 Address6("trname", Address6Args.builder()
                .cacheTtl(0)
                .color(0)
                .endIp("::")
                .host("fdff:ffff::")
                .hostType("any")
                .ip6("fdff:ffff::/120")
                .startIp("fdff:ffff::")
                .type("ipprefix")
                .visibility("enable")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortios:firewall:Address6
        properties:
          cacheTtl: 0
          color: 0
          endIp: '::'
          host: 'fdff:ffff::'
          hostType: any
          ip6: fdff:ffff::/120
          startIp: 'fdff:ffff::'
          type: ipprefix
          visibility: enable
    

    Create Address6 Resource

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

    Constructor syntax

    new Address6(name: string, args?: Address6Args, opts?: CustomResourceOptions);
    @overload
    def Address6(resource_name: str,
                 args: Optional[Address6Args] = None,
                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def Address6(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 cache_ttl: Optional[int] = None,
                 color: Optional[int] = None,
                 comment: Optional[str] = None,
                 country: Optional[str] = None,
                 dynamic_sort_subtable: Optional[str] = None,
                 end_ip: Optional[str] = None,
                 end_mac: Optional[str] = None,
                 epg_name: Optional[str] = None,
                 fabric_object: Optional[str] = None,
                 fqdn: Optional[str] = None,
                 get_all_tables: Optional[str] = None,
                 host: Optional[str] = None,
                 host_type: Optional[str] = None,
                 ip6: Optional[str] = None,
                 lists: Optional[Sequence[Address6ListArgs]] = None,
                 macaddrs: Optional[Sequence[Address6MacaddrArgs]] = None,
                 name: Optional[str] = None,
                 obj_id: Optional[str] = None,
                 route_tag: Optional[int] = None,
                 sdn: Optional[str] = None,
                 sdn_tag: Optional[str] = None,
                 start_ip: Optional[str] = None,
                 start_mac: Optional[str] = None,
                 subnet_segments: Optional[Sequence[Address6SubnetSegmentArgs]] = None,
                 taggings: Optional[Sequence[Address6TaggingArgs]] = None,
                 template: Optional[str] = None,
                 tenant: Optional[str] = None,
                 type: Optional[str] = None,
                 uuid: Optional[str] = None,
                 vdomparam: Optional[str] = None,
                 visibility: Optional[str] = None)
    func NewAddress6(ctx *Context, name string, args *Address6Args, opts ...ResourceOption) (*Address6, error)
    public Address6(string name, Address6Args? args = null, CustomResourceOptions? opts = null)
    public Address6(String name, Address6Args args)
    public Address6(String name, Address6Args args, CustomResourceOptions options)
    
    type: fortios:firewall:Address6
    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 Address6Args
    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 Address6Args
    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 Address6Args
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args Address6Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args Address6Args
    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 address6Resource = new Fortios.Firewall.Address6("address6Resource", new()
    {
        CacheTtl = 0,
        Color = 0,
        Comment = "string",
        Country = "string",
        DynamicSortSubtable = "string",
        EndIp = "string",
        EndMac = "string",
        EpgName = "string",
        FabricObject = "string",
        Fqdn = "string",
        GetAllTables = "string",
        Host = "string",
        HostType = "string",
        Ip6 = "string",
        Lists = new[]
        {
            new Fortios.Firewall.Inputs.Address6ListArgs
            {
                Ip = "string",
            },
        },
        Macaddrs = new[]
        {
            new Fortios.Firewall.Inputs.Address6MacaddrArgs
            {
                Macaddr = "string",
            },
        },
        Name = "string",
        ObjId = "string",
        RouteTag = 0,
        Sdn = "string",
        SdnTag = "string",
        StartIp = "string",
        StartMac = "string",
        SubnetSegments = new[]
        {
            new Fortios.Firewall.Inputs.Address6SubnetSegmentArgs
            {
                Name = "string",
                Type = "string",
                Value = "string",
            },
        },
        Taggings = new[]
        {
            new Fortios.Firewall.Inputs.Address6TaggingArgs
            {
                Category = "string",
                Name = "string",
                Tags = new[]
                {
                    new Fortios.Firewall.Inputs.Address6TaggingTagArgs
                    {
                        Name = "string",
                    },
                },
            },
        },
        Template = "string",
        Tenant = "string",
        Type = "string",
        Uuid = "string",
        Vdomparam = "string",
        Visibility = "string",
    });
    
    example, err := firewall.NewAddress6(ctx, "address6Resource", &firewall.Address6Args{
    	CacheTtl:            pulumi.Int(0),
    	Color:               pulumi.Int(0),
    	Comment:             pulumi.String("string"),
    	Country:             pulumi.String("string"),
    	DynamicSortSubtable: pulumi.String("string"),
    	EndIp:               pulumi.String("string"),
    	EndMac:              pulumi.String("string"),
    	EpgName:             pulumi.String("string"),
    	FabricObject:        pulumi.String("string"),
    	Fqdn:                pulumi.String("string"),
    	GetAllTables:        pulumi.String("string"),
    	Host:                pulumi.String("string"),
    	HostType:            pulumi.String("string"),
    	Ip6:                 pulumi.String("string"),
    	Lists: firewall.Address6ListArray{
    		&firewall.Address6ListArgs{
    			Ip: pulumi.String("string"),
    		},
    	},
    	Macaddrs: firewall.Address6MacaddrArray{
    		&firewall.Address6MacaddrArgs{
    			Macaddr: pulumi.String("string"),
    		},
    	},
    	Name:     pulumi.String("string"),
    	ObjId:    pulumi.String("string"),
    	RouteTag: pulumi.Int(0),
    	Sdn:      pulumi.String("string"),
    	SdnTag:   pulumi.String("string"),
    	StartIp:  pulumi.String("string"),
    	StartMac: pulumi.String("string"),
    	SubnetSegments: firewall.Address6SubnetSegmentArray{
    		&firewall.Address6SubnetSegmentArgs{
    			Name:  pulumi.String("string"),
    			Type:  pulumi.String("string"),
    			Value: pulumi.String("string"),
    		},
    	},
    	Taggings: firewall.Address6TaggingArray{
    		&firewall.Address6TaggingArgs{
    			Category: pulumi.String("string"),
    			Name:     pulumi.String("string"),
    			Tags: firewall.Address6TaggingTagArray{
    				&firewall.Address6TaggingTagArgs{
    					Name: pulumi.String("string"),
    				},
    			},
    		},
    	},
    	Template:   pulumi.String("string"),
    	Tenant:     pulumi.String("string"),
    	Type:       pulumi.String("string"),
    	Uuid:       pulumi.String("string"),
    	Vdomparam:  pulumi.String("string"),
    	Visibility: pulumi.String("string"),
    })
    
    var address6Resource = new Address6("address6Resource", Address6Args.builder()
        .cacheTtl(0)
        .color(0)
        .comment("string")
        .country("string")
        .dynamicSortSubtable("string")
        .endIp("string")
        .endMac("string")
        .epgName("string")
        .fabricObject("string")
        .fqdn("string")
        .getAllTables("string")
        .host("string")
        .hostType("string")
        .ip6("string")
        .lists(Address6ListArgs.builder()
            .ip("string")
            .build())
        .macaddrs(Address6MacaddrArgs.builder()
            .macaddr("string")
            .build())
        .name("string")
        .objId("string")
        .routeTag(0)
        .sdn("string")
        .sdnTag("string")
        .startIp("string")
        .startMac("string")
        .subnetSegments(Address6SubnetSegmentArgs.builder()
            .name("string")
            .type("string")
            .value("string")
            .build())
        .taggings(Address6TaggingArgs.builder()
            .category("string")
            .name("string")
            .tags(Address6TaggingTagArgs.builder()
                .name("string")
                .build())
            .build())
        .template("string")
        .tenant("string")
        .type("string")
        .uuid("string")
        .vdomparam("string")
        .visibility("string")
        .build());
    
    address6_resource = fortios.firewall.Address6("address6Resource",
        cache_ttl=0,
        color=0,
        comment="string",
        country="string",
        dynamic_sort_subtable="string",
        end_ip="string",
        end_mac="string",
        epg_name="string",
        fabric_object="string",
        fqdn="string",
        get_all_tables="string",
        host="string",
        host_type="string",
        ip6="string",
        lists=[fortios.firewall.Address6ListArgs(
            ip="string",
        )],
        macaddrs=[fortios.firewall.Address6MacaddrArgs(
            macaddr="string",
        )],
        name="string",
        obj_id="string",
        route_tag=0,
        sdn="string",
        sdn_tag="string",
        start_ip="string",
        start_mac="string",
        subnet_segments=[fortios.firewall.Address6SubnetSegmentArgs(
            name="string",
            type="string",
            value="string",
        )],
        taggings=[fortios.firewall.Address6TaggingArgs(
            category="string",
            name="string",
            tags=[fortios.firewall.Address6TaggingTagArgs(
                name="string",
            )],
        )],
        template="string",
        tenant="string",
        type="string",
        uuid="string",
        vdomparam="string",
        visibility="string")
    
    const address6Resource = new fortios.firewall.Address6("address6Resource", {
        cacheTtl: 0,
        color: 0,
        comment: "string",
        country: "string",
        dynamicSortSubtable: "string",
        endIp: "string",
        endMac: "string",
        epgName: "string",
        fabricObject: "string",
        fqdn: "string",
        getAllTables: "string",
        host: "string",
        hostType: "string",
        ip6: "string",
        lists: [{
            ip: "string",
        }],
        macaddrs: [{
            macaddr: "string",
        }],
        name: "string",
        objId: "string",
        routeTag: 0,
        sdn: "string",
        sdnTag: "string",
        startIp: "string",
        startMac: "string",
        subnetSegments: [{
            name: "string",
            type: "string",
            value: "string",
        }],
        taggings: [{
            category: "string",
            name: "string",
            tags: [{
                name: "string",
            }],
        }],
        template: "string",
        tenant: "string",
        type: "string",
        uuid: "string",
        vdomparam: "string",
        visibility: "string",
    });
    
    type: fortios:firewall:Address6
    properties:
        cacheTtl: 0
        color: 0
        comment: string
        country: string
        dynamicSortSubtable: string
        endIp: string
        endMac: string
        epgName: string
        fabricObject: string
        fqdn: string
        getAllTables: string
        host: string
        hostType: string
        ip6: string
        lists:
            - ip: string
        macaddrs:
            - macaddr: string
        name: string
        objId: string
        routeTag: 0
        sdn: string
        sdnTag: string
        startIp: string
        startMac: string
        subnetSegments:
            - name: string
              type: string
              value: string
        taggings:
            - category: string
              name: string
              tags:
                - name: string
        template: string
        tenant: string
        type: string
        uuid: string
        vdomparam: string
        visibility: string
    

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

    CacheTtl int
    Minimal TTL of individual IPv6 addresses in FQDN cache.
    Color int
    Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
    Comment string
    Comment.
    Country string
    IPv6 addresses associated to a specific country.
    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 ].
    EndIp string
    Final IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    EndMac string
    Last MAC address in the range.
    EpgName string
    Endpoint group name.
    FabricObject string
    Security Fabric global object setting. Valid values: enable, disable.
    Fqdn string
    Fully qualified domain name.
    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.
    Host string
    Host Address.
    HostType string
    Host type. Valid values: any, specific.
    Ip6 string
    IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
    Lists List<Pulumiverse.Fortios.Firewall.Inputs.Address6List>
    IP address list. The structure of list block is documented below.
    Macaddrs List<Pulumiverse.Fortios.Firewall.Inputs.Address6Macaddr>
    Multiple MAC address ranges. The structure of macaddr block is documented below.
    Name string
    Address name.
    ObjId string
    Object ID for NSX.
    RouteTag int
    route-tag address.
    Sdn string
    SDN.
    SdnTag string
    SDN Tag.
    StartIp string
    First IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    StartMac string
    First MAC address in the range.
    SubnetSegments List<Pulumiverse.Fortios.Firewall.Inputs.Address6SubnetSegment>
    IPv6 subnet segments. The structure of subnet_segment block is documented below.
    Taggings List<Pulumiverse.Fortios.Firewall.Inputs.Address6Tagging>
    Config object tagging The structure of tagging block is documented below.
    Template string
    IPv6 address template.
    Tenant string
    Tenant.
    Type string
    Type of IPv6 address object (default = ipprefix).
    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 the visibility of the object in the GUI. Valid values: enable, disable.
    CacheTtl int
    Minimal TTL of individual IPv6 addresses in FQDN cache.
    Color int
    Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
    Comment string
    Comment.
    Country string
    IPv6 addresses associated to a specific country.
    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 ].
    EndIp string
    Final IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    EndMac string
    Last MAC address in the range.
    EpgName string
    Endpoint group name.
    FabricObject string
    Security Fabric global object setting. Valid values: enable, disable.
    Fqdn string
    Fully qualified domain name.
    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.
    Host string
    Host Address.
    HostType string
    Host type. Valid values: any, specific.
    Ip6 string
    IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
    Lists []Address6ListArgs
    IP address list. The structure of list block is documented below.
    Macaddrs []Address6MacaddrArgs
    Multiple MAC address ranges. The structure of macaddr block is documented below.
    Name string
    Address name.
    ObjId string
    Object ID for NSX.
    RouteTag int
    route-tag address.
    Sdn string
    SDN.
    SdnTag string
    SDN Tag.
    StartIp string
    First IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    StartMac string
    First MAC address in the range.
    SubnetSegments []Address6SubnetSegmentArgs
    IPv6 subnet segments. The structure of subnet_segment block is documented below.
    Taggings []Address6TaggingArgs
    Config object tagging The structure of tagging block is documented below.
    Template string
    IPv6 address template.
    Tenant string
    Tenant.
    Type string
    Type of IPv6 address object (default = ipprefix).
    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 the visibility of the object in the GUI. Valid values: enable, disable.
    cacheTtl Integer
    Minimal TTL of individual IPv6 addresses in FQDN cache.
    color Integer
    Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
    comment String
    Comment.
    country String
    IPv6 addresses associated to a specific country.
    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 ].
    endIp String
    Final IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    endMac String
    Last MAC address in the range.
    epgName String
    Endpoint group name.
    fabricObject String
    Security Fabric global object setting. Valid values: enable, disable.
    fqdn String
    Fully qualified domain name.
    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.
    host String
    Host Address.
    hostType String
    Host type. Valid values: any, specific.
    ip6 String
    IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
    lists List<Address6List>
    IP address list. The structure of list block is documented below.
    macaddrs List<Address6Macaddr>
    Multiple MAC address ranges. The structure of macaddr block is documented below.
    name String
    Address name.
    objId String
    Object ID for NSX.
    routeTag Integer
    route-tag address.
    sdn String
    SDN.
    sdnTag String
    SDN Tag.
    startIp String
    First IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    startMac String
    First MAC address in the range.
    subnetSegments List<Address6SubnetSegment>
    IPv6 subnet segments. The structure of subnet_segment block is documented below.
    taggings List<Address6Tagging>
    Config object tagging The structure of tagging block is documented below.
    template String
    IPv6 address template.
    tenant String
    Tenant.
    type String
    Type of IPv6 address object (default = ipprefix).
    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 the visibility of the object in the GUI. Valid values: enable, disable.
    cacheTtl number
    Minimal TTL of individual IPv6 addresses in FQDN cache.
    color number
    Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
    comment string
    Comment.
    country string
    IPv6 addresses associated to a specific country.
    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 ].
    endIp string
    Final IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    endMac string
    Last MAC address in the range.
    epgName string
    Endpoint group name.
    fabricObject string
    Security Fabric global object setting. Valid values: enable, disable.
    fqdn string
    Fully qualified domain name.
    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.
    host string
    Host Address.
    hostType string
    Host type. Valid values: any, specific.
    ip6 string
    IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
    lists Address6List[]
    IP address list. The structure of list block is documented below.
    macaddrs Address6Macaddr[]
    Multiple MAC address ranges. The structure of macaddr block is documented below.
    name string
    Address name.
    objId string
    Object ID for NSX.
    routeTag number
    route-tag address.
    sdn string
    SDN.
    sdnTag string
    SDN Tag.
    startIp string
    First IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    startMac string
    First MAC address in the range.
    subnetSegments Address6SubnetSegment[]
    IPv6 subnet segments. The structure of subnet_segment block is documented below.
    taggings Address6Tagging[]
    Config object tagging The structure of tagging block is documented below.
    template string
    IPv6 address template.
    tenant string
    Tenant.
    type string
    Type of IPv6 address object (default = ipprefix).
    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 the visibility of the object in the GUI. Valid values: enable, disable.
    cache_ttl int
    Minimal TTL of individual IPv6 addresses in FQDN cache.
    color int
    Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
    comment str
    Comment.
    country str
    IPv6 addresses associated to a specific country.
    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 ].
    end_ip str
    Final IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    end_mac str
    Last MAC address in the range.
    epg_name str
    Endpoint group name.
    fabric_object str
    Security Fabric global object setting. Valid values: enable, disable.
    fqdn str
    Fully qualified domain name.
    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.
    host str
    Host Address.
    host_type str
    Host type. Valid values: any, specific.
    ip6 str
    IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
    lists Sequence[Address6ListArgs]
    IP address list. The structure of list block is documented below.
    macaddrs Sequence[Address6MacaddrArgs]
    Multiple MAC address ranges. The structure of macaddr block is documented below.
    name str
    Address name.
    obj_id str
    Object ID for NSX.
    route_tag int
    route-tag address.
    sdn str
    SDN.
    sdn_tag str
    SDN Tag.
    start_ip str
    First IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    start_mac str
    First MAC address in the range.
    subnet_segments Sequence[Address6SubnetSegmentArgs]
    IPv6 subnet segments. The structure of subnet_segment block is documented below.
    taggings Sequence[Address6TaggingArgs]
    Config object tagging The structure of tagging block is documented below.
    template str
    IPv6 address template.
    tenant str
    Tenant.
    type str
    Type of IPv6 address object (default = ipprefix).
    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 the visibility of the object in the GUI. Valid values: enable, disable.
    cacheTtl Number
    Minimal TTL of individual IPv6 addresses in FQDN cache.
    color Number
    Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
    comment String
    Comment.
    country String
    IPv6 addresses associated to a specific country.
    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 ].
    endIp String
    Final IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    endMac String
    Last MAC address in the range.
    epgName String
    Endpoint group name.
    fabricObject String
    Security Fabric global object setting. Valid values: enable, disable.
    fqdn String
    Fully qualified domain name.
    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.
    host String
    Host Address.
    hostType String
    Host type. Valid values: any, specific.
    ip6 String
    IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
    lists List<Property Map>
    IP address list. The structure of list block is documented below.
    macaddrs List<Property Map>
    Multiple MAC address ranges. The structure of macaddr block is documented below.
    name String
    Address name.
    objId String
    Object ID for NSX.
    routeTag Number
    route-tag address.
    sdn String
    SDN.
    sdnTag String
    SDN Tag.
    startIp String
    First IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    startMac String
    First MAC address in the range.
    subnetSegments List<Property Map>
    IPv6 subnet segments. The structure of subnet_segment block is documented below.
    taggings List<Property Map>
    Config object tagging The structure of tagging block is documented below.
    template String
    IPv6 address template.
    tenant String
    Tenant.
    type String
    Type of IPv6 address object (default = ipprefix).
    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 the visibility of the object in the GUI. Valid values: enable, disable.

    Outputs

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

    Get an existing Address6 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?: Address6State, opts?: CustomResourceOptions): Address6
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cache_ttl: Optional[int] = None,
            color: Optional[int] = None,
            comment: Optional[str] = None,
            country: Optional[str] = None,
            dynamic_sort_subtable: Optional[str] = None,
            end_ip: Optional[str] = None,
            end_mac: Optional[str] = None,
            epg_name: Optional[str] = None,
            fabric_object: Optional[str] = None,
            fqdn: Optional[str] = None,
            get_all_tables: Optional[str] = None,
            host: Optional[str] = None,
            host_type: Optional[str] = None,
            ip6: Optional[str] = None,
            lists: Optional[Sequence[Address6ListArgs]] = None,
            macaddrs: Optional[Sequence[Address6MacaddrArgs]] = None,
            name: Optional[str] = None,
            obj_id: Optional[str] = None,
            route_tag: Optional[int] = None,
            sdn: Optional[str] = None,
            sdn_tag: Optional[str] = None,
            start_ip: Optional[str] = None,
            start_mac: Optional[str] = None,
            subnet_segments: Optional[Sequence[Address6SubnetSegmentArgs]] = None,
            taggings: Optional[Sequence[Address6TaggingArgs]] = None,
            template: Optional[str] = None,
            tenant: Optional[str] = None,
            type: Optional[str] = None,
            uuid: Optional[str] = None,
            vdomparam: Optional[str] = None,
            visibility: Optional[str] = None) -> Address6
    func GetAddress6(ctx *Context, name string, id IDInput, state *Address6State, opts ...ResourceOption) (*Address6, error)
    public static Address6 Get(string name, Input<string> id, Address6State? state, CustomResourceOptions? opts = null)
    public static Address6 get(String name, Output<String> id, Address6State 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.
    The following state arguments are supported:
    CacheTtl int
    Minimal TTL of individual IPv6 addresses in FQDN cache.
    Color int
    Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
    Comment string
    Comment.
    Country string
    IPv6 addresses associated to a specific country.
    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 ].
    EndIp string
    Final IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    EndMac string
    Last MAC address in the range.
    EpgName string
    Endpoint group name.
    FabricObject string
    Security Fabric global object setting. Valid values: enable, disable.
    Fqdn string
    Fully qualified domain name.
    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.
    Host string
    Host Address.
    HostType string
    Host type. Valid values: any, specific.
    Ip6 string
    IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
    Lists List<Pulumiverse.Fortios.Firewall.Inputs.Address6List>
    IP address list. The structure of list block is documented below.
    Macaddrs List<Pulumiverse.Fortios.Firewall.Inputs.Address6Macaddr>
    Multiple MAC address ranges. The structure of macaddr block is documented below.
    Name string
    Address name.
    ObjId string
    Object ID for NSX.
    RouteTag int
    route-tag address.
    Sdn string
    SDN.
    SdnTag string
    SDN Tag.
    StartIp string
    First IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    StartMac string
    First MAC address in the range.
    SubnetSegments List<Pulumiverse.Fortios.Firewall.Inputs.Address6SubnetSegment>
    IPv6 subnet segments. The structure of subnet_segment block is documented below.
    Taggings List<Pulumiverse.Fortios.Firewall.Inputs.Address6Tagging>
    Config object tagging The structure of tagging block is documented below.
    Template string
    IPv6 address template.
    Tenant string
    Tenant.
    Type string
    Type of IPv6 address object (default = ipprefix).
    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 the visibility of the object in the GUI. Valid values: enable, disable.
    CacheTtl int
    Minimal TTL of individual IPv6 addresses in FQDN cache.
    Color int
    Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
    Comment string
    Comment.
    Country string
    IPv6 addresses associated to a specific country.
    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 ].
    EndIp string
    Final IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    EndMac string
    Last MAC address in the range.
    EpgName string
    Endpoint group name.
    FabricObject string
    Security Fabric global object setting. Valid values: enable, disable.
    Fqdn string
    Fully qualified domain name.
    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.
    Host string
    Host Address.
    HostType string
    Host type. Valid values: any, specific.
    Ip6 string
    IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
    Lists []Address6ListArgs
    IP address list. The structure of list block is documented below.
    Macaddrs []Address6MacaddrArgs
    Multiple MAC address ranges. The structure of macaddr block is documented below.
    Name string
    Address name.
    ObjId string
    Object ID for NSX.
    RouteTag int
    route-tag address.
    Sdn string
    SDN.
    SdnTag string
    SDN Tag.
    StartIp string
    First IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    StartMac string
    First MAC address in the range.
    SubnetSegments []Address6SubnetSegmentArgs
    IPv6 subnet segments. The structure of subnet_segment block is documented below.
    Taggings []Address6TaggingArgs
    Config object tagging The structure of tagging block is documented below.
    Template string
    IPv6 address template.
    Tenant string
    Tenant.
    Type string
    Type of IPv6 address object (default = ipprefix).
    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 the visibility of the object in the GUI. Valid values: enable, disable.
    cacheTtl Integer
    Minimal TTL of individual IPv6 addresses in FQDN cache.
    color Integer
    Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
    comment String
    Comment.
    country String
    IPv6 addresses associated to a specific country.
    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 ].
    endIp String
    Final IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    endMac String
    Last MAC address in the range.
    epgName String
    Endpoint group name.
    fabricObject String
    Security Fabric global object setting. Valid values: enable, disable.
    fqdn String
    Fully qualified domain name.
    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.
    host String
    Host Address.
    hostType String
    Host type. Valid values: any, specific.
    ip6 String
    IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
    lists List<Address6List>
    IP address list. The structure of list block is documented below.
    macaddrs List<Address6Macaddr>
    Multiple MAC address ranges. The structure of macaddr block is documented below.
    name String
    Address name.
    objId String
    Object ID for NSX.
    routeTag Integer
    route-tag address.
    sdn String
    SDN.
    sdnTag String
    SDN Tag.
    startIp String
    First IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    startMac String
    First MAC address in the range.
    subnetSegments List<Address6SubnetSegment>
    IPv6 subnet segments. The structure of subnet_segment block is documented below.
    taggings List<Address6Tagging>
    Config object tagging The structure of tagging block is documented below.
    template String
    IPv6 address template.
    tenant String
    Tenant.
    type String
    Type of IPv6 address object (default = ipprefix).
    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 the visibility of the object in the GUI. Valid values: enable, disable.
    cacheTtl number
    Minimal TTL of individual IPv6 addresses in FQDN cache.
    color number
    Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
    comment string
    Comment.
    country string
    IPv6 addresses associated to a specific country.
    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 ].
    endIp string
    Final IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    endMac string
    Last MAC address in the range.
    epgName string
    Endpoint group name.
    fabricObject string
    Security Fabric global object setting. Valid values: enable, disable.
    fqdn string
    Fully qualified domain name.
    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.
    host string
    Host Address.
    hostType string
    Host type. Valid values: any, specific.
    ip6 string
    IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
    lists Address6List[]
    IP address list. The structure of list block is documented below.
    macaddrs Address6Macaddr[]
    Multiple MAC address ranges. The structure of macaddr block is documented below.
    name string
    Address name.
    objId string
    Object ID for NSX.
    routeTag number
    route-tag address.
    sdn string
    SDN.
    sdnTag string
    SDN Tag.
    startIp string
    First IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    startMac string
    First MAC address in the range.
    subnetSegments Address6SubnetSegment[]
    IPv6 subnet segments. The structure of subnet_segment block is documented below.
    taggings Address6Tagging[]
    Config object tagging The structure of tagging block is documented below.
    template string
    IPv6 address template.
    tenant string
    Tenant.
    type string
    Type of IPv6 address object (default = ipprefix).
    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 the visibility of the object in the GUI. Valid values: enable, disable.
    cache_ttl int
    Minimal TTL of individual IPv6 addresses in FQDN cache.
    color int
    Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
    comment str
    Comment.
    country str
    IPv6 addresses associated to a specific country.
    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 ].
    end_ip str
    Final IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    end_mac str
    Last MAC address in the range.
    epg_name str
    Endpoint group name.
    fabric_object str
    Security Fabric global object setting. Valid values: enable, disable.
    fqdn str
    Fully qualified domain name.
    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.
    host str
    Host Address.
    host_type str
    Host type. Valid values: any, specific.
    ip6 str
    IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
    lists Sequence[Address6ListArgs]
    IP address list. The structure of list block is documented below.
    macaddrs Sequence[Address6MacaddrArgs]
    Multiple MAC address ranges. The structure of macaddr block is documented below.
    name str
    Address name.
    obj_id str
    Object ID for NSX.
    route_tag int
    route-tag address.
    sdn str
    SDN.
    sdn_tag str
    SDN Tag.
    start_ip str
    First IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    start_mac str
    First MAC address in the range.
    subnet_segments Sequence[Address6SubnetSegmentArgs]
    IPv6 subnet segments. The structure of subnet_segment block is documented below.
    taggings Sequence[Address6TaggingArgs]
    Config object tagging The structure of tagging block is documented below.
    template str
    IPv6 address template.
    tenant str
    Tenant.
    type str
    Type of IPv6 address object (default = ipprefix).
    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 the visibility of the object in the GUI. Valid values: enable, disable.
    cacheTtl Number
    Minimal TTL of individual IPv6 addresses in FQDN cache.
    color Number
    Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
    comment String
    Comment.
    country String
    IPv6 addresses associated to a specific country.
    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 ].
    endIp String
    Final IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    endMac String
    Last MAC address in the range.
    epgName String
    Endpoint group name.
    fabricObject String
    Security Fabric global object setting. Valid values: enable, disable.
    fqdn String
    Fully qualified domain name.
    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.
    host String
    Host Address.
    hostType String
    Host type. Valid values: any, specific.
    ip6 String
    IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
    lists List<Property Map>
    IP address list. The structure of list block is documented below.
    macaddrs List<Property Map>
    Multiple MAC address ranges. The structure of macaddr block is documented below.
    name String
    Address name.
    objId String
    Object ID for NSX.
    routeTag Number
    route-tag address.
    sdn String
    SDN.
    sdnTag String
    SDN Tag.
    startIp String
    First IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    startMac String
    First MAC address in the range.
    subnetSegments List<Property Map>
    IPv6 subnet segments. The structure of subnet_segment block is documented below.
    taggings List<Property Map>
    Config object tagging The structure of tagging block is documented below.
    template String
    IPv6 address template.
    tenant String
    Tenant.
    type String
    Type of IPv6 address object (default = ipprefix).
    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 the visibility of the object in the GUI. Valid values: enable, disable.

    Supporting Types

    Address6List, Address6ListArgs

    Ip string
    IP.
    Ip string
    IP.
    ip String
    IP.
    ip string
    IP.
    ip str
    IP.
    ip String
    IP.

    Address6Macaddr, Address6MacaddrArgs

    Macaddr string
    MAC address ranges [-] separated by space.
    Macaddr string
    MAC address ranges [-] separated by space.
    macaddr String
    MAC address ranges [-] separated by space.
    macaddr string
    MAC address ranges [-] separated by space.
    macaddr str
    MAC address ranges [-] separated by space.
    macaddr String
    MAC address ranges [-] separated by space.

    Address6SubnetSegment, Address6SubnetSegmentArgs

    Name string
    Name.
    Type string
    Subnet segment type. Valid values: any, specific.
    Value string
    Subnet segment value.
    Name string
    Name.
    Type string
    Subnet segment type. Valid values: any, specific.
    Value string
    Subnet segment value.
    name String
    Name.
    type String
    Subnet segment type. Valid values: any, specific.
    value String
    Subnet segment value.
    name string
    Name.
    type string
    Subnet segment type. Valid values: any, specific.
    value string
    Subnet segment value.
    name str
    Name.
    type str
    Subnet segment type. Valid values: any, specific.
    value str
    Subnet segment value.
    name String
    Name.
    type String
    Subnet segment type. Valid values: any, specific.
    value String
    Subnet segment value.

    Address6Tagging, Address6TaggingArgs

    Category string
    Tag category.
    Name string
    Tagging entry name.
    Tags List<Pulumiverse.Fortios.Firewall.Inputs.Address6TaggingTag>
    Tags. The structure of tags block is documented below.
    Category string
    Tag category.
    Name string
    Tagging entry name.
    Tags []Address6TaggingTag
    Tags. The structure of tags block is documented below.
    category String
    Tag category.
    name String
    Tagging entry name.
    tags List<Address6TaggingTag>
    Tags. The structure of tags block is documented below.
    category string
    Tag category.
    name string
    Tagging entry name.
    tags Address6TaggingTag[]
    Tags. The structure of tags block is documented below.
    category str
    Tag category.
    name str
    Tagging entry name.
    tags Sequence[Address6TaggingTag]
    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.

    Address6TaggingTag, Address6TaggingTagArgs

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

    $ pulumi import fortios:firewall/address6:Address6 labelname {{name}}
    

    If you do not want to import arguments of block:

    $ export “FORTIOS_IMPORT_TABLE”=“false”

    $ pulumi import fortios:firewall/address6:Address6 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.
    fortios logo
    Fortios v0.0.6 published on Tuesday, Jul 9, 2024 by pulumiverse