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

fortimanager.ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rules

Explore with Pulumi AI

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

    AP ACL layer3 ipv6 rule list.

    This resource is a sub resource for variable layer3_ipv6_rules of resource fortimanager.ObjectWirelesscontrollerAccesscontrollist. Conflict and overwrite may occur if use both of them.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname2 = new fortimanager.ObjectWirelesscontrollerAccesscontrollist("trname2", {});
    const trname = new fortimanager.ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rules("trname", {
        comment: "This is a Terraform example",
        dstport: 0,
        ruleId: 12,
        srcport: 34,
        accessControlList: trname2.name,
    }, {
        dependsOn: [trname2],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname2 = fortimanager.ObjectWirelesscontrollerAccesscontrollist("trname2")
    trname = fortimanager.ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rules("trname",
        comment="This is a Terraform example",
        dstport=0,
        rule_id=12,
        srcport=34,
        access_control_list=trname2.name,
        opts = pulumi.ResourceOptions(depends_on=[trname2]))
    
    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 {
    		trname2, err := fortimanager.NewObjectWirelesscontrollerAccesscontrollist(ctx, "trname2", nil)
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectWirelesscontrollerAccesscontrollistLayer3ipv6rules(ctx, "trname", &fortimanager.ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rulesArgs{
    			Comment:           pulumi.String("This is a Terraform example"),
    			Dstport:           pulumi.Float64(0),
    			RuleId:            pulumi.Float64(12),
    			Srcport:           pulumi.Float64(34),
    			AccessControlList: trname2.Name,
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trname2,
    		}))
    		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 trname2 = new Fortimanager.ObjectWirelesscontrollerAccesscontrollist("trname2");
    
        var trname = new Fortimanager.ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rules("trname", new()
        {
            Comment = "This is a Terraform example",
            Dstport = 0,
            RuleId = 12,
            Srcport = 34,
            AccessControlList = trname2.Name,
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trname2,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectWirelesscontrollerAccesscontrollist;
    import com.pulumi.fortimanager.ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rules;
    import com.pulumi.fortimanager.ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rulesArgs;
    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 trname2 = new ObjectWirelesscontrollerAccesscontrollist("trname2");
    
            var trname = new ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rules("trname", ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rulesArgs.builder()
                .comment("This is a Terraform example")
                .dstport(0)
                .ruleId(12)
                .srcport(34)
                .accessControlList(trname2.name())
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trname2)
                    .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rules
        properties:
          comment: This is a Terraform example
          dstport: 0
          ruleId: 12
          srcport: 34
          accessControlList: ${trname2.name}
        options:
          dependsOn:
            - ${trname2}
      trname2:
        type: fortimanager:ObjectWirelesscontrollerAccesscontrollist
    

    Create ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rules Resource

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

    Constructor syntax

    new ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rules(name: string, args: ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rulesArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rules(resource_name: str,
                                                                 args: ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rulesArgs,
                                                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rules(resource_name: str,
                                                                 opts: Optional[ResourceOptions] = None,
                                                                 access_control_list: Optional[str] = None,
                                                                 action: Optional[str] = None,
                                                                 adom: Optional[str] = None,
                                                                 comment: Optional[str] = None,
                                                                 dstaddr: Optional[str] = None,
                                                                 dstport: Optional[float] = None,
                                                                 object_wirelesscontroller_accesscontrollist_layer3ipv6rules_id: Optional[str] = None,
                                                                 protocol: Optional[float] = None,
                                                                 rule_id: Optional[float] = None,
                                                                 scopetype: Optional[str] = None,
                                                                 srcaddr: Optional[str] = None,
                                                                 srcport: Optional[float] = None)
    func NewObjectWirelesscontrollerAccesscontrollistLayer3ipv6rules(ctx *Context, name string, args ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rulesArgs, opts ...ResourceOption) (*ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rules, error)
    public ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rules(string name, ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rulesArgs args, CustomResourceOptions? opts = null)
    public ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rules(String name, ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rulesArgs args)
    public ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rules(String name, ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rulesArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rules
    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 ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rulesArgs
    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 ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rulesArgs
    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 ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rulesArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rulesArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rulesArgs
    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 objectWirelesscontrollerAccesscontrollistLayer3ipv6rulesResource = new Fortimanager.ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rules("objectWirelesscontrollerAccesscontrollistLayer3ipv6rulesResource", new()
    {
        AccessControlList = "string",
        Action = "string",
        Adom = "string",
        Comment = "string",
        Dstaddr = "string",
        Dstport = 0,
        ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rulesId = "string",
        Protocol = 0,
        RuleId = 0,
        Scopetype = "string",
        Srcaddr = "string",
        Srcport = 0,
    });
    
    example, err := fortimanager.NewObjectWirelesscontrollerAccesscontrollistLayer3ipv6rules(ctx, "objectWirelesscontrollerAccesscontrollistLayer3ipv6rulesResource", &fortimanager.ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rulesArgs{
    AccessControlList: pulumi.String("string"),
    Action: pulumi.String("string"),
    Adom: pulumi.String("string"),
    Comment: pulumi.String("string"),
    Dstaddr: pulumi.String("string"),
    Dstport: pulumi.Float64(0),
    ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rulesId: pulumi.String("string"),
    Protocol: pulumi.Float64(0),
    RuleId: pulumi.Float64(0),
    Scopetype: pulumi.String("string"),
    Srcaddr: pulumi.String("string"),
    Srcport: pulumi.Float64(0),
    })
    
    var objectWirelesscontrollerAccesscontrollistLayer3ipv6rulesResource = new ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rules("objectWirelesscontrollerAccesscontrollistLayer3ipv6rulesResource", ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rulesArgs.builder()
        .accessControlList("string")
        .action("string")
        .adom("string")
        .comment("string")
        .dstaddr("string")
        .dstport(0)
        .objectWirelesscontrollerAccesscontrollistLayer3ipv6rulesId("string")
        .protocol(0)
        .ruleId(0)
        .scopetype("string")
        .srcaddr("string")
        .srcport(0)
        .build());
    
    object_wirelesscontroller_accesscontrollist_layer3ipv6rules_resource = fortimanager.ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rules("objectWirelesscontrollerAccesscontrollistLayer3ipv6rulesResource",
        access_control_list="string",
        action="string",
        adom="string",
        comment="string",
        dstaddr="string",
        dstport=0,
        object_wirelesscontroller_accesscontrollist_layer3ipv6rules_id="string",
        protocol=0,
        rule_id=0,
        scopetype="string",
        srcaddr="string",
        srcport=0)
    
    const objectWirelesscontrollerAccesscontrollistLayer3ipv6rulesResource = new fortimanager.ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rules("objectWirelesscontrollerAccesscontrollistLayer3ipv6rulesResource", {
        accessControlList: "string",
        action: "string",
        adom: "string",
        comment: "string",
        dstaddr: "string",
        dstport: 0,
        objectWirelesscontrollerAccesscontrollistLayer3ipv6rulesId: "string",
        protocol: 0,
        ruleId: 0,
        scopetype: "string",
        srcaddr: "string",
        srcport: 0,
    });
    
    type: fortimanager:ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rules
    properties:
        accessControlList: string
        action: string
        adom: string
        comment: string
        dstaddr: string
        dstport: 0
        objectWirelesscontrollerAccesscontrollistLayer3ipv6rulesId: string
        protocol: 0
        ruleId: 0
        scopetype: string
        srcaddr: string
        srcport: 0
    

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

    AccessControlList string
    Access Control List.
    Action string
    Policy action (allow | deny). Valid values: allow, deny.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Comment string
    Description.
    Dstaddr string
    Destination IPv6 address (any | local-LAN | IPv6 address[/prefix length]), default = any.
    Dstport double
    Destination port (0 - 65535, default = 0, meaning any).
    ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rulesId string
    an identifier for the resource with format {{rule_id}}.
    Protocol double
    Protocol type as defined by IANA (0 - 255, default = 255, meaning any).
    RuleId double
    Rule ID (1 - 65535).
    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.
    Srcaddr string
    Source IPv6 address (any | local-LAN | IPv6 address[/prefix length]), default = any.
    Srcport double
    Source port (0 - 65535, default = 0, meaning any).
    AccessControlList string
    Access Control List.
    Action string
    Policy action (allow | deny). Valid values: allow, deny.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Comment string
    Description.
    Dstaddr string
    Destination IPv6 address (any | local-LAN | IPv6 address[/prefix length]), default = any.
    Dstport float64
    Destination port (0 - 65535, default = 0, meaning any).
    ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rulesId string
    an identifier for the resource with format {{rule_id}}.
    Protocol float64
    Protocol type as defined by IANA (0 - 255, default = 255, meaning any).
    RuleId float64
    Rule ID (1 - 65535).
    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.
    Srcaddr string
    Source IPv6 address (any | local-LAN | IPv6 address[/prefix length]), default = any.
    Srcport float64
    Source port (0 - 65535, default = 0, meaning any).
    accessControlList String
    Access Control List.
    action String
    Policy action (allow | deny). Valid values: allow, deny.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment String
    Description.
    dstaddr String
    Destination IPv6 address (any | local-LAN | IPv6 address[/prefix length]), default = any.
    dstport Double
    Destination port (0 - 65535, default = 0, meaning any).
    objectWirelesscontrollerAccesscontrollistLayer3ipv6rulesId String
    an identifier for the resource with format {{rule_id}}.
    protocol Double
    Protocol type as defined by IANA (0 - 255, default = 255, meaning any).
    ruleId Double
    Rule ID (1 - 65535).
    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.
    srcaddr String
    Source IPv6 address (any | local-LAN | IPv6 address[/prefix length]), default = any.
    srcport Double
    Source port (0 - 65535, default = 0, meaning any).
    accessControlList string
    Access Control List.
    action string
    Policy action (allow | deny). Valid values: allow, deny.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment string
    Description.
    dstaddr string
    Destination IPv6 address (any | local-LAN | IPv6 address[/prefix length]), default = any.
    dstport number
    Destination port (0 - 65535, default = 0, meaning any).
    objectWirelesscontrollerAccesscontrollistLayer3ipv6rulesId string
    an identifier for the resource with format {{rule_id}}.
    protocol number
    Protocol type as defined by IANA (0 - 255, default = 255, meaning any).
    ruleId number
    Rule ID (1 - 65535).
    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.
    srcaddr string
    Source IPv6 address (any | local-LAN | IPv6 address[/prefix length]), default = any.
    srcport number
    Source port (0 - 65535, default = 0, meaning any).
    access_control_list str
    Access Control List.
    action str
    Policy action (allow | deny). Valid values: allow, deny.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment str
    Description.
    dstaddr str
    Destination IPv6 address (any | local-LAN | IPv6 address[/prefix length]), default = any.
    dstport float
    Destination port (0 - 65535, default = 0, meaning any).
    object_wirelesscontroller_accesscontrollist_layer3ipv6rules_id str
    an identifier for the resource with format {{rule_id}}.
    protocol float
    Protocol type as defined by IANA (0 - 255, default = 255, meaning any).
    rule_id float
    Rule ID (1 - 65535).
    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.
    srcaddr str
    Source IPv6 address (any | local-LAN | IPv6 address[/prefix length]), default = any.
    srcport float
    Source port (0 - 65535, default = 0, meaning any).
    accessControlList String
    Access Control List.
    action String
    Policy action (allow | deny). Valid values: allow, deny.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment String
    Description.
    dstaddr String
    Destination IPv6 address (any | local-LAN | IPv6 address[/prefix length]), default = any.
    dstport Number
    Destination port (0 - 65535, default = 0, meaning any).
    objectWirelesscontrollerAccesscontrollistLayer3ipv6rulesId String
    an identifier for the resource with format {{rule_id}}.
    protocol Number
    Protocol type as defined by IANA (0 - 255, default = 255, meaning any).
    ruleId Number
    Rule ID (1 - 65535).
    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.
    srcaddr String
    Source IPv6 address (any | local-LAN | IPv6 address[/prefix length]), default = any.
    srcport Number
    Source port (0 - 65535, default = 0, meaning any).

    Outputs

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

    Get an existing ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rules 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?: ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rulesState, opts?: CustomResourceOptions): ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rules
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            access_control_list: Optional[str] = None,
            action: Optional[str] = None,
            adom: Optional[str] = None,
            comment: Optional[str] = None,
            dstaddr: Optional[str] = None,
            dstport: Optional[float] = None,
            object_wirelesscontroller_accesscontrollist_layer3ipv6rules_id: Optional[str] = None,
            protocol: Optional[float] = None,
            rule_id: Optional[float] = None,
            scopetype: Optional[str] = None,
            srcaddr: Optional[str] = None,
            srcport: Optional[float] = None) -> ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rules
    func GetObjectWirelesscontrollerAccesscontrollistLayer3ipv6rules(ctx *Context, name string, id IDInput, state *ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rulesState, opts ...ResourceOption) (*ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rules, error)
    public static ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rules Get(string name, Input<string> id, ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rulesState? state, CustomResourceOptions? opts = null)
    public static ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rules get(String name, Output<String> id, ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rulesState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rules    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:
    AccessControlList string
    Access Control List.
    Action string
    Policy action (allow | deny). Valid values: allow, deny.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Comment string
    Description.
    Dstaddr string
    Destination IPv6 address (any | local-LAN | IPv6 address[/prefix length]), default = any.
    Dstport double
    Destination port (0 - 65535, default = 0, meaning any).
    ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rulesId string
    an identifier for the resource with format {{rule_id}}.
    Protocol double
    Protocol type as defined by IANA (0 - 255, default = 255, meaning any).
    RuleId double
    Rule ID (1 - 65535).
    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.
    Srcaddr string
    Source IPv6 address (any | local-LAN | IPv6 address[/prefix length]), default = any.
    Srcport double
    Source port (0 - 65535, default = 0, meaning any).
    AccessControlList string
    Access Control List.
    Action string
    Policy action (allow | deny). Valid values: allow, deny.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Comment string
    Description.
    Dstaddr string
    Destination IPv6 address (any | local-LAN | IPv6 address[/prefix length]), default = any.
    Dstport float64
    Destination port (0 - 65535, default = 0, meaning any).
    ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rulesId string
    an identifier for the resource with format {{rule_id}}.
    Protocol float64
    Protocol type as defined by IANA (0 - 255, default = 255, meaning any).
    RuleId float64
    Rule ID (1 - 65535).
    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.
    Srcaddr string
    Source IPv6 address (any | local-LAN | IPv6 address[/prefix length]), default = any.
    Srcport float64
    Source port (0 - 65535, default = 0, meaning any).
    accessControlList String
    Access Control List.
    action String
    Policy action (allow | deny). Valid values: allow, deny.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment String
    Description.
    dstaddr String
    Destination IPv6 address (any | local-LAN | IPv6 address[/prefix length]), default = any.
    dstport Double
    Destination port (0 - 65535, default = 0, meaning any).
    objectWirelesscontrollerAccesscontrollistLayer3ipv6rulesId String
    an identifier for the resource with format {{rule_id}}.
    protocol Double
    Protocol type as defined by IANA (0 - 255, default = 255, meaning any).
    ruleId Double
    Rule ID (1 - 65535).
    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.
    srcaddr String
    Source IPv6 address (any | local-LAN | IPv6 address[/prefix length]), default = any.
    srcport Double
    Source port (0 - 65535, default = 0, meaning any).
    accessControlList string
    Access Control List.
    action string
    Policy action (allow | deny). Valid values: allow, deny.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment string
    Description.
    dstaddr string
    Destination IPv6 address (any | local-LAN | IPv6 address[/prefix length]), default = any.
    dstport number
    Destination port (0 - 65535, default = 0, meaning any).
    objectWirelesscontrollerAccesscontrollistLayer3ipv6rulesId string
    an identifier for the resource with format {{rule_id}}.
    protocol number
    Protocol type as defined by IANA (0 - 255, default = 255, meaning any).
    ruleId number
    Rule ID (1 - 65535).
    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.
    srcaddr string
    Source IPv6 address (any | local-LAN | IPv6 address[/prefix length]), default = any.
    srcport number
    Source port (0 - 65535, default = 0, meaning any).
    access_control_list str
    Access Control List.
    action str
    Policy action (allow | deny). Valid values: allow, deny.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment str
    Description.
    dstaddr str
    Destination IPv6 address (any | local-LAN | IPv6 address[/prefix length]), default = any.
    dstport float
    Destination port (0 - 65535, default = 0, meaning any).
    object_wirelesscontroller_accesscontrollist_layer3ipv6rules_id str
    an identifier for the resource with format {{rule_id}}.
    protocol float
    Protocol type as defined by IANA (0 - 255, default = 255, meaning any).
    rule_id float
    Rule ID (1 - 65535).
    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.
    srcaddr str
    Source IPv6 address (any | local-LAN | IPv6 address[/prefix length]), default = any.
    srcport float
    Source port (0 - 65535, default = 0, meaning any).
    accessControlList String
    Access Control List.
    action String
    Policy action (allow | deny). Valid values: allow, deny.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment String
    Description.
    dstaddr String
    Destination IPv6 address (any | local-LAN | IPv6 address[/prefix length]), default = any.
    dstport Number
    Destination port (0 - 65535, default = 0, meaning any).
    objectWirelesscontrollerAccesscontrollistLayer3ipv6rulesId String
    an identifier for the resource with format {{rule_id}}.
    protocol Number
    Protocol type as defined by IANA (0 - 255, default = 255, meaning any).
    ruleId Number
    Rule ID (1 - 65535).
    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.
    srcaddr String
    Source IPv6 address (any | local-LAN | IPv6 address[/prefix length]), default = any.
    srcport Number
    Source port (0 - 65535, default = 0, meaning any).

    Import

    ObjectWirelessController AccessControlListLayer3Ipv6Rules can be imported using any of these accepted formats:

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectWirelesscontrollerAccesscontrollistLayer3ipv6rules:ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rules labelname {{rule_id}}
    

    $ 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