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

fortimanager.ObjectFirewallAddress6templateSubnetsegment

Explore with Pulumi AI

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

    IPv6 subnet segments.

    This resource is a sub resource for variable subnet_segment of resource fortimanager.ObjectFirewallAddress6template. Conflict and overwrite may occur if use both of them. The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.

    • values: fortimanager.ObjectFirewallAddress6templateSubnetsegmentValues

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trnameObjectFirewallAddress6template = new fortimanager.ObjectFirewallAddress6template("trnameObjectFirewallAddress6template", {});
    const trnameObjectFirewallAddress6templateSubnetsegment = new fortimanager.ObjectFirewallAddress6templateSubnetsegment("trnameObjectFirewallAddress6templateSubnetsegment", {
        address6Template: trnameObjectFirewallAddress6template.name,
        bits: 3,
        exclusive: "disable",
        fosid: 1,
        values: [{
            name: "value",
            value: "0b101",
        }],
    }, {
        dependsOn: [trnameObjectFirewallAddress6template],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_object_firewall_address6template = fortimanager.ObjectFirewallAddress6template("trnameObjectFirewallAddress6template")
    trname_object_firewall_address6template_subnetsegment = fortimanager.ObjectFirewallAddress6templateSubnetsegment("trnameObjectFirewallAddress6templateSubnetsegment",
        address6_template=trname_object_firewall_address6template.name,
        bits=3,
        exclusive="disable",
        fosid=1,
        values=[{
            "name": "value",
            "value": "0b101",
        }],
        opts = pulumi.ResourceOptions(depends_on=[trname_object_firewall_address6template]))
    
    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 {
    		trnameObjectFirewallAddress6template, err := fortimanager.NewObjectFirewallAddress6template(ctx, "trnameObjectFirewallAddress6template", nil)
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectFirewallAddress6templateSubnetsegment(ctx, "trnameObjectFirewallAddress6templateSubnetsegment", &fortimanager.ObjectFirewallAddress6templateSubnetsegmentArgs{
    			Address6Template: trnameObjectFirewallAddress6template.Name,
    			Bits:             pulumi.Float64(3),
    			Exclusive:        pulumi.String("disable"),
    			Fosid:            pulumi.Float64(1),
    			Values: fortimanager.ObjectFirewallAddress6templateSubnetsegmentValueArray{
    				&fortimanager.ObjectFirewallAddress6templateSubnetsegmentValueArgs{
    					Name:  pulumi.String("value"),
    					Value: pulumi.String("0b101"),
    				},
    			},
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trnameObjectFirewallAddress6template,
    		}))
    		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 trnameObjectFirewallAddress6template = new Fortimanager.ObjectFirewallAddress6template("trnameObjectFirewallAddress6template");
    
        var trnameObjectFirewallAddress6templateSubnetsegment = new Fortimanager.ObjectFirewallAddress6templateSubnetsegment("trnameObjectFirewallAddress6templateSubnetsegment", new()
        {
            Address6Template = trnameObjectFirewallAddress6template.Name,
            Bits = 3,
            Exclusive = "disable",
            Fosid = 1,
            Values = new[]
            {
                new Fortimanager.Inputs.ObjectFirewallAddress6templateSubnetsegmentValueArgs
                {
                    Name = "value",
                    Value = "0b101",
                },
            },
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trnameObjectFirewallAddress6template,
            },
        });
    
    });
    
    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.ObjectFirewallAddress6templateSubnetsegment;
    import com.pulumi.fortimanager.ObjectFirewallAddress6templateSubnetsegmentArgs;
    import com.pulumi.fortimanager.inputs.ObjectFirewallAddress6templateSubnetsegmentValueArgs;
    import com.pulumi.resources.CustomResourceOptions;
    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 trnameObjectFirewallAddress6template = new ObjectFirewallAddress6template("trnameObjectFirewallAddress6template");
    
            var trnameObjectFirewallAddress6templateSubnetsegment = new ObjectFirewallAddress6templateSubnetsegment("trnameObjectFirewallAddress6templateSubnetsegment", ObjectFirewallAddress6templateSubnetsegmentArgs.builder()
                .address6Template(trnameObjectFirewallAddress6template.name())
                .bits(3)
                .exclusive("disable")
                .fosid(1)
                .values(ObjectFirewallAddress6templateSubnetsegmentValueArgs.builder()
                    .name("value")
                    .value("0b101")
                    .build())
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameObjectFirewallAddress6template)
                    .build());
    
        }
    }
    
    resources:
      trnameObjectFirewallAddress6templateSubnetsegment:
        type: fortimanager:ObjectFirewallAddress6templateSubnetsegment
        properties:
          address6Template: ${trnameObjectFirewallAddress6template.name}
          bits: 3
          exclusive: disable
          fosid: 1
          values:
            - name: value
              value: 0b101
        options:
          dependsOn:
            - ${trnameObjectFirewallAddress6template}
      trnameObjectFirewallAddress6template:
        type: fortimanager:ObjectFirewallAddress6template
    

    Create ObjectFirewallAddress6templateSubnetsegment Resource

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

    Constructor syntax

    new ObjectFirewallAddress6templateSubnetsegment(name: string, args: ObjectFirewallAddress6templateSubnetsegmentArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectFirewallAddress6templateSubnetsegment(resource_name: str,
                                                    args: ObjectFirewallAddress6templateSubnetsegmentArgs,
                                                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectFirewallAddress6templateSubnetsegment(resource_name: str,
                                                    opts: Optional[ResourceOptions] = None,
                                                    address6_template: Optional[str] = None,
                                                    adom: Optional[str] = None,
                                                    bits: Optional[float] = None,
                                                    dynamic_sort_subtable: Optional[str] = None,
                                                    exclusive: Optional[str] = None,
                                                    fosid: Optional[float] = None,
                                                    name: Optional[str] = None,
                                                    object_firewall_address6template_subnetsegment_id: Optional[str] = None,
                                                    scopetype: Optional[str] = None,
                                                    values: Optional[Sequence[ObjectFirewallAddress6templateSubnetsegmentValueArgs]] = None)
    func NewObjectFirewallAddress6templateSubnetsegment(ctx *Context, name string, args ObjectFirewallAddress6templateSubnetsegmentArgs, opts ...ResourceOption) (*ObjectFirewallAddress6templateSubnetsegment, error)
    public ObjectFirewallAddress6templateSubnetsegment(string name, ObjectFirewallAddress6templateSubnetsegmentArgs args, CustomResourceOptions? opts = null)
    public ObjectFirewallAddress6templateSubnetsegment(String name, ObjectFirewallAddress6templateSubnetsegmentArgs args)
    public ObjectFirewallAddress6templateSubnetsegment(String name, ObjectFirewallAddress6templateSubnetsegmentArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectFirewallAddress6templateSubnetsegment
    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 ObjectFirewallAddress6templateSubnetsegmentArgs
    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 ObjectFirewallAddress6templateSubnetsegmentArgs
    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 ObjectFirewallAddress6templateSubnetsegmentArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectFirewallAddress6templateSubnetsegmentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectFirewallAddress6templateSubnetsegmentArgs
    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 objectFirewallAddress6templateSubnetsegmentResource = new Fortimanager.ObjectFirewallAddress6templateSubnetsegment("objectFirewallAddress6templateSubnetsegmentResource", new()
    {
        Address6Template = "string",
        Adom = "string",
        Bits = 0,
        DynamicSortSubtable = "string",
        Exclusive = "string",
        Fosid = 0,
        Name = "string",
        ObjectFirewallAddress6templateSubnetsegmentId = "string",
        Scopetype = "string",
        Values = new[]
        {
            new Fortimanager.Inputs.ObjectFirewallAddress6templateSubnetsegmentValueArgs
            {
                Name = "string",
                Value = "string",
            },
        },
    });
    
    example, err := fortimanager.NewObjectFirewallAddress6templateSubnetsegment(ctx, "objectFirewallAddress6templateSubnetsegmentResource", &fortimanager.ObjectFirewallAddress6templateSubnetsegmentArgs{
    Address6Template: pulumi.String("string"),
    Adom: pulumi.String("string"),
    Bits: pulumi.Float64(0),
    DynamicSortSubtable: pulumi.String("string"),
    Exclusive: pulumi.String("string"),
    Fosid: pulumi.Float64(0),
    Name: pulumi.String("string"),
    ObjectFirewallAddress6templateSubnetsegmentId: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    Values: .ObjectFirewallAddress6templateSubnetsegmentValueArray{
    &.ObjectFirewallAddress6templateSubnetsegmentValueArgs{
    Name: pulumi.String("string"),
    Value: pulumi.String("string"),
    },
    },
    })
    
    var objectFirewallAddress6templateSubnetsegmentResource = new ObjectFirewallAddress6templateSubnetsegment("objectFirewallAddress6templateSubnetsegmentResource", ObjectFirewallAddress6templateSubnetsegmentArgs.builder()
        .address6Template("string")
        .adom("string")
        .bits(0)
        .dynamicSortSubtable("string")
        .exclusive("string")
        .fosid(0)
        .name("string")
        .objectFirewallAddress6templateSubnetsegmentId("string")
        .scopetype("string")
        .values(ObjectFirewallAddress6templateSubnetsegmentValueArgs.builder()
            .name("string")
            .value("string")
            .build())
        .build());
    
    object_firewall_address6template_subnetsegment_resource = fortimanager.ObjectFirewallAddress6templateSubnetsegment("objectFirewallAddress6templateSubnetsegmentResource",
        address6_template="string",
        adom="string",
        bits=0,
        dynamic_sort_subtable="string",
        exclusive="string",
        fosid=0,
        name="string",
        object_firewall_address6template_subnetsegment_id="string",
        scopetype="string",
        values=[{
            "name": "string",
            "value": "string",
        }])
    
    const objectFirewallAddress6templateSubnetsegmentResource = new fortimanager.ObjectFirewallAddress6templateSubnetsegment("objectFirewallAddress6templateSubnetsegmentResource", {
        address6Template: "string",
        adom: "string",
        bits: 0,
        dynamicSortSubtable: "string",
        exclusive: "string",
        fosid: 0,
        name: "string",
        objectFirewallAddress6templateSubnetsegmentId: "string",
        scopetype: "string",
        values: [{
            name: "string",
            value: "string",
        }],
    });
    
    type: fortimanager:ObjectFirewallAddress6templateSubnetsegment
    properties:
        address6Template: string
        adom: string
        bits: 0
        dynamicSortSubtable: string
        exclusive: string
        fosid: 0
        name: string
        objectFirewallAddress6templateSubnetsegmentId: string
        scopetype: string
        values:
            - name: string
              value: string
    

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

    Address6Template string
    Address6 Template.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Bits double
    Number of bits.
    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.
    Exclusive string
    Enable/disable exclusive value. Valid values: disable, enable.
    Fosid double
    Subnet segment ID.
    Name string
    Subnet segment name.
    ObjectFirewallAddress6templateSubnetsegmentId string
    an identifier for the resource with format {{fosid}}.
    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.
    Values List<ObjectFirewallAddress6templateSubnetsegmentValue>
    Values. The structure of values block is documented below.
    Address6Template string
    Address6 Template.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Bits float64
    Number of bits.
    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.
    Exclusive string
    Enable/disable exclusive value. Valid values: disable, enable.
    Fosid float64
    Subnet segment ID.
    Name string
    Subnet segment name.
    ObjectFirewallAddress6templateSubnetsegmentId string
    an identifier for the resource with format {{fosid}}.
    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.
    Values []ObjectFirewallAddress6templateSubnetsegmentValueArgs
    Values. The structure of values block is documented below.
    address6Template String
    Address6 Template.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    bits Double
    Number of bits.
    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.
    exclusive String
    Enable/disable exclusive value. Valid values: disable, enable.
    fosid Double
    Subnet segment ID.
    name String
    Subnet segment name.
    objectFirewallAddress6templateSubnetsegmentId String
    an identifier for the resource with format {{fosid}}.
    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.
    values List<ObjectFirewallAddress6templateSubnetsegmentValue>
    Values. The structure of values block is documented below.
    address6Template string
    Address6 Template.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    bits number
    Number of bits.
    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.
    exclusive string
    Enable/disable exclusive value. Valid values: disable, enable.
    fosid number
    Subnet segment ID.
    name string
    Subnet segment name.
    objectFirewallAddress6templateSubnetsegmentId string
    an identifier for the resource with format {{fosid}}.
    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.
    values ObjectFirewallAddress6templateSubnetsegmentValue[]
    Values. The structure of values block is documented below.
    address6_template str
    Address6 Template.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    bits float
    Number of bits.
    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.
    exclusive str
    Enable/disable exclusive value. Valid values: disable, enable.
    fosid float
    Subnet segment ID.
    name str
    Subnet segment name.
    object_firewall_address6template_subnetsegment_id str
    an identifier for the resource with format {{fosid}}.
    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.
    values Sequence[ObjectFirewallAddress6templateSubnetsegmentValueArgs]
    Values. The structure of values block is documented below.
    address6Template String
    Address6 Template.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    bits Number
    Number of bits.
    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.
    exclusive String
    Enable/disable exclusive value. Valid values: disable, enable.
    fosid Number
    Subnet segment ID.
    name String
    Subnet segment name.
    objectFirewallAddress6templateSubnetsegmentId String
    an identifier for the resource with format {{fosid}}.
    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.
    values List<Property Map>
    Values. The structure of values block is documented below.

    Outputs

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

    Get an existing ObjectFirewallAddress6templateSubnetsegment 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?: ObjectFirewallAddress6templateSubnetsegmentState, opts?: CustomResourceOptions): ObjectFirewallAddress6templateSubnetsegment
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            address6_template: Optional[str] = None,
            adom: Optional[str] = None,
            bits: Optional[float] = None,
            dynamic_sort_subtable: Optional[str] = None,
            exclusive: Optional[str] = None,
            fosid: Optional[float] = None,
            name: Optional[str] = None,
            object_firewall_address6template_subnetsegment_id: Optional[str] = None,
            scopetype: Optional[str] = None,
            values: Optional[Sequence[ObjectFirewallAddress6templateSubnetsegmentValueArgs]] = None) -> ObjectFirewallAddress6templateSubnetsegment
    func GetObjectFirewallAddress6templateSubnetsegment(ctx *Context, name string, id IDInput, state *ObjectFirewallAddress6templateSubnetsegmentState, opts ...ResourceOption) (*ObjectFirewallAddress6templateSubnetsegment, error)
    public static ObjectFirewallAddress6templateSubnetsegment Get(string name, Input<string> id, ObjectFirewallAddress6templateSubnetsegmentState? state, CustomResourceOptions? opts = null)
    public static ObjectFirewallAddress6templateSubnetsegment get(String name, Output<String> id, ObjectFirewallAddress6templateSubnetsegmentState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectFirewallAddress6templateSubnetsegment    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:
    Address6Template string
    Address6 Template.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Bits double
    Number of bits.
    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.
    Exclusive string
    Enable/disable exclusive value. Valid values: disable, enable.
    Fosid double
    Subnet segment ID.
    Name string
    Subnet segment name.
    ObjectFirewallAddress6templateSubnetsegmentId string
    an identifier for the resource with format {{fosid}}.
    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.
    Values List<ObjectFirewallAddress6templateSubnetsegmentValue>
    Values. The structure of values block is documented below.
    Address6Template string
    Address6 Template.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Bits float64
    Number of bits.
    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.
    Exclusive string
    Enable/disable exclusive value. Valid values: disable, enable.
    Fosid float64
    Subnet segment ID.
    Name string
    Subnet segment name.
    ObjectFirewallAddress6templateSubnetsegmentId string
    an identifier for the resource with format {{fosid}}.
    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.
    Values []ObjectFirewallAddress6templateSubnetsegmentValueArgs
    Values. The structure of values block is documented below.
    address6Template String
    Address6 Template.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    bits Double
    Number of bits.
    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.
    exclusive String
    Enable/disable exclusive value. Valid values: disable, enable.
    fosid Double
    Subnet segment ID.
    name String
    Subnet segment name.
    objectFirewallAddress6templateSubnetsegmentId String
    an identifier for the resource with format {{fosid}}.
    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.
    values List<ObjectFirewallAddress6templateSubnetsegmentValue>
    Values. The structure of values block is documented below.
    address6Template string
    Address6 Template.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    bits number
    Number of bits.
    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.
    exclusive string
    Enable/disable exclusive value. Valid values: disable, enable.
    fosid number
    Subnet segment ID.
    name string
    Subnet segment name.
    objectFirewallAddress6templateSubnetsegmentId string
    an identifier for the resource with format {{fosid}}.
    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.
    values ObjectFirewallAddress6templateSubnetsegmentValue[]
    Values. The structure of values block is documented below.
    address6_template str
    Address6 Template.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    bits float
    Number of bits.
    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.
    exclusive str
    Enable/disable exclusive value. Valid values: disable, enable.
    fosid float
    Subnet segment ID.
    name str
    Subnet segment name.
    object_firewall_address6template_subnetsegment_id str
    an identifier for the resource with format {{fosid}}.
    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.
    values Sequence[ObjectFirewallAddress6templateSubnetsegmentValueArgs]
    Values. The structure of values block is documented below.
    address6Template String
    Address6 Template.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    bits Number
    Number of bits.
    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.
    exclusive String
    Enable/disable exclusive value. Valid values: disable, enable.
    fosid Number
    Subnet segment ID.
    name String
    Subnet segment name.
    objectFirewallAddress6templateSubnetsegmentId String
    an identifier for the resource with format {{fosid}}.
    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.
    values List<Property Map>
    Values. The structure of values block is documented below.

    Supporting Types

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

    Set import_options = [“address6_template=YOUR_VALUE”] in the provider section.

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectFirewallAddress6templateSubnetsegment:ObjectFirewallAddress6templateSubnetsegment labelname {{fosid}}
    

    $ 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