fortimanager.ObjectWirelesscontrollerAccesscontrollist
Explore with Pulumi AI
Configure WiFi bridge access control list.
The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.
layer3_ipv4_rules
:fortimanager.ObjectWirelesscontrollerAccesscontrollistLayer3ipv4rules
layer3_ipv6_rules
:fortimanager.ObjectWirelesscontrollerAccesscontrollistLayer3ipv6rules
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trname = new fortimanager.ObjectWirelesscontrollerAccesscontrollist("trname", {layer3Ipv4Rules: [{
action: "deny",
ruleId: 23,
srcport: 12,
}]});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.ObjectWirelesscontrollerAccesscontrollist("trname", layer3_ipv4_rules=[{
"action": "deny",
"rule_id": 23,
"srcport": 12,
}])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := fortimanager.NewObjectWirelesscontrollerAccesscontrollist(ctx, "trname", &fortimanager.ObjectWirelesscontrollerAccesscontrollistArgs{
Layer3Ipv4Rules: fortimanager.ObjectWirelesscontrollerAccesscontrollistLayer3Ipv4RuleArray{
&fortimanager.ObjectWirelesscontrollerAccesscontrollistLayer3Ipv4RuleArgs{
Action: pulumi.String("deny"),
RuleId: pulumi.Float64(23),
Srcport: pulumi.Float64(12),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortimanager = Pulumi.Fortimanager;
return await Deployment.RunAsync(() =>
{
var trname = new Fortimanager.ObjectWirelesscontrollerAccesscontrollist("trname", new()
{
Layer3Ipv4Rules = new[]
{
new Fortimanager.Inputs.ObjectWirelesscontrollerAccesscontrollistLayer3Ipv4RuleArgs
{
Action = "deny",
RuleId = 23,
Srcport = 12,
},
},
});
});
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.ObjectWirelesscontrollerAccesscontrollistArgs;
import com.pulumi.fortimanager.inputs.ObjectWirelesscontrollerAccesscontrollistLayer3Ipv4RuleArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var trname = new ObjectWirelesscontrollerAccesscontrollist("trname", ObjectWirelesscontrollerAccesscontrollistArgs.builder()
.layer3Ipv4Rules(ObjectWirelesscontrollerAccesscontrollistLayer3Ipv4RuleArgs.builder()
.action("deny")
.ruleId(23)
.srcport(12)
.build())
.build());
}
}
resources:
trname:
type: fortimanager:ObjectWirelesscontrollerAccesscontrollist
properties:
layer3Ipv4Rules:
- action: deny
ruleId: 23
srcport: 12
Create ObjectWirelesscontrollerAccesscontrollist Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectWirelesscontrollerAccesscontrollist(name: string, args?: ObjectWirelesscontrollerAccesscontrollistArgs, opts?: CustomResourceOptions);
@overload
def ObjectWirelesscontrollerAccesscontrollist(resource_name: str,
args: Optional[ObjectWirelesscontrollerAccesscontrollistArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectWirelesscontrollerAccesscontrollist(resource_name: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
comment: Optional[str] = None,
dynamic_sort_subtable: Optional[str] = None,
layer3_ipv4_rules: Optional[Sequence[ObjectWirelesscontrollerAccesscontrollistLayer3Ipv4RuleArgs]] = None,
layer3_ipv6_rules: Optional[Sequence[ObjectWirelesscontrollerAccesscontrollistLayer3Ipv6RuleArgs]] = None,
name: Optional[str] = None,
object_wirelesscontroller_accesscontrollist_id: Optional[str] = None,
scopetype: Optional[str] = None)
func NewObjectWirelesscontrollerAccesscontrollist(ctx *Context, name string, args *ObjectWirelesscontrollerAccesscontrollistArgs, opts ...ResourceOption) (*ObjectWirelesscontrollerAccesscontrollist, error)
public ObjectWirelesscontrollerAccesscontrollist(string name, ObjectWirelesscontrollerAccesscontrollistArgs? args = null, CustomResourceOptions? opts = null)
public ObjectWirelesscontrollerAccesscontrollist(String name, ObjectWirelesscontrollerAccesscontrollistArgs args)
public ObjectWirelesscontrollerAccesscontrollist(String name, ObjectWirelesscontrollerAccesscontrollistArgs args, CustomResourceOptions options)
type: fortimanager:ObjectWirelesscontrollerAccesscontrollist
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 ObjectWirelesscontrollerAccesscontrollistArgs
- 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 ObjectWirelesscontrollerAccesscontrollistArgs
- 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 ObjectWirelesscontrollerAccesscontrollistArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectWirelesscontrollerAccesscontrollistArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectWirelesscontrollerAccesscontrollistArgs
- 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 objectWirelesscontrollerAccesscontrollistResource = new Fortimanager.ObjectWirelesscontrollerAccesscontrollist("objectWirelesscontrollerAccesscontrollistResource", new()
{
Adom = "string",
Comment = "string",
DynamicSortSubtable = "string",
Layer3Ipv4Rules = new[]
{
new Fortimanager.Inputs.ObjectWirelesscontrollerAccesscontrollistLayer3Ipv4RuleArgs
{
Action = "string",
Comment = "string",
Dstaddr = "string",
Dstport = 0,
Protocol = 0,
RuleId = 0,
Srcaddr = "string",
Srcport = 0,
},
},
Layer3Ipv6Rules = new[]
{
new Fortimanager.Inputs.ObjectWirelesscontrollerAccesscontrollistLayer3Ipv6RuleArgs
{
Action = "string",
Comment = "string",
Dstaddr = "string",
Dstport = 0,
Protocol = 0,
RuleId = 0,
Srcaddr = "string",
Srcport = 0,
},
},
Name = "string",
ObjectWirelesscontrollerAccesscontrollistId = "string",
Scopetype = "string",
});
example, err := fortimanager.NewObjectWirelesscontrollerAccesscontrollist(ctx, "objectWirelesscontrollerAccesscontrollistResource", &fortimanager.ObjectWirelesscontrollerAccesscontrollistArgs{
Adom: pulumi.String("string"),
Comment: pulumi.String("string"),
DynamicSortSubtable: pulumi.String("string"),
Layer3Ipv4Rules: .ObjectWirelesscontrollerAccesscontrollistLayer3Ipv4RuleArray{
&.ObjectWirelesscontrollerAccesscontrollistLayer3Ipv4RuleArgs{
Action: pulumi.String("string"),
Comment: pulumi.String("string"),
Dstaddr: pulumi.String("string"),
Dstport: pulumi.Float64(0),
Protocol: pulumi.Float64(0),
RuleId: pulumi.Float64(0),
Srcaddr: pulumi.String("string"),
Srcport: pulumi.Float64(0),
},
},
Layer3Ipv6Rules: .ObjectWirelesscontrollerAccesscontrollistLayer3Ipv6RuleArray{
&.ObjectWirelesscontrollerAccesscontrollistLayer3Ipv6RuleArgs{
Action: pulumi.String("string"),
Comment: pulumi.String("string"),
Dstaddr: pulumi.String("string"),
Dstport: pulumi.Float64(0),
Protocol: pulumi.Float64(0),
RuleId: pulumi.Float64(0),
Srcaddr: pulumi.String("string"),
Srcport: pulumi.Float64(0),
},
},
Name: pulumi.String("string"),
ObjectWirelesscontrollerAccesscontrollistId: pulumi.String("string"),
Scopetype: pulumi.String("string"),
})
var objectWirelesscontrollerAccesscontrollistResource = new ObjectWirelesscontrollerAccesscontrollist("objectWirelesscontrollerAccesscontrollistResource", ObjectWirelesscontrollerAccesscontrollistArgs.builder()
.adom("string")
.comment("string")
.dynamicSortSubtable("string")
.layer3Ipv4Rules(ObjectWirelesscontrollerAccesscontrollistLayer3Ipv4RuleArgs.builder()
.action("string")
.comment("string")
.dstaddr("string")
.dstport(0)
.protocol(0)
.ruleId(0)
.srcaddr("string")
.srcport(0)
.build())
.layer3Ipv6Rules(ObjectWirelesscontrollerAccesscontrollistLayer3Ipv6RuleArgs.builder()
.action("string")
.comment("string")
.dstaddr("string")
.dstport(0)
.protocol(0)
.ruleId(0)
.srcaddr("string")
.srcport(0)
.build())
.name("string")
.objectWirelesscontrollerAccesscontrollistId("string")
.scopetype("string")
.build());
object_wirelesscontroller_accesscontrollist_resource = fortimanager.ObjectWirelesscontrollerAccesscontrollist("objectWirelesscontrollerAccesscontrollistResource",
adom="string",
comment="string",
dynamic_sort_subtable="string",
layer3_ipv4_rules=[{
"action": "string",
"comment": "string",
"dstaddr": "string",
"dstport": 0,
"protocol": 0,
"rule_id": 0,
"srcaddr": "string",
"srcport": 0,
}],
layer3_ipv6_rules=[{
"action": "string",
"comment": "string",
"dstaddr": "string",
"dstport": 0,
"protocol": 0,
"rule_id": 0,
"srcaddr": "string",
"srcport": 0,
}],
name="string",
object_wirelesscontroller_accesscontrollist_id="string",
scopetype="string")
const objectWirelesscontrollerAccesscontrollistResource = new fortimanager.ObjectWirelesscontrollerAccesscontrollist("objectWirelesscontrollerAccesscontrollistResource", {
adom: "string",
comment: "string",
dynamicSortSubtable: "string",
layer3Ipv4Rules: [{
action: "string",
comment: "string",
dstaddr: "string",
dstport: 0,
protocol: 0,
ruleId: 0,
srcaddr: "string",
srcport: 0,
}],
layer3Ipv6Rules: [{
action: "string",
comment: "string",
dstaddr: "string",
dstport: 0,
protocol: 0,
ruleId: 0,
srcaddr: "string",
srcport: 0,
}],
name: "string",
objectWirelesscontrollerAccesscontrollistId: "string",
scopetype: "string",
});
type: fortimanager:ObjectWirelesscontrollerAccesscontrollist
properties:
adom: string
comment: string
dynamicSortSubtable: string
layer3Ipv4Rules:
- action: string
comment: string
dstaddr: string
dstport: 0
protocol: 0
ruleId: 0
srcaddr: string
srcport: 0
layer3Ipv6Rules:
- action: string
comment: string
dstaddr: string
dstport: 0
protocol: 0
ruleId: 0
srcaddr: string
srcport: 0
name: string
objectWirelesscontrollerAccesscontrollistId: string
scopetype: string
ObjectWirelesscontrollerAccesscontrollist 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 ObjectWirelesscontrollerAccesscontrollist resource accepts the following input properties:
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Comment string
- Description.
- Dynamic
Sort stringSubtable 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
layer3_ipv4_rules
block supports:- Layer3Ipv4Rules
List<Object
Wirelesscontroller Accesscontrollist Layer3Ipv4Rule> - Layer3-Ipv4-Rules. The structure of
layer3_ipv4_rules
block is documented below. - Layer3Ipv6Rules
List<Object
Wirelesscontroller Accesscontrollist Layer3Ipv6Rule> - Layer3-Ipv6-Rules. The structure of
layer3_ipv6_rules
block is documented below. - Name string
- AP access control list name.
- Object
Wirelesscontroller stringAccesscontrollist Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Comment string
- Description.
- Dynamic
Sort stringSubtable 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
layer3_ipv4_rules
block supports:- Layer3Ipv4Rules
[]Object
Wirelesscontroller Accesscontrollist Layer3Ipv4Rule Args - Layer3-Ipv4-Rules. The structure of
layer3_ipv4_rules
block is documented below. - Layer3Ipv6Rules
[]Object
Wirelesscontroller Accesscontrollist Layer3Ipv6Rule Args - Layer3-Ipv6-Rules. The structure of
layer3_ipv6_rules
block is documented below. - Name string
- AP access control list name.
- Object
Wirelesscontroller stringAccesscontrollist Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment String
- Description.
- dynamic
Sort StringSubtable 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
layer3_ipv4_rules
block supports:- layer3Ipv4Rules
List<Object
Wirelesscontroller Accesscontrollist Layer3Ipv4Rule> - Layer3-Ipv4-Rules. The structure of
layer3_ipv4_rules
block is documented below. - layer3Ipv6Rules
List<Object
Wirelesscontroller Accesscontrollist Layer3Ipv6Rule> - Layer3-Ipv6-Rules. The structure of
layer3_ipv6_rules
block is documented below. - name String
- AP access control list name.
- object
Wirelesscontroller StringAccesscontrollist Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment string
- Description.
- dynamic
Sort stringSubtable 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
layer3_ipv4_rules
block supports:- layer3Ipv4Rules
Object
Wirelesscontroller Accesscontrollist Layer3Ipv4Rule[] - Layer3-Ipv4-Rules. The structure of
layer3_ipv4_rules
block is documented below. - layer3Ipv6Rules
Object
Wirelesscontroller Accesscontrollist Layer3Ipv6Rule[] - Layer3-Ipv6-Rules. The structure of
layer3_ipv6_rules
block is documented below. - name string
- AP access control list name.
- object
Wirelesscontroller stringAccesscontrollist Id - an identifier for the resource with format {{name}}.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment str
- Description.
- dynamic_
sort_ strsubtable 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
layer3_ipv4_rules
block supports:- layer3_
ipv4_ Sequence[Objectrules Wirelesscontroller Accesscontrollist Layer3Ipv4Rule Args] - Layer3-Ipv4-Rules. The structure of
layer3_ipv4_rules
block is documented below. - layer3_
ipv6_ Sequence[Objectrules Wirelesscontroller Accesscontrollist Layer3Ipv6Rule Args] - Layer3-Ipv6-Rules. The structure of
layer3_ipv6_rules
block is documented below. - name str
- AP access control list name.
- object_
wirelesscontroller_ straccesscontrollist_ id - an identifier for the resource with format {{name}}.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment String
- Description.
- dynamic
Sort StringSubtable 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
layer3_ipv4_rules
block supports:- layer3Ipv4Rules List<Property Map>
- Layer3-Ipv4-Rules. The structure of
layer3_ipv4_rules
block is documented below. - layer3Ipv6Rules List<Property Map>
- Layer3-Ipv6-Rules. The structure of
layer3_ipv6_rules
block is documented below. - name String
- AP access control list name.
- object
Wirelesscontroller StringAccesscontrollist Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectWirelesscontrollerAccesscontrollist 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 ObjectWirelesscontrollerAccesscontrollist Resource
Get an existing ObjectWirelesscontrollerAccesscontrollist 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?: ObjectWirelesscontrollerAccesscontrollistState, opts?: CustomResourceOptions): ObjectWirelesscontrollerAccesscontrollist
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
comment: Optional[str] = None,
dynamic_sort_subtable: Optional[str] = None,
layer3_ipv4_rules: Optional[Sequence[ObjectWirelesscontrollerAccesscontrollistLayer3Ipv4RuleArgs]] = None,
layer3_ipv6_rules: Optional[Sequence[ObjectWirelesscontrollerAccesscontrollistLayer3Ipv6RuleArgs]] = None,
name: Optional[str] = None,
object_wirelesscontroller_accesscontrollist_id: Optional[str] = None,
scopetype: Optional[str] = None) -> ObjectWirelesscontrollerAccesscontrollist
func GetObjectWirelesscontrollerAccesscontrollist(ctx *Context, name string, id IDInput, state *ObjectWirelesscontrollerAccesscontrollistState, opts ...ResourceOption) (*ObjectWirelesscontrollerAccesscontrollist, error)
public static ObjectWirelesscontrollerAccesscontrollist Get(string name, Input<string> id, ObjectWirelesscontrollerAccesscontrollistState? state, CustomResourceOptions? opts = null)
public static ObjectWirelesscontrollerAccesscontrollist get(String name, Output<String> id, ObjectWirelesscontrollerAccesscontrollistState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectWirelesscontrollerAccesscontrollist 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.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Comment string
- Description.
- Dynamic
Sort stringSubtable 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
layer3_ipv4_rules
block supports:- Layer3Ipv4Rules
List<Object
Wirelesscontroller Accesscontrollist Layer3Ipv4Rule> - Layer3-Ipv4-Rules. The structure of
layer3_ipv4_rules
block is documented below. - Layer3Ipv6Rules
List<Object
Wirelesscontroller Accesscontrollist Layer3Ipv6Rule> - Layer3-Ipv6-Rules. The structure of
layer3_ipv6_rules
block is documented below. - Name string
- AP access control list name.
- Object
Wirelesscontroller stringAccesscontrollist Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Comment string
- Description.
- Dynamic
Sort stringSubtable 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
layer3_ipv4_rules
block supports:- Layer3Ipv4Rules
[]Object
Wirelesscontroller Accesscontrollist Layer3Ipv4Rule Args - Layer3-Ipv4-Rules. The structure of
layer3_ipv4_rules
block is documented below. - Layer3Ipv6Rules
[]Object
Wirelesscontroller Accesscontrollist Layer3Ipv6Rule Args - Layer3-Ipv6-Rules. The structure of
layer3_ipv6_rules
block is documented below. - Name string
- AP access control list name.
- Object
Wirelesscontroller stringAccesscontrollist Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment String
- Description.
- dynamic
Sort StringSubtable 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
layer3_ipv4_rules
block supports:- layer3Ipv4Rules
List<Object
Wirelesscontroller Accesscontrollist Layer3Ipv4Rule> - Layer3-Ipv4-Rules. The structure of
layer3_ipv4_rules
block is documented below. - layer3Ipv6Rules
List<Object
Wirelesscontroller Accesscontrollist Layer3Ipv6Rule> - Layer3-Ipv6-Rules. The structure of
layer3_ipv6_rules
block is documented below. - name String
- AP access control list name.
- object
Wirelesscontroller StringAccesscontrollist Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment string
- Description.
- dynamic
Sort stringSubtable 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
layer3_ipv4_rules
block supports:- layer3Ipv4Rules
Object
Wirelesscontroller Accesscontrollist Layer3Ipv4Rule[] - Layer3-Ipv4-Rules. The structure of
layer3_ipv4_rules
block is documented below. - layer3Ipv6Rules
Object
Wirelesscontroller Accesscontrollist Layer3Ipv6Rule[] - Layer3-Ipv6-Rules. The structure of
layer3_ipv6_rules
block is documented below. - name string
- AP access control list name.
- object
Wirelesscontroller stringAccesscontrollist Id - an identifier for the resource with format {{name}}.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment str
- Description.
- dynamic_
sort_ strsubtable 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
layer3_ipv4_rules
block supports:- layer3_
ipv4_ Sequence[Objectrules Wirelesscontroller Accesscontrollist Layer3Ipv4Rule Args] - Layer3-Ipv4-Rules. The structure of
layer3_ipv4_rules
block is documented below. - layer3_
ipv6_ Sequence[Objectrules Wirelesscontroller Accesscontrollist Layer3Ipv6Rule Args] - Layer3-Ipv6-Rules. The structure of
layer3_ipv6_rules
block is documented below. - name str
- AP access control list name.
- object_
wirelesscontroller_ straccesscontrollist_ id - an identifier for the resource with format {{name}}.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment String
- Description.
- dynamic
Sort StringSubtable 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
layer3_ipv4_rules
block supports:- layer3Ipv4Rules List<Property Map>
- Layer3-Ipv4-Rules. The structure of
layer3_ipv4_rules
block is documented below. - layer3Ipv6Rules List<Property Map>
- Layer3-Ipv6-Rules. The structure of
layer3_ipv6_rules
block is documented below. - name String
- AP access control list name.
- object
Wirelesscontroller StringAccesscontrollist Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
Supporting Types
ObjectWirelesscontrollerAccesscontrollistLayer3Ipv4Rule, ObjectWirelesscontrollerAccesscontrollistLayer3Ipv4RuleArgs
- Action string
- Policy action (allow | deny). Valid values:
allow
,deny
. - 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).
- Protocol double
- Protocol type as defined by IANA (0 - 255, default = 255, meaning any).
- Rule
Id double - Rule ID (1 - 65535).
- Srcaddr string
- Source IPv6 address (any | local-LAN | IPv6 address[/prefix length]), default = any.
- Srcport double
- Source port (0 - 65535, default = 0, meaning any).
- Action string
- Policy action (allow | deny). Valid values:
allow
,deny
. - 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).
- Protocol float64
- Protocol type as defined by IANA (0 - 255, default = 255, meaning any).
- Rule
Id float64 - Rule ID (1 - 65535).
- Srcaddr string
- Source IPv6 address (any | local-LAN | IPv6 address[/prefix length]), default = any.
- Srcport float64
- Source port (0 - 65535, default = 0, meaning any).
- action String
- Policy action (allow | deny). Valid values:
allow
,deny
. - 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).
- protocol Double
- Protocol type as defined by IANA (0 - 255, default = 255, meaning any).
- rule
Id Double - Rule ID (1 - 65535).
- srcaddr String
- Source IPv6 address (any | local-LAN | IPv6 address[/prefix length]), default = any.
- srcport Double
- Source port (0 - 65535, default = 0, meaning any).
- action string
- Policy action (allow | deny). Valid values:
allow
,deny
. - 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).
- protocol number
- Protocol type as defined by IANA (0 - 255, default = 255, meaning any).
- rule
Id number - Rule ID (1 - 65535).
- srcaddr string
- Source IPv6 address (any | local-LAN | IPv6 address[/prefix length]), default = any.
- srcport number
- Source port (0 - 65535, default = 0, meaning any).
- action str
- Policy action (allow | deny). Valid values:
allow
,deny
. - 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).
- protocol float
- Protocol type as defined by IANA (0 - 255, default = 255, meaning any).
- rule_
id float - Rule ID (1 - 65535).
- srcaddr str
- Source IPv6 address (any | local-LAN | IPv6 address[/prefix length]), default = any.
- srcport float
- Source port (0 - 65535, default = 0, meaning any).
- action String
- Policy action (allow | deny). Valid values:
allow
,deny
. - 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).
- protocol Number
- Protocol type as defined by IANA (0 - 255, default = 255, meaning any).
- rule
Id Number - Rule ID (1 - 65535).
- srcaddr String
- Source IPv6 address (any | local-LAN | IPv6 address[/prefix length]), default = any.
- srcport Number
- Source port (0 - 65535, default = 0, meaning any).
ObjectWirelesscontrollerAccesscontrollistLayer3Ipv6Rule, ObjectWirelesscontrollerAccesscontrollistLayer3Ipv6RuleArgs
- Action string
- Policy action (allow | deny). Valid values:
allow
,deny
. - 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).
- Protocol double
- Protocol type as defined by IANA (0 - 255, default = 255, meaning any).
- Rule
Id double - Rule ID (1 - 65535).
- Srcaddr string
- Source IPv6 address (any | local-LAN | IPv6 address[/prefix length]), default = any.
- Srcport double
- Source port (0 - 65535, default = 0, meaning any).
- Action string
- Policy action (allow | deny). Valid values:
allow
,deny
. - 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).
- Protocol float64
- Protocol type as defined by IANA (0 - 255, default = 255, meaning any).
- Rule
Id float64 - Rule ID (1 - 65535).
- Srcaddr string
- Source IPv6 address (any | local-LAN | IPv6 address[/prefix length]), default = any.
- Srcport float64
- Source port (0 - 65535, default = 0, meaning any).
- action String
- Policy action (allow | deny). Valid values:
allow
,deny
. - 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).
- protocol Double
- Protocol type as defined by IANA (0 - 255, default = 255, meaning any).
- rule
Id Double - Rule ID (1 - 65535).
- srcaddr String
- Source IPv6 address (any | local-LAN | IPv6 address[/prefix length]), default = any.
- srcport Double
- Source port (0 - 65535, default = 0, meaning any).
- action string
- Policy action (allow | deny). Valid values:
allow
,deny
. - 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).
- protocol number
- Protocol type as defined by IANA (0 - 255, default = 255, meaning any).
- rule
Id number - Rule ID (1 - 65535).
- srcaddr string
- Source IPv6 address (any | local-LAN | IPv6 address[/prefix length]), default = any.
- srcport number
- Source port (0 - 65535, default = 0, meaning any).
- action str
- Policy action (allow | deny). Valid values:
allow
,deny
. - 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).
- protocol float
- Protocol type as defined by IANA (0 - 255, default = 255, meaning any).
- rule_
id float - Rule ID (1 - 65535).
- srcaddr str
- Source IPv6 address (any | local-LAN | IPv6 address[/prefix length]), default = any.
- srcport float
- Source port (0 - 65535, default = 0, meaning any).
- action String
- Policy action (allow | deny). Valid values:
allow
,deny
. - 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).
- protocol Number
- Protocol type as defined by IANA (0 - 255, default = 255, meaning any).
- rule
Id Number - Rule ID (1 - 65535).
- 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 AccessControlList can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectWirelesscontrollerAccesscontrollist:ObjectWirelesscontrollerAccesscontrollist labelname {{name}}
$ unset “FORTIMANAGER_IMPORT_TABLE”
-> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- fortimanager fortinetdev/terraform-provider-fortimanager
- License
- Notes
- This Pulumi package is based on the
fortimanager
Terraform Provider.