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

fortimanager.ObjectFirewallAddress6template

Explore with Pulumi AI

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

    Configure IPv6 address templates.

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

    • subnet_segment: fortimanager.ObjectFirewallAddress6templateSubnetsegment

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.ObjectFirewallAddress6template("trname", {
        ip6: "::33/128",
        subnetSegmentCount: 2,
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.ObjectFirewallAddress6template("trname",
        ip6="::33/128",
        subnet_segment_count=2)
    
    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.NewObjectFirewallAddress6template(ctx, "trname", &fortimanager.ObjectFirewallAddress6templateArgs{
    			Ip6:                pulumi.String("::33/128"),
    			SubnetSegmentCount: pulumi.Float64(2),
    		})
    		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.ObjectFirewallAddress6template("trname", new()
        {
            Ip6 = "::33/128",
            SubnetSegmentCount = 2,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectFirewallAddress6template;
    import com.pulumi.fortimanager.ObjectFirewallAddress6templateArgs;
    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 ObjectFirewallAddress6template("trname", ObjectFirewallAddress6templateArgs.builder()
                .ip6("::33/128")
                .subnetSegmentCount(2)
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:ObjectFirewallAddress6template
        properties:
          ip6: ::33/128
          subnetSegmentCount: 2
    

    Create ObjectFirewallAddress6template Resource

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

    Constructor syntax

    new ObjectFirewallAddress6template(name: string, args?: ObjectFirewallAddress6templateArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectFirewallAddress6template(resource_name: str,
                                       args: Optional[ObjectFirewallAddress6templateArgs] = None,
                                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectFirewallAddress6template(resource_name: str,
                                       opts: Optional[ResourceOptions] = None,
                                       _image_base64: Optional[str] = None,
                                       adom: Optional[str] = None,
                                       dynamic_sort_subtable: Optional[str] = None,
                                       fabric_object: Optional[str] = None,
                                       ip6: Optional[str] = None,
                                       name: Optional[str] = None,
                                       object_firewall_address6template_id: Optional[str] = None,
                                       scopetype: Optional[str] = None,
                                       subnet_segment_count: Optional[float] = None,
                                       subnet_segments: Optional[Sequence[ObjectFirewallAddress6templateSubnetSegmentArgs]] = None,
                                       uuid: Optional[str] = None)
    func NewObjectFirewallAddress6template(ctx *Context, name string, args *ObjectFirewallAddress6templateArgs, opts ...ResourceOption) (*ObjectFirewallAddress6template, error)
    public ObjectFirewallAddress6template(string name, ObjectFirewallAddress6templateArgs? args = null, CustomResourceOptions? opts = null)
    public ObjectFirewallAddress6template(String name, ObjectFirewallAddress6templateArgs args)
    public ObjectFirewallAddress6template(String name, ObjectFirewallAddress6templateArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectFirewallAddress6template
    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 ObjectFirewallAddress6templateArgs
    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 ObjectFirewallAddress6templateArgs
    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 ObjectFirewallAddress6templateArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectFirewallAddress6templateArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectFirewallAddress6templateArgs
    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 objectFirewallAddress6templateResource = new Fortimanager.ObjectFirewallAddress6template("objectFirewallAddress6templateResource", new()
    {
        _imageBase64 = "string",
        Adom = "string",
        DynamicSortSubtable = "string",
        FabricObject = "string",
        Ip6 = "string",
        Name = "string",
        ObjectFirewallAddress6templateId = "string",
        Scopetype = "string",
        SubnetSegmentCount = 0,
        SubnetSegments = new[]
        {
            new Fortimanager.Inputs.ObjectFirewallAddress6templateSubnetSegmentArgs
            {
                Bits = 0,
                Exclusive = "string",
                Id = 0,
                Name = "string",
                Values = new[]
                {
                    new Fortimanager.Inputs.ObjectFirewallAddress6templateSubnetSegmentValueArgs
                    {
                        Name = "string",
                        Value = "string",
                    },
                },
            },
        },
        Uuid = "string",
    });
    
    example, err := fortimanager.NewObjectFirewallAddress6template(ctx, "objectFirewallAddress6templateResource", &fortimanager.ObjectFirewallAddress6templateArgs{
    _imageBase64: pulumi.String("string"),
    Adom: pulumi.String("string"),
    DynamicSortSubtable: pulumi.String("string"),
    FabricObject: pulumi.String("string"),
    Ip6: pulumi.String("string"),
    Name: pulumi.String("string"),
    ObjectFirewallAddress6templateId: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    SubnetSegmentCount: pulumi.Float64(0),
    SubnetSegments: .ObjectFirewallAddress6templateSubnetSegmentTypeArray{
    &.ObjectFirewallAddress6templateSubnetSegmentTypeArgs{
    Bits: pulumi.Float64(0),
    Exclusive: pulumi.String("string"),
    Id: pulumi.Float64(0),
    Name: pulumi.String("string"),
    Values: .ObjectFirewallAddress6templateSubnetSegmentValueArray{
    &.ObjectFirewallAddress6templateSubnetSegmentValueArgs{
    Name: pulumi.String("string"),
    Value: pulumi.String("string"),
    },
    },
    },
    },
    Uuid: pulumi.String("string"),
    })
    
    var objectFirewallAddress6templateResource = new ObjectFirewallAddress6template("objectFirewallAddress6templateResource", ObjectFirewallAddress6templateArgs.builder()
        ._imageBase64("string")
        .adom("string")
        .dynamicSortSubtable("string")
        .fabricObject("string")
        .ip6("string")
        .name("string")
        .objectFirewallAddress6templateId("string")
        .scopetype("string")
        .subnetSegmentCount(0)
        .subnetSegments(ObjectFirewallAddress6templateSubnetSegmentArgs.builder()
            .bits(0)
            .exclusive("string")
            .id(0)
            .name("string")
            .values(ObjectFirewallAddress6templateSubnetSegmentValueArgs.builder()
                .name("string")
                .value("string")
                .build())
            .build())
        .uuid("string")
        .build());
    
    object_firewall_address6template_resource = fortimanager.ObjectFirewallAddress6template("objectFirewallAddress6templateResource",
        _image_base64="string",
        adom="string",
        dynamic_sort_subtable="string",
        fabric_object="string",
        ip6="string",
        name="string",
        object_firewall_address6template_id="string",
        scopetype="string",
        subnet_segment_count=0,
        subnet_segments=[{
            "bits": 0,
            "exclusive": "string",
            "id": 0,
            "name": "string",
            "values": [{
                "name": "string",
                "value": "string",
            }],
        }],
        uuid="string")
    
    const objectFirewallAddress6templateResource = new fortimanager.ObjectFirewallAddress6template("objectFirewallAddress6templateResource", {
        _imageBase64: "string",
        adom: "string",
        dynamicSortSubtable: "string",
        fabricObject: "string",
        ip6: "string",
        name: "string",
        objectFirewallAddress6templateId: "string",
        scopetype: "string",
        subnetSegmentCount: 0,
        subnetSegments: [{
            bits: 0,
            exclusive: "string",
            id: 0,
            name: "string",
            values: [{
                name: "string",
                value: "string",
            }],
        }],
        uuid: "string",
    });
    
    type: fortimanager:ObjectFirewallAddress6template
    properties:
        _imageBase64: string
        adom: string
        dynamicSortSubtable: string
        fabricObject: string
        ip6: string
        name: string
        objectFirewallAddress6templateId: string
        scopetype: string
        subnetSegmentCount: 0
        subnetSegments:
            - bits: 0
              exclusive: string
              id: 0
              name: string
              values:
                - name: string
                  value: string
        uuid: string
    

    ObjectFirewallAddress6template 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 ObjectFirewallAddress6template 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.
    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.
    FabricObject string
    Security Fabric global object setting. Valid values: disable, enable.
    Ip6 string
    IPv6 address prefix.
    Name string
    IPv6 address template name.
    ObjectFirewallAddress6templateId string
    an identifier for the resource with format {{name}}.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    SubnetSegmentCount double
    Number of IPv6 subnet segments.
    SubnetSegments List<ObjectFirewallAddress6templateSubnetSegment>
    Subnet-Segment. The structure of subnet_segment block is documented below.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    _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.
    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.
    FabricObject string
    Security Fabric global object setting. Valid values: disable, enable.
    Ip6 string
    IPv6 address prefix.
    Name string
    IPv6 address template name.
    ObjectFirewallAddress6templateId string
    an identifier for the resource with format {{name}}.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    SubnetSegmentCount float64
    Number of IPv6 subnet segments.
    SubnetSegments []ObjectFirewallAddress6templateSubnetSegmentTypeArgs
    Subnet-Segment. The structure of subnet_segment block is documented below.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    _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.
    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.
    fabricObject String
    Security Fabric global object setting. Valid values: disable, enable.
    ip6 String
    IPv6 address prefix.
    name String
    IPv6 address template name.
    objectFirewallAddress6templateId String
    an identifier for the resource with format {{name}}.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    subnetSegmentCount Double
    Number of IPv6 subnet segments.
    subnetSegments List<ObjectFirewallAddress6templateSubnetSegment>
    Subnet-Segment. The structure of subnet_segment block is documented below.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    _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.
    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.
    fabricObject string
    Security Fabric global object setting. Valid values: disable, enable.
    ip6 string
    IPv6 address prefix.
    name string
    IPv6 address template name.
    objectFirewallAddress6templateId string
    an identifier for the resource with format {{name}}.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    subnetSegmentCount number
    Number of IPv6 subnet segments.
    subnetSegments ObjectFirewallAddress6templateSubnetSegment[]
    Subnet-Segment. The structure of subnet_segment block is documented below.
    uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    _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.
    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.
    fabric_object str
    Security Fabric global object setting. Valid values: disable, enable.
    ip6 str
    IPv6 address prefix.
    name str
    IPv6 address template name.
    object_firewall_address6template_id str
    an identifier for the resource with format {{name}}.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    subnet_segment_count float
    Number of IPv6 subnet segments.
    subnet_segments Sequence[ObjectFirewallAddress6templateSubnetSegmentArgs]
    Subnet-Segment. The structure of subnet_segment block is documented below.
    uuid str
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    _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.
    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.
    fabricObject String
    Security Fabric global object setting. Valid values: disable, enable.
    ip6 String
    IPv6 address prefix.
    name String
    IPv6 address template name.
    objectFirewallAddress6templateId String
    an identifier for the resource with format {{name}}.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    subnetSegmentCount Number
    Number of IPv6 subnet segments.
    subnetSegments List<Property Map>
    Subnet-Segment. The structure of subnet_segment block is documented below.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).

    Outputs

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

    Get an existing ObjectFirewallAddress6template 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?: ObjectFirewallAddress6templateState, opts?: CustomResourceOptions): ObjectFirewallAddress6template
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            _image_base64: Optional[str] = None,
            adom: Optional[str] = None,
            dynamic_sort_subtable: Optional[str] = None,
            fabric_object: Optional[str] = None,
            ip6: Optional[str] = None,
            name: Optional[str] = None,
            object_firewall_address6template_id: Optional[str] = None,
            scopetype: Optional[str] = None,
            subnet_segment_count: Optional[float] = None,
            subnet_segments: Optional[Sequence[ObjectFirewallAddress6templateSubnetSegmentArgs]] = None,
            uuid: Optional[str] = None) -> ObjectFirewallAddress6template
    func GetObjectFirewallAddress6template(ctx *Context, name string, id IDInput, state *ObjectFirewallAddress6templateState, opts ...ResourceOption) (*ObjectFirewallAddress6template, error)
    public static ObjectFirewallAddress6template Get(string name, Input<string> id, ObjectFirewallAddress6templateState? state, CustomResourceOptions? opts = null)
    public static ObjectFirewallAddress6template get(String name, Output<String> id, ObjectFirewallAddress6templateState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectFirewallAddress6template    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.
    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.
    FabricObject string
    Security Fabric global object setting. Valid values: disable, enable.
    Ip6 string
    IPv6 address prefix.
    Name string
    IPv6 address template name.
    ObjectFirewallAddress6templateId string
    an identifier for the resource with format {{name}}.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    SubnetSegmentCount double
    Number of IPv6 subnet segments.
    SubnetSegments List<ObjectFirewallAddress6templateSubnetSegment>
    Subnet-Segment. The structure of subnet_segment block is documented below.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    _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.
    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.
    FabricObject string
    Security Fabric global object setting. Valid values: disable, enable.
    Ip6 string
    IPv6 address prefix.
    Name string
    IPv6 address template name.
    ObjectFirewallAddress6templateId string
    an identifier for the resource with format {{name}}.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    SubnetSegmentCount float64
    Number of IPv6 subnet segments.
    SubnetSegments []ObjectFirewallAddress6templateSubnetSegmentTypeArgs
    Subnet-Segment. The structure of subnet_segment block is documented below.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    _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.
    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.
    fabricObject String
    Security Fabric global object setting. Valid values: disable, enable.
    ip6 String
    IPv6 address prefix.
    name String
    IPv6 address template name.
    objectFirewallAddress6templateId String
    an identifier for the resource with format {{name}}.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    subnetSegmentCount Double
    Number of IPv6 subnet segments.
    subnetSegments List<ObjectFirewallAddress6templateSubnetSegment>
    Subnet-Segment. The structure of subnet_segment block is documented below.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    _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.
    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.
    fabricObject string
    Security Fabric global object setting. Valid values: disable, enable.
    ip6 string
    IPv6 address prefix.
    name string
    IPv6 address template name.
    objectFirewallAddress6templateId string
    an identifier for the resource with format {{name}}.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    subnetSegmentCount number
    Number of IPv6 subnet segments.
    subnetSegments ObjectFirewallAddress6templateSubnetSegment[]
    Subnet-Segment. The structure of subnet_segment block is documented below.
    uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    _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.
    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.
    fabric_object str
    Security Fabric global object setting. Valid values: disable, enable.
    ip6 str
    IPv6 address prefix.
    name str
    IPv6 address template name.
    object_firewall_address6template_id str
    an identifier for the resource with format {{name}}.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    subnet_segment_count float
    Number of IPv6 subnet segments.
    subnet_segments Sequence[ObjectFirewallAddress6templateSubnetSegmentArgs]
    Subnet-Segment. The structure of subnet_segment block is documented below.
    uuid str
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    _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.
    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.
    fabricObject String
    Security Fabric global object setting. Valid values: disable, enable.
    ip6 String
    IPv6 address prefix.
    name String
    IPv6 address template name.
    objectFirewallAddress6templateId String
    an identifier for the resource with format {{name}}.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    subnetSegmentCount Number
    Number of IPv6 subnet segments.
    subnetSegments List<Property Map>
    Subnet-Segment. The structure of subnet_segment block is documented below.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).

    Supporting Types

    ObjectFirewallAddress6templateSubnetSegment, ObjectFirewallAddress6templateSubnetSegmentArgs

    Bits double
    Number of bits.
    Exclusive string
    Enable/disable exclusive value. Valid values: disable, enable.
    Id double
    Subnet segment ID.
    Name string
    Subnet segment name.
    Values List<ObjectFirewallAddress6templateSubnetSegmentValue>
    Values. The structure of values block is documented below.
    Bits float64
    Number of bits.
    Exclusive string
    Enable/disable exclusive value. Valid values: disable, enable.
    Id float64
    Subnet segment ID.
    Name string
    Subnet segment name.
    Values []ObjectFirewallAddress6templateSubnetSegmentValue
    Values. The structure of values block is documented below.
    bits Double
    Number of bits.
    exclusive String
    Enable/disable exclusive value. Valid values: disable, enable.
    id Double
    Subnet segment ID.
    name String
    Subnet segment name.
    values List<ObjectFirewallAddress6templateSubnetSegmentValue>
    Values. The structure of values block is documented below.
    bits number
    Number of bits.
    exclusive string
    Enable/disable exclusive value. Valid values: disable, enable.
    id number
    Subnet segment ID.
    name string
    Subnet segment name.
    values ObjectFirewallAddress6templateSubnetSegmentValue[]
    Values. The structure of values block is documented below.
    bits float
    Number of bits.
    exclusive str
    Enable/disable exclusive value. Valid values: disable, enable.
    id float
    Subnet segment ID.
    name str
    Subnet segment name.
    values Sequence[ObjectFirewallAddress6templateSubnetSegmentValue]
    Values. The structure of values block is documented below.
    bits Number
    Number of bits.
    exclusive String
    Enable/disable exclusive value. Valid values: disable, enable.
    id Number
    Subnet segment ID.
    name String
    Subnet segment name.
    values List<Property Map>
    Values. The structure of values block is documented below.

    ObjectFirewallAddress6templateSubnetSegmentValue, ObjectFirewallAddress6templateSubnetSegmentValueArgs

    Name string
    Subnet segment value name.
    Value string
    Subnet segment value.
    Name string
    Subnet segment value name.
    Value string
    Subnet segment value.
    name String
    Subnet segment value name.
    value String
    Subnet segment value.
    name string
    Subnet segment value name.
    value string
    Subnet segment value.
    name str
    Subnet segment value name.
    value str
    Subnet segment value.
    name String
    Subnet segment value name.
    value String
    Subnet segment value.

    Import

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectFirewallAddress6template:ObjectFirewallAddress6template 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