1. Packages
  2. Fortimanager Provider
  3. API Docs
  4. ObjectFirewallAddress6
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

fortimanager.ObjectFirewallAddress6

Explore with Pulumi AI

fortimanager logo
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

    Configure IPv6 firewall addresses.

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

    • dynamic_mapping: fortimanager.ObjectFirewallAddress6DynamicMapping
    • list: fortimanager.ObjectFirewallAddress6List
    • subnet_segment: fortimanager.ObjectFirewallAddress6Subnetsegment
    • tagging: fortimanager.ObjectFirewallAddress6Tagging

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.ObjectFirewallAddress6("trname", {
        color: 1,
        comment: "This is a Terraform example",
        country: "US",
        endIp: "2001:192:168:1::10",
        endMac: "00:00:00:00:00:00",
        host: "::",
        hostType: "any",
        ip6: "::/0",
        startIp: "2001:192:168:1::1",
        startMac: "00:00:00:00:00:00",
        type: "iprange",
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.ObjectFirewallAddress6("trname",
        color=1,
        comment="This is a Terraform example",
        country="US",
        end_ip="2001:192:168:1::10",
        end_mac="00:00:00:00:00:00",
        host="::",
        host_type="any",
        ip6="::/0",
        start_ip="2001:192:168:1::1",
        start_mac="00:00:00:00:00:00",
        type="iprange")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := fortimanager.NewObjectFirewallAddress6(ctx, "trname", &fortimanager.ObjectFirewallAddress6Args{
    			Color:    pulumi.Float64(1),
    			Comment:  pulumi.String("This is a Terraform example"),
    			Country:  pulumi.String("US"),
    			EndIp:    pulumi.String("2001:192:168:1::10"),
    			EndMac:   pulumi.String("00:00:00:00:00:00"),
    			Host:     pulumi.String("::"),
    			HostType: pulumi.String("any"),
    			Ip6:      pulumi.String("::/0"),
    			StartIp:  pulumi.String("2001:192:168:1::1"),
    			StartMac: pulumi.String("00:00:00:00:00:00"),
    			Type:     pulumi.String("iprange"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Fortimanager = Pulumi.Fortimanager;
    
    return await Deployment.RunAsync(() => 
    {
        var trname = new Fortimanager.ObjectFirewallAddress6("trname", new()
        {
            Color = 1,
            Comment = "This is a Terraform example",
            Country = "US",
            EndIp = "2001:192:168:1::10",
            EndMac = "00:00:00:00:00:00",
            Host = "::",
            HostType = "any",
            Ip6 = "::/0",
            StartIp = "2001:192:168:1::1",
            StartMac = "00:00:00:00:00:00",
            Type = "iprange",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectFirewallAddress6;
    import com.pulumi.fortimanager.ObjectFirewallAddress6Args;
    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 ObjectFirewallAddress6("trname", ObjectFirewallAddress6Args.builder()
                .color(1)
                .comment("This is a Terraform example")
                .country("US")
                .endIp("2001:192:168:1::10")
                .endMac("00:00:00:00:00:00")
                .host("::")
                .hostType("any")
                .ip6("::/0")
                .startIp("2001:192:168:1::1")
                .startMac("00:00:00:00:00:00")
                .type("iprange")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:ObjectFirewallAddress6
        properties:
          color: 1
          comment: This is a Terraform example
          country: US
          endIp: 2001:192:168:1::10
          endMac: 00:00:00:00:00:00
          host: '::'
          hostType: any
          ip6: ::/0
          startIp: 2001:192:168:1::1
          startMac: 00:00:00:00:00:00
          type: iprange
    

    Create ObjectFirewallAddress6 Resource

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

    Constructor syntax

    new ObjectFirewallAddress6(name: string, args?: ObjectFirewallAddress6Args, opts?: CustomResourceOptions);
    @overload
    def ObjectFirewallAddress6(resource_name: str,
                               args: Optional[ObjectFirewallAddress6Args] = None,
                               opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectFirewallAddress6(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               _image_base64: Optional[str] = None,
                               adom: Optional[str] = None,
                               cache_ttl: Optional[float] = None,
                               color: Optional[float] = None,
                               comment: Optional[str] = None,
                               country: Optional[str] = None,
                               dynamic_mappings: Optional[Sequence[ObjectFirewallAddress6DynamicMappingArgs]] = 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,
                               filter: Optional[str] = None,
                               fqdn: Optional[str] = None,
                               global_object: Optional[float] = None,
                               host: Optional[str] = None,
                               host_type: Optional[str] = None,
                               ip6: Optional[str] = None,
                               lists: Optional[Sequence[ObjectFirewallAddress6ListArgs]] = None,
                               macaddrs: Optional[Sequence[str]] = None,
                               name: Optional[str] = None,
                               obj_id: Optional[str] = None,
                               object_firewall_address6_id: Optional[str] = None,
                               route_tag: Optional[float] = None,
                               scopetype: Optional[str] = None,
                               sdn: Optional[str] = None,
                               sdn_addr_type: Optional[str] = None,
                               sdn_tag: Optional[str] = None,
                               start_ip: Optional[str] = None,
                               start_mac: Optional[str] = None,
                               subnet_segments: Optional[Sequence[ObjectFirewallAddress6SubnetSegmentArgs]] = None,
                               taggings: Optional[Sequence[ObjectFirewallAddress6TaggingArgs]] = None,
                               template: Optional[str] = None,
                               tenant: Optional[str] = None,
                               type: Optional[str] = None,
                               uuid: Optional[str] = None,
                               visibility: Optional[str] = None)
    func NewObjectFirewallAddress6(ctx *Context, name string, args *ObjectFirewallAddress6Args, opts ...ResourceOption) (*ObjectFirewallAddress6, error)
    public ObjectFirewallAddress6(string name, ObjectFirewallAddress6Args? args = null, CustomResourceOptions? opts = null)
    public ObjectFirewallAddress6(String name, ObjectFirewallAddress6Args args)
    public ObjectFirewallAddress6(String name, ObjectFirewallAddress6Args args, CustomResourceOptions options)
    
    type: fortimanager:ObjectFirewallAddress6
    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 ObjectFirewallAddress6Args
    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 ObjectFirewallAddress6Args
    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 ObjectFirewallAddress6Args
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectFirewallAddress6Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectFirewallAddress6Args
    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 objectFirewallAddress6Resource = new Fortimanager.ObjectFirewallAddress6("objectFirewallAddress6Resource", new()
    {
        _imageBase64 = "string",
        Adom = "string",
        CacheTtl = 0,
        Color = 0,
        Comment = "string",
        Country = "string",
        DynamicMappings = new[]
        {
            new Fortimanager.Inputs.ObjectFirewallAddress6DynamicMappingArgs
            {
                _imageBase64 = "string",
                _scopes = new[]
                {
                    new Fortimanager.Inputs.ObjectFirewallAddress6DynamicMapping_ScopeArgs
                    {
                        Name = "string",
                        Vdom = "string",
                    },
                },
                CacheTtl = 0,
                Color = 0,
                Comment = "string",
                Country = "string",
                EndIp = "string",
                EndMac = "string",
                EpgName = "string",
                FabricObject = "string",
                Filter = "string",
                Fqdn = "string",
                GlobalObject = 0,
                Host = "string",
                HostType = "string",
                Ip6 = "string",
                Macaddrs = new[]
                {
                    "string",
                },
                ObjId = "string",
                RouteTag = 0,
                Sdn = "string",
                SdnAddrType = "string",
                SdnTag = "string",
                StartIp = "string",
                StartMac = "string",
                SubnetSegments = new[]
                {
                    new Fortimanager.Inputs.ObjectFirewallAddress6DynamicMappingSubnetSegmentArgs
                    {
                        Name = "string",
                        Type = "string",
                        Value = "string",
                    },
                },
                Tags = "string",
                Template = "string",
                Tenant = "string",
                Type = "string",
                Uuid = "string",
                Visibility = "string",
            },
        },
        DynamicSortSubtable = "string",
        EndIp = "string",
        EndMac = "string",
        EpgName = "string",
        FabricObject = "string",
        Filter = "string",
        Fqdn = "string",
        GlobalObject = 0,
        Host = "string",
        HostType = "string",
        Ip6 = "string",
        Lists = new[]
        {
            new Fortimanager.Inputs.ObjectFirewallAddress6ListArgs
            {
                Ip = "string",
                NetId = "string",
                ObjId = "string",
            },
        },
        Macaddrs = new[]
        {
            "string",
        },
        Name = "string",
        ObjId = "string",
        ObjectFirewallAddress6Id = "string",
        RouteTag = 0,
        Scopetype = "string",
        Sdn = "string",
        SdnAddrType = "string",
        SdnTag = "string",
        StartIp = "string",
        StartMac = "string",
        SubnetSegments = new[]
        {
            new Fortimanager.Inputs.ObjectFirewallAddress6SubnetSegmentArgs
            {
                Name = "string",
                Type = "string",
                Value = "string",
            },
        },
        Taggings = new[]
        {
            new Fortimanager.Inputs.ObjectFirewallAddress6TaggingArgs
            {
                Category = "string",
                Name = "string",
                Tags = new[]
                {
                    "string",
                },
            },
        },
        Template = "string",
        Tenant = "string",
        Type = "string",
        Uuid = "string",
        Visibility = "string",
    });
    
    example, err := fortimanager.NewObjectFirewallAddress6(ctx, "objectFirewallAddress6Resource", &fortimanager.ObjectFirewallAddress6Args{
    _imageBase64: pulumi.String("string"),
    Adom: pulumi.String("string"),
    CacheTtl: pulumi.Float64(0),
    Color: pulumi.Float64(0),
    Comment: pulumi.String("string"),
    Country: pulumi.String("string"),
    DynamicMappings: .ObjectFirewallAddress6DynamicMappingTypeArray{
    &.ObjectFirewallAddress6DynamicMappingTypeArgs{
    _imageBase64: pulumi.String("string"),
    _scopes: .ObjectFirewallAddress6DynamicMapping_ScopeArray{
    &.ObjectFirewallAddress6DynamicMapping_ScopeArgs{
    Name: pulumi.String("string"),
    Vdom: pulumi.String("string"),
    },
    },
    CacheTtl: pulumi.Float64(0),
    Color: pulumi.Float64(0),
    Comment: pulumi.String("string"),
    Country: pulumi.String("string"),
    EndIp: pulumi.String("string"),
    EndMac: pulumi.String("string"),
    EpgName: pulumi.String("string"),
    FabricObject: pulumi.String("string"),
    Filter: pulumi.String("string"),
    Fqdn: pulumi.String("string"),
    GlobalObject: pulumi.Float64(0),
    Host: pulumi.String("string"),
    HostType: pulumi.String("string"),
    Ip6: pulumi.String("string"),
    Macaddrs: pulumi.StringArray{
    pulumi.String("string"),
    },
    ObjId: pulumi.String("string"),
    RouteTag: pulumi.Float64(0),
    Sdn: pulumi.String("string"),
    SdnAddrType: pulumi.String("string"),
    SdnTag: pulumi.String("string"),
    StartIp: pulumi.String("string"),
    StartMac: pulumi.String("string"),
    SubnetSegments: .ObjectFirewallAddress6DynamicMappingSubnetSegmentTypeArray{
    &.ObjectFirewallAddress6DynamicMappingSubnetSegmentTypeArgs{
    Name: pulumi.String("string"),
    Type: pulumi.String("string"),
    Value: pulumi.String("string"),
    },
    },
    Tags: pulumi.String("string"),
    Template: pulumi.String("string"),
    Tenant: pulumi.String("string"),
    Type: pulumi.String("string"),
    Uuid: pulumi.String("string"),
    Visibility: pulumi.String("string"),
    },
    },
    DynamicSortSubtable: pulumi.String("string"),
    EndIp: pulumi.String("string"),
    EndMac: pulumi.String("string"),
    EpgName: pulumi.String("string"),
    FabricObject: pulumi.String("string"),
    Filter: pulumi.String("string"),
    Fqdn: pulumi.String("string"),
    GlobalObject: pulumi.Float64(0),
    Host: pulumi.String("string"),
    HostType: pulumi.String("string"),
    Ip6: pulumi.String("string"),
    Lists: .ObjectFirewallAddress6ListTypeArray{
    &.ObjectFirewallAddress6ListTypeArgs{
    Ip: pulumi.String("string"),
    NetId: pulumi.String("string"),
    ObjId: pulumi.String("string"),
    },
    },
    Macaddrs: pulumi.StringArray{
    pulumi.String("string"),
    },
    Name: pulumi.String("string"),
    ObjId: pulumi.String("string"),
    ObjectFirewallAddress6Id: pulumi.String("string"),
    RouteTag: pulumi.Float64(0),
    Scopetype: pulumi.String("string"),
    Sdn: pulumi.String("string"),
    SdnAddrType: pulumi.String("string"),
    SdnTag: pulumi.String("string"),
    StartIp: pulumi.String("string"),
    StartMac: pulumi.String("string"),
    SubnetSegments: .ObjectFirewallAddress6SubnetSegmentTypeArray{
    &.ObjectFirewallAddress6SubnetSegmentTypeArgs{
    Name: pulumi.String("string"),
    Type: pulumi.String("string"),
    Value: pulumi.String("string"),
    },
    },
    Taggings: .ObjectFirewallAddress6TaggingTypeArray{
    &.ObjectFirewallAddress6TaggingTypeArgs{
    Category: pulumi.String("string"),
    Name: pulumi.String("string"),
    Tags: pulumi.StringArray{
    pulumi.String("string"),
    },
    },
    },
    Template: pulumi.String("string"),
    Tenant: pulumi.String("string"),
    Type: pulumi.String("string"),
    Uuid: pulumi.String("string"),
    Visibility: pulumi.String("string"),
    })
    
    var objectFirewallAddress6Resource = new ObjectFirewallAddress6("objectFirewallAddress6Resource", ObjectFirewallAddress6Args.builder()
        ._imageBase64("string")
        .adom("string")
        .cacheTtl(0)
        .color(0)
        .comment("string")
        .country("string")
        .dynamicMappings(ObjectFirewallAddress6DynamicMappingArgs.builder()
            ._imageBase64("string")
            ._scopes(ObjectFirewallAddress6DynamicMapping_ScopeArgs.builder()
                .name("string")
                .vdom("string")
                .build())
            .cacheTtl(0)
            .color(0)
            .comment("string")
            .country("string")
            .endIp("string")
            .endMac("string")
            .epgName("string")
            .fabricObject("string")
            .filter("string")
            .fqdn("string")
            .globalObject(0)
            .host("string")
            .hostType("string")
            .ip6("string")
            .macaddrs("string")
            .objId("string")
            .routeTag(0)
            .sdn("string")
            .sdnAddrType("string")
            .sdnTag("string")
            .startIp("string")
            .startMac("string")
            .subnetSegments(ObjectFirewallAddress6DynamicMappingSubnetSegmentArgs.builder()
                .name("string")
                .type("string")
                .value("string")
                .build())
            .tags("string")
            .template("string")
            .tenant("string")
            .type("string")
            .uuid("string")
            .visibility("string")
            .build())
        .dynamicSortSubtable("string")
        .endIp("string")
        .endMac("string")
        .epgName("string")
        .fabricObject("string")
        .filter("string")
        .fqdn("string")
        .globalObject(0)
        .host("string")
        .hostType("string")
        .ip6("string")
        .lists(ObjectFirewallAddress6ListArgs.builder()
            .ip("string")
            .netId("string")
            .objId("string")
            .build())
        .macaddrs("string")
        .name("string")
        .objId("string")
        .objectFirewallAddress6Id("string")
        .routeTag(0)
        .scopetype("string")
        .sdn("string")
        .sdnAddrType("string")
        .sdnTag("string")
        .startIp("string")
        .startMac("string")
        .subnetSegments(ObjectFirewallAddress6SubnetSegmentArgs.builder()
            .name("string")
            .type("string")
            .value("string")
            .build())
        .taggings(ObjectFirewallAddress6TaggingArgs.builder()
            .category("string")
            .name("string")
            .tags("string")
            .build())
        .template("string")
        .tenant("string")
        .type("string")
        .uuid("string")
        .visibility("string")
        .build());
    
    object_firewall_address6_resource = fortimanager.ObjectFirewallAddress6("objectFirewallAddress6Resource",
        _image_base64="string",
        adom="string",
        cache_ttl=0,
        color=0,
        comment="string",
        country="string",
        dynamic_mappings=[{
            "_image_base64": "string",
            "_scopes": [{
                "name": "string",
                "vdom": "string",
            }],
            "cache_ttl": 0,
            "color": 0,
            "comment": "string",
            "country": "string",
            "end_ip": "string",
            "end_mac": "string",
            "epg_name": "string",
            "fabric_object": "string",
            "filter": "string",
            "fqdn": "string",
            "global_object": 0,
            "host": "string",
            "host_type": "string",
            "ip6": "string",
            "macaddrs": ["string"],
            "obj_id": "string",
            "route_tag": 0,
            "sdn": "string",
            "sdn_addr_type": "string",
            "sdn_tag": "string",
            "start_ip": "string",
            "start_mac": "string",
            "subnet_segments": [{
                "name": "string",
                "type": "string",
                "value": "string",
            }],
            "tags": "string",
            "template": "string",
            "tenant": "string",
            "type": "string",
            "uuid": "string",
            "visibility": "string",
        }],
        dynamic_sort_subtable="string",
        end_ip="string",
        end_mac="string",
        epg_name="string",
        fabric_object="string",
        filter="string",
        fqdn="string",
        global_object=0,
        host="string",
        host_type="string",
        ip6="string",
        lists=[{
            "ip": "string",
            "net_id": "string",
            "obj_id": "string",
        }],
        macaddrs=["string"],
        name="string",
        obj_id="string",
        object_firewall_address6_id="string",
        route_tag=0,
        scopetype="string",
        sdn="string",
        sdn_addr_type="string",
        sdn_tag="string",
        start_ip="string",
        start_mac="string",
        subnet_segments=[{
            "name": "string",
            "type": "string",
            "value": "string",
        }],
        taggings=[{
            "category": "string",
            "name": "string",
            "tags": ["string"],
        }],
        template="string",
        tenant="string",
        type="string",
        uuid="string",
        visibility="string")
    
    const objectFirewallAddress6Resource = new fortimanager.ObjectFirewallAddress6("objectFirewallAddress6Resource", {
        _imageBase64: "string",
        adom: "string",
        cacheTtl: 0,
        color: 0,
        comment: "string",
        country: "string",
        dynamicMappings: [{
            _imageBase64: "string",
            _scopes: [{
                name: "string",
                vdom: "string",
            }],
            cacheTtl: 0,
            color: 0,
            comment: "string",
            country: "string",
            endIp: "string",
            endMac: "string",
            epgName: "string",
            fabricObject: "string",
            filter: "string",
            fqdn: "string",
            globalObject: 0,
            host: "string",
            hostType: "string",
            ip6: "string",
            macaddrs: ["string"],
            objId: "string",
            routeTag: 0,
            sdn: "string",
            sdnAddrType: "string",
            sdnTag: "string",
            startIp: "string",
            startMac: "string",
            subnetSegments: [{
                name: "string",
                type: "string",
                value: "string",
            }],
            tags: "string",
            template: "string",
            tenant: "string",
            type: "string",
            uuid: "string",
            visibility: "string",
        }],
        dynamicSortSubtable: "string",
        endIp: "string",
        endMac: "string",
        epgName: "string",
        fabricObject: "string",
        filter: "string",
        fqdn: "string",
        globalObject: 0,
        host: "string",
        hostType: "string",
        ip6: "string",
        lists: [{
            ip: "string",
            netId: "string",
            objId: "string",
        }],
        macaddrs: ["string"],
        name: "string",
        objId: "string",
        objectFirewallAddress6Id: "string",
        routeTag: 0,
        scopetype: "string",
        sdn: "string",
        sdnAddrType: "string",
        sdnTag: "string",
        startIp: "string",
        startMac: "string",
        subnetSegments: [{
            name: "string",
            type: "string",
            value: "string",
        }],
        taggings: [{
            category: "string",
            name: "string",
            tags: ["string"],
        }],
        template: "string",
        tenant: "string",
        type: "string",
        uuid: "string",
        visibility: "string",
    });
    
    type: fortimanager:ObjectFirewallAddress6
    properties:
        _imageBase64: string
        adom: string
        cacheTtl: 0
        color: 0
        comment: string
        country: string
        dynamicMappings:
            - _imageBase64: string
              _scopes:
                - name: string
                  vdom: string
              cacheTtl: 0
              color: 0
              comment: string
              country: string
              endIp: string
              endMac: string
              epgName: string
              fabricObject: string
              filter: string
              fqdn: string
              globalObject: 0
              host: string
              hostType: string
              ip6: string
              macaddrs:
                - string
              objId: string
              routeTag: 0
              sdn: string
              sdnAddrType: string
              sdnTag: string
              startIp: string
              startMac: string
              subnetSegments:
                - name: string
                  type: string
                  value: string
              tags: string
              template: string
              tenant: string
              type: string
              uuid: string
              visibility: string
        dynamicSortSubtable: string
        endIp: string
        endMac: string
        epgName: string
        fabricObject: string
        filter: string
        fqdn: string
        globalObject: 0
        host: string
        hostType: string
        ip6: string
        lists:
            - ip: string
              netId: string
              objId: string
        macaddrs:
            - string
        name: string
        objId: string
        objectFirewallAddress6Id: string
        routeTag: 0
        scopetype: string
        sdn: string
        sdnAddrType: string
        sdnTag: string
        startIp: string
        startMac: string
        subnetSegments:
            - name: string
              type: string
              value: string
        taggings:
            - category: string
              name: string
              tags:
                - string
        template: string
        tenant: string
        type: string
        uuid: string
        visibility: string
    

    ObjectFirewallAddress6 Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The ObjectFirewallAddress6 resource accepts the following input properties:

    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    CacheTtl double
    Minimal TTL of individual IPv6 addresses in FQDN cache.
    Color double
    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.
    DynamicMappings List<ObjectFirewallAddress6DynamicMapping>
    Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    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: disable, enable.
    Filter string
    Match criteria filter.
    Fqdn string
    Fully qualified domain name.
    GlobalObject double
    Global Object.
    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<ObjectFirewallAddress6List>
    List. The structure of list block is documented below.
    Macaddrs List<string>
    Multiple MAC address ranges.
    Name string
    Address name.
    ObjId string
    Object ID for NSX.
    ObjectFirewallAddress6Id string
    an identifier for the resource with format {{name}}.
    RouteTag double
    route-tag address.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Sdn string
    SDN.
    SdnAddrType string
    Type of addresses to collect. Valid values: all, private, public.
    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<ObjectFirewallAddress6SubnetSegment>
    Subnet-Segment. The structure of subnet_segment block is documented below.
    Taggings List<ObjectFirewallAddress6Tagging>
    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). Valid values: ipprefix, iprange, nsx, dynamic, fqdn, template, mac, geography.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    Visibility string
    Enable/disable the visibility of the object in the GUI. Valid values: disable, enable.
    _imageBase64 string
    _Image-Base64.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    CacheTtl float64
    Minimal TTL of individual IPv6 addresses in FQDN cache.
    Color float64
    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.
    DynamicMappings []ObjectFirewallAddress6DynamicMappingTypeArgs
    Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    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: disable, enable.
    Filter string
    Match criteria filter.
    Fqdn string
    Fully qualified domain name.
    GlobalObject float64
    Global Object.
    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 []ObjectFirewallAddress6ListTypeArgs
    List. The structure of list block is documented below.
    Macaddrs []string
    Multiple MAC address ranges.
    Name string
    Address name.
    ObjId string
    Object ID for NSX.
    ObjectFirewallAddress6Id string
    an identifier for the resource with format {{name}}.
    RouteTag float64
    route-tag address.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Sdn string
    SDN.
    SdnAddrType string
    Type of addresses to collect. Valid values: all, private, public.
    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 []ObjectFirewallAddress6SubnetSegmentTypeArgs
    Subnet-Segment. The structure of subnet_segment block is documented below.
    Taggings []ObjectFirewallAddress6TaggingTypeArgs
    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). Valid values: ipprefix, iprange, nsx, dynamic, fqdn, template, mac, geography.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    Visibility string
    Enable/disable the visibility of the object in the GUI. Valid values: disable, enable.
    _imageBase64 string
    _Image-Base64.
    _imageBase64 String
    _Image-Base64.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    cacheTtl Double
    Minimal TTL of individual IPv6 addresses in FQDN cache.
    color Double
    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.
    dynamicMappings List<ObjectFirewallAddress6DynamicMapping>
    Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    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: disable, enable.
    filter String
    Match criteria filter.
    fqdn String
    Fully qualified domain name.
    globalObject Double
    Global Object.
    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<ObjectFirewallAddress6List>
    List. The structure of list block is documented below.
    macaddrs List<String>
    Multiple MAC address ranges.
    name String
    Address name.
    objId String
    Object ID for NSX.
    objectFirewallAddress6Id String
    an identifier for the resource with format {{name}}.
    routeTag Double
    route-tag address.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    sdn String
    SDN.
    sdnAddrType String
    Type of addresses to collect. Valid values: all, private, public.
    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<ObjectFirewallAddress6SubnetSegment>
    Subnet-Segment. The structure of subnet_segment block is documented below.
    taggings List<ObjectFirewallAddress6Tagging>
    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). Valid values: ipprefix, iprange, nsx, dynamic, fqdn, template, mac, geography.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    visibility String
    Enable/disable the visibility of the object in the GUI. Valid values: disable, enable.
    _imageBase64 string
    _Image-Base64.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    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.
    dynamicMappings ObjectFirewallAddress6DynamicMapping[]
    Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    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: disable, enable.
    filter string
    Match criteria filter.
    fqdn string
    Fully qualified domain name.
    globalObject number
    Global Object.
    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 ObjectFirewallAddress6List[]
    List. The structure of list block is documented below.
    macaddrs string[]
    Multiple MAC address ranges.
    name string
    Address name.
    objId string
    Object ID for NSX.
    objectFirewallAddress6Id string
    an identifier for the resource with format {{name}}.
    routeTag number
    route-tag address.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    sdn string
    SDN.
    sdnAddrType string
    Type of addresses to collect. Valid values: all, private, public.
    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 ObjectFirewallAddress6SubnetSegment[]
    Subnet-Segment. The structure of subnet_segment block is documented below.
    taggings ObjectFirewallAddress6Tagging[]
    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). Valid values: ipprefix, iprange, nsx, dynamic, fqdn, template, mac, geography.
    uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    visibility string
    Enable/disable the visibility of the object in the GUI. Valid values: disable, enable.
    _image_base64 str
    _Image-Base64.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    cache_ttl float
    Minimal TTL of individual IPv6 addresses in FQDN cache.
    color float
    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_mappings Sequence[ObjectFirewallAddress6DynamicMappingArgs]
    Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    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: disable, enable.
    filter str
    Match criteria filter.
    fqdn str
    Fully qualified domain name.
    global_object float
    Global Object.
    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[ObjectFirewallAddress6ListArgs]
    List. The structure of list block is documented below.
    macaddrs Sequence[str]
    Multiple MAC address ranges.
    name str
    Address name.
    obj_id str
    Object ID for NSX.
    object_firewall_address6_id str
    an identifier for the resource with format {{name}}.
    route_tag float
    route-tag address.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    sdn str
    SDN.
    sdn_addr_type str
    Type of addresses to collect. Valid values: all, private, public.
    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[ObjectFirewallAddress6SubnetSegmentArgs]
    Subnet-Segment. The structure of subnet_segment block is documented below.
    taggings Sequence[ObjectFirewallAddress6TaggingArgs]
    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). Valid values: ipprefix, iprange, nsx, dynamic, fqdn, template, mac, geography.
    uuid str
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    visibility str
    Enable/disable the visibility of the object in the GUI. Valid values: disable, enable.
    _imageBase64 String
    _Image-Base64.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    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.
    dynamicMappings List<Property Map>
    Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    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: disable, enable.
    filter String
    Match criteria filter.
    fqdn String
    Fully qualified domain name.
    globalObject Number
    Global Object.
    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>
    List. The structure of list block is documented below.
    macaddrs List<String>
    Multiple MAC address ranges.
    name String
    Address name.
    objId String
    Object ID for NSX.
    objectFirewallAddress6Id String
    an identifier for the resource with format {{name}}.
    routeTag Number
    route-tag address.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    sdn String
    SDN.
    sdnAddrType String
    Type of addresses to collect. Valid values: all, private, public.
    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>
    Subnet-Segment. The structure of subnet_segment block is documented below.
    taggings List<Property Map>
    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). Valid values: ipprefix, iprange, nsx, dynamic, fqdn, template, mac, geography.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    visibility String
    Enable/disable the visibility of the object in the GUI. Valid values: disable, enable.

    Outputs

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

    Get an existing ObjectFirewallAddress6 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?: ObjectFirewallAddress6State, opts?: CustomResourceOptions): ObjectFirewallAddress6
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            _image_base64: Optional[str] = None,
            adom: Optional[str] = None,
            cache_ttl: Optional[float] = None,
            color: Optional[float] = None,
            comment: Optional[str] = None,
            country: Optional[str] = None,
            dynamic_mappings: Optional[Sequence[ObjectFirewallAddress6DynamicMappingArgs]] = 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,
            filter: Optional[str] = None,
            fqdn: Optional[str] = None,
            global_object: Optional[float] = None,
            host: Optional[str] = None,
            host_type: Optional[str] = None,
            ip6: Optional[str] = None,
            lists: Optional[Sequence[ObjectFirewallAddress6ListArgs]] = None,
            macaddrs: Optional[Sequence[str]] = None,
            name: Optional[str] = None,
            obj_id: Optional[str] = None,
            object_firewall_address6_id: Optional[str] = None,
            route_tag: Optional[float] = None,
            scopetype: Optional[str] = None,
            sdn: Optional[str] = None,
            sdn_addr_type: Optional[str] = None,
            sdn_tag: Optional[str] = None,
            start_ip: Optional[str] = None,
            start_mac: Optional[str] = None,
            subnet_segments: Optional[Sequence[ObjectFirewallAddress6SubnetSegmentArgs]] = None,
            taggings: Optional[Sequence[ObjectFirewallAddress6TaggingArgs]] = None,
            template: Optional[str] = None,
            tenant: Optional[str] = None,
            type: Optional[str] = None,
            uuid: Optional[str] = None,
            visibility: Optional[str] = None) -> ObjectFirewallAddress6
    func GetObjectFirewallAddress6(ctx *Context, name string, id IDInput, state *ObjectFirewallAddress6State, opts ...ResourceOption) (*ObjectFirewallAddress6, error)
    public static ObjectFirewallAddress6 Get(string name, Input<string> id, ObjectFirewallAddress6State? state, CustomResourceOptions? opts = null)
    public static ObjectFirewallAddress6 get(String name, Output<String> id, ObjectFirewallAddress6State state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectFirewallAddress6    get:      id: ${id}
    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:
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    CacheTtl double
    Minimal TTL of individual IPv6 addresses in FQDN cache.
    Color double
    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.
    DynamicMappings List<ObjectFirewallAddress6DynamicMapping>
    Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    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: disable, enable.
    Filter string
    Match criteria filter.
    Fqdn string
    Fully qualified domain name.
    GlobalObject double
    Global Object.
    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<ObjectFirewallAddress6List>
    List. The structure of list block is documented below.
    Macaddrs List<string>
    Multiple MAC address ranges.
    Name string
    Address name.
    ObjId string
    Object ID for NSX.
    ObjectFirewallAddress6Id string
    an identifier for the resource with format {{name}}.
    RouteTag double
    route-tag address.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Sdn string
    SDN.
    SdnAddrType string
    Type of addresses to collect. Valid values: all, private, public.
    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<ObjectFirewallAddress6SubnetSegment>
    Subnet-Segment. The structure of subnet_segment block is documented below.
    Taggings List<ObjectFirewallAddress6Tagging>
    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). Valid values: ipprefix, iprange, nsx, dynamic, fqdn, template, mac, geography.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    Visibility string
    Enable/disable the visibility of the object in the GUI. Valid values: disable, enable.
    _imageBase64 string
    _Image-Base64.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    CacheTtl float64
    Minimal TTL of individual IPv6 addresses in FQDN cache.
    Color float64
    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.
    DynamicMappings []ObjectFirewallAddress6DynamicMappingTypeArgs
    Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    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: disable, enable.
    Filter string
    Match criteria filter.
    Fqdn string
    Fully qualified domain name.
    GlobalObject float64
    Global Object.
    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 []ObjectFirewallAddress6ListTypeArgs
    List. The structure of list block is documented below.
    Macaddrs []string
    Multiple MAC address ranges.
    Name string
    Address name.
    ObjId string
    Object ID for NSX.
    ObjectFirewallAddress6Id string
    an identifier for the resource with format {{name}}.
    RouteTag float64
    route-tag address.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Sdn string
    SDN.
    SdnAddrType string
    Type of addresses to collect. Valid values: all, private, public.
    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 []ObjectFirewallAddress6SubnetSegmentTypeArgs
    Subnet-Segment. The structure of subnet_segment block is documented below.
    Taggings []ObjectFirewallAddress6TaggingTypeArgs
    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). Valid values: ipprefix, iprange, nsx, dynamic, fqdn, template, mac, geography.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    Visibility string
    Enable/disable the visibility of the object in the GUI. Valid values: disable, enable.
    _imageBase64 string
    _Image-Base64.
    _imageBase64 String
    _Image-Base64.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    cacheTtl Double
    Minimal TTL of individual IPv6 addresses in FQDN cache.
    color Double
    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.
    dynamicMappings List<ObjectFirewallAddress6DynamicMapping>
    Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    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: disable, enable.
    filter String
    Match criteria filter.
    fqdn String
    Fully qualified domain name.
    globalObject Double
    Global Object.
    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<ObjectFirewallAddress6List>
    List. The structure of list block is documented below.
    macaddrs List<String>
    Multiple MAC address ranges.
    name String
    Address name.
    objId String
    Object ID for NSX.
    objectFirewallAddress6Id String
    an identifier for the resource with format {{name}}.
    routeTag Double
    route-tag address.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    sdn String
    SDN.
    sdnAddrType String
    Type of addresses to collect. Valid values: all, private, public.
    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<ObjectFirewallAddress6SubnetSegment>
    Subnet-Segment. The structure of subnet_segment block is documented below.
    taggings List<ObjectFirewallAddress6Tagging>
    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). Valid values: ipprefix, iprange, nsx, dynamic, fqdn, template, mac, geography.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    visibility String
    Enable/disable the visibility of the object in the GUI. Valid values: disable, enable.
    _imageBase64 string
    _Image-Base64.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    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.
    dynamicMappings ObjectFirewallAddress6DynamicMapping[]
    Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    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: disable, enable.
    filter string
    Match criteria filter.
    fqdn string
    Fully qualified domain name.
    globalObject number
    Global Object.
    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 ObjectFirewallAddress6List[]
    List. The structure of list block is documented below.
    macaddrs string[]
    Multiple MAC address ranges.
    name string
    Address name.
    objId string
    Object ID for NSX.
    objectFirewallAddress6Id string
    an identifier for the resource with format {{name}}.
    routeTag number
    route-tag address.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    sdn string
    SDN.
    sdnAddrType string
    Type of addresses to collect. Valid values: all, private, public.
    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 ObjectFirewallAddress6SubnetSegment[]
    Subnet-Segment. The structure of subnet_segment block is documented below.
    taggings ObjectFirewallAddress6Tagging[]
    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). Valid values: ipprefix, iprange, nsx, dynamic, fqdn, template, mac, geography.
    uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    visibility string
    Enable/disable the visibility of the object in the GUI. Valid values: disable, enable.
    _image_base64 str
    _Image-Base64.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    cache_ttl float
    Minimal TTL of individual IPv6 addresses in FQDN cache.
    color float
    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_mappings Sequence[ObjectFirewallAddress6DynamicMappingArgs]
    Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    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: disable, enable.
    filter str
    Match criteria filter.
    fqdn str
    Fully qualified domain name.
    global_object float
    Global Object.
    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[ObjectFirewallAddress6ListArgs]
    List. The structure of list block is documented below.
    macaddrs Sequence[str]
    Multiple MAC address ranges.
    name str
    Address name.
    obj_id str
    Object ID for NSX.
    object_firewall_address6_id str
    an identifier for the resource with format {{name}}.
    route_tag float
    route-tag address.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    sdn str
    SDN.
    sdn_addr_type str
    Type of addresses to collect. Valid values: all, private, public.
    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[ObjectFirewallAddress6SubnetSegmentArgs]
    Subnet-Segment. The structure of subnet_segment block is documented below.
    taggings Sequence[ObjectFirewallAddress6TaggingArgs]
    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). Valid values: ipprefix, iprange, nsx, dynamic, fqdn, template, mac, geography.
    uuid str
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    visibility str
    Enable/disable the visibility of the object in the GUI. Valid values: disable, enable.
    _imageBase64 String
    _Image-Base64.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    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.
    dynamicMappings List<Property Map>
    Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    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: disable, enable.
    filter String
    Match criteria filter.
    fqdn String
    Fully qualified domain name.
    globalObject Number
    Global Object.
    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>
    List. The structure of list block is documented below.
    macaddrs List<String>
    Multiple MAC address ranges.
    name String
    Address name.
    objId String
    Object ID for NSX.
    objectFirewallAddress6Id String
    an identifier for the resource with format {{name}}.
    routeTag Number
    route-tag address.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    sdn String
    SDN.
    sdnAddrType String
    Type of addresses to collect. Valid values: all, private, public.
    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>
    Subnet-Segment. The structure of subnet_segment block is documented below.
    taggings List<Property Map>
    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). Valid values: ipprefix, iprange, nsx, dynamic, fqdn, template, mac, geography.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    visibility String
    Enable/disable the visibility of the object in the GUI. Valid values: disable, enable.

    Supporting Types

    ObjectFirewallAddress6DynamicMapping, ObjectFirewallAddress6DynamicMappingArgs

    CacheTtl double
    Minimal TTL of individual IPv6 addresses in FQDN cache.
    Color double
    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
    Country.
    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
    Fabric-Object. Valid values: disable, enable.
    Filter string
    Match criteria filter.
    Fqdn string
    Fully qualified domain name.
    GlobalObject double
    Global-Object.
    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).
    Macaddrs List<string>
    Macaddr.
    ObjId string
    Object ID for NSX.
    RouteTag double
    route-tag address.
    Sdn string
    SDN.
    SdnAddrType string
    Type of addresses to collect. Valid values: all, private, public.
    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<ObjectFirewallAddress6DynamicMappingSubnetSegment>
    Subnet-Segment. The structure of subnet_segment block is documented below.
    Tags string
    Tags.
    Template string
    IPv6 address template.
    Tenant string
    Tenant.
    Type string
    Type of IPv6 address object (default = ipprefix). Valid values: ipprefix, iprange, nsx, dynamic, fqdn, template, mac, geography.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    Visibility string
    Enable/disable the visibility of the object in the GUI. Valid values: disable, enable.
    _imageBase64 string
    _Image-Base64.
    _scopes List<ObjectFirewallAddress6DynamicMapping_Scope>
    _Scope. The structure of _scope block is documented below.
    CacheTtl float64
    Minimal TTL of individual IPv6 addresses in FQDN cache.
    Color float64
    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
    Country.
    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
    Fabric-Object. Valid values: disable, enable.
    Filter string
    Match criteria filter.
    Fqdn string
    Fully qualified domain name.
    GlobalObject float64
    Global-Object.
    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).
    Macaddrs []string
    Macaddr.
    ObjId string
    Object ID for NSX.
    RouteTag float64
    route-tag address.
    Sdn string
    SDN.
    SdnAddrType string
    Type of addresses to collect. Valid values: all, private, public.
    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 []ObjectFirewallAddress6DynamicMappingSubnetSegmentType
    Subnet-Segment. The structure of subnet_segment block is documented below.
    Tags string
    Tags.
    Template string
    IPv6 address template.
    Tenant string
    Tenant.
    Type string
    Type of IPv6 address object (default = ipprefix). Valid values: ipprefix, iprange, nsx, dynamic, fqdn, template, mac, geography.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    Visibility string
    Enable/disable the visibility of the object in the GUI. Valid values: disable, enable.
    _imageBase64 string
    _Image-Base64.
    _scopes []ObjectFirewallAddress6DynamicMapping_Scope
    _Scope. The structure of _scope block is documented below.
    _imageBase64 String
    _Image-Base64.
    _scopes List<ObjectFirewallAddress6DynamicMapping_Scope>
    _Scope. The structure of _scope block is documented below.
    cacheTtl Double
    Minimal TTL of individual IPv6 addresses in FQDN cache.
    color Double
    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
    Country.
    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
    Fabric-Object. Valid values: disable, enable.
    filter String
    Match criteria filter.
    fqdn String
    Fully qualified domain name.
    globalObject Double
    Global-Object.
    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).
    macaddrs List<String>
    Macaddr.
    objId String
    Object ID for NSX.
    routeTag Double
    route-tag address.
    sdn String
    SDN.
    sdnAddrType String
    Type of addresses to collect. Valid values: all, private, public.
    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<ObjectFirewallAddress6DynamicMappingSubnetSegment>
    Subnet-Segment. The structure of subnet_segment block is documented below.
    tags String
    Tags.
    template String
    IPv6 address template.
    tenant String
    Tenant.
    type String
    Type of IPv6 address object (default = ipprefix). Valid values: ipprefix, iprange, nsx, dynamic, fqdn, template, mac, geography.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    visibility String
    Enable/disable the visibility of the object in the GUI. Valid values: disable, enable.
    _imageBase64 string
    _Image-Base64.
    _scopes ObjectFirewallAddress6DynamicMapping_Scope[]
    _Scope. The structure of _scope block is documented below.
    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
    Country.
    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
    Fabric-Object. Valid values: disable, enable.
    filter string
    Match criteria filter.
    fqdn string
    Fully qualified domain name.
    globalObject number
    Global-Object.
    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).
    macaddrs string[]
    Macaddr.
    objId string
    Object ID for NSX.
    routeTag number
    route-tag address.
    sdn string
    SDN.
    sdnAddrType string
    Type of addresses to collect. Valid values: all, private, public.
    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 ObjectFirewallAddress6DynamicMappingSubnetSegment[]
    Subnet-Segment. The structure of subnet_segment block is documented below.
    tags string
    Tags.
    template string
    IPv6 address template.
    tenant string
    Tenant.
    type string
    Type of IPv6 address object (default = ipprefix). Valid values: ipprefix, iprange, nsx, dynamic, fqdn, template, mac, geography.
    uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    visibility string
    Enable/disable the visibility of the object in the GUI. Valid values: disable, enable.
    _image_base64 str
    _Image-Base64.
    _scopes Sequence[ObjectFirewallAddress6DynamicMapping_Scope]
    _Scope. The structure of _scope block is documented below.
    cache_ttl float
    Minimal TTL of individual IPv6 addresses in FQDN cache.
    color float
    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
    Country.
    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
    Fabric-Object. Valid values: disable, enable.
    filter str
    Match criteria filter.
    fqdn str
    Fully qualified domain name.
    global_object float
    Global-Object.
    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).
    macaddrs Sequence[str]
    Macaddr.
    obj_id str
    Object ID for NSX.
    route_tag float
    route-tag address.
    sdn str
    SDN.
    sdn_addr_type str
    Type of addresses to collect. Valid values: all, private, public.
    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[ObjectFirewallAddress6DynamicMappingSubnetSegment]
    Subnet-Segment. The structure of subnet_segment block is documented below.
    tags str
    Tags.
    template str
    IPv6 address template.
    tenant str
    Tenant.
    type str
    Type of IPv6 address object (default = ipprefix). Valid values: ipprefix, iprange, nsx, dynamic, fqdn, template, mac, geography.
    uuid str
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    visibility str
    Enable/disable the visibility of the object in the GUI. Valid values: disable, enable.
    _imageBase64 String
    _Image-Base64.
    _scopes List<Property Map>
    _Scope. The structure of _scope block is documented below.
    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
    Country.
    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
    Fabric-Object. Valid values: disable, enable.
    filter String
    Match criteria filter.
    fqdn String
    Fully qualified domain name.
    globalObject Number
    Global-Object.
    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).
    macaddrs List<String>
    Macaddr.
    objId String
    Object ID for NSX.
    routeTag Number
    route-tag address.
    sdn String
    SDN.
    sdnAddrType String
    Type of addresses to collect. Valid values: all, private, public.
    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>
    Subnet-Segment. The structure of subnet_segment block is documented below.
    tags String
    Tags.
    template String
    IPv6 address template.
    tenant String
    Tenant.
    type String
    Type of IPv6 address object (default = ipprefix). Valid values: ipprefix, iprange, nsx, dynamic, fqdn, template, mac, geography.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    visibility String
    Enable/disable the visibility of the object in the GUI. Valid values: disable, enable.

    ObjectFirewallAddress6DynamicMappingSubnetSegment, ObjectFirewallAddress6DynamicMappingSubnetSegmentArgs

    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.

    ObjectFirewallAddress6DynamicMapping_Scope, ObjectFirewallAddress6DynamicMapping_ScopeArgs

    Name string
    Name.
    Vdom string
    Vdom.
    Name string
    Name.
    Vdom string
    Vdom.
    name String
    Name.
    vdom String
    Vdom.
    name string
    Name.
    vdom string
    Vdom.
    name str
    Name.
    vdom str
    Vdom.
    name String
    Name.
    vdom String
    Vdom.

    ObjectFirewallAddress6List, ObjectFirewallAddress6ListArgs

    Ip string
    IP.
    NetId string
    Network ID.
    ObjId string
    Object ID.
    Ip string
    IP.
    NetId string
    Network ID.
    ObjId string
    Object ID.
    ip String
    IP.
    netId String
    Network ID.
    objId String
    Object ID.
    ip string
    IP.
    netId string
    Network ID.
    objId string
    Object ID.
    ip str
    IP.
    net_id str
    Network ID.
    obj_id str
    Object ID.
    ip String
    IP.
    netId String
    Network ID.
    objId String
    Object ID.

    ObjectFirewallAddress6SubnetSegment, ObjectFirewallAddress6SubnetSegmentArgs

    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.

    ObjectFirewallAddress6Tagging, ObjectFirewallAddress6TaggingArgs

    Category string
    Tag category.
    Name string
    Tagging entry name.
    Tags List<string>
    Tags.
    Category string
    Tag category.
    Name string
    Tagging entry name.
    Tags []string
    Tags.
    category String
    Tag category.
    name String
    Tagging entry name.
    tags List<String>
    Tags.
    category string
    Tag category.
    name string
    Tagging entry name.
    tags string[]
    Tags.
    category str
    Tag category.
    name str
    Tagging entry name.
    tags Sequence[str]
    Tags.
    category String
    Tag category.
    name String
    Tagging entry name.
    tags List<String>
    Tags.

    Import

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectFirewallAddress6:ObjectFirewallAddress6 labelname {{name}}
    

    $ unset “FORTIMANAGER_IMPORT_TABLE”

    -> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.

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

    Package Details

    Repository
    fortimanager fortinetdev/terraform-provider-fortimanager
    License
    Notes
    This Pulumi package is based on the fortimanager Terraform Provider.
    fortimanager logo
    fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev