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

fortimanager.ObjectWirelesscontrollerApcfgprofile

Explore with Pulumi AI

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

    Configure AP local configuration profiles.

    The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.

    • command_list: fortimanager.ObjectWirelesscontrollerApcfgprofileCommandlist

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.ObjectWirelesscontrollerApcfgprofile("trname", {
        commandLists: [{
            id: 1,
            name: "terr-apcfgprofile",
            passwdValues: ["123"],
            type: "password",
        }],
        comment: "This is a Terraform example",
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.ObjectWirelesscontrollerApcfgprofile("trname",
        command_lists=[{
            "id": 1,
            "name": "terr-apcfgprofile",
            "passwd_values": ["123"],
            "type": "password",
        }],
        comment="This is a Terraform example")
    
    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.NewObjectWirelesscontrollerApcfgprofile(ctx, "trname", &fortimanager.ObjectWirelesscontrollerApcfgprofileArgs{
    			CommandLists: fortimanager.ObjectWirelesscontrollerApcfgprofileCommandListTypeArray{
    				&fortimanager.ObjectWirelesscontrollerApcfgprofileCommandListTypeArgs{
    					Id:   pulumi.Float64(1),
    					Name: pulumi.String("terr-apcfgprofile"),
    					PasswdValues: pulumi.StringArray{
    						pulumi.String("123"),
    					},
    					Type: pulumi.String("password"),
    				},
    			},
    			Comment: pulumi.String("This is a Terraform example"),
    		})
    		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.ObjectWirelesscontrollerApcfgprofile("trname", new()
        {
            CommandLists = new[]
            {
                new Fortimanager.Inputs.ObjectWirelesscontrollerApcfgprofileCommandListArgs
                {
                    Id = 1,
                    Name = "terr-apcfgprofile",
                    PasswdValues = new[]
                    {
                        "123",
                    },
                    Type = "password",
                },
            },
            Comment = "This is a Terraform example",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectWirelesscontrollerApcfgprofile;
    import com.pulumi.fortimanager.ObjectWirelesscontrollerApcfgprofileArgs;
    import com.pulumi.fortimanager.inputs.ObjectWirelesscontrollerApcfgprofileCommandListArgs;
    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 ObjectWirelesscontrollerApcfgprofile("trname", ObjectWirelesscontrollerApcfgprofileArgs.builder()
                .commandLists(ObjectWirelesscontrollerApcfgprofileCommandListArgs.builder()
                    .id(1)
                    .name("terr-apcfgprofile")
                    .passwdValues("123")
                    .type("password")
                    .build())
                .comment("This is a Terraform example")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:ObjectWirelesscontrollerApcfgprofile
        properties:
          commandLists:
            - id: 1
              name: terr-apcfgprofile
              passwdValues:
                - '123'
              type: password
          comment: This is a Terraform example
    

    Create ObjectWirelesscontrollerApcfgprofile Resource

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

    Constructor syntax

    new ObjectWirelesscontrollerApcfgprofile(name: string, args?: ObjectWirelesscontrollerApcfgprofileArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectWirelesscontrollerApcfgprofile(resource_name: str,
                                             args: Optional[ObjectWirelesscontrollerApcfgprofileArgs] = None,
                                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectWirelesscontrollerApcfgprofile(resource_name: str,
                                             opts: Optional[ResourceOptions] = None,
                                             ac_ip: Optional[str] = None,
                                             ac_port: Optional[float] = None,
                                             ac_timer: Optional[float] = None,
                                             ac_type: Optional[str] = None,
                                             adom: Optional[str] = None,
                                             ap_family: Optional[str] = None,
                                             command_lists: Optional[Sequence[ObjectWirelesscontrollerApcfgprofileCommandListArgs]] = None,
                                             comment: Optional[str] = None,
                                             dynamic_sort_subtable: Optional[str] = None,
                                             name: Optional[str] = None,
                                             object_wirelesscontroller_apcfgprofile_id: Optional[str] = None,
                                             scopetype: Optional[str] = None)
    func NewObjectWirelesscontrollerApcfgprofile(ctx *Context, name string, args *ObjectWirelesscontrollerApcfgprofileArgs, opts ...ResourceOption) (*ObjectWirelesscontrollerApcfgprofile, error)
    public ObjectWirelesscontrollerApcfgprofile(string name, ObjectWirelesscontrollerApcfgprofileArgs? args = null, CustomResourceOptions? opts = null)
    public ObjectWirelesscontrollerApcfgprofile(String name, ObjectWirelesscontrollerApcfgprofileArgs args)
    public ObjectWirelesscontrollerApcfgprofile(String name, ObjectWirelesscontrollerApcfgprofileArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectWirelesscontrollerApcfgprofile
    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 ObjectWirelesscontrollerApcfgprofileArgs
    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 ObjectWirelesscontrollerApcfgprofileArgs
    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 ObjectWirelesscontrollerApcfgprofileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectWirelesscontrollerApcfgprofileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectWirelesscontrollerApcfgprofileArgs
    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 objectWirelesscontrollerApcfgprofileResource = new Fortimanager.ObjectWirelesscontrollerApcfgprofile("objectWirelesscontrollerApcfgprofileResource", new()
    {
        AcIp = "string",
        AcPort = 0,
        AcTimer = 0,
        AcType = "string",
        Adom = "string",
        ApFamily = "string",
        CommandLists = new[]
        {
            new Fortimanager.Inputs.ObjectWirelesscontrollerApcfgprofileCommandListArgs
            {
                Id = 0,
                Name = "string",
                PasswdValues = new[]
                {
                    "string",
                },
                Type = "string",
                Value = "string",
            },
        },
        Comment = "string",
        DynamicSortSubtable = "string",
        Name = "string",
        ObjectWirelesscontrollerApcfgprofileId = "string",
        Scopetype = "string",
    });
    
    example, err := fortimanager.NewObjectWirelesscontrollerApcfgprofile(ctx, "objectWirelesscontrollerApcfgprofileResource", &fortimanager.ObjectWirelesscontrollerApcfgprofileArgs{
    AcIp: pulumi.String("string"),
    AcPort: pulumi.Float64(0),
    AcTimer: pulumi.Float64(0),
    AcType: pulumi.String("string"),
    Adom: pulumi.String("string"),
    ApFamily: pulumi.String("string"),
    CommandLists: .ObjectWirelesscontrollerApcfgprofileCommandListTypeArray{
    &.ObjectWirelesscontrollerApcfgprofileCommandListTypeArgs{
    Id: pulumi.Float64(0),
    Name: pulumi.String("string"),
    PasswdValues: pulumi.StringArray{
    pulumi.String("string"),
    },
    Type: pulumi.String("string"),
    Value: pulumi.String("string"),
    },
    },
    Comment: pulumi.String("string"),
    DynamicSortSubtable: pulumi.String("string"),
    Name: pulumi.String("string"),
    ObjectWirelesscontrollerApcfgprofileId: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    })
    
    var objectWirelesscontrollerApcfgprofileResource = new ObjectWirelesscontrollerApcfgprofile("objectWirelesscontrollerApcfgprofileResource", ObjectWirelesscontrollerApcfgprofileArgs.builder()
        .acIp("string")
        .acPort(0)
        .acTimer(0)
        .acType("string")
        .adom("string")
        .apFamily("string")
        .commandLists(ObjectWirelesscontrollerApcfgprofileCommandListArgs.builder()
            .id(0)
            .name("string")
            .passwdValues("string")
            .type("string")
            .value("string")
            .build())
        .comment("string")
        .dynamicSortSubtable("string")
        .name("string")
        .objectWirelesscontrollerApcfgprofileId("string")
        .scopetype("string")
        .build());
    
    object_wirelesscontroller_apcfgprofile_resource = fortimanager.ObjectWirelesscontrollerApcfgprofile("objectWirelesscontrollerApcfgprofileResource",
        ac_ip="string",
        ac_port=0,
        ac_timer=0,
        ac_type="string",
        adom="string",
        ap_family="string",
        command_lists=[{
            "id": 0,
            "name": "string",
            "passwd_values": ["string"],
            "type": "string",
            "value": "string",
        }],
        comment="string",
        dynamic_sort_subtable="string",
        name="string",
        object_wirelesscontroller_apcfgprofile_id="string",
        scopetype="string")
    
    const objectWirelesscontrollerApcfgprofileResource = new fortimanager.ObjectWirelesscontrollerApcfgprofile("objectWirelesscontrollerApcfgprofileResource", {
        acIp: "string",
        acPort: 0,
        acTimer: 0,
        acType: "string",
        adom: "string",
        apFamily: "string",
        commandLists: [{
            id: 0,
            name: "string",
            passwdValues: ["string"],
            type: "string",
            value: "string",
        }],
        comment: "string",
        dynamicSortSubtable: "string",
        name: "string",
        objectWirelesscontrollerApcfgprofileId: "string",
        scopetype: "string",
    });
    
    type: fortimanager:ObjectWirelesscontrollerApcfgprofile
    properties:
        acIp: string
        acPort: 0
        acTimer: 0
        acType: string
        adom: string
        apFamily: string
        commandLists:
            - id: 0
              name: string
              passwdValues:
                - string
              type: string
              value: string
        comment: string
        dynamicSortSubtable: string
        name: string
        objectWirelesscontrollerApcfgprofileId: string
        scopetype: string
    

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

    AcIp string
    IP address of the validation controller that AP must be able to join after applying AP local configuration.
    AcPort double
    Port of the validation controller that AP must be able to join after applying AP local configuration (1024 - 49150, default = 5246).
    AcTimer double
    Maximum waiting time for the AP to join the validation controller after applying AP local configuration (3 - 30 min, default = 10).
    AcType string
    Validation controller type (default = default). Valid values: default, specify, apcfg.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ApFamily string
    FortiAP family type (default = fap). Valid values: fap, fap-u, fap-c.
    CommandLists List<ObjectWirelesscontrollerApcfgprofileCommandList>
    Command-List. The structure of command_list block is documented below.
    Comment string
    Comment.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    Name string
    AP local configuration profile name.
    ObjectWirelesscontrollerApcfgprofileId string
    an identifier for the resource with format {{name}}.
    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.
    AcIp string
    IP address of the validation controller that AP must be able to join after applying AP local configuration.
    AcPort float64
    Port of the validation controller that AP must be able to join after applying AP local configuration (1024 - 49150, default = 5246).
    AcTimer float64
    Maximum waiting time for the AP to join the validation controller after applying AP local configuration (3 - 30 min, default = 10).
    AcType string
    Validation controller type (default = default). Valid values: default, specify, apcfg.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ApFamily string
    FortiAP family type (default = fap). Valid values: fap, fap-u, fap-c.
    CommandLists []ObjectWirelesscontrollerApcfgprofileCommandListTypeArgs
    Command-List. The structure of command_list block is documented below.
    Comment string
    Comment.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    Name string
    AP local configuration profile name.
    ObjectWirelesscontrollerApcfgprofileId string
    an identifier for the resource with format {{name}}.
    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.
    acIp String
    IP address of the validation controller that AP must be able to join after applying AP local configuration.
    acPort Double
    Port of the validation controller that AP must be able to join after applying AP local configuration (1024 - 49150, default = 5246).
    acTimer Double
    Maximum waiting time for the AP to join the validation controller after applying AP local configuration (3 - 30 min, default = 10).
    acType String
    Validation controller type (default = default). Valid values: default, specify, apcfg.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    apFamily String
    FortiAP family type (default = fap). Valid values: fap, fap-u, fap-c.
    commandLists List<ObjectWirelesscontrollerApcfgprofileCommandList>
    Command-List. The structure of command_list block is documented below.
    comment String
    Comment.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    name String
    AP local configuration profile name.
    objectWirelesscontrollerApcfgprofileId String
    an identifier for the resource with format {{name}}.
    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.
    acIp string
    IP address of the validation controller that AP must be able to join after applying AP local configuration.
    acPort number
    Port of the validation controller that AP must be able to join after applying AP local configuration (1024 - 49150, default = 5246).
    acTimer number
    Maximum waiting time for the AP to join the validation controller after applying AP local configuration (3 - 30 min, default = 10).
    acType string
    Validation controller type (default = default). Valid values: default, specify, apcfg.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    apFamily string
    FortiAP family type (default = fap). Valid values: fap, fap-u, fap-c.
    commandLists ObjectWirelesscontrollerApcfgprofileCommandList[]
    Command-List. The structure of command_list block is documented below.
    comment string
    Comment.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    name string
    AP local configuration profile name.
    objectWirelesscontrollerApcfgprofileId string
    an identifier for the resource with format {{name}}.
    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.
    ac_ip str
    IP address of the validation controller that AP must be able to join after applying AP local configuration.
    ac_port float
    Port of the validation controller that AP must be able to join after applying AP local configuration (1024 - 49150, default = 5246).
    ac_timer float
    Maximum waiting time for the AP to join the validation controller after applying AP local configuration (3 - 30 min, default = 10).
    ac_type str
    Validation controller type (default = default). Valid values: default, specify, apcfg.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ap_family str
    FortiAP family type (default = fap). Valid values: fap, fap-u, fap-c.
    command_lists Sequence[ObjectWirelesscontrollerApcfgprofileCommandListArgs]
    Command-List. The structure of command_list block is documented below.
    comment str
    Comment.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    name str
    AP local configuration profile name.
    object_wirelesscontroller_apcfgprofile_id str
    an identifier for the resource with format {{name}}.
    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.
    acIp String
    IP address of the validation controller that AP must be able to join after applying AP local configuration.
    acPort Number
    Port of the validation controller that AP must be able to join after applying AP local configuration (1024 - 49150, default = 5246).
    acTimer Number
    Maximum waiting time for the AP to join the validation controller after applying AP local configuration (3 - 30 min, default = 10).
    acType String
    Validation controller type (default = default). Valid values: default, specify, apcfg.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    apFamily String
    FortiAP family type (default = fap). Valid values: fap, fap-u, fap-c.
    commandLists List<Property Map>
    Command-List. The structure of command_list block is documented below.
    comment String
    Comment.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    name String
    AP local configuration profile name.
    objectWirelesscontrollerApcfgprofileId String
    an identifier for the resource with format {{name}}.
    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.

    Outputs

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

    Get an existing ObjectWirelesscontrollerApcfgprofile 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?: ObjectWirelesscontrollerApcfgprofileState, opts?: CustomResourceOptions): ObjectWirelesscontrollerApcfgprofile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            ac_ip: Optional[str] = None,
            ac_port: Optional[float] = None,
            ac_timer: Optional[float] = None,
            ac_type: Optional[str] = None,
            adom: Optional[str] = None,
            ap_family: Optional[str] = None,
            command_lists: Optional[Sequence[ObjectWirelesscontrollerApcfgprofileCommandListArgs]] = None,
            comment: Optional[str] = None,
            dynamic_sort_subtable: Optional[str] = None,
            name: Optional[str] = None,
            object_wirelesscontroller_apcfgprofile_id: Optional[str] = None,
            scopetype: Optional[str] = None) -> ObjectWirelesscontrollerApcfgprofile
    func GetObjectWirelesscontrollerApcfgprofile(ctx *Context, name string, id IDInput, state *ObjectWirelesscontrollerApcfgprofileState, opts ...ResourceOption) (*ObjectWirelesscontrollerApcfgprofile, error)
    public static ObjectWirelesscontrollerApcfgprofile Get(string name, Input<string> id, ObjectWirelesscontrollerApcfgprofileState? state, CustomResourceOptions? opts = null)
    public static ObjectWirelesscontrollerApcfgprofile get(String name, Output<String> id, ObjectWirelesscontrollerApcfgprofileState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectWirelesscontrollerApcfgprofile    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:
    AcIp string
    IP address of the validation controller that AP must be able to join after applying AP local configuration.
    AcPort double
    Port of the validation controller that AP must be able to join after applying AP local configuration (1024 - 49150, default = 5246).
    AcTimer double
    Maximum waiting time for the AP to join the validation controller after applying AP local configuration (3 - 30 min, default = 10).
    AcType string
    Validation controller type (default = default). Valid values: default, specify, apcfg.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ApFamily string
    FortiAP family type (default = fap). Valid values: fap, fap-u, fap-c.
    CommandLists List<ObjectWirelesscontrollerApcfgprofileCommandList>
    Command-List. The structure of command_list block is documented below.
    Comment string
    Comment.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    Name string
    AP local configuration profile name.
    ObjectWirelesscontrollerApcfgprofileId string
    an identifier for the resource with format {{name}}.
    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.
    AcIp string
    IP address of the validation controller that AP must be able to join after applying AP local configuration.
    AcPort float64
    Port of the validation controller that AP must be able to join after applying AP local configuration (1024 - 49150, default = 5246).
    AcTimer float64
    Maximum waiting time for the AP to join the validation controller after applying AP local configuration (3 - 30 min, default = 10).
    AcType string
    Validation controller type (default = default). Valid values: default, specify, apcfg.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ApFamily string
    FortiAP family type (default = fap). Valid values: fap, fap-u, fap-c.
    CommandLists []ObjectWirelesscontrollerApcfgprofileCommandListTypeArgs
    Command-List. The structure of command_list block is documented below.
    Comment string
    Comment.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    Name string
    AP local configuration profile name.
    ObjectWirelesscontrollerApcfgprofileId string
    an identifier for the resource with format {{name}}.
    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.
    acIp String
    IP address of the validation controller that AP must be able to join after applying AP local configuration.
    acPort Double
    Port of the validation controller that AP must be able to join after applying AP local configuration (1024 - 49150, default = 5246).
    acTimer Double
    Maximum waiting time for the AP to join the validation controller after applying AP local configuration (3 - 30 min, default = 10).
    acType String
    Validation controller type (default = default). Valid values: default, specify, apcfg.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    apFamily String
    FortiAP family type (default = fap). Valid values: fap, fap-u, fap-c.
    commandLists List<ObjectWirelesscontrollerApcfgprofileCommandList>
    Command-List. The structure of command_list block is documented below.
    comment String
    Comment.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    name String
    AP local configuration profile name.
    objectWirelesscontrollerApcfgprofileId String
    an identifier for the resource with format {{name}}.
    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.
    acIp string
    IP address of the validation controller that AP must be able to join after applying AP local configuration.
    acPort number
    Port of the validation controller that AP must be able to join after applying AP local configuration (1024 - 49150, default = 5246).
    acTimer number
    Maximum waiting time for the AP to join the validation controller after applying AP local configuration (3 - 30 min, default = 10).
    acType string
    Validation controller type (default = default). Valid values: default, specify, apcfg.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    apFamily string
    FortiAP family type (default = fap). Valid values: fap, fap-u, fap-c.
    commandLists ObjectWirelesscontrollerApcfgprofileCommandList[]
    Command-List. The structure of command_list block is documented below.
    comment string
    Comment.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    name string
    AP local configuration profile name.
    objectWirelesscontrollerApcfgprofileId string
    an identifier for the resource with format {{name}}.
    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.
    ac_ip str
    IP address of the validation controller that AP must be able to join after applying AP local configuration.
    ac_port float
    Port of the validation controller that AP must be able to join after applying AP local configuration (1024 - 49150, default = 5246).
    ac_timer float
    Maximum waiting time for the AP to join the validation controller after applying AP local configuration (3 - 30 min, default = 10).
    ac_type str
    Validation controller type (default = default). Valid values: default, specify, apcfg.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ap_family str
    FortiAP family type (default = fap). Valid values: fap, fap-u, fap-c.
    command_lists Sequence[ObjectWirelesscontrollerApcfgprofileCommandListArgs]
    Command-List. The structure of command_list block is documented below.
    comment str
    Comment.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    name str
    AP local configuration profile name.
    object_wirelesscontroller_apcfgprofile_id str
    an identifier for the resource with format {{name}}.
    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.
    acIp String
    IP address of the validation controller that AP must be able to join after applying AP local configuration.
    acPort Number
    Port of the validation controller that AP must be able to join after applying AP local configuration (1024 - 49150, default = 5246).
    acTimer Number
    Maximum waiting time for the AP to join the validation controller after applying AP local configuration (3 - 30 min, default = 10).
    acType String
    Validation controller type (default = default). Valid values: default, specify, apcfg.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    apFamily String
    FortiAP family type (default = fap). Valid values: fap, fap-u, fap-c.
    commandLists List<Property Map>
    Command-List. The structure of command_list block is documented below.
    comment String
    Comment.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    name String
    AP local configuration profile name.
    objectWirelesscontrollerApcfgprofileId String
    an identifier for the resource with format {{name}}.
    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.

    Supporting Types

    ObjectWirelesscontrollerApcfgprofileCommandList, ObjectWirelesscontrollerApcfgprofileCommandListArgs

    Id double
    Command ID.
    Name string
    AP local configuration command name.
    PasswdValues List<string>
    AP local configuration command password value.
    Type string
    The command type (default = non-password). Valid values: non-password, password.
    Value string
    AP local configuration command value.
    Id float64
    Command ID.
    Name string
    AP local configuration command name.
    PasswdValues []string
    AP local configuration command password value.
    Type string
    The command type (default = non-password). Valid values: non-password, password.
    Value string
    AP local configuration command value.
    id Double
    Command ID.
    name String
    AP local configuration command name.
    passwdValues List<String>
    AP local configuration command password value.
    type String
    The command type (default = non-password). Valid values: non-password, password.
    value String
    AP local configuration command value.
    id number
    Command ID.
    name string
    AP local configuration command name.
    passwdValues string[]
    AP local configuration command password value.
    type string
    The command type (default = non-password). Valid values: non-password, password.
    value string
    AP local configuration command value.
    id float
    Command ID.
    name str
    AP local configuration command name.
    passwd_values Sequence[str]
    AP local configuration command password value.
    type str
    The command type (default = non-password). Valid values: non-password, password.
    value str
    AP local configuration command value.
    id Number
    Command ID.
    name String
    AP local configuration command name.
    passwdValues List<String>
    AP local configuration command password value.
    type String
    The command type (default = non-password). Valid values: non-password, password.
    value String
    AP local configuration command value.

    Import

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectWirelesscontrollerApcfgprofile:ObjectWirelesscontrollerApcfgprofile 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.
    fortimanager logo
    fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev