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

fortimanager.ObjectWirelesscontrollerAccesscontrollistLayer3ipv4rules

Explore with Pulumi AI

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

    AP ACL layer3 ipv4 rule list.

    This resource is a sub resource for variable layer3_ipv4_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 trnameObjectWirelesscontrollerAccesscontrollist = new fortimanager.ObjectWirelesscontrollerAccesscontrollist("trnameObjectWirelesscontrollerAccesscontrollist", {});
    const trnameObjectWirelesscontrollerAccesscontrollistLayer3ipv4rules = new fortimanager.ObjectWirelesscontrollerAccesscontrollistLayer3ipv4rules("trnameObjectWirelesscontrollerAccesscontrollistLayer3ipv4rules", {
        accessControlList: trnameObjectWirelesscontrollerAccesscontrollist.name,
        protocol: 24,
        ruleId: 12,
        srcport: 23,
    }, {
        dependsOn: [trnameObjectWirelesscontrollerAccesscontrollist],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_object_wirelesscontroller_accesscontrollist = fortimanager.ObjectWirelesscontrollerAccesscontrollist("trnameObjectWirelesscontrollerAccesscontrollist")
    trname_object_wirelesscontroller_accesscontrollist_layer3ipv4rules = fortimanager.ObjectWirelesscontrollerAccesscontrollistLayer3ipv4rules("trnameObjectWirelesscontrollerAccesscontrollistLayer3ipv4rules",
        access_control_list=trname_object_wirelesscontroller_accesscontrollist.name,
        protocol=24,
        rule_id=12,
        srcport=23,
        opts = pulumi.ResourceOptions(depends_on=[trname_object_wirelesscontroller_accesscontrollist]))
    
    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 {
    		trnameObjectWirelesscontrollerAccesscontrollist, err := fortimanager.NewObjectWirelesscontrollerAccesscontrollist(ctx, "trnameObjectWirelesscontrollerAccesscontrollist", nil)
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectWirelesscontrollerAccesscontrollistLayer3ipv4rules(ctx, "trnameObjectWirelesscontrollerAccesscontrollistLayer3ipv4rules", &fortimanager.ObjectWirelesscontrollerAccesscontrollistLayer3ipv4rulesArgs{
    			AccessControlList: trnameObjectWirelesscontrollerAccesscontrollist.Name,
    			Protocol:          pulumi.Float64(24),
    			RuleId:            pulumi.Float64(12),
    			Srcport:           pulumi.Float64(23),
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trnameObjectWirelesscontrollerAccesscontrollist,
    		}))
    		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 trnameObjectWirelesscontrollerAccesscontrollist = new Fortimanager.ObjectWirelesscontrollerAccesscontrollist("trnameObjectWirelesscontrollerAccesscontrollist");
    
        var trnameObjectWirelesscontrollerAccesscontrollistLayer3ipv4rules = new Fortimanager.ObjectWirelesscontrollerAccesscontrollistLayer3ipv4rules("trnameObjectWirelesscontrollerAccesscontrollistLayer3ipv4rules", new()
        {
            AccessControlList = trnameObjectWirelesscontrollerAccesscontrollist.Name,
            Protocol = 24,
            RuleId = 12,
            Srcport = 23,
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trnameObjectWirelesscontrollerAccesscontrollist,
            },
        });
    
    });
    
    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.ObjectWirelesscontrollerAccesscontrollistLayer3ipv4rules;
    import com.pulumi.fortimanager.ObjectWirelesscontrollerAccesscontrollistLayer3ipv4rulesArgs;
    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 trnameObjectWirelesscontrollerAccesscontrollist = new ObjectWirelesscontrollerAccesscontrollist("trnameObjectWirelesscontrollerAccesscontrollist");
    
            var trnameObjectWirelesscontrollerAccesscontrollistLayer3ipv4rules = new ObjectWirelesscontrollerAccesscontrollistLayer3ipv4rules("trnameObjectWirelesscontrollerAccesscontrollistLayer3ipv4rules", ObjectWirelesscontrollerAccesscontrollistLayer3ipv4rulesArgs.builder()
                .accessControlList(trnameObjectWirelesscontrollerAccesscontrollist.name())
                .protocol(24)
                .ruleId(12)
                .srcport(23)
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameObjectWirelesscontrollerAccesscontrollist)
                    .build());
    
        }
    }
    
    resources:
      trnameObjectWirelesscontrollerAccesscontrollistLayer3ipv4rules:
        type: fortimanager:ObjectWirelesscontrollerAccesscontrollistLayer3ipv4rules
        properties:
          accessControlList: ${trnameObjectWirelesscontrollerAccesscontrollist.name}
          protocol: 24
          ruleId: 12
          srcport: 23
        options:
          dependsOn:
            - ${trnameObjectWirelesscontrollerAccesscontrollist}
      trnameObjectWirelesscontrollerAccesscontrollist:
        type: fortimanager:ObjectWirelesscontrollerAccesscontrollist
    

    Create ObjectWirelesscontrollerAccesscontrollistLayer3ipv4rules Resource

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

    Constructor syntax

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

    ObjectWirelesscontrollerAccesscontrollistLayer3ipv4rules 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 ObjectWirelesscontrollerAccesscontrollistLayer3ipv4rules 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 IP address (any | local-LAN | IPv4 address[/<network mask | mask length>], default = any).
    Dstport double
    Destination port (0 - 65535, default = 0, meaning any).
    ObjectWirelesscontrollerAccesscontrollistLayer3ipv4rulesId 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 IP address (any | local-LAN | IPv4 address[/<network mask | mask 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 IP address (any | local-LAN | IPv4 address[/<network mask | mask length>], default = any).
    Dstport float64
    Destination port (0 - 65535, default = 0, meaning any).
    ObjectWirelesscontrollerAccesscontrollistLayer3ipv4rulesId 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 IP address (any | local-LAN | IPv4 address[/<network mask | mask 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 IP address (any | local-LAN | IPv4 address[/<network mask | mask length>], default = any).
    dstport Double
    Destination port (0 - 65535, default = 0, meaning any).
    objectWirelesscontrollerAccesscontrollistLayer3ipv4rulesId 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 IP address (any | local-LAN | IPv4 address[/<network mask | mask 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 IP address (any | local-LAN | IPv4 address[/<network mask | mask length>], default = any).
    dstport number
    Destination port (0 - 65535, default = 0, meaning any).
    objectWirelesscontrollerAccesscontrollistLayer3ipv4rulesId 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 IP address (any | local-LAN | IPv4 address[/<network mask | mask 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 IP address (any | local-LAN | IPv4 address[/<network mask | mask length>], default = any).
    dstport float
    Destination port (0 - 65535, default = 0, meaning any).
    object_wirelesscontroller_accesscontrollist_layer3ipv4rules_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 IP address (any | local-LAN | IPv4 address[/<network mask | mask 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 IP address (any | local-LAN | IPv4 address[/<network mask | mask length>], default = any).
    dstport Number
    Destination port (0 - 65535, default = 0, meaning any).
    objectWirelesscontrollerAccesscontrollistLayer3ipv4rulesId 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 IP address (any | local-LAN | IPv4 address[/<network mask | mask 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 ObjectWirelesscontrollerAccesscontrollistLayer3ipv4rules 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 ObjectWirelesscontrollerAccesscontrollistLayer3ipv4rules Resource

    Get an existing ObjectWirelesscontrollerAccesscontrollistLayer3ipv4rules 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?: ObjectWirelesscontrollerAccesscontrollistLayer3ipv4rulesState, opts?: CustomResourceOptions): ObjectWirelesscontrollerAccesscontrollistLayer3ipv4rules
    @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_layer3ipv4rules_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) -> ObjectWirelesscontrollerAccesscontrollistLayer3ipv4rules
    func GetObjectWirelesscontrollerAccesscontrollistLayer3ipv4rules(ctx *Context, name string, id IDInput, state *ObjectWirelesscontrollerAccesscontrollistLayer3ipv4rulesState, opts ...ResourceOption) (*ObjectWirelesscontrollerAccesscontrollistLayer3ipv4rules, error)
    public static ObjectWirelesscontrollerAccesscontrollistLayer3ipv4rules Get(string name, Input<string> id, ObjectWirelesscontrollerAccesscontrollistLayer3ipv4rulesState? state, CustomResourceOptions? opts = null)
    public static ObjectWirelesscontrollerAccesscontrollistLayer3ipv4rules get(String name, Output<String> id, ObjectWirelesscontrollerAccesscontrollistLayer3ipv4rulesState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectWirelesscontrollerAccesscontrollistLayer3ipv4rules    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 IP address (any | local-LAN | IPv4 address[/<network mask | mask length>], default = any).
    Dstport double
    Destination port (0 - 65535, default = 0, meaning any).
    ObjectWirelesscontrollerAccesscontrollistLayer3ipv4rulesId 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 IP address (any | local-LAN | IPv4 address[/<network mask | mask 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 IP address (any | local-LAN | IPv4 address[/<network mask | mask length>], default = any).
    Dstport float64
    Destination port (0 - 65535, default = 0, meaning any).
    ObjectWirelesscontrollerAccesscontrollistLayer3ipv4rulesId 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 IP address (any | local-LAN | IPv4 address[/<network mask | mask 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 IP address (any | local-LAN | IPv4 address[/<network mask | mask length>], default = any).
    dstport Double
    Destination port (0 - 65535, default = 0, meaning any).
    objectWirelesscontrollerAccesscontrollistLayer3ipv4rulesId 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 IP address (any | local-LAN | IPv4 address[/<network mask | mask 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 IP address (any | local-LAN | IPv4 address[/<network mask | mask length>], default = any).
    dstport number
    Destination port (0 - 65535, default = 0, meaning any).
    objectWirelesscontrollerAccesscontrollistLayer3ipv4rulesId 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 IP address (any | local-LAN | IPv4 address[/<network mask | mask 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 IP address (any | local-LAN | IPv4 address[/<network mask | mask length>], default = any).
    dstport float
    Destination port (0 - 65535, default = 0, meaning any).
    object_wirelesscontroller_accesscontrollist_layer3ipv4rules_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 IP address (any | local-LAN | IPv4 address[/<network mask | mask 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 IP address (any | local-LAN | IPv4 address[/<network mask | mask length>], default = any).
    dstport Number
    Destination port (0 - 65535, default = 0, meaning any).
    objectWirelesscontrollerAccesscontrollistLayer3ipv4rulesId 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 IP address (any | local-LAN | IPv4 address[/<network mask | mask length>], default = any).
    srcport Number
    Source port (0 - 65535, default = 0, meaning any).

    Import

    ObjectWirelessController AccessControlListLayer3Ipv4Rules 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/objectWirelesscontrollerAccesscontrollistLayer3ipv4rules:ObjectWirelesscontrollerAccesscontrollistLayer3ipv4rules 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