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

fortimanager.ObjectFspVlanInterfaceIpv6

Explore with Pulumi AI

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

    IPv6 of interface.

    This resource is a sub resource for variable ipv6 of resource fortimanager.ObjectFspVlanInterface. 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.

    • ip6_delegated_prefix_list: fortimanager.ObjectFspVlanInterfaceIpv6Ip6delegatedprefixlist
    • ip6_extra_addr: fortimanager.ObjectFspVlanInterfaceIpv6Ip6extraaddr
    • ip6_prefix_list: fortimanager_object_fsp_vlan_interface_ipv6_ip6prefixlist
    • vrrp6: fortimanager.ObjectFspVlanInterfaceIpv6Vrrp6

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trnameObjectFspVlan = new fortimanager.ObjectFspVlan("trnameObjectFspVlan", {vlanid: 101});
    const trnameObjectFspVlanInterfaceIpv6 = new fortimanager.ObjectFspVlanInterfaceIpv6("trnameObjectFspVlanInterfaceIpv6", {
        vlan: trnameObjectFspVlan.name,
        autoconf: "enable",
    }, {
        dependsOn: [trnameObjectFspVlan],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_object_fsp_vlan = fortimanager.ObjectFspVlan("trnameObjectFspVlan", vlanid=101)
    trname_object_fsp_vlan_interface_ipv6 = fortimanager.ObjectFspVlanInterfaceIpv6("trnameObjectFspVlanInterfaceIpv6",
        vlan=trname_object_fsp_vlan.name,
        autoconf="enable",
        opts = pulumi.ResourceOptions(depends_on=[trname_object_fsp_vlan]))
    
    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 {
    		trnameObjectFspVlan, err := fortimanager.NewObjectFspVlan(ctx, "trnameObjectFspVlan", &fortimanager.ObjectFspVlanArgs{
    			Vlanid: pulumi.Float64(101),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectFspVlanInterfaceIpv6(ctx, "trnameObjectFspVlanInterfaceIpv6", &fortimanager.ObjectFspVlanInterfaceIpv6Args{
    			Vlan:     trnameObjectFspVlan.Name,
    			Autoconf: pulumi.String("enable"),
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trnameObjectFspVlan,
    		}))
    		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 trnameObjectFspVlan = new Fortimanager.ObjectFspVlan("trnameObjectFspVlan", new()
        {
            Vlanid = 101,
        });
    
        var trnameObjectFspVlanInterfaceIpv6 = new Fortimanager.ObjectFspVlanInterfaceIpv6("trnameObjectFspVlanInterfaceIpv6", new()
        {
            Vlan = trnameObjectFspVlan.Name,
            Autoconf = "enable",
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trnameObjectFspVlan,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectFspVlan;
    import com.pulumi.fortimanager.ObjectFspVlanArgs;
    import com.pulumi.fortimanager.ObjectFspVlanInterfaceIpv6;
    import com.pulumi.fortimanager.ObjectFspVlanInterfaceIpv6Args;
    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 trnameObjectFspVlan = new ObjectFspVlan("trnameObjectFspVlan", ObjectFspVlanArgs.builder()
                .vlanid(101)
                .build());
    
            var trnameObjectFspVlanInterfaceIpv6 = new ObjectFspVlanInterfaceIpv6("trnameObjectFspVlanInterfaceIpv6", ObjectFspVlanInterfaceIpv6Args.builder()
                .vlan(trnameObjectFspVlan.name())
                .autoconf("enable")
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameObjectFspVlan)
                    .build());
    
        }
    }
    
    resources:
      trnameObjectFspVlanInterfaceIpv6:
        type: fortimanager:ObjectFspVlanInterfaceIpv6
        properties:
          vlan: ${trnameObjectFspVlan.name}
          autoconf: enable
        options:
          dependsOn:
            - ${trnameObjectFspVlan}
      trnameObjectFspVlan:
        type: fortimanager:ObjectFspVlan
        properties:
          vlanid: 101
    

    Create ObjectFspVlanInterfaceIpv6 Resource

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

    Constructor syntax

    new ObjectFspVlanInterfaceIpv6(name: string, args: ObjectFspVlanInterfaceIpv6Args, opts?: CustomResourceOptions);
    @overload
    def ObjectFspVlanInterfaceIpv6(resource_name: str,
                                   args: ObjectFspVlanInterfaceIpv6InitArgs,
                                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectFspVlanInterfaceIpv6(resource_name: str,
                                   opts: Optional[ResourceOptions] = None,
                                   vlan: Optional[str] = None,
                                   adom: Optional[str] = None,
                                   autoconf: Optional[str] = None,
                                   cli_conn6_status: Optional[float] = None,
                                   dhcp6_client_options: Optional[Sequence[str]] = None,
                                   dhcp6_information_request: Optional[str] = None,
                                   dhcp6_prefix_delegation: Optional[str] = None,
                                   dhcp6_prefix_hint: Optional[str] = None,
                                   dhcp6_prefix_hint_plt: Optional[float] = None,
                                   dhcp6_prefix_hint_vlt: Optional[float] = None,
                                   dhcp6_relay_interface_id: Optional[str] = None,
                                   dhcp6_relay_ip: Optional[str] = None,
                                   dhcp6_relay_service: Optional[str] = None,
                                   dhcp6_relay_source_interface: Optional[str] = None,
                                   dhcp6_relay_source_ip: Optional[str] = None,
                                   dhcp6_relay_type: Optional[str] = None,
                                   dynamic_sort_subtable: Optional[str] = None,
                                   icmp6_send_redirect: Optional[str] = None,
                                   interface_identifier: Optional[str] = None,
                                   ip6_address: Optional[str] = None,
                                   ip6_allowaccesses: Optional[Sequence[str]] = None,
                                   ip6_default_life: Optional[float] = None,
                                   ip6_delegated_prefix_iaid: Optional[float] = None,
                                   ip6_delegated_prefix_lists: Optional[Sequence[ObjectFspVlanInterfaceIpv6Ip6DelegatedPrefixListArgs]] = None,
                                   ip6_dns_server_override: Optional[str] = None,
                                   ip6_extra_addrs: Optional[Sequence[ObjectFspVlanInterfaceIpv6Ip6ExtraAddrArgs]] = None,
                                   ip6_hop_limit: Optional[float] = None,
                                   ip6_link_mtu: Optional[float] = None,
                                   ip6_manage_flag: Optional[str] = None,
                                   ip6_max_interval: Optional[float] = None,
                                   ip6_min_interval: Optional[float] = None,
                                   ip6_mode: Optional[str] = None,
                                   ip6_other_flag: Optional[str] = None,
                                   ip6_prefix_lists: Optional[Sequence[ObjectFspVlanInterfaceIpv6Ip6PrefixListArgs]] = None,
                                   ip6_prefix_mode: Optional[str] = None,
                                   ip6_reachable_time: Optional[float] = None,
                                   ip6_retrans_time: Optional[float] = None,
                                   ip6_send_adv: Optional[str] = None,
                                   ip6_subnet: Optional[str] = None,
                                   ip6_upstream_interface: Optional[str] = None,
                                   nd_cert: Optional[str] = None,
                                   nd_cga_modifier: Optional[str] = None,
                                   nd_mode: Optional[str] = None,
                                   nd_security_level: Optional[float] = None,
                                   nd_timestamp_delta: Optional[float] = None,
                                   nd_timestamp_fuzz: Optional[float] = None,
                                   object_fsp_vlan_interface_ipv6_id: Optional[str] = None,
                                   ra_send_mtu: Optional[str] = None,
                                   scopetype: Optional[str] = None,
                                   unique_autoconf_addr: Optional[str] = None,
                                   vrip6_link_local: Optional[str] = None,
                                   vrrp6s: Optional[Sequence[ObjectFspVlanInterfaceIpv6Vrrp6Args]] = None,
                                   vrrp_virtual_mac6: Optional[str] = None)
    func NewObjectFspVlanInterfaceIpv6(ctx *Context, name string, args ObjectFspVlanInterfaceIpv6Args, opts ...ResourceOption) (*ObjectFspVlanInterfaceIpv6, error)
    public ObjectFspVlanInterfaceIpv6(string name, ObjectFspVlanInterfaceIpv6Args args, CustomResourceOptions? opts = null)
    public ObjectFspVlanInterfaceIpv6(String name, ObjectFspVlanInterfaceIpv6Args args)
    public ObjectFspVlanInterfaceIpv6(String name, ObjectFspVlanInterfaceIpv6Args args, CustomResourceOptions options)
    
    type: fortimanager:ObjectFspVlanInterfaceIpv6
    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 ObjectFspVlanInterfaceIpv6Args
    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 ObjectFspVlanInterfaceIpv6InitArgs
    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 ObjectFspVlanInterfaceIpv6Args
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectFspVlanInterfaceIpv6Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectFspVlanInterfaceIpv6Args
    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 objectFspVlanInterfaceIpv6Resource = new Fortimanager.ObjectFspVlanInterfaceIpv6("objectFspVlanInterfaceIpv6Resource", new()
    {
        Vlan = "string",
        Adom = "string",
        Autoconf = "string",
        CliConn6Status = 0,
        Dhcp6ClientOptions = new[]
        {
            "string",
        },
        Dhcp6InformationRequest = "string",
        Dhcp6PrefixDelegation = "string",
        Dhcp6PrefixHint = "string",
        Dhcp6PrefixHintPlt = 0,
        Dhcp6PrefixHintVlt = 0,
        Dhcp6RelayInterfaceId = "string",
        Dhcp6RelayIp = "string",
        Dhcp6RelayService = "string",
        Dhcp6RelaySourceInterface = "string",
        Dhcp6RelaySourceIp = "string",
        Dhcp6RelayType = "string",
        DynamicSortSubtable = "string",
        Icmp6SendRedirect = "string",
        InterfaceIdentifier = "string",
        Ip6Address = "string",
        Ip6Allowaccesses = new[]
        {
            "string",
        },
        Ip6DefaultLife = 0,
        Ip6DelegatedPrefixIaid = 0,
        Ip6DelegatedPrefixLists = new[]
        {
            new Fortimanager.Inputs.ObjectFspVlanInterfaceIpv6Ip6DelegatedPrefixListArgs
            {
                AutonomousFlag = "string",
                DelegatedPrefixIaid = 0,
                OnlinkFlag = "string",
                PrefixId = 0,
                RdnssService = "string",
                Rdnsses = new[]
                {
                    "string",
                },
                Subnet = "string",
                UpstreamInterface = "string",
            },
        },
        Ip6DnsServerOverride = "string",
        Ip6ExtraAddrs = new[]
        {
            new Fortimanager.Inputs.ObjectFspVlanInterfaceIpv6Ip6ExtraAddrArgs
            {
                Prefix = "string",
            },
        },
        Ip6HopLimit = 0,
        Ip6LinkMtu = 0,
        Ip6ManageFlag = "string",
        Ip6MaxInterval = 0,
        Ip6MinInterval = 0,
        Ip6Mode = "string",
        Ip6OtherFlag = "string",
        Ip6PrefixLists = new[]
        {
            new Fortimanager.Inputs.ObjectFspVlanInterfaceIpv6Ip6PrefixListArgs
            {
                AutonomousFlag = "string",
                Dnssls = new[]
                {
                    "string",
                },
                OnlinkFlag = "string",
                PreferredLifeTime = 0,
                Prefix = "string",
                Rdnsses = new[]
                {
                    "string",
                },
                ValidLifeTime = 0,
            },
        },
        Ip6PrefixMode = "string",
        Ip6ReachableTime = 0,
        Ip6RetransTime = 0,
        Ip6SendAdv = "string",
        Ip6Subnet = "string",
        Ip6UpstreamInterface = "string",
        NdCert = "string",
        NdCgaModifier = "string",
        NdMode = "string",
        NdSecurityLevel = 0,
        NdTimestampDelta = 0,
        NdTimestampFuzz = 0,
        ObjectFspVlanInterfaceIpv6Id = "string",
        RaSendMtu = "string",
        Scopetype = "string",
        UniqueAutoconfAddr = "string",
        Vrip6LinkLocal = "string",
        Vrrp6s = new[]
        {
            new Fortimanager.Inputs.ObjectFspVlanInterfaceIpv6Vrrp6Args
            {
                AcceptMode = "string",
                AdvInterval = 0,
                IgnoreDefaultRoute = "string",
                Preempt = "string",
                Priority = 0,
                StartTime = 0,
                Status = "string",
                Vrdst6 = "string",
                Vrgrp = 0,
                Vrid = 0,
                Vrip6 = "string",
            },
        },
        VrrpVirtualMac6 = "string",
    });
    
    example, err := fortimanager.NewObjectFspVlanInterfaceIpv6(ctx, "objectFspVlanInterfaceIpv6Resource", &fortimanager.ObjectFspVlanInterfaceIpv6Args{
    Vlan: pulumi.String("string"),
    Adom: pulumi.String("string"),
    Autoconf: pulumi.String("string"),
    CliConn6Status: pulumi.Float64(0),
    Dhcp6ClientOptions: pulumi.StringArray{
    pulumi.String("string"),
    },
    Dhcp6InformationRequest: pulumi.String("string"),
    Dhcp6PrefixDelegation: pulumi.String("string"),
    Dhcp6PrefixHint: pulumi.String("string"),
    Dhcp6PrefixHintPlt: pulumi.Float64(0),
    Dhcp6PrefixHintVlt: pulumi.Float64(0),
    Dhcp6RelayInterfaceId: pulumi.String("string"),
    Dhcp6RelayIp: pulumi.String("string"),
    Dhcp6RelayService: pulumi.String("string"),
    Dhcp6RelaySourceInterface: pulumi.String("string"),
    Dhcp6RelaySourceIp: pulumi.String("string"),
    Dhcp6RelayType: pulumi.String("string"),
    DynamicSortSubtable: pulumi.String("string"),
    Icmp6SendRedirect: pulumi.String("string"),
    InterfaceIdentifier: pulumi.String("string"),
    Ip6Address: pulumi.String("string"),
    Ip6Allowaccesses: pulumi.StringArray{
    pulumi.String("string"),
    },
    Ip6DefaultLife: pulumi.Float64(0),
    Ip6DelegatedPrefixIaid: pulumi.Float64(0),
    Ip6DelegatedPrefixLists: .ObjectFspVlanInterfaceIpv6Ip6DelegatedPrefixListTypeArray{
    &.ObjectFspVlanInterfaceIpv6Ip6DelegatedPrefixListTypeArgs{
    AutonomousFlag: pulumi.String("string"),
    DelegatedPrefixIaid: pulumi.Float64(0),
    OnlinkFlag: pulumi.String("string"),
    PrefixId: pulumi.Float64(0),
    RdnssService: pulumi.String("string"),
    Rdnsses: pulumi.StringArray{
    pulumi.String("string"),
    },
    Subnet: pulumi.String("string"),
    UpstreamInterface: pulumi.String("string"),
    },
    },
    Ip6DnsServerOverride: pulumi.String("string"),
    Ip6ExtraAddrs: .ObjectFspVlanInterfaceIpv6Ip6ExtraAddrTypeArray{
    &.ObjectFspVlanInterfaceIpv6Ip6ExtraAddrTypeArgs{
    Prefix: pulumi.String("string"),
    },
    },
    Ip6HopLimit: pulumi.Float64(0),
    Ip6LinkMtu: pulumi.Float64(0),
    Ip6ManageFlag: pulumi.String("string"),
    Ip6MaxInterval: pulumi.Float64(0),
    Ip6MinInterval: pulumi.Float64(0),
    Ip6Mode: pulumi.String("string"),
    Ip6OtherFlag: pulumi.String("string"),
    Ip6PrefixLists: .ObjectFspVlanInterfaceIpv6Ip6PrefixListArray{
    &.ObjectFspVlanInterfaceIpv6Ip6PrefixListArgs{
    AutonomousFlag: pulumi.String("string"),
    Dnssls: pulumi.StringArray{
    pulumi.String("string"),
    },
    OnlinkFlag: pulumi.String("string"),
    PreferredLifeTime: pulumi.Float64(0),
    Prefix: pulumi.String("string"),
    Rdnsses: pulumi.StringArray{
    pulumi.String("string"),
    },
    ValidLifeTime: pulumi.Float64(0),
    },
    },
    Ip6PrefixMode: pulumi.String("string"),
    Ip6ReachableTime: pulumi.Float64(0),
    Ip6RetransTime: pulumi.Float64(0),
    Ip6SendAdv: pulumi.String("string"),
    Ip6Subnet: pulumi.String("string"),
    Ip6UpstreamInterface: pulumi.String("string"),
    NdCert: pulumi.String("string"),
    NdCgaModifier: pulumi.String("string"),
    NdMode: pulumi.String("string"),
    NdSecurityLevel: pulumi.Float64(0),
    NdTimestampDelta: pulumi.Float64(0),
    NdTimestampFuzz: pulumi.Float64(0),
    ObjectFspVlanInterfaceIpv6Id: pulumi.String("string"),
    RaSendMtu: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    UniqueAutoconfAddr: pulumi.String("string"),
    Vrip6LinkLocal: pulumi.String("string"),
    Vrrp6s: .ObjectFspVlanInterfaceIpv6Vrrp6TypeArray{
    &.ObjectFspVlanInterfaceIpv6Vrrp6TypeArgs{
    AcceptMode: pulumi.String("string"),
    AdvInterval: pulumi.Float64(0),
    IgnoreDefaultRoute: pulumi.String("string"),
    Preempt: pulumi.String("string"),
    Priority: pulumi.Float64(0),
    StartTime: pulumi.Float64(0),
    Status: pulumi.String("string"),
    Vrdst6: pulumi.String("string"),
    Vrgrp: pulumi.Float64(0),
    Vrid: pulumi.Float64(0),
    Vrip6: pulumi.String("string"),
    },
    },
    VrrpVirtualMac6: pulumi.String("string"),
    })
    
    var objectFspVlanInterfaceIpv6Resource = new ObjectFspVlanInterfaceIpv6("objectFspVlanInterfaceIpv6Resource", ObjectFspVlanInterfaceIpv6Args.builder()
        .vlan("string")
        .adom("string")
        .autoconf("string")
        .cliConn6Status(0)
        .dhcp6ClientOptions("string")
        .dhcp6InformationRequest("string")
        .dhcp6PrefixDelegation("string")
        .dhcp6PrefixHint("string")
        .dhcp6PrefixHintPlt(0)
        .dhcp6PrefixHintVlt(0)
        .dhcp6RelayInterfaceId("string")
        .dhcp6RelayIp("string")
        .dhcp6RelayService("string")
        .dhcp6RelaySourceInterface("string")
        .dhcp6RelaySourceIp("string")
        .dhcp6RelayType("string")
        .dynamicSortSubtable("string")
        .icmp6SendRedirect("string")
        .interfaceIdentifier("string")
        .ip6Address("string")
        .ip6Allowaccesses("string")
        .ip6DefaultLife(0)
        .ip6DelegatedPrefixIaid(0)
        .ip6DelegatedPrefixLists(ObjectFspVlanInterfaceIpv6Ip6DelegatedPrefixListArgs.builder()
            .autonomousFlag("string")
            .delegatedPrefixIaid(0)
            .onlinkFlag("string")
            .prefixId(0)
            .rdnssService("string")
            .rdnsses("string")
            .subnet("string")
            .upstreamInterface("string")
            .build())
        .ip6DnsServerOverride("string")
        .ip6ExtraAddrs(ObjectFspVlanInterfaceIpv6Ip6ExtraAddrArgs.builder()
            .prefix("string")
            .build())
        .ip6HopLimit(0)
        .ip6LinkMtu(0)
        .ip6ManageFlag("string")
        .ip6MaxInterval(0)
        .ip6MinInterval(0)
        .ip6Mode("string")
        .ip6OtherFlag("string")
        .ip6PrefixLists(ObjectFspVlanInterfaceIpv6Ip6PrefixListArgs.builder()
            .autonomousFlag("string")
            .dnssls("string")
            .onlinkFlag("string")
            .preferredLifeTime(0)
            .prefix("string")
            .rdnsses("string")
            .validLifeTime(0)
            .build())
        .ip6PrefixMode("string")
        .ip6ReachableTime(0)
        .ip6RetransTime(0)
        .ip6SendAdv("string")
        .ip6Subnet("string")
        .ip6UpstreamInterface("string")
        .ndCert("string")
        .ndCgaModifier("string")
        .ndMode("string")
        .ndSecurityLevel(0)
        .ndTimestampDelta(0)
        .ndTimestampFuzz(0)
        .objectFspVlanInterfaceIpv6Id("string")
        .raSendMtu("string")
        .scopetype("string")
        .uniqueAutoconfAddr("string")
        .vrip6LinkLocal("string")
        .vrrp6s(ObjectFspVlanInterfaceIpv6Vrrp6Args.builder()
            .acceptMode("string")
            .advInterval(0)
            .ignoreDefaultRoute("string")
            .preempt("string")
            .priority(0)
            .startTime(0)
            .status("string")
            .vrdst6("string")
            .vrgrp(0)
            .vrid(0)
            .vrip6("string")
            .build())
        .vrrpVirtualMac6("string")
        .build());
    
    object_fsp_vlan_interface_ipv6_resource = fortimanager.ObjectFspVlanInterfaceIpv6("objectFspVlanInterfaceIpv6Resource",
        vlan="string",
        adom="string",
        autoconf="string",
        cli_conn6_status=0,
        dhcp6_client_options=["string"],
        dhcp6_information_request="string",
        dhcp6_prefix_delegation="string",
        dhcp6_prefix_hint="string",
        dhcp6_prefix_hint_plt=0,
        dhcp6_prefix_hint_vlt=0,
        dhcp6_relay_interface_id="string",
        dhcp6_relay_ip="string",
        dhcp6_relay_service="string",
        dhcp6_relay_source_interface="string",
        dhcp6_relay_source_ip="string",
        dhcp6_relay_type="string",
        dynamic_sort_subtable="string",
        icmp6_send_redirect="string",
        interface_identifier="string",
        ip6_address="string",
        ip6_allowaccesses=["string"],
        ip6_default_life=0,
        ip6_delegated_prefix_iaid=0,
        ip6_delegated_prefix_lists=[{
            "autonomous_flag": "string",
            "delegated_prefix_iaid": 0,
            "onlink_flag": "string",
            "prefix_id": 0,
            "rdnss_service": "string",
            "rdnsses": ["string"],
            "subnet": "string",
            "upstream_interface": "string",
        }],
        ip6_dns_server_override="string",
        ip6_extra_addrs=[{
            "prefix": "string",
        }],
        ip6_hop_limit=0,
        ip6_link_mtu=0,
        ip6_manage_flag="string",
        ip6_max_interval=0,
        ip6_min_interval=0,
        ip6_mode="string",
        ip6_other_flag="string",
        ip6_prefix_lists=[{
            "autonomous_flag": "string",
            "dnssls": ["string"],
            "onlink_flag": "string",
            "preferred_life_time": 0,
            "prefix": "string",
            "rdnsses": ["string"],
            "valid_life_time": 0,
        }],
        ip6_prefix_mode="string",
        ip6_reachable_time=0,
        ip6_retrans_time=0,
        ip6_send_adv="string",
        ip6_subnet="string",
        ip6_upstream_interface="string",
        nd_cert="string",
        nd_cga_modifier="string",
        nd_mode="string",
        nd_security_level=0,
        nd_timestamp_delta=0,
        nd_timestamp_fuzz=0,
        object_fsp_vlan_interface_ipv6_id="string",
        ra_send_mtu="string",
        scopetype="string",
        unique_autoconf_addr="string",
        vrip6_link_local="string",
        vrrp6s=[{
            "accept_mode": "string",
            "adv_interval": 0,
            "ignore_default_route": "string",
            "preempt": "string",
            "priority": 0,
            "start_time": 0,
            "status": "string",
            "vrdst6": "string",
            "vrgrp": 0,
            "vrid": 0,
            "vrip6": "string",
        }],
        vrrp_virtual_mac6="string")
    
    const objectFspVlanInterfaceIpv6Resource = new fortimanager.ObjectFspVlanInterfaceIpv6("objectFspVlanInterfaceIpv6Resource", {
        vlan: "string",
        adom: "string",
        autoconf: "string",
        cliConn6Status: 0,
        dhcp6ClientOptions: ["string"],
        dhcp6InformationRequest: "string",
        dhcp6PrefixDelegation: "string",
        dhcp6PrefixHint: "string",
        dhcp6PrefixHintPlt: 0,
        dhcp6PrefixHintVlt: 0,
        dhcp6RelayInterfaceId: "string",
        dhcp6RelayIp: "string",
        dhcp6RelayService: "string",
        dhcp6RelaySourceInterface: "string",
        dhcp6RelaySourceIp: "string",
        dhcp6RelayType: "string",
        dynamicSortSubtable: "string",
        icmp6SendRedirect: "string",
        interfaceIdentifier: "string",
        ip6Address: "string",
        ip6Allowaccesses: ["string"],
        ip6DefaultLife: 0,
        ip6DelegatedPrefixIaid: 0,
        ip6DelegatedPrefixLists: [{
            autonomousFlag: "string",
            delegatedPrefixIaid: 0,
            onlinkFlag: "string",
            prefixId: 0,
            rdnssService: "string",
            rdnsses: ["string"],
            subnet: "string",
            upstreamInterface: "string",
        }],
        ip6DnsServerOverride: "string",
        ip6ExtraAddrs: [{
            prefix: "string",
        }],
        ip6HopLimit: 0,
        ip6LinkMtu: 0,
        ip6ManageFlag: "string",
        ip6MaxInterval: 0,
        ip6MinInterval: 0,
        ip6Mode: "string",
        ip6OtherFlag: "string",
        ip6PrefixLists: [{
            autonomousFlag: "string",
            dnssls: ["string"],
            onlinkFlag: "string",
            preferredLifeTime: 0,
            prefix: "string",
            rdnsses: ["string"],
            validLifeTime: 0,
        }],
        ip6PrefixMode: "string",
        ip6ReachableTime: 0,
        ip6RetransTime: 0,
        ip6SendAdv: "string",
        ip6Subnet: "string",
        ip6UpstreamInterface: "string",
        ndCert: "string",
        ndCgaModifier: "string",
        ndMode: "string",
        ndSecurityLevel: 0,
        ndTimestampDelta: 0,
        ndTimestampFuzz: 0,
        objectFspVlanInterfaceIpv6Id: "string",
        raSendMtu: "string",
        scopetype: "string",
        uniqueAutoconfAddr: "string",
        vrip6LinkLocal: "string",
        vrrp6s: [{
            acceptMode: "string",
            advInterval: 0,
            ignoreDefaultRoute: "string",
            preempt: "string",
            priority: 0,
            startTime: 0,
            status: "string",
            vrdst6: "string",
            vrgrp: 0,
            vrid: 0,
            vrip6: "string",
        }],
        vrrpVirtualMac6: "string",
    });
    
    type: fortimanager:ObjectFspVlanInterfaceIpv6
    properties:
        adom: string
        autoconf: string
        cliConn6Status: 0
        dhcp6ClientOptions:
            - string
        dhcp6InformationRequest: string
        dhcp6PrefixDelegation: string
        dhcp6PrefixHint: string
        dhcp6PrefixHintPlt: 0
        dhcp6PrefixHintVlt: 0
        dhcp6RelayInterfaceId: string
        dhcp6RelayIp: string
        dhcp6RelayService: string
        dhcp6RelaySourceInterface: string
        dhcp6RelaySourceIp: string
        dhcp6RelayType: string
        dynamicSortSubtable: string
        icmp6SendRedirect: string
        interfaceIdentifier: string
        ip6Address: string
        ip6Allowaccesses:
            - string
        ip6DefaultLife: 0
        ip6DelegatedPrefixIaid: 0
        ip6DelegatedPrefixLists:
            - autonomousFlag: string
              delegatedPrefixIaid: 0
              onlinkFlag: string
              prefixId: 0
              rdnssService: string
              rdnsses:
                - string
              subnet: string
              upstreamInterface: string
        ip6DnsServerOverride: string
        ip6ExtraAddrs:
            - prefix: string
        ip6HopLimit: 0
        ip6LinkMtu: 0
        ip6ManageFlag: string
        ip6MaxInterval: 0
        ip6MinInterval: 0
        ip6Mode: string
        ip6OtherFlag: string
        ip6PrefixLists:
            - autonomousFlag: string
              dnssls:
                - string
              onlinkFlag: string
              preferredLifeTime: 0
              prefix: string
              rdnsses:
                - string
              validLifeTime: 0
        ip6PrefixMode: string
        ip6ReachableTime: 0
        ip6RetransTime: 0
        ip6SendAdv: string
        ip6Subnet: string
        ip6UpstreamInterface: string
        ndCert: string
        ndCgaModifier: string
        ndMode: string
        ndSecurityLevel: 0
        ndTimestampDelta: 0
        ndTimestampFuzz: 0
        objectFspVlanInterfaceIpv6Id: string
        raSendMtu: string
        scopetype: string
        uniqueAutoconfAddr: string
        vlan: string
        vrip6LinkLocal: string
        vrrp6s:
            - acceptMode: string
              advInterval: 0
              ignoreDefaultRoute: string
              preempt: string
              priority: 0
              startTime: 0
              status: string
              vrdst6: string
              vrgrp: 0
              vrid: 0
              vrip6: string
        vrrpVirtualMac6: string
    

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

    Vlan string
    Vlan.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Autoconf string
    Enable/disable address auto config. Valid values: disable, enable.
    CliConn6Status double
    Cli-Conn6-Status.
    Dhcp6ClientOptions List<string>
    Dhcp6-Client-Options. Valid values: rapid, iapd, iana, dns, dnsname.
    Dhcp6InformationRequest string
    Enable/disable DHCPv6 information request. Valid values: disable, enable.
    Dhcp6PrefixDelegation string
    Enable/disable DHCPv6 prefix delegation. Valid values: disable, enable.
    Dhcp6PrefixHint string
    DHCPv6 prefix that will be used as a hint to the upstream DHCPv6 server.
    Dhcp6PrefixHintPlt double
    DHCPv6 prefix hint preferred life time (sec), 0 means unlimited lease time.
    Dhcp6PrefixHintVlt double
    DHCPv6 prefix hint valid life time (sec).
    Dhcp6RelayInterfaceId string
    DHCP6 relay interface ID.
    Dhcp6RelayIp string
    DHCPv6 relay IP address.
    Dhcp6RelayService string
    Enable/disable DHCPv6 relay. Valid values: disable, enable.
    Dhcp6RelaySourceInterface string
    Enable/disable use of address on this interface as the source address of the relay message. Valid values: disable, enable.
    Dhcp6RelaySourceIp string
    IPv6 address used by the DHCP6 relay as its source IP.
    Dhcp6RelayType string
    DHCPv6 relay type. Valid values: regular.
    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.

    The ip6_delegated_prefix_list block supports:

    Icmp6SendRedirect string
    Icmp6-Send-Redirect. Valid values: disable, enable.
    InterfaceIdentifier string
    Interface-Identifier.
    Ip6Address string
    Primary IPv6 address prefix, syntax: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx
    Ip6Allowaccesses List<string>
    Allow management access to the interface. Valid values: https, ping, ssh, snmp, http, telnet, fgfm, capwap, fabric.
    Ip6DefaultLife double
    Default life (sec).
    Ip6DelegatedPrefixIaid double
    IAID of obtained delegated-prefix from the upstream interface.
    Ip6DelegatedPrefixLists List<ObjectFspVlanInterfaceIpv6Ip6DelegatedPrefixList>
    Ip6-Delegated-Prefix-List. The structure of ip6_delegated_prefix_list block is documented below.
    Ip6DnsServerOverride string
    Enable/disable using the DNS server acquired by DHCP. Valid values: disable, enable.
    Ip6ExtraAddrs List<ObjectFspVlanInterfaceIpv6Ip6ExtraAddr>
    Ip6-Extra-Addr. The structure of ip6_extra_addr block is documented below.
    Ip6HopLimit double
    Hop limit (0 means unspecified).
    Ip6LinkMtu double
    IPv6 link MTU.
    Ip6ManageFlag string
    Enable/disable the managed flag. Valid values: disable, enable.
    Ip6MaxInterval double
    IPv6 maximum interval (4 to 1800 sec).
    Ip6MinInterval double
    IPv6 minimum interval (3 to 1350 sec).
    Ip6Mode string
    Addressing mode (static, DHCP, delegated). Valid values: static, dhcp, pppoe, delegated.
    Ip6OtherFlag string
    Enable/disable the other IPv6 flag. Valid values: disable, enable.
    Ip6PrefixLists List<ObjectFspVlanInterfaceIpv6Ip6PrefixList>
    Ip6-Prefix-List. The structure of ip6_prefix_list block is documented below.
    Ip6PrefixMode string
    Ip6-Prefix-Mode. Valid values: dhcp6, ra.
    Ip6ReachableTime double
    IPv6 reachable time (milliseconds; 0 means unspecified).
    Ip6RetransTime double
    IPv6 retransmit time (milliseconds; 0 means unspecified).
    Ip6SendAdv string
    Enable/disable sending advertisements about the interface. Valid values: disable, enable.
    Ip6Subnet string
    Subnet to routing prefix, syntax: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx
    Ip6UpstreamInterface string
    Interface name providing delegated information.
    NdCert string
    Neighbor discovery certificate.
    NdCgaModifier string
    Neighbor discovery CGA modifier.
    NdMode string
    Neighbor discovery mode. Valid values: basic, SEND-compatible.
    NdSecurityLevel double
    Neighbor discovery security level (0 - 7; 0 = least secure, default = 0).
    NdTimestampDelta double
    Neighbor discovery timestamp delta value (1 - 3600 sec; default = 300).
    NdTimestampFuzz double
    Neighbor discovery timestamp fuzz factor (1 - 60 sec; default = 1).
    ObjectFspVlanInterfaceIpv6Id string
    an identifier for the resource.
    RaSendMtu string
    Ra-Send-Mtu. Valid values: disable, enable.
    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.
    UniqueAutoconfAddr string
    Unique-Autoconf-Addr. Valid values: disable, enable.
    Vrip6LinkLocal string
    Link-local IPv6 address of virtual router.
    Vrrp6s List<ObjectFspVlanInterfaceIpv6Vrrp6>
    Vrrp6. The structure of vrrp6 block is documented below.
    VrrpVirtualMac6 string
    Enable/disable virtual MAC for VRRP. Valid values: disable, enable.
    Vlan string
    Vlan.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Autoconf string
    Enable/disable address auto config. Valid values: disable, enable.
    CliConn6Status float64
    Cli-Conn6-Status.
    Dhcp6ClientOptions []string
    Dhcp6-Client-Options. Valid values: rapid, iapd, iana, dns, dnsname.
    Dhcp6InformationRequest string
    Enable/disable DHCPv6 information request. Valid values: disable, enable.
    Dhcp6PrefixDelegation string
    Enable/disable DHCPv6 prefix delegation. Valid values: disable, enable.
    Dhcp6PrefixHint string
    DHCPv6 prefix that will be used as a hint to the upstream DHCPv6 server.
    Dhcp6PrefixHintPlt float64
    DHCPv6 prefix hint preferred life time (sec), 0 means unlimited lease time.
    Dhcp6PrefixHintVlt float64
    DHCPv6 prefix hint valid life time (sec).
    Dhcp6RelayInterfaceId string
    DHCP6 relay interface ID.
    Dhcp6RelayIp string
    DHCPv6 relay IP address.
    Dhcp6RelayService string
    Enable/disable DHCPv6 relay. Valid values: disable, enable.
    Dhcp6RelaySourceInterface string
    Enable/disable use of address on this interface as the source address of the relay message. Valid values: disable, enable.
    Dhcp6RelaySourceIp string
    IPv6 address used by the DHCP6 relay as its source IP.
    Dhcp6RelayType string
    DHCPv6 relay type. Valid values: regular.
    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.

    The ip6_delegated_prefix_list block supports:

    Icmp6SendRedirect string
    Icmp6-Send-Redirect. Valid values: disable, enable.
    InterfaceIdentifier string
    Interface-Identifier.
    Ip6Address string
    Primary IPv6 address prefix, syntax: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx
    Ip6Allowaccesses []string
    Allow management access to the interface. Valid values: https, ping, ssh, snmp, http, telnet, fgfm, capwap, fabric.
    Ip6DefaultLife float64
    Default life (sec).
    Ip6DelegatedPrefixIaid float64
    IAID of obtained delegated-prefix from the upstream interface.
    Ip6DelegatedPrefixLists []ObjectFspVlanInterfaceIpv6Ip6DelegatedPrefixListTypeArgs
    Ip6-Delegated-Prefix-List. The structure of ip6_delegated_prefix_list block is documented below.
    Ip6DnsServerOverride string
    Enable/disable using the DNS server acquired by DHCP. Valid values: disable, enable.
    Ip6ExtraAddrs []ObjectFspVlanInterfaceIpv6Ip6ExtraAddrTypeArgs
    Ip6-Extra-Addr. The structure of ip6_extra_addr block is documented below.
    Ip6HopLimit float64
    Hop limit (0 means unspecified).
    Ip6LinkMtu float64
    IPv6 link MTU.
    Ip6ManageFlag string
    Enable/disable the managed flag. Valid values: disable, enable.
    Ip6MaxInterval float64
    IPv6 maximum interval (4 to 1800 sec).
    Ip6MinInterval float64
    IPv6 minimum interval (3 to 1350 sec).
    Ip6Mode string
    Addressing mode (static, DHCP, delegated). Valid values: static, dhcp, pppoe, delegated.
    Ip6OtherFlag string
    Enable/disable the other IPv6 flag. Valid values: disable, enable.
    Ip6PrefixLists []ObjectFspVlanInterfaceIpv6Ip6PrefixListArgs
    Ip6-Prefix-List. The structure of ip6_prefix_list block is documented below.
    Ip6PrefixMode string
    Ip6-Prefix-Mode. Valid values: dhcp6, ra.
    Ip6ReachableTime float64
    IPv6 reachable time (milliseconds; 0 means unspecified).
    Ip6RetransTime float64
    IPv6 retransmit time (milliseconds; 0 means unspecified).
    Ip6SendAdv string
    Enable/disable sending advertisements about the interface. Valid values: disable, enable.
    Ip6Subnet string
    Subnet to routing prefix, syntax: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx
    Ip6UpstreamInterface string
    Interface name providing delegated information.
    NdCert string
    Neighbor discovery certificate.
    NdCgaModifier string
    Neighbor discovery CGA modifier.
    NdMode string
    Neighbor discovery mode. Valid values: basic, SEND-compatible.
    NdSecurityLevel float64
    Neighbor discovery security level (0 - 7; 0 = least secure, default = 0).
    NdTimestampDelta float64
    Neighbor discovery timestamp delta value (1 - 3600 sec; default = 300).
    NdTimestampFuzz float64
    Neighbor discovery timestamp fuzz factor (1 - 60 sec; default = 1).
    ObjectFspVlanInterfaceIpv6Id string
    an identifier for the resource.
    RaSendMtu string
    Ra-Send-Mtu. Valid values: disable, enable.
    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.
    UniqueAutoconfAddr string
    Unique-Autoconf-Addr. Valid values: disable, enable.
    Vrip6LinkLocal string
    Link-local IPv6 address of virtual router.
    Vrrp6s []ObjectFspVlanInterfaceIpv6Vrrp6TypeArgs
    Vrrp6. The structure of vrrp6 block is documented below.
    VrrpVirtualMac6 string
    Enable/disable virtual MAC for VRRP. Valid values: disable, enable.
    vlan String
    Vlan.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    autoconf String
    Enable/disable address auto config. Valid values: disable, enable.
    cliConn6Status Double
    Cli-Conn6-Status.
    dhcp6ClientOptions List<String>
    Dhcp6-Client-Options. Valid values: rapid, iapd, iana, dns, dnsname.
    dhcp6InformationRequest String
    Enable/disable DHCPv6 information request. Valid values: disable, enable.
    dhcp6PrefixDelegation String
    Enable/disable DHCPv6 prefix delegation. Valid values: disable, enable.
    dhcp6PrefixHint String
    DHCPv6 prefix that will be used as a hint to the upstream DHCPv6 server.
    dhcp6PrefixHintPlt Double
    DHCPv6 prefix hint preferred life time (sec), 0 means unlimited lease time.
    dhcp6PrefixHintVlt Double
    DHCPv6 prefix hint valid life time (sec).
    dhcp6RelayInterfaceId String
    DHCP6 relay interface ID.
    dhcp6RelayIp String
    DHCPv6 relay IP address.
    dhcp6RelayService String
    Enable/disable DHCPv6 relay. Valid values: disable, enable.
    dhcp6RelaySourceInterface String
    Enable/disable use of address on this interface as the source address of the relay message. Valid values: disable, enable.
    dhcp6RelaySourceIp String
    IPv6 address used by the DHCP6 relay as its source IP.
    dhcp6RelayType String
    DHCPv6 relay type. Valid values: regular.
    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.

    The ip6_delegated_prefix_list block supports:

    icmp6SendRedirect String
    Icmp6-Send-Redirect. Valid values: disable, enable.
    interfaceIdentifier String
    Interface-Identifier.
    ip6Address String
    Primary IPv6 address prefix, syntax: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx
    ip6Allowaccesses List<String>
    Allow management access to the interface. Valid values: https, ping, ssh, snmp, http, telnet, fgfm, capwap, fabric.
    ip6DefaultLife Double
    Default life (sec).
    ip6DelegatedPrefixIaid Double
    IAID of obtained delegated-prefix from the upstream interface.
    ip6DelegatedPrefixLists List<ObjectFspVlanInterfaceIpv6Ip6DelegatedPrefixList>
    Ip6-Delegated-Prefix-List. The structure of ip6_delegated_prefix_list block is documented below.
    ip6DnsServerOverride String
    Enable/disable using the DNS server acquired by DHCP. Valid values: disable, enable.
    ip6ExtraAddrs List<ObjectFspVlanInterfaceIpv6Ip6ExtraAddr>
    Ip6-Extra-Addr. The structure of ip6_extra_addr block is documented below.
    ip6HopLimit Double
    Hop limit (0 means unspecified).
    ip6LinkMtu Double
    IPv6 link MTU.
    ip6ManageFlag String
    Enable/disable the managed flag. Valid values: disable, enable.
    ip6MaxInterval Double
    IPv6 maximum interval (4 to 1800 sec).
    ip6MinInterval Double
    IPv6 minimum interval (3 to 1350 sec).
    ip6Mode String
    Addressing mode (static, DHCP, delegated). Valid values: static, dhcp, pppoe, delegated.
    ip6OtherFlag String
    Enable/disable the other IPv6 flag. Valid values: disable, enable.
    ip6PrefixLists List<ObjectFspVlanInterfaceIpv6Ip6PrefixList>
    Ip6-Prefix-List. The structure of ip6_prefix_list block is documented below.
    ip6PrefixMode String
    Ip6-Prefix-Mode. Valid values: dhcp6, ra.
    ip6ReachableTime Double
    IPv6 reachable time (milliseconds; 0 means unspecified).
    ip6RetransTime Double
    IPv6 retransmit time (milliseconds; 0 means unspecified).
    ip6SendAdv String
    Enable/disable sending advertisements about the interface. Valid values: disable, enable.
    ip6Subnet String
    Subnet to routing prefix, syntax: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx
    ip6UpstreamInterface String
    Interface name providing delegated information.
    ndCert String
    Neighbor discovery certificate.
    ndCgaModifier String
    Neighbor discovery CGA modifier.
    ndMode String
    Neighbor discovery mode. Valid values: basic, SEND-compatible.
    ndSecurityLevel Double
    Neighbor discovery security level (0 - 7; 0 = least secure, default = 0).
    ndTimestampDelta Double
    Neighbor discovery timestamp delta value (1 - 3600 sec; default = 300).
    ndTimestampFuzz Double
    Neighbor discovery timestamp fuzz factor (1 - 60 sec; default = 1).
    objectFspVlanInterfaceIpv6Id String
    an identifier for the resource.
    raSendMtu String
    Ra-Send-Mtu. Valid values: disable, enable.
    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.
    uniqueAutoconfAddr String
    Unique-Autoconf-Addr. Valid values: disable, enable.
    vrip6LinkLocal String
    Link-local IPv6 address of virtual router.
    vrrp6s List<ObjectFspVlanInterfaceIpv6Vrrp6>
    Vrrp6. The structure of vrrp6 block is documented below.
    vrrpVirtualMac6 String
    Enable/disable virtual MAC for VRRP. Valid values: disable, enable.
    vlan string
    Vlan.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    autoconf string
    Enable/disable address auto config. Valid values: disable, enable.
    cliConn6Status number
    Cli-Conn6-Status.
    dhcp6ClientOptions string[]
    Dhcp6-Client-Options. Valid values: rapid, iapd, iana, dns, dnsname.
    dhcp6InformationRequest string
    Enable/disable DHCPv6 information request. Valid values: disable, enable.
    dhcp6PrefixDelegation string
    Enable/disable DHCPv6 prefix delegation. Valid values: disable, enable.
    dhcp6PrefixHint string
    DHCPv6 prefix that will be used as a hint to the upstream DHCPv6 server.
    dhcp6PrefixHintPlt number
    DHCPv6 prefix hint preferred life time (sec), 0 means unlimited lease time.
    dhcp6PrefixHintVlt number
    DHCPv6 prefix hint valid life time (sec).
    dhcp6RelayInterfaceId string
    DHCP6 relay interface ID.
    dhcp6RelayIp string
    DHCPv6 relay IP address.
    dhcp6RelayService string
    Enable/disable DHCPv6 relay. Valid values: disable, enable.
    dhcp6RelaySourceInterface string
    Enable/disable use of address on this interface as the source address of the relay message. Valid values: disable, enable.
    dhcp6RelaySourceIp string
    IPv6 address used by the DHCP6 relay as its source IP.
    dhcp6RelayType string
    DHCPv6 relay type. Valid values: regular.
    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.

    The ip6_delegated_prefix_list block supports:

    icmp6SendRedirect string
    Icmp6-Send-Redirect. Valid values: disable, enable.
    interfaceIdentifier string
    Interface-Identifier.
    ip6Address string
    Primary IPv6 address prefix, syntax: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx
    ip6Allowaccesses string[]
    Allow management access to the interface. Valid values: https, ping, ssh, snmp, http, telnet, fgfm, capwap, fabric.
    ip6DefaultLife number
    Default life (sec).
    ip6DelegatedPrefixIaid number
    IAID of obtained delegated-prefix from the upstream interface.
    ip6DelegatedPrefixLists ObjectFspVlanInterfaceIpv6Ip6DelegatedPrefixList[]
    Ip6-Delegated-Prefix-List. The structure of ip6_delegated_prefix_list block is documented below.
    ip6DnsServerOverride string
    Enable/disable using the DNS server acquired by DHCP. Valid values: disable, enable.
    ip6ExtraAddrs ObjectFspVlanInterfaceIpv6Ip6ExtraAddr[]
    Ip6-Extra-Addr. The structure of ip6_extra_addr block is documented below.
    ip6HopLimit number
    Hop limit (0 means unspecified).
    ip6LinkMtu number
    IPv6 link MTU.
    ip6ManageFlag string
    Enable/disable the managed flag. Valid values: disable, enable.
    ip6MaxInterval number
    IPv6 maximum interval (4 to 1800 sec).
    ip6MinInterval number
    IPv6 minimum interval (3 to 1350 sec).
    ip6Mode string
    Addressing mode (static, DHCP, delegated). Valid values: static, dhcp, pppoe, delegated.
    ip6OtherFlag string
    Enable/disable the other IPv6 flag. Valid values: disable, enable.
    ip6PrefixLists ObjectFspVlanInterfaceIpv6Ip6PrefixList[]
    Ip6-Prefix-List. The structure of ip6_prefix_list block is documented below.
    ip6PrefixMode string
    Ip6-Prefix-Mode. Valid values: dhcp6, ra.
    ip6ReachableTime number
    IPv6 reachable time (milliseconds; 0 means unspecified).
    ip6RetransTime number
    IPv6 retransmit time (milliseconds; 0 means unspecified).
    ip6SendAdv string
    Enable/disable sending advertisements about the interface. Valid values: disable, enable.
    ip6Subnet string
    Subnet to routing prefix, syntax: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx
    ip6UpstreamInterface string
    Interface name providing delegated information.
    ndCert string
    Neighbor discovery certificate.
    ndCgaModifier string
    Neighbor discovery CGA modifier.
    ndMode string
    Neighbor discovery mode. Valid values: basic, SEND-compatible.
    ndSecurityLevel number
    Neighbor discovery security level (0 - 7; 0 = least secure, default = 0).
    ndTimestampDelta number
    Neighbor discovery timestamp delta value (1 - 3600 sec; default = 300).
    ndTimestampFuzz number
    Neighbor discovery timestamp fuzz factor (1 - 60 sec; default = 1).
    objectFspVlanInterfaceIpv6Id string
    an identifier for the resource.
    raSendMtu string
    Ra-Send-Mtu. Valid values: disable, enable.
    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.
    uniqueAutoconfAddr string
    Unique-Autoconf-Addr. Valid values: disable, enable.
    vrip6LinkLocal string
    Link-local IPv6 address of virtual router.
    vrrp6s ObjectFspVlanInterfaceIpv6Vrrp6[]
    Vrrp6. The structure of vrrp6 block is documented below.
    vrrpVirtualMac6 string
    Enable/disable virtual MAC for VRRP. Valid values: disable, enable.
    vlan str
    Vlan.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    autoconf str
    Enable/disable address auto config. Valid values: disable, enable.
    cli_conn6_status float
    Cli-Conn6-Status.
    dhcp6_client_options Sequence[str]
    Dhcp6-Client-Options. Valid values: rapid, iapd, iana, dns, dnsname.
    dhcp6_information_request str
    Enable/disable DHCPv6 information request. Valid values: disable, enable.
    dhcp6_prefix_delegation str
    Enable/disable DHCPv6 prefix delegation. Valid values: disable, enable.
    dhcp6_prefix_hint str
    DHCPv6 prefix that will be used as a hint to the upstream DHCPv6 server.
    dhcp6_prefix_hint_plt float
    DHCPv6 prefix hint preferred life time (sec), 0 means unlimited lease time.
    dhcp6_prefix_hint_vlt float
    DHCPv6 prefix hint valid life time (sec).
    dhcp6_relay_interface_id str
    DHCP6 relay interface ID.
    dhcp6_relay_ip str
    DHCPv6 relay IP address.
    dhcp6_relay_service str
    Enable/disable DHCPv6 relay. Valid values: disable, enable.
    dhcp6_relay_source_interface str
    Enable/disable use of address on this interface as the source address of the relay message. Valid values: disable, enable.
    dhcp6_relay_source_ip str
    IPv6 address used by the DHCP6 relay as its source IP.
    dhcp6_relay_type str
    DHCPv6 relay type. Valid values: regular.
    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.

    The ip6_delegated_prefix_list block supports:

    icmp6_send_redirect str
    Icmp6-Send-Redirect. Valid values: disable, enable.
    interface_identifier str
    Interface-Identifier.
    ip6_address str
    Primary IPv6 address prefix, syntax: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx
    ip6_allowaccesses Sequence[str]
    Allow management access to the interface. Valid values: https, ping, ssh, snmp, http, telnet, fgfm, capwap, fabric.
    ip6_default_life float
    Default life (sec).
    ip6_delegated_prefix_iaid float
    IAID of obtained delegated-prefix from the upstream interface.
    ip6_delegated_prefix_lists Sequence[ObjectFspVlanInterfaceIpv6Ip6DelegatedPrefixListArgs]
    Ip6-Delegated-Prefix-List. The structure of ip6_delegated_prefix_list block is documented below.
    ip6_dns_server_override str
    Enable/disable using the DNS server acquired by DHCP. Valid values: disable, enable.
    ip6_extra_addrs Sequence[ObjectFspVlanInterfaceIpv6Ip6ExtraAddrArgs]
    Ip6-Extra-Addr. The structure of ip6_extra_addr block is documented below.
    ip6_hop_limit float
    Hop limit (0 means unspecified).
    ip6_link_mtu float
    IPv6 link MTU.
    ip6_manage_flag str
    Enable/disable the managed flag. Valid values: disable, enable.
    ip6_max_interval float
    IPv6 maximum interval (4 to 1800 sec).
    ip6_min_interval float
    IPv6 minimum interval (3 to 1350 sec).
    ip6_mode str
    Addressing mode (static, DHCP, delegated). Valid values: static, dhcp, pppoe, delegated.
    ip6_other_flag str
    Enable/disable the other IPv6 flag. Valid values: disable, enable.
    ip6_prefix_lists Sequence[ObjectFspVlanInterfaceIpv6Ip6PrefixListArgs]
    Ip6-Prefix-List. The structure of ip6_prefix_list block is documented below.
    ip6_prefix_mode str
    Ip6-Prefix-Mode. Valid values: dhcp6, ra.
    ip6_reachable_time float
    IPv6 reachable time (milliseconds; 0 means unspecified).
    ip6_retrans_time float
    IPv6 retransmit time (milliseconds; 0 means unspecified).
    ip6_send_adv str
    Enable/disable sending advertisements about the interface. Valid values: disable, enable.
    ip6_subnet str
    Subnet to routing prefix, syntax: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx
    ip6_upstream_interface str
    Interface name providing delegated information.
    nd_cert str
    Neighbor discovery certificate.
    nd_cga_modifier str
    Neighbor discovery CGA modifier.
    nd_mode str
    Neighbor discovery mode. Valid values: basic, SEND-compatible.
    nd_security_level float
    Neighbor discovery security level (0 - 7; 0 = least secure, default = 0).
    nd_timestamp_delta float
    Neighbor discovery timestamp delta value (1 - 3600 sec; default = 300).
    nd_timestamp_fuzz float
    Neighbor discovery timestamp fuzz factor (1 - 60 sec; default = 1).
    object_fsp_vlan_interface_ipv6_id str
    an identifier for the resource.
    ra_send_mtu str
    Ra-Send-Mtu. Valid values: disable, enable.
    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.
    unique_autoconf_addr str
    Unique-Autoconf-Addr. Valid values: disable, enable.
    vrip6_link_local str
    Link-local IPv6 address of virtual router.
    vrrp6s Sequence[ObjectFspVlanInterfaceIpv6Vrrp6Args]
    Vrrp6. The structure of vrrp6 block is documented below.
    vrrp_virtual_mac6 str
    Enable/disable virtual MAC for VRRP. Valid values: disable, enable.
    vlan String
    Vlan.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    autoconf String
    Enable/disable address auto config. Valid values: disable, enable.
    cliConn6Status Number
    Cli-Conn6-Status.
    dhcp6ClientOptions List<String>
    Dhcp6-Client-Options. Valid values: rapid, iapd, iana, dns, dnsname.
    dhcp6InformationRequest String
    Enable/disable DHCPv6 information request. Valid values: disable, enable.
    dhcp6PrefixDelegation String
    Enable/disable DHCPv6 prefix delegation. Valid values: disable, enable.
    dhcp6PrefixHint String
    DHCPv6 prefix that will be used as a hint to the upstream DHCPv6 server.
    dhcp6PrefixHintPlt Number
    DHCPv6 prefix hint preferred life time (sec), 0 means unlimited lease time.
    dhcp6PrefixHintVlt Number
    DHCPv6 prefix hint valid life time (sec).
    dhcp6RelayInterfaceId String
    DHCP6 relay interface ID.
    dhcp6RelayIp String
    DHCPv6 relay IP address.
    dhcp6RelayService String
    Enable/disable DHCPv6 relay. Valid values: disable, enable.
    dhcp6RelaySourceInterface String
    Enable/disable use of address on this interface as the source address of the relay message. Valid values: disable, enable.
    dhcp6RelaySourceIp String
    IPv6 address used by the DHCP6 relay as its source IP.
    dhcp6RelayType String
    DHCPv6 relay type. Valid values: regular.
    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.

    The ip6_delegated_prefix_list block supports:

    icmp6SendRedirect String
    Icmp6-Send-Redirect. Valid values: disable, enable.
    interfaceIdentifier String
    Interface-Identifier.
    ip6Address String
    Primary IPv6 address prefix, syntax: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx
    ip6Allowaccesses List<String>
    Allow management access to the interface. Valid values: https, ping, ssh, snmp, http, telnet, fgfm, capwap, fabric.
    ip6DefaultLife Number
    Default life (sec).
    ip6DelegatedPrefixIaid Number
    IAID of obtained delegated-prefix from the upstream interface.
    ip6DelegatedPrefixLists List<Property Map>
    Ip6-Delegated-Prefix-List. The structure of ip6_delegated_prefix_list block is documented below.
    ip6DnsServerOverride String
    Enable/disable using the DNS server acquired by DHCP. Valid values: disable, enable.
    ip6ExtraAddrs List<Property Map>
    Ip6-Extra-Addr. The structure of ip6_extra_addr block is documented below.
    ip6HopLimit Number
    Hop limit (0 means unspecified).
    ip6LinkMtu Number
    IPv6 link MTU.
    ip6ManageFlag String
    Enable/disable the managed flag. Valid values: disable, enable.
    ip6MaxInterval Number
    IPv6 maximum interval (4 to 1800 sec).
    ip6MinInterval Number
    IPv6 minimum interval (3 to 1350 sec).
    ip6Mode String
    Addressing mode (static, DHCP, delegated). Valid values: static, dhcp, pppoe, delegated.
    ip6OtherFlag String
    Enable/disable the other IPv6 flag. Valid values: disable, enable.
    ip6PrefixLists List<Property Map>
    Ip6-Prefix-List. The structure of ip6_prefix_list block is documented below.
    ip6PrefixMode String
    Ip6-Prefix-Mode. Valid values: dhcp6, ra.
    ip6ReachableTime Number
    IPv6 reachable time (milliseconds; 0 means unspecified).
    ip6RetransTime Number
    IPv6 retransmit time (milliseconds; 0 means unspecified).
    ip6SendAdv String
    Enable/disable sending advertisements about the interface. Valid values: disable, enable.
    ip6Subnet String
    Subnet to routing prefix, syntax: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx
    ip6UpstreamInterface String
    Interface name providing delegated information.
    ndCert String
    Neighbor discovery certificate.
    ndCgaModifier String
    Neighbor discovery CGA modifier.
    ndMode String
    Neighbor discovery mode. Valid values: basic, SEND-compatible.
    ndSecurityLevel Number
    Neighbor discovery security level (0 - 7; 0 = least secure, default = 0).
    ndTimestampDelta Number
    Neighbor discovery timestamp delta value (1 - 3600 sec; default = 300).
    ndTimestampFuzz Number
    Neighbor discovery timestamp fuzz factor (1 - 60 sec; default = 1).
    objectFspVlanInterfaceIpv6Id String
    an identifier for the resource.
    raSendMtu String
    Ra-Send-Mtu. Valid values: disable, enable.
    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.
    uniqueAutoconfAddr String
    Unique-Autoconf-Addr. Valid values: disable, enable.
    vrip6LinkLocal String
    Link-local IPv6 address of virtual router.
    vrrp6s List<Property Map>
    Vrrp6. The structure of vrrp6 block is documented below.
    vrrpVirtualMac6 String
    Enable/disable virtual MAC for VRRP. Valid values: disable, enable.

    Outputs

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

    Get an existing ObjectFspVlanInterfaceIpv6 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?: ObjectFspVlanInterfaceIpv6State, opts?: CustomResourceOptions): ObjectFspVlanInterfaceIpv6
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            autoconf: Optional[str] = None,
            cli_conn6_status: Optional[float] = None,
            dhcp6_client_options: Optional[Sequence[str]] = None,
            dhcp6_information_request: Optional[str] = None,
            dhcp6_prefix_delegation: Optional[str] = None,
            dhcp6_prefix_hint: Optional[str] = None,
            dhcp6_prefix_hint_plt: Optional[float] = None,
            dhcp6_prefix_hint_vlt: Optional[float] = None,
            dhcp6_relay_interface_id: Optional[str] = None,
            dhcp6_relay_ip: Optional[str] = None,
            dhcp6_relay_service: Optional[str] = None,
            dhcp6_relay_source_interface: Optional[str] = None,
            dhcp6_relay_source_ip: Optional[str] = None,
            dhcp6_relay_type: Optional[str] = None,
            dynamic_sort_subtable: Optional[str] = None,
            icmp6_send_redirect: Optional[str] = None,
            interface_identifier: Optional[str] = None,
            ip6_address: Optional[str] = None,
            ip6_allowaccesses: Optional[Sequence[str]] = None,
            ip6_default_life: Optional[float] = None,
            ip6_delegated_prefix_iaid: Optional[float] = None,
            ip6_delegated_prefix_lists: Optional[Sequence[ObjectFspVlanInterfaceIpv6Ip6DelegatedPrefixListArgs]] = None,
            ip6_dns_server_override: Optional[str] = None,
            ip6_extra_addrs: Optional[Sequence[ObjectFspVlanInterfaceIpv6Ip6ExtraAddrArgs]] = None,
            ip6_hop_limit: Optional[float] = None,
            ip6_link_mtu: Optional[float] = None,
            ip6_manage_flag: Optional[str] = None,
            ip6_max_interval: Optional[float] = None,
            ip6_min_interval: Optional[float] = None,
            ip6_mode: Optional[str] = None,
            ip6_other_flag: Optional[str] = None,
            ip6_prefix_lists: Optional[Sequence[ObjectFspVlanInterfaceIpv6Ip6PrefixListArgs]] = None,
            ip6_prefix_mode: Optional[str] = None,
            ip6_reachable_time: Optional[float] = None,
            ip6_retrans_time: Optional[float] = None,
            ip6_send_adv: Optional[str] = None,
            ip6_subnet: Optional[str] = None,
            ip6_upstream_interface: Optional[str] = None,
            nd_cert: Optional[str] = None,
            nd_cga_modifier: Optional[str] = None,
            nd_mode: Optional[str] = None,
            nd_security_level: Optional[float] = None,
            nd_timestamp_delta: Optional[float] = None,
            nd_timestamp_fuzz: Optional[float] = None,
            object_fsp_vlan_interface_ipv6_id: Optional[str] = None,
            ra_send_mtu: Optional[str] = None,
            scopetype: Optional[str] = None,
            unique_autoconf_addr: Optional[str] = None,
            vlan: Optional[str] = None,
            vrip6_link_local: Optional[str] = None,
            vrrp6s: Optional[Sequence[ObjectFspVlanInterfaceIpv6Vrrp6Args]] = None,
            vrrp_virtual_mac6: Optional[str] = None) -> ObjectFspVlanInterfaceIpv6
    func GetObjectFspVlanInterfaceIpv6(ctx *Context, name string, id IDInput, state *ObjectFspVlanInterfaceIpv6State, opts ...ResourceOption) (*ObjectFspVlanInterfaceIpv6, error)
    public static ObjectFspVlanInterfaceIpv6 Get(string name, Input<string> id, ObjectFspVlanInterfaceIpv6State? state, CustomResourceOptions? opts = null)
    public static ObjectFspVlanInterfaceIpv6 get(String name, Output<String> id, ObjectFspVlanInterfaceIpv6State state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectFspVlanInterfaceIpv6    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.
    Autoconf string
    Enable/disable address auto config. Valid values: disable, enable.
    CliConn6Status double
    Cli-Conn6-Status.
    Dhcp6ClientOptions List<string>
    Dhcp6-Client-Options. Valid values: rapid, iapd, iana, dns, dnsname.
    Dhcp6InformationRequest string
    Enable/disable DHCPv6 information request. Valid values: disable, enable.
    Dhcp6PrefixDelegation string
    Enable/disable DHCPv6 prefix delegation. Valid values: disable, enable.
    Dhcp6PrefixHint string
    DHCPv6 prefix that will be used as a hint to the upstream DHCPv6 server.
    Dhcp6PrefixHintPlt double
    DHCPv6 prefix hint preferred life time (sec), 0 means unlimited lease time.
    Dhcp6PrefixHintVlt double
    DHCPv6 prefix hint valid life time (sec).
    Dhcp6RelayInterfaceId string
    DHCP6 relay interface ID.
    Dhcp6RelayIp string
    DHCPv6 relay IP address.
    Dhcp6RelayService string
    Enable/disable DHCPv6 relay. Valid values: disable, enable.
    Dhcp6RelaySourceInterface string
    Enable/disable use of address on this interface as the source address of the relay message. Valid values: disable, enable.
    Dhcp6RelaySourceIp string
    IPv6 address used by the DHCP6 relay as its source IP.
    Dhcp6RelayType string
    DHCPv6 relay type. Valid values: regular.
    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.

    The ip6_delegated_prefix_list block supports:

    Icmp6SendRedirect string
    Icmp6-Send-Redirect. Valid values: disable, enable.
    InterfaceIdentifier string
    Interface-Identifier.
    Ip6Address string
    Primary IPv6 address prefix, syntax: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx
    Ip6Allowaccesses List<string>
    Allow management access to the interface. Valid values: https, ping, ssh, snmp, http, telnet, fgfm, capwap, fabric.
    Ip6DefaultLife double
    Default life (sec).
    Ip6DelegatedPrefixIaid double
    IAID of obtained delegated-prefix from the upstream interface.
    Ip6DelegatedPrefixLists List<ObjectFspVlanInterfaceIpv6Ip6DelegatedPrefixList>
    Ip6-Delegated-Prefix-List. The structure of ip6_delegated_prefix_list block is documented below.
    Ip6DnsServerOverride string
    Enable/disable using the DNS server acquired by DHCP. Valid values: disable, enable.
    Ip6ExtraAddrs List<ObjectFspVlanInterfaceIpv6Ip6ExtraAddr>
    Ip6-Extra-Addr. The structure of ip6_extra_addr block is documented below.
    Ip6HopLimit double
    Hop limit (0 means unspecified).
    Ip6LinkMtu double
    IPv6 link MTU.
    Ip6ManageFlag string
    Enable/disable the managed flag. Valid values: disable, enable.
    Ip6MaxInterval double
    IPv6 maximum interval (4 to 1800 sec).
    Ip6MinInterval double
    IPv6 minimum interval (3 to 1350 sec).
    Ip6Mode string
    Addressing mode (static, DHCP, delegated). Valid values: static, dhcp, pppoe, delegated.
    Ip6OtherFlag string
    Enable/disable the other IPv6 flag. Valid values: disable, enable.
    Ip6PrefixLists List<ObjectFspVlanInterfaceIpv6Ip6PrefixList>
    Ip6-Prefix-List. The structure of ip6_prefix_list block is documented below.
    Ip6PrefixMode string
    Ip6-Prefix-Mode. Valid values: dhcp6, ra.
    Ip6ReachableTime double
    IPv6 reachable time (milliseconds; 0 means unspecified).
    Ip6RetransTime double
    IPv6 retransmit time (milliseconds; 0 means unspecified).
    Ip6SendAdv string
    Enable/disable sending advertisements about the interface. Valid values: disable, enable.
    Ip6Subnet string
    Subnet to routing prefix, syntax: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx
    Ip6UpstreamInterface string
    Interface name providing delegated information.
    NdCert string
    Neighbor discovery certificate.
    NdCgaModifier string
    Neighbor discovery CGA modifier.
    NdMode string
    Neighbor discovery mode. Valid values: basic, SEND-compatible.
    NdSecurityLevel double
    Neighbor discovery security level (0 - 7; 0 = least secure, default = 0).
    NdTimestampDelta double
    Neighbor discovery timestamp delta value (1 - 3600 sec; default = 300).
    NdTimestampFuzz double
    Neighbor discovery timestamp fuzz factor (1 - 60 sec; default = 1).
    ObjectFspVlanInterfaceIpv6Id string
    an identifier for the resource.
    RaSendMtu string
    Ra-Send-Mtu. Valid values: disable, enable.
    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.
    UniqueAutoconfAddr string
    Unique-Autoconf-Addr. Valid values: disable, enable.
    Vlan string
    Vlan.
    Vrip6LinkLocal string
    Link-local IPv6 address of virtual router.
    Vrrp6s List<ObjectFspVlanInterfaceIpv6Vrrp6>
    Vrrp6. The structure of vrrp6 block is documented below.
    VrrpVirtualMac6 string
    Enable/disable virtual MAC for VRRP. Valid values: disable, enable.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Autoconf string
    Enable/disable address auto config. Valid values: disable, enable.
    CliConn6Status float64
    Cli-Conn6-Status.
    Dhcp6ClientOptions []string
    Dhcp6-Client-Options. Valid values: rapid, iapd, iana, dns, dnsname.
    Dhcp6InformationRequest string
    Enable/disable DHCPv6 information request. Valid values: disable, enable.
    Dhcp6PrefixDelegation string
    Enable/disable DHCPv6 prefix delegation. Valid values: disable, enable.
    Dhcp6PrefixHint string
    DHCPv6 prefix that will be used as a hint to the upstream DHCPv6 server.
    Dhcp6PrefixHintPlt float64
    DHCPv6 prefix hint preferred life time (sec), 0 means unlimited lease time.
    Dhcp6PrefixHintVlt float64
    DHCPv6 prefix hint valid life time (sec).
    Dhcp6RelayInterfaceId string
    DHCP6 relay interface ID.
    Dhcp6RelayIp string
    DHCPv6 relay IP address.
    Dhcp6RelayService string
    Enable/disable DHCPv6 relay. Valid values: disable, enable.
    Dhcp6RelaySourceInterface string
    Enable/disable use of address on this interface as the source address of the relay message. Valid values: disable, enable.
    Dhcp6RelaySourceIp string
    IPv6 address used by the DHCP6 relay as its source IP.
    Dhcp6RelayType string
    DHCPv6 relay type. Valid values: regular.
    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.

    The ip6_delegated_prefix_list block supports:

    Icmp6SendRedirect string
    Icmp6-Send-Redirect. Valid values: disable, enable.
    InterfaceIdentifier string
    Interface-Identifier.
    Ip6Address string
    Primary IPv6 address prefix, syntax: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx
    Ip6Allowaccesses []string
    Allow management access to the interface. Valid values: https, ping, ssh, snmp, http, telnet, fgfm, capwap, fabric.
    Ip6DefaultLife float64
    Default life (sec).
    Ip6DelegatedPrefixIaid float64
    IAID of obtained delegated-prefix from the upstream interface.
    Ip6DelegatedPrefixLists []ObjectFspVlanInterfaceIpv6Ip6DelegatedPrefixListTypeArgs
    Ip6-Delegated-Prefix-List. The structure of ip6_delegated_prefix_list block is documented below.
    Ip6DnsServerOverride string
    Enable/disable using the DNS server acquired by DHCP. Valid values: disable, enable.
    Ip6ExtraAddrs []ObjectFspVlanInterfaceIpv6Ip6ExtraAddrTypeArgs
    Ip6-Extra-Addr. The structure of ip6_extra_addr block is documented below.
    Ip6HopLimit float64
    Hop limit (0 means unspecified).
    Ip6LinkMtu float64
    IPv6 link MTU.
    Ip6ManageFlag string
    Enable/disable the managed flag. Valid values: disable, enable.
    Ip6MaxInterval float64
    IPv6 maximum interval (4 to 1800 sec).
    Ip6MinInterval float64
    IPv6 minimum interval (3 to 1350 sec).
    Ip6Mode string
    Addressing mode (static, DHCP, delegated). Valid values: static, dhcp, pppoe, delegated.
    Ip6OtherFlag string
    Enable/disable the other IPv6 flag. Valid values: disable, enable.
    Ip6PrefixLists []ObjectFspVlanInterfaceIpv6Ip6PrefixListArgs
    Ip6-Prefix-List. The structure of ip6_prefix_list block is documented below.
    Ip6PrefixMode string
    Ip6-Prefix-Mode. Valid values: dhcp6, ra.
    Ip6ReachableTime float64
    IPv6 reachable time (milliseconds; 0 means unspecified).
    Ip6RetransTime float64
    IPv6 retransmit time (milliseconds; 0 means unspecified).
    Ip6SendAdv string
    Enable/disable sending advertisements about the interface. Valid values: disable, enable.
    Ip6Subnet string
    Subnet to routing prefix, syntax: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx
    Ip6UpstreamInterface string
    Interface name providing delegated information.
    NdCert string
    Neighbor discovery certificate.
    NdCgaModifier string
    Neighbor discovery CGA modifier.
    NdMode string
    Neighbor discovery mode. Valid values: basic, SEND-compatible.
    NdSecurityLevel float64
    Neighbor discovery security level (0 - 7; 0 = least secure, default = 0).
    NdTimestampDelta float64
    Neighbor discovery timestamp delta value (1 - 3600 sec; default = 300).
    NdTimestampFuzz float64
    Neighbor discovery timestamp fuzz factor (1 - 60 sec; default = 1).
    ObjectFspVlanInterfaceIpv6Id string
    an identifier for the resource.
    RaSendMtu string
    Ra-Send-Mtu. Valid values: disable, enable.
    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.
    UniqueAutoconfAddr string
    Unique-Autoconf-Addr. Valid values: disable, enable.
    Vlan string
    Vlan.
    Vrip6LinkLocal string
    Link-local IPv6 address of virtual router.
    Vrrp6s []ObjectFspVlanInterfaceIpv6Vrrp6TypeArgs
    Vrrp6. The structure of vrrp6 block is documented below.
    VrrpVirtualMac6 string
    Enable/disable virtual MAC for VRRP. Valid values: disable, enable.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    autoconf String
    Enable/disable address auto config. Valid values: disable, enable.
    cliConn6Status Double
    Cli-Conn6-Status.
    dhcp6ClientOptions List<String>
    Dhcp6-Client-Options. Valid values: rapid, iapd, iana, dns, dnsname.
    dhcp6InformationRequest String
    Enable/disable DHCPv6 information request. Valid values: disable, enable.
    dhcp6PrefixDelegation String
    Enable/disable DHCPv6 prefix delegation. Valid values: disable, enable.
    dhcp6PrefixHint String
    DHCPv6 prefix that will be used as a hint to the upstream DHCPv6 server.
    dhcp6PrefixHintPlt Double
    DHCPv6 prefix hint preferred life time (sec), 0 means unlimited lease time.
    dhcp6PrefixHintVlt Double
    DHCPv6 prefix hint valid life time (sec).
    dhcp6RelayInterfaceId String
    DHCP6 relay interface ID.
    dhcp6RelayIp String
    DHCPv6 relay IP address.
    dhcp6RelayService String
    Enable/disable DHCPv6 relay. Valid values: disable, enable.
    dhcp6RelaySourceInterface String
    Enable/disable use of address on this interface as the source address of the relay message. Valid values: disable, enable.
    dhcp6RelaySourceIp String
    IPv6 address used by the DHCP6 relay as its source IP.
    dhcp6RelayType String
    DHCPv6 relay type. Valid values: regular.
    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.

    The ip6_delegated_prefix_list block supports:

    icmp6SendRedirect String
    Icmp6-Send-Redirect. Valid values: disable, enable.
    interfaceIdentifier String
    Interface-Identifier.
    ip6Address String
    Primary IPv6 address prefix, syntax: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx
    ip6Allowaccesses List<String>
    Allow management access to the interface. Valid values: https, ping, ssh, snmp, http, telnet, fgfm, capwap, fabric.
    ip6DefaultLife Double
    Default life (sec).
    ip6DelegatedPrefixIaid Double
    IAID of obtained delegated-prefix from the upstream interface.
    ip6DelegatedPrefixLists List<ObjectFspVlanInterfaceIpv6Ip6DelegatedPrefixList>
    Ip6-Delegated-Prefix-List. The structure of ip6_delegated_prefix_list block is documented below.
    ip6DnsServerOverride String
    Enable/disable using the DNS server acquired by DHCP. Valid values: disable, enable.
    ip6ExtraAddrs List<ObjectFspVlanInterfaceIpv6Ip6ExtraAddr>
    Ip6-Extra-Addr. The structure of ip6_extra_addr block is documented below.
    ip6HopLimit Double
    Hop limit (0 means unspecified).
    ip6LinkMtu Double
    IPv6 link MTU.
    ip6ManageFlag String
    Enable/disable the managed flag. Valid values: disable, enable.
    ip6MaxInterval Double
    IPv6 maximum interval (4 to 1800 sec).
    ip6MinInterval Double
    IPv6 minimum interval (3 to 1350 sec).
    ip6Mode String
    Addressing mode (static, DHCP, delegated). Valid values: static, dhcp, pppoe, delegated.
    ip6OtherFlag String
    Enable/disable the other IPv6 flag. Valid values: disable, enable.
    ip6PrefixLists List<ObjectFspVlanInterfaceIpv6Ip6PrefixList>
    Ip6-Prefix-List. The structure of ip6_prefix_list block is documented below.
    ip6PrefixMode String
    Ip6-Prefix-Mode. Valid values: dhcp6, ra.
    ip6ReachableTime Double
    IPv6 reachable time (milliseconds; 0 means unspecified).
    ip6RetransTime Double
    IPv6 retransmit time (milliseconds; 0 means unspecified).
    ip6SendAdv String
    Enable/disable sending advertisements about the interface. Valid values: disable, enable.
    ip6Subnet String
    Subnet to routing prefix, syntax: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx
    ip6UpstreamInterface String
    Interface name providing delegated information.
    ndCert String
    Neighbor discovery certificate.
    ndCgaModifier String
    Neighbor discovery CGA modifier.
    ndMode String
    Neighbor discovery mode. Valid values: basic, SEND-compatible.
    ndSecurityLevel Double
    Neighbor discovery security level (0 - 7; 0 = least secure, default = 0).
    ndTimestampDelta Double
    Neighbor discovery timestamp delta value (1 - 3600 sec; default = 300).
    ndTimestampFuzz Double
    Neighbor discovery timestamp fuzz factor (1 - 60 sec; default = 1).
    objectFspVlanInterfaceIpv6Id String
    an identifier for the resource.
    raSendMtu String
    Ra-Send-Mtu. Valid values: disable, enable.
    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.
    uniqueAutoconfAddr String
    Unique-Autoconf-Addr. Valid values: disable, enable.
    vlan String
    Vlan.
    vrip6LinkLocal String
    Link-local IPv6 address of virtual router.
    vrrp6s List<ObjectFspVlanInterfaceIpv6Vrrp6>
    Vrrp6. The structure of vrrp6 block is documented below.
    vrrpVirtualMac6 String
    Enable/disable virtual MAC for VRRP. Valid values: disable, enable.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    autoconf string
    Enable/disable address auto config. Valid values: disable, enable.
    cliConn6Status number
    Cli-Conn6-Status.
    dhcp6ClientOptions string[]
    Dhcp6-Client-Options. Valid values: rapid, iapd, iana, dns, dnsname.
    dhcp6InformationRequest string
    Enable/disable DHCPv6 information request. Valid values: disable, enable.
    dhcp6PrefixDelegation string
    Enable/disable DHCPv6 prefix delegation. Valid values: disable, enable.
    dhcp6PrefixHint string
    DHCPv6 prefix that will be used as a hint to the upstream DHCPv6 server.
    dhcp6PrefixHintPlt number
    DHCPv6 prefix hint preferred life time (sec), 0 means unlimited lease time.
    dhcp6PrefixHintVlt number
    DHCPv6 prefix hint valid life time (sec).
    dhcp6RelayInterfaceId string
    DHCP6 relay interface ID.
    dhcp6RelayIp string
    DHCPv6 relay IP address.
    dhcp6RelayService string
    Enable/disable DHCPv6 relay. Valid values: disable, enable.
    dhcp6RelaySourceInterface string
    Enable/disable use of address on this interface as the source address of the relay message. Valid values: disable, enable.
    dhcp6RelaySourceIp string
    IPv6 address used by the DHCP6 relay as its source IP.
    dhcp6RelayType string
    DHCPv6 relay type. Valid values: regular.
    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.

    The ip6_delegated_prefix_list block supports:

    icmp6SendRedirect string
    Icmp6-Send-Redirect. Valid values: disable, enable.
    interfaceIdentifier string
    Interface-Identifier.
    ip6Address string
    Primary IPv6 address prefix, syntax: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx
    ip6Allowaccesses string[]
    Allow management access to the interface. Valid values: https, ping, ssh, snmp, http, telnet, fgfm, capwap, fabric.
    ip6DefaultLife number
    Default life (sec).
    ip6DelegatedPrefixIaid number
    IAID of obtained delegated-prefix from the upstream interface.
    ip6DelegatedPrefixLists ObjectFspVlanInterfaceIpv6Ip6DelegatedPrefixList[]
    Ip6-Delegated-Prefix-List. The structure of ip6_delegated_prefix_list block is documented below.
    ip6DnsServerOverride string
    Enable/disable using the DNS server acquired by DHCP. Valid values: disable, enable.
    ip6ExtraAddrs ObjectFspVlanInterfaceIpv6Ip6ExtraAddr[]
    Ip6-Extra-Addr. The structure of ip6_extra_addr block is documented below.
    ip6HopLimit number
    Hop limit (0 means unspecified).
    ip6LinkMtu number
    IPv6 link MTU.
    ip6ManageFlag string
    Enable/disable the managed flag. Valid values: disable, enable.
    ip6MaxInterval number
    IPv6 maximum interval (4 to 1800 sec).
    ip6MinInterval number
    IPv6 minimum interval (3 to 1350 sec).
    ip6Mode string
    Addressing mode (static, DHCP, delegated). Valid values: static, dhcp, pppoe, delegated.
    ip6OtherFlag string
    Enable/disable the other IPv6 flag. Valid values: disable, enable.
    ip6PrefixLists ObjectFspVlanInterfaceIpv6Ip6PrefixList[]
    Ip6-Prefix-List. The structure of ip6_prefix_list block is documented below.
    ip6PrefixMode string
    Ip6-Prefix-Mode. Valid values: dhcp6, ra.
    ip6ReachableTime number
    IPv6 reachable time (milliseconds; 0 means unspecified).
    ip6RetransTime number
    IPv6 retransmit time (milliseconds; 0 means unspecified).
    ip6SendAdv string
    Enable/disable sending advertisements about the interface. Valid values: disable, enable.
    ip6Subnet string
    Subnet to routing prefix, syntax: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx
    ip6UpstreamInterface string
    Interface name providing delegated information.
    ndCert string
    Neighbor discovery certificate.
    ndCgaModifier string
    Neighbor discovery CGA modifier.
    ndMode string
    Neighbor discovery mode. Valid values: basic, SEND-compatible.
    ndSecurityLevel number
    Neighbor discovery security level (0 - 7; 0 = least secure, default = 0).
    ndTimestampDelta number
    Neighbor discovery timestamp delta value (1 - 3600 sec; default = 300).
    ndTimestampFuzz number
    Neighbor discovery timestamp fuzz factor (1 - 60 sec; default = 1).
    objectFspVlanInterfaceIpv6Id string
    an identifier for the resource.
    raSendMtu string
    Ra-Send-Mtu. Valid values: disable, enable.
    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.
    uniqueAutoconfAddr string
    Unique-Autoconf-Addr. Valid values: disable, enable.
    vlan string
    Vlan.
    vrip6LinkLocal string
    Link-local IPv6 address of virtual router.
    vrrp6s ObjectFspVlanInterfaceIpv6Vrrp6[]
    Vrrp6. The structure of vrrp6 block is documented below.
    vrrpVirtualMac6 string
    Enable/disable virtual MAC for VRRP. Valid values: disable, enable.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    autoconf str
    Enable/disable address auto config. Valid values: disable, enable.
    cli_conn6_status float
    Cli-Conn6-Status.
    dhcp6_client_options Sequence[str]
    Dhcp6-Client-Options. Valid values: rapid, iapd, iana, dns, dnsname.
    dhcp6_information_request str
    Enable/disable DHCPv6 information request. Valid values: disable, enable.
    dhcp6_prefix_delegation str
    Enable/disable DHCPv6 prefix delegation. Valid values: disable, enable.
    dhcp6_prefix_hint str
    DHCPv6 prefix that will be used as a hint to the upstream DHCPv6 server.
    dhcp6_prefix_hint_plt float
    DHCPv6 prefix hint preferred life time (sec), 0 means unlimited lease time.
    dhcp6_prefix_hint_vlt float
    DHCPv6 prefix hint valid life time (sec).
    dhcp6_relay_interface_id str
    DHCP6 relay interface ID.
    dhcp6_relay_ip str
    DHCPv6 relay IP address.
    dhcp6_relay_service str
    Enable/disable DHCPv6 relay. Valid values: disable, enable.
    dhcp6_relay_source_interface str
    Enable/disable use of address on this interface as the source address of the relay message. Valid values: disable, enable.
    dhcp6_relay_source_ip str
    IPv6 address used by the DHCP6 relay as its source IP.
    dhcp6_relay_type str
    DHCPv6 relay type. Valid values: regular.
    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.

    The ip6_delegated_prefix_list block supports:

    icmp6_send_redirect str
    Icmp6-Send-Redirect. Valid values: disable, enable.
    interface_identifier str
    Interface-Identifier.
    ip6_address str
    Primary IPv6 address prefix, syntax: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx
    ip6_allowaccesses Sequence[str]
    Allow management access to the interface. Valid values: https, ping, ssh, snmp, http, telnet, fgfm, capwap, fabric.
    ip6_default_life float
    Default life (sec).
    ip6_delegated_prefix_iaid float
    IAID of obtained delegated-prefix from the upstream interface.
    ip6_delegated_prefix_lists Sequence[ObjectFspVlanInterfaceIpv6Ip6DelegatedPrefixListArgs]
    Ip6-Delegated-Prefix-List. The structure of ip6_delegated_prefix_list block is documented below.
    ip6_dns_server_override str
    Enable/disable using the DNS server acquired by DHCP. Valid values: disable, enable.
    ip6_extra_addrs Sequence[ObjectFspVlanInterfaceIpv6Ip6ExtraAddrArgs]
    Ip6-Extra-Addr. The structure of ip6_extra_addr block is documented below.
    ip6_hop_limit float
    Hop limit (0 means unspecified).
    ip6_link_mtu float
    IPv6 link MTU.
    ip6_manage_flag str
    Enable/disable the managed flag. Valid values: disable, enable.
    ip6_max_interval float
    IPv6 maximum interval (4 to 1800 sec).
    ip6_min_interval float
    IPv6 minimum interval (3 to 1350 sec).
    ip6_mode str
    Addressing mode (static, DHCP, delegated). Valid values: static, dhcp, pppoe, delegated.
    ip6_other_flag str
    Enable/disable the other IPv6 flag. Valid values: disable, enable.
    ip6_prefix_lists Sequence[ObjectFspVlanInterfaceIpv6Ip6PrefixListArgs]
    Ip6-Prefix-List. The structure of ip6_prefix_list block is documented below.
    ip6_prefix_mode str
    Ip6-Prefix-Mode. Valid values: dhcp6, ra.
    ip6_reachable_time float
    IPv6 reachable time (milliseconds; 0 means unspecified).
    ip6_retrans_time float
    IPv6 retransmit time (milliseconds; 0 means unspecified).
    ip6_send_adv str
    Enable/disable sending advertisements about the interface. Valid values: disable, enable.
    ip6_subnet str
    Subnet to routing prefix, syntax: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx
    ip6_upstream_interface str
    Interface name providing delegated information.
    nd_cert str
    Neighbor discovery certificate.
    nd_cga_modifier str
    Neighbor discovery CGA modifier.
    nd_mode str
    Neighbor discovery mode. Valid values: basic, SEND-compatible.
    nd_security_level float
    Neighbor discovery security level (0 - 7; 0 = least secure, default = 0).
    nd_timestamp_delta float
    Neighbor discovery timestamp delta value (1 - 3600 sec; default = 300).
    nd_timestamp_fuzz float
    Neighbor discovery timestamp fuzz factor (1 - 60 sec; default = 1).
    object_fsp_vlan_interface_ipv6_id str
    an identifier for the resource.
    ra_send_mtu str
    Ra-Send-Mtu. Valid values: disable, enable.
    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.
    unique_autoconf_addr str
    Unique-Autoconf-Addr. Valid values: disable, enable.
    vlan str
    Vlan.
    vrip6_link_local str
    Link-local IPv6 address of virtual router.
    vrrp6s Sequence[ObjectFspVlanInterfaceIpv6Vrrp6Args]
    Vrrp6. The structure of vrrp6 block is documented below.
    vrrp_virtual_mac6 str
    Enable/disable virtual MAC for VRRP. Valid values: disable, enable.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    autoconf String
    Enable/disable address auto config. Valid values: disable, enable.
    cliConn6Status Number
    Cli-Conn6-Status.
    dhcp6ClientOptions List<String>
    Dhcp6-Client-Options. Valid values: rapid, iapd, iana, dns, dnsname.
    dhcp6InformationRequest String
    Enable/disable DHCPv6 information request. Valid values: disable, enable.
    dhcp6PrefixDelegation String
    Enable/disable DHCPv6 prefix delegation. Valid values: disable, enable.
    dhcp6PrefixHint String
    DHCPv6 prefix that will be used as a hint to the upstream DHCPv6 server.
    dhcp6PrefixHintPlt Number
    DHCPv6 prefix hint preferred life time (sec), 0 means unlimited lease time.
    dhcp6PrefixHintVlt Number
    DHCPv6 prefix hint valid life time (sec).
    dhcp6RelayInterfaceId String
    DHCP6 relay interface ID.
    dhcp6RelayIp String
    DHCPv6 relay IP address.
    dhcp6RelayService String
    Enable/disable DHCPv6 relay. Valid values: disable, enable.
    dhcp6RelaySourceInterface String
    Enable/disable use of address on this interface as the source address of the relay message. Valid values: disable, enable.
    dhcp6RelaySourceIp String
    IPv6 address used by the DHCP6 relay as its source IP.
    dhcp6RelayType String
    DHCPv6 relay type. Valid values: regular.
    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.

    The ip6_delegated_prefix_list block supports:

    icmp6SendRedirect String
    Icmp6-Send-Redirect. Valid values: disable, enable.
    interfaceIdentifier String
    Interface-Identifier.
    ip6Address String
    Primary IPv6 address prefix, syntax: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx
    ip6Allowaccesses List<String>
    Allow management access to the interface. Valid values: https, ping, ssh, snmp, http, telnet, fgfm, capwap, fabric.
    ip6DefaultLife Number
    Default life (sec).
    ip6DelegatedPrefixIaid Number
    IAID of obtained delegated-prefix from the upstream interface.
    ip6DelegatedPrefixLists List<Property Map>
    Ip6-Delegated-Prefix-List. The structure of ip6_delegated_prefix_list block is documented below.
    ip6DnsServerOverride String
    Enable/disable using the DNS server acquired by DHCP. Valid values: disable, enable.
    ip6ExtraAddrs List<Property Map>
    Ip6-Extra-Addr. The structure of ip6_extra_addr block is documented below.
    ip6HopLimit Number
    Hop limit (0 means unspecified).
    ip6LinkMtu Number
    IPv6 link MTU.
    ip6ManageFlag String
    Enable/disable the managed flag. Valid values: disable, enable.
    ip6MaxInterval Number
    IPv6 maximum interval (4 to 1800 sec).
    ip6MinInterval Number
    IPv6 minimum interval (3 to 1350 sec).
    ip6Mode String
    Addressing mode (static, DHCP, delegated). Valid values: static, dhcp, pppoe, delegated.
    ip6OtherFlag String
    Enable/disable the other IPv6 flag. Valid values: disable, enable.
    ip6PrefixLists List<Property Map>
    Ip6-Prefix-List. The structure of ip6_prefix_list block is documented below.
    ip6PrefixMode String
    Ip6-Prefix-Mode. Valid values: dhcp6, ra.
    ip6ReachableTime Number
    IPv6 reachable time (milliseconds; 0 means unspecified).
    ip6RetransTime Number
    IPv6 retransmit time (milliseconds; 0 means unspecified).
    ip6SendAdv String
    Enable/disable sending advertisements about the interface. Valid values: disable, enable.
    ip6Subnet String
    Subnet to routing prefix, syntax: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx
    ip6UpstreamInterface String
    Interface name providing delegated information.
    ndCert String
    Neighbor discovery certificate.
    ndCgaModifier String
    Neighbor discovery CGA modifier.
    ndMode String
    Neighbor discovery mode. Valid values: basic, SEND-compatible.
    ndSecurityLevel Number
    Neighbor discovery security level (0 - 7; 0 = least secure, default = 0).
    ndTimestampDelta Number
    Neighbor discovery timestamp delta value (1 - 3600 sec; default = 300).
    ndTimestampFuzz Number
    Neighbor discovery timestamp fuzz factor (1 - 60 sec; default = 1).
    objectFspVlanInterfaceIpv6Id String
    an identifier for the resource.
    raSendMtu String
    Ra-Send-Mtu. Valid values: disable, enable.
    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.
    uniqueAutoconfAddr String
    Unique-Autoconf-Addr. Valid values: disable, enable.
    vlan String
    Vlan.
    vrip6LinkLocal String
    Link-local IPv6 address of virtual router.
    vrrp6s List<Property Map>
    Vrrp6. The structure of vrrp6 block is documented below.
    vrrpVirtualMac6 String
    Enable/disable virtual MAC for VRRP. Valid values: disable, enable.

    Supporting Types

    ObjectFspVlanInterfaceIpv6Ip6DelegatedPrefixList, ObjectFspVlanInterfaceIpv6Ip6DelegatedPrefixListArgs

    AutonomousFlag string
    Enable/disable the autonomous flag. Valid values: disable, enable.
    DelegatedPrefixIaid double
    IAID of obtained delegated-prefix from the upstream interface.
    OnlinkFlag string
    Enable/disable the onlink flag. Valid values: disable, enable.
    PrefixId double
    Prefix ID.
    RdnssService string
    Recursive DNS service option. Valid values: delegated, default, specify.
    Rdnsses List<string>
    Recursive DNS server option.
    Subnet string
    Add subnet ID to routing prefix.
    UpstreamInterface string

    Name of the interface that provides delegated information.

    The ip6_extra_addr block supports:

    AutonomousFlag string
    Enable/disable the autonomous flag. Valid values: disable, enable.
    DelegatedPrefixIaid float64
    IAID of obtained delegated-prefix from the upstream interface.
    OnlinkFlag string
    Enable/disable the onlink flag. Valid values: disable, enable.
    PrefixId float64
    Prefix ID.
    RdnssService string
    Recursive DNS service option. Valid values: delegated, default, specify.
    Rdnsses []string
    Recursive DNS server option.
    Subnet string
    Add subnet ID to routing prefix.
    UpstreamInterface string

    Name of the interface that provides delegated information.

    The ip6_extra_addr block supports:

    autonomousFlag String
    Enable/disable the autonomous flag. Valid values: disable, enable.
    delegatedPrefixIaid Double
    IAID of obtained delegated-prefix from the upstream interface.
    onlinkFlag String
    Enable/disable the onlink flag. Valid values: disable, enable.
    prefixId Double
    Prefix ID.
    rdnssService String
    Recursive DNS service option. Valid values: delegated, default, specify.
    rdnsses List<String>
    Recursive DNS server option.
    subnet String
    Add subnet ID to routing prefix.
    upstreamInterface String

    Name of the interface that provides delegated information.

    The ip6_extra_addr block supports:

    autonomousFlag string
    Enable/disable the autonomous flag. Valid values: disable, enable.
    delegatedPrefixIaid number
    IAID of obtained delegated-prefix from the upstream interface.
    onlinkFlag string
    Enable/disable the onlink flag. Valid values: disable, enable.
    prefixId number
    Prefix ID.
    rdnssService string
    Recursive DNS service option. Valid values: delegated, default, specify.
    rdnsses string[]
    Recursive DNS server option.
    subnet string
    Add subnet ID to routing prefix.
    upstreamInterface string

    Name of the interface that provides delegated information.

    The ip6_extra_addr block supports:

    autonomous_flag str
    Enable/disable the autonomous flag. Valid values: disable, enable.
    delegated_prefix_iaid float
    IAID of obtained delegated-prefix from the upstream interface.
    onlink_flag str
    Enable/disable the onlink flag. Valid values: disable, enable.
    prefix_id float
    Prefix ID.
    rdnss_service str
    Recursive DNS service option. Valid values: delegated, default, specify.
    rdnsses Sequence[str]
    Recursive DNS server option.
    subnet str
    Add subnet ID to routing prefix.
    upstream_interface str

    Name of the interface that provides delegated information.

    The ip6_extra_addr block supports:

    autonomousFlag String
    Enable/disable the autonomous flag. Valid values: disable, enable.
    delegatedPrefixIaid Number
    IAID of obtained delegated-prefix from the upstream interface.
    onlinkFlag String
    Enable/disable the onlink flag. Valid values: disable, enable.
    prefixId Number
    Prefix ID.
    rdnssService String
    Recursive DNS service option. Valid values: delegated, default, specify.
    rdnsses List<String>
    Recursive DNS server option.
    subnet String
    Add subnet ID to routing prefix.
    upstreamInterface String

    Name of the interface that provides delegated information.

    The ip6_extra_addr block supports:

    ObjectFspVlanInterfaceIpv6Ip6ExtraAddr, ObjectFspVlanInterfaceIpv6Ip6ExtraAddrArgs

    Prefix string
    IPv6 prefix.
    Prefix string
    IPv6 prefix.
    prefix String
    IPv6 prefix.
    prefix string
    IPv6 prefix.
    prefix str
    IPv6 prefix.
    prefix String
    IPv6 prefix.

    ObjectFspVlanInterfaceIpv6Ip6PrefixList, ObjectFspVlanInterfaceIpv6Ip6PrefixListArgs

    AutonomousFlag string
    Enable/disable the autonomous flag. Valid values: disable, enable.
    Dnssls List<string>
    DNS search list option.
    OnlinkFlag string
    Enable/disable the onlink flag. Valid values: disable, enable.
    PreferredLifeTime double
    Preferred life time (sec).
    Prefix string
    IPv6 prefix.
    Rdnsses List<string>
    Recursive DNS server option.
    ValidLifeTime double

    Valid life time (sec).

    The vrrp6 block supports:

    AutonomousFlag string
    Enable/disable the autonomous flag. Valid values: disable, enable.
    Dnssls []string
    DNS search list option.
    OnlinkFlag string
    Enable/disable the onlink flag. Valid values: disable, enable.
    PreferredLifeTime float64
    Preferred life time (sec).
    Prefix string
    IPv6 prefix.
    Rdnsses []string
    Recursive DNS server option.
    ValidLifeTime float64

    Valid life time (sec).

    The vrrp6 block supports:

    autonomousFlag String
    Enable/disable the autonomous flag. Valid values: disable, enable.
    dnssls List<String>
    DNS search list option.
    onlinkFlag String
    Enable/disable the onlink flag. Valid values: disable, enable.
    preferredLifeTime Double
    Preferred life time (sec).
    prefix String
    IPv6 prefix.
    rdnsses List<String>
    Recursive DNS server option.
    validLifeTime Double

    Valid life time (sec).

    The vrrp6 block supports:

    autonomousFlag string
    Enable/disable the autonomous flag. Valid values: disable, enable.
    dnssls string[]
    DNS search list option.
    onlinkFlag string
    Enable/disable the onlink flag. Valid values: disable, enable.
    preferredLifeTime number
    Preferred life time (sec).
    prefix string
    IPv6 prefix.
    rdnsses string[]
    Recursive DNS server option.
    validLifeTime number

    Valid life time (sec).

    The vrrp6 block supports:

    autonomous_flag str
    Enable/disable the autonomous flag. Valid values: disable, enable.
    dnssls Sequence[str]
    DNS search list option.
    onlink_flag str
    Enable/disable the onlink flag. Valid values: disable, enable.
    preferred_life_time float
    Preferred life time (sec).
    prefix str
    IPv6 prefix.
    rdnsses Sequence[str]
    Recursive DNS server option.
    valid_life_time float

    Valid life time (sec).

    The vrrp6 block supports:

    autonomousFlag String
    Enable/disable the autonomous flag. Valid values: disable, enable.
    dnssls List<String>
    DNS search list option.
    onlinkFlag String
    Enable/disable the onlink flag. Valid values: disable, enable.
    preferredLifeTime Number
    Preferred life time (sec).
    prefix String
    IPv6 prefix.
    rdnsses List<String>
    Recursive DNS server option.
    validLifeTime Number

    Valid life time (sec).

    The vrrp6 block supports:

    ObjectFspVlanInterfaceIpv6Vrrp6, ObjectFspVlanInterfaceIpv6Vrrp6Args

    AcceptMode string
    Enable/disable accept mode. Valid values: disable, enable.
    AdvInterval double
    Advertisement interval (1 - 255 seconds).
    IgnoreDefaultRoute string
    Enable/disable ignoring of default route when checking destination. Valid values: disable, enable.
    Preempt string
    Enable/disable preempt mode. Valid values: disable, enable.
    Priority double
    Priority of the virtual router (1 - 255).
    StartTime double
    Startup time (1 - 255 seconds).
    Status string
    Enable/disable VRRP. Valid values: disable, enable.
    Vrdst6 string
    Monitor the route to this destination.
    Vrgrp double
    VRRP group ID (1 - 65535).
    Vrid double
    Virtual router identifier (1 - 255).
    Vrip6 string
    IPv6 address of the virtual router.
    AcceptMode string
    Enable/disable accept mode. Valid values: disable, enable.
    AdvInterval float64
    Advertisement interval (1 - 255 seconds).
    IgnoreDefaultRoute string
    Enable/disable ignoring of default route when checking destination. Valid values: disable, enable.
    Preempt string
    Enable/disable preempt mode. Valid values: disable, enable.
    Priority float64
    Priority of the virtual router (1 - 255).
    StartTime float64
    Startup time (1 - 255 seconds).
    Status string
    Enable/disable VRRP. Valid values: disable, enable.
    Vrdst6 string
    Monitor the route to this destination.
    Vrgrp float64
    VRRP group ID (1 - 65535).
    Vrid float64
    Virtual router identifier (1 - 255).
    Vrip6 string
    IPv6 address of the virtual router.
    acceptMode String
    Enable/disable accept mode. Valid values: disable, enable.
    advInterval Double
    Advertisement interval (1 - 255 seconds).
    ignoreDefaultRoute String
    Enable/disable ignoring of default route when checking destination. Valid values: disable, enable.
    preempt String
    Enable/disable preempt mode. Valid values: disable, enable.
    priority Double
    Priority of the virtual router (1 - 255).
    startTime Double
    Startup time (1 - 255 seconds).
    status String
    Enable/disable VRRP. Valid values: disable, enable.
    vrdst6 String
    Monitor the route to this destination.
    vrgrp Double
    VRRP group ID (1 - 65535).
    vrid Double
    Virtual router identifier (1 - 255).
    vrip6 String
    IPv6 address of the virtual router.
    acceptMode string
    Enable/disable accept mode. Valid values: disable, enable.
    advInterval number
    Advertisement interval (1 - 255 seconds).
    ignoreDefaultRoute string
    Enable/disable ignoring of default route when checking destination. Valid values: disable, enable.
    preempt string
    Enable/disable preempt mode. Valid values: disable, enable.
    priority number
    Priority of the virtual router (1 - 255).
    startTime number
    Startup time (1 - 255 seconds).
    status string
    Enable/disable VRRP. Valid values: disable, enable.
    vrdst6 string
    Monitor the route to this destination.
    vrgrp number
    VRRP group ID (1 - 65535).
    vrid number
    Virtual router identifier (1 - 255).
    vrip6 string
    IPv6 address of the virtual router.
    accept_mode str
    Enable/disable accept mode. Valid values: disable, enable.
    adv_interval float
    Advertisement interval (1 - 255 seconds).
    ignore_default_route str
    Enable/disable ignoring of default route when checking destination. Valid values: disable, enable.
    preempt str
    Enable/disable preempt mode. Valid values: disable, enable.
    priority float
    Priority of the virtual router (1 - 255).
    start_time float
    Startup time (1 - 255 seconds).
    status str
    Enable/disable VRRP. Valid values: disable, enable.
    vrdst6 str
    Monitor the route to this destination.
    vrgrp float
    VRRP group ID (1 - 65535).
    vrid float
    Virtual router identifier (1 - 255).
    vrip6 str
    IPv6 address of the virtual router.
    acceptMode String
    Enable/disable accept mode. Valid values: disable, enable.
    advInterval Number
    Advertisement interval (1 - 255 seconds).
    ignoreDefaultRoute String
    Enable/disable ignoring of default route when checking destination. Valid values: disable, enable.
    preempt String
    Enable/disable preempt mode. Valid values: disable, enable.
    priority Number
    Priority of the virtual router (1 - 255).
    startTime Number
    Startup time (1 - 255 seconds).
    status String
    Enable/disable VRRP. Valid values: disable, enable.
    vrdst6 String
    Monitor the route to this destination.
    vrgrp Number
    VRRP group ID (1 - 65535).
    vrid Number
    Virtual router identifier (1 - 255).
    vrip6 String
    IPv6 address of the virtual router.

    Import

    ObjectFsp VlanInterfaceIpv6 can be imported using any of these accepted formats:

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectFspVlanInterfaceIpv6:ObjectFspVlanInterfaceIpv6 labelname ObjectFspVlanInterfaceIpv6
    

    $ 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