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

fortimanager.ObjectWirelesscontrollerWtpprofilePlatform

Explore with Pulumi AI

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

    WTP, FortiAP, or AP platform.

    This resource is a sub resource for variable platform of resource fortimanager.ObjectWirelesscontrollerWtpprofile. 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 trname6 = new fortimanager.ObjectWirelesscontrollerWtpprofile("trname6", {});
    const trname = new fortimanager.ObjectWirelesscontrollerWtpprofilePlatform("trname", {
        _localPlatformStr: "platfor",
        wtpProfile: trname6.name,
    }, {
        dependsOn: [trname6],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname6 = fortimanager.ObjectWirelesscontrollerWtpprofile("trname6")
    trname = fortimanager.ObjectWirelesscontrollerWtpprofilePlatform("trname",
        _local_platform_str="platfor",
        wtp_profile=trname6.name,
        opts = pulumi.ResourceOptions(depends_on=[trname6]))
    
    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 {
    		trname6, err := fortimanager.NewObjectWirelesscontrollerWtpprofile(ctx, "trname6", nil)
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectWirelesscontrollerWtpprofilePlatform(ctx, "trname", &fortimanager.ObjectWirelesscontrollerWtpprofilePlatformArgs{
    			_localPlatformStr: pulumi.String("platfor"),
    			WtpProfile:        trname6.Name,
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trname6,
    		}))
    		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 trname6 = new Fortimanager.ObjectWirelesscontrollerWtpprofile("trname6");
    
        var trname = new Fortimanager.ObjectWirelesscontrollerWtpprofilePlatform("trname", new()
        {
            _localPlatformStr = "platfor",
            WtpProfile = trname6.Name,
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trname6,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectWirelesscontrollerWtpprofile;
    import com.pulumi.fortimanager.ObjectWirelesscontrollerWtpprofilePlatform;
    import com.pulumi.fortimanager.ObjectWirelesscontrollerWtpprofilePlatformArgs;
    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 trname6 = new ObjectWirelesscontrollerWtpprofile("trname6");
    
            var trname = new ObjectWirelesscontrollerWtpprofilePlatform("trname", ObjectWirelesscontrollerWtpprofilePlatformArgs.builder()
                ._localPlatformStr("platfor")
                .wtpProfile(trname6.name())
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trname6)
                    .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:ObjectWirelesscontrollerWtpprofilePlatform
        properties:
          _localPlatformStr: platfor
          wtpProfile: ${trname6.name}
        options:
          dependsOn:
            - ${trname6}
      trname6:
        type: fortimanager:ObjectWirelesscontrollerWtpprofile
    

    Create ObjectWirelesscontrollerWtpprofilePlatform Resource

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

    Constructor syntax

    new ObjectWirelesscontrollerWtpprofilePlatform(name: string, args: ObjectWirelesscontrollerWtpprofilePlatformArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectWirelesscontrollerWtpprofilePlatform(resource_name: str,
                                                   args: ObjectWirelesscontrollerWtpprofilePlatformInitArgs,
                                                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectWirelesscontrollerWtpprofilePlatform(resource_name: str,
                                                   opts: Optional[ResourceOptions] = None,
                                                   wtp_profile: Optional[str] = None,
                                                   _local_platform_str: Optional[str] = None,
                                                   adom: Optional[str] = None,
                                                   ddscan: Optional[str] = None,
                                                   mode: Optional[str] = None,
                                                   object_wirelesscontroller_wtpprofile_platform_id: Optional[str] = None,
                                                   scopetype: Optional[str] = None,
                                                   type: Optional[str] = None)
    func NewObjectWirelesscontrollerWtpprofilePlatform(ctx *Context, name string, args ObjectWirelesscontrollerWtpprofilePlatformArgs, opts ...ResourceOption) (*ObjectWirelesscontrollerWtpprofilePlatform, error)
    public ObjectWirelesscontrollerWtpprofilePlatform(string name, ObjectWirelesscontrollerWtpprofilePlatformArgs args, CustomResourceOptions? opts = null)
    public ObjectWirelesscontrollerWtpprofilePlatform(String name, ObjectWirelesscontrollerWtpprofilePlatformArgs args)
    public ObjectWirelesscontrollerWtpprofilePlatform(String name, ObjectWirelesscontrollerWtpprofilePlatformArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectWirelesscontrollerWtpprofilePlatform
    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 ObjectWirelesscontrollerWtpprofilePlatformArgs
    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 ObjectWirelesscontrollerWtpprofilePlatformInitArgs
    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 ObjectWirelesscontrollerWtpprofilePlatformArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectWirelesscontrollerWtpprofilePlatformArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectWirelesscontrollerWtpprofilePlatformArgs
    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 objectWirelesscontrollerWtpprofilePlatformResource = new Fortimanager.ObjectWirelesscontrollerWtpprofilePlatform("objectWirelesscontrollerWtpprofilePlatformResource", new()
    {
        WtpProfile = "string",
        _localPlatformStr = "string",
        Adom = "string",
        Ddscan = "string",
        Mode = "string",
        ObjectWirelesscontrollerWtpprofilePlatformId = "string",
        Scopetype = "string",
        Type = "string",
    });
    
    example, err := fortimanager.NewObjectWirelesscontrollerWtpprofilePlatform(ctx, "objectWirelesscontrollerWtpprofilePlatformResource", &fortimanager.ObjectWirelesscontrollerWtpprofilePlatformArgs{
    WtpProfile: pulumi.String("string"),
    _localPlatformStr: pulumi.String("string"),
    Adom: pulumi.String("string"),
    Ddscan: pulumi.String("string"),
    Mode: pulumi.String("string"),
    ObjectWirelesscontrollerWtpprofilePlatformId: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    Type: pulumi.String("string"),
    })
    
    var objectWirelesscontrollerWtpprofilePlatformResource = new ObjectWirelesscontrollerWtpprofilePlatform("objectWirelesscontrollerWtpprofilePlatformResource", ObjectWirelesscontrollerWtpprofilePlatformArgs.builder()
        .wtpProfile("string")
        ._localPlatformStr("string")
        .adom("string")
        .ddscan("string")
        .mode("string")
        .objectWirelesscontrollerWtpprofilePlatformId("string")
        .scopetype("string")
        .type("string")
        .build());
    
    object_wirelesscontroller_wtpprofile_platform_resource = fortimanager.ObjectWirelesscontrollerWtpprofilePlatform("objectWirelesscontrollerWtpprofilePlatformResource",
        wtp_profile="string",
        _local_platform_str="string",
        adom="string",
        ddscan="string",
        mode="string",
        object_wirelesscontroller_wtpprofile_platform_id="string",
        scopetype="string",
        type="string")
    
    const objectWirelesscontrollerWtpprofilePlatformResource = new fortimanager.ObjectWirelesscontrollerWtpprofilePlatform("objectWirelesscontrollerWtpprofilePlatformResource", {
        wtpProfile: "string",
        _localPlatformStr: "string",
        adom: "string",
        ddscan: "string",
        mode: "string",
        objectWirelesscontrollerWtpprofilePlatformId: "string",
        scopetype: "string",
        type: "string",
    });
    
    type: fortimanager:ObjectWirelesscontrollerWtpprofilePlatform
    properties:
        _localPlatformStr: string
        adom: string
        ddscan: string
        mode: string
        objectWirelesscontrollerWtpprofilePlatformId: string
        scopetype: string
        type: string
        wtpProfile: string
    

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

    WtpProfile string
    Wtp Profile.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Ddscan string
    Enable/disable use of one radio for dedicated dual-band scanning to detect RF characterization and wireless threat management. Valid values: disable, enable.
    Mode string
    Configure operation mode of 5G radios (default = single-5G). Valid values: dual-5G, single-5G.
    ObjectWirelesscontrollerWtpprofilePlatformId string
    an identifier for the resource.
    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.
    Type string
    WTP, FortiAP or AP platform type. There are built-in WTP profiles for all supported FortiAP models. You can select a built-in profile and customize it or create a new profile. Valid values: 30B-50B, 60B, 80CM-81CM, 220A, 220B, 210B, 60C, 222B, 112B, 320B, 11C, 14C, 223B, 28C, 320C, 221C, 25D, 222C, 224D, 214B, 21D, 24D, 112D, 223C, 321C, C220C, C225C, S321C, S323C, FWF, S311C, S313C, AP-11N, S322C, S321CR, S322CR, S323CR, S421E, S422E, S423E, 421E, 423E, C221E, C226E, C23JD, C24JE, C21D, U421E, U423E, 221E, 222E, 223E, S221E, S223E, U221EV, U223EV, U321EV, U323EV, 224E, U422EV, U24JEV, 321E, U431F, U433F, 231E, 431F, 433F, 231F, 432F, 234F, 23JF, U231F, 831F, U234F, U432F.
    _localPlatformStr string
    _Local_Platform_Str.
    WtpProfile string
    Wtp Profile.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Ddscan string
    Enable/disable use of one radio for dedicated dual-band scanning to detect RF characterization and wireless threat management. Valid values: disable, enable.
    Mode string
    Configure operation mode of 5G radios (default = single-5G). Valid values: dual-5G, single-5G.
    ObjectWirelesscontrollerWtpprofilePlatformId string
    an identifier for the resource.
    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.
    Type string
    WTP, FortiAP or AP platform type. There are built-in WTP profiles for all supported FortiAP models. You can select a built-in profile and customize it or create a new profile. Valid values: 30B-50B, 60B, 80CM-81CM, 220A, 220B, 210B, 60C, 222B, 112B, 320B, 11C, 14C, 223B, 28C, 320C, 221C, 25D, 222C, 224D, 214B, 21D, 24D, 112D, 223C, 321C, C220C, C225C, S321C, S323C, FWF, S311C, S313C, AP-11N, S322C, S321CR, S322CR, S323CR, S421E, S422E, S423E, 421E, 423E, C221E, C226E, C23JD, C24JE, C21D, U421E, U423E, 221E, 222E, 223E, S221E, S223E, U221EV, U223EV, U321EV, U323EV, 224E, U422EV, U24JEV, 321E, U431F, U433F, 231E, 431F, 433F, 231F, 432F, 234F, 23JF, U231F, 831F, U234F, U432F.
    _localPlatformStr string
    _Local_Platform_Str.
    wtpProfile String
    Wtp Profile.
    _localPlatformStr String
    _Local_Platform_Str.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ddscan String
    Enable/disable use of one radio for dedicated dual-band scanning to detect RF characterization and wireless threat management. Valid values: disable, enable.
    mode String
    Configure operation mode of 5G radios (default = single-5G). Valid values: dual-5G, single-5G.
    objectWirelesscontrollerWtpprofilePlatformId String
    an identifier for the resource.
    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.
    type String
    WTP, FortiAP or AP platform type. There are built-in WTP profiles for all supported FortiAP models. You can select a built-in profile and customize it or create a new profile. Valid values: 30B-50B, 60B, 80CM-81CM, 220A, 220B, 210B, 60C, 222B, 112B, 320B, 11C, 14C, 223B, 28C, 320C, 221C, 25D, 222C, 224D, 214B, 21D, 24D, 112D, 223C, 321C, C220C, C225C, S321C, S323C, FWF, S311C, S313C, AP-11N, S322C, S321CR, S322CR, S323CR, S421E, S422E, S423E, 421E, 423E, C221E, C226E, C23JD, C24JE, C21D, U421E, U423E, 221E, 222E, 223E, S221E, S223E, U221EV, U223EV, U321EV, U323EV, 224E, U422EV, U24JEV, 321E, U431F, U433F, 231E, 431F, 433F, 231F, 432F, 234F, 23JF, U231F, 831F, U234F, U432F.
    wtpProfile string
    Wtp Profile.
    _localPlatformStr string
    _Local_Platform_Str.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ddscan string
    Enable/disable use of one radio for dedicated dual-band scanning to detect RF characterization and wireless threat management. Valid values: disable, enable.
    mode string
    Configure operation mode of 5G radios (default = single-5G). Valid values: dual-5G, single-5G.
    objectWirelesscontrollerWtpprofilePlatformId string
    an identifier for the resource.
    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.
    type string
    WTP, FortiAP or AP platform type. There are built-in WTP profiles for all supported FortiAP models. You can select a built-in profile and customize it or create a new profile. Valid values: 30B-50B, 60B, 80CM-81CM, 220A, 220B, 210B, 60C, 222B, 112B, 320B, 11C, 14C, 223B, 28C, 320C, 221C, 25D, 222C, 224D, 214B, 21D, 24D, 112D, 223C, 321C, C220C, C225C, S321C, S323C, FWF, S311C, S313C, AP-11N, S322C, S321CR, S322CR, S323CR, S421E, S422E, S423E, 421E, 423E, C221E, C226E, C23JD, C24JE, C21D, U421E, U423E, 221E, 222E, 223E, S221E, S223E, U221EV, U223EV, U321EV, U323EV, 224E, U422EV, U24JEV, 321E, U431F, U433F, 231E, 431F, 433F, 231F, 432F, 234F, 23JF, U231F, 831F, U234F, U432F.
    wtp_profile str
    Wtp Profile.
    _local_platform_str str
    _Local_Platform_Str.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ddscan str
    Enable/disable use of one radio for dedicated dual-band scanning to detect RF characterization and wireless threat management. Valid values: disable, enable.
    mode str
    Configure operation mode of 5G radios (default = single-5G). Valid values: dual-5G, single-5G.
    object_wirelesscontroller_wtpprofile_platform_id str
    an identifier for the resource.
    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.
    type str
    WTP, FortiAP or AP platform type. There are built-in WTP profiles for all supported FortiAP models. You can select a built-in profile and customize it or create a new profile. Valid values: 30B-50B, 60B, 80CM-81CM, 220A, 220B, 210B, 60C, 222B, 112B, 320B, 11C, 14C, 223B, 28C, 320C, 221C, 25D, 222C, 224D, 214B, 21D, 24D, 112D, 223C, 321C, C220C, C225C, S321C, S323C, FWF, S311C, S313C, AP-11N, S322C, S321CR, S322CR, S323CR, S421E, S422E, S423E, 421E, 423E, C221E, C226E, C23JD, C24JE, C21D, U421E, U423E, 221E, 222E, 223E, S221E, S223E, U221EV, U223EV, U321EV, U323EV, 224E, U422EV, U24JEV, 321E, U431F, U433F, 231E, 431F, 433F, 231F, 432F, 234F, 23JF, U231F, 831F, U234F, U432F.
    wtpProfile String
    Wtp Profile.
    _localPlatformStr String
    _Local_Platform_Str.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ddscan String
    Enable/disable use of one radio for dedicated dual-band scanning to detect RF characterization and wireless threat management. Valid values: disable, enable.
    mode String
    Configure operation mode of 5G radios (default = single-5G). Valid values: dual-5G, single-5G.
    objectWirelesscontrollerWtpprofilePlatformId String
    an identifier for the resource.
    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.
    type String
    WTP, FortiAP or AP platform type. There are built-in WTP profiles for all supported FortiAP models. You can select a built-in profile and customize it or create a new profile. Valid values: 30B-50B, 60B, 80CM-81CM, 220A, 220B, 210B, 60C, 222B, 112B, 320B, 11C, 14C, 223B, 28C, 320C, 221C, 25D, 222C, 224D, 214B, 21D, 24D, 112D, 223C, 321C, C220C, C225C, S321C, S323C, FWF, S311C, S313C, AP-11N, S322C, S321CR, S322CR, S323CR, S421E, S422E, S423E, 421E, 423E, C221E, C226E, C23JD, C24JE, C21D, U421E, U423E, 221E, 222E, 223E, S221E, S223E, U221EV, U223EV, U321EV, U323EV, 224E, U422EV, U24JEV, 321E, U431F, U433F, 231E, 431F, 433F, 231F, 432F, 234F, 23JF, U231F, 831F, U234F, U432F.

    Outputs

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

    Get an existing ObjectWirelesscontrollerWtpprofilePlatform 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?: ObjectWirelesscontrollerWtpprofilePlatformState, opts?: CustomResourceOptions): ObjectWirelesscontrollerWtpprofilePlatform
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            _local_platform_str: Optional[str] = None,
            adom: Optional[str] = None,
            ddscan: Optional[str] = None,
            mode: Optional[str] = None,
            object_wirelesscontroller_wtpprofile_platform_id: Optional[str] = None,
            scopetype: Optional[str] = None,
            type: Optional[str] = None,
            wtp_profile: Optional[str] = None) -> ObjectWirelesscontrollerWtpprofilePlatform
    func GetObjectWirelesscontrollerWtpprofilePlatform(ctx *Context, name string, id IDInput, state *ObjectWirelesscontrollerWtpprofilePlatformState, opts ...ResourceOption) (*ObjectWirelesscontrollerWtpprofilePlatform, error)
    public static ObjectWirelesscontrollerWtpprofilePlatform Get(string name, Input<string> id, ObjectWirelesscontrollerWtpprofilePlatformState? state, CustomResourceOptions? opts = null)
    public static ObjectWirelesscontrollerWtpprofilePlatform get(String name, Output<String> id, ObjectWirelesscontrollerWtpprofilePlatformState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectWirelesscontrollerWtpprofilePlatform    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Ddscan string
    Enable/disable use of one radio for dedicated dual-band scanning to detect RF characterization and wireless threat management. Valid values: disable, enable.
    Mode string
    Configure operation mode of 5G radios (default = single-5G). Valid values: dual-5G, single-5G.
    ObjectWirelesscontrollerWtpprofilePlatformId string
    an identifier for the resource.
    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.
    Type string
    WTP, FortiAP or AP platform type. There are built-in WTP profiles for all supported FortiAP models. You can select a built-in profile and customize it or create a new profile. Valid values: 30B-50B, 60B, 80CM-81CM, 220A, 220B, 210B, 60C, 222B, 112B, 320B, 11C, 14C, 223B, 28C, 320C, 221C, 25D, 222C, 224D, 214B, 21D, 24D, 112D, 223C, 321C, C220C, C225C, S321C, S323C, FWF, S311C, S313C, AP-11N, S322C, S321CR, S322CR, S323CR, S421E, S422E, S423E, 421E, 423E, C221E, C226E, C23JD, C24JE, C21D, U421E, U423E, 221E, 222E, 223E, S221E, S223E, U221EV, U223EV, U321EV, U323EV, 224E, U422EV, U24JEV, 321E, U431F, U433F, 231E, 431F, 433F, 231F, 432F, 234F, 23JF, U231F, 831F, U234F, U432F.
    WtpProfile string
    Wtp Profile.
    _localPlatformStr string
    _Local_Platform_Str.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Ddscan string
    Enable/disable use of one radio for dedicated dual-band scanning to detect RF characterization and wireless threat management. Valid values: disable, enable.
    Mode string
    Configure operation mode of 5G radios (default = single-5G). Valid values: dual-5G, single-5G.
    ObjectWirelesscontrollerWtpprofilePlatformId string
    an identifier for the resource.
    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.
    Type string
    WTP, FortiAP or AP platform type. There are built-in WTP profiles for all supported FortiAP models. You can select a built-in profile and customize it or create a new profile. Valid values: 30B-50B, 60B, 80CM-81CM, 220A, 220B, 210B, 60C, 222B, 112B, 320B, 11C, 14C, 223B, 28C, 320C, 221C, 25D, 222C, 224D, 214B, 21D, 24D, 112D, 223C, 321C, C220C, C225C, S321C, S323C, FWF, S311C, S313C, AP-11N, S322C, S321CR, S322CR, S323CR, S421E, S422E, S423E, 421E, 423E, C221E, C226E, C23JD, C24JE, C21D, U421E, U423E, 221E, 222E, 223E, S221E, S223E, U221EV, U223EV, U321EV, U323EV, 224E, U422EV, U24JEV, 321E, U431F, U433F, 231E, 431F, 433F, 231F, 432F, 234F, 23JF, U231F, 831F, U234F, U432F.
    WtpProfile string
    Wtp Profile.
    _localPlatformStr string
    _Local_Platform_Str.
    _localPlatformStr String
    _Local_Platform_Str.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ddscan String
    Enable/disable use of one radio for dedicated dual-band scanning to detect RF characterization and wireless threat management. Valid values: disable, enable.
    mode String
    Configure operation mode of 5G radios (default = single-5G). Valid values: dual-5G, single-5G.
    objectWirelesscontrollerWtpprofilePlatformId String
    an identifier for the resource.
    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.
    type String
    WTP, FortiAP or AP platform type. There are built-in WTP profiles for all supported FortiAP models. You can select a built-in profile and customize it or create a new profile. Valid values: 30B-50B, 60B, 80CM-81CM, 220A, 220B, 210B, 60C, 222B, 112B, 320B, 11C, 14C, 223B, 28C, 320C, 221C, 25D, 222C, 224D, 214B, 21D, 24D, 112D, 223C, 321C, C220C, C225C, S321C, S323C, FWF, S311C, S313C, AP-11N, S322C, S321CR, S322CR, S323CR, S421E, S422E, S423E, 421E, 423E, C221E, C226E, C23JD, C24JE, C21D, U421E, U423E, 221E, 222E, 223E, S221E, S223E, U221EV, U223EV, U321EV, U323EV, 224E, U422EV, U24JEV, 321E, U431F, U433F, 231E, 431F, 433F, 231F, 432F, 234F, 23JF, U231F, 831F, U234F, U432F.
    wtpProfile String
    Wtp Profile.
    _localPlatformStr string
    _Local_Platform_Str.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ddscan string
    Enable/disable use of one radio for dedicated dual-band scanning to detect RF characterization and wireless threat management. Valid values: disable, enable.
    mode string
    Configure operation mode of 5G radios (default = single-5G). Valid values: dual-5G, single-5G.
    objectWirelesscontrollerWtpprofilePlatformId string
    an identifier for the resource.
    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.
    type string
    WTP, FortiAP or AP platform type. There are built-in WTP profiles for all supported FortiAP models. You can select a built-in profile and customize it or create a new profile. Valid values: 30B-50B, 60B, 80CM-81CM, 220A, 220B, 210B, 60C, 222B, 112B, 320B, 11C, 14C, 223B, 28C, 320C, 221C, 25D, 222C, 224D, 214B, 21D, 24D, 112D, 223C, 321C, C220C, C225C, S321C, S323C, FWF, S311C, S313C, AP-11N, S322C, S321CR, S322CR, S323CR, S421E, S422E, S423E, 421E, 423E, C221E, C226E, C23JD, C24JE, C21D, U421E, U423E, 221E, 222E, 223E, S221E, S223E, U221EV, U223EV, U321EV, U323EV, 224E, U422EV, U24JEV, 321E, U431F, U433F, 231E, 431F, 433F, 231F, 432F, 234F, 23JF, U231F, 831F, U234F, U432F.
    wtpProfile string
    Wtp Profile.
    _local_platform_str str
    _Local_Platform_Str.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ddscan str
    Enable/disable use of one radio for dedicated dual-band scanning to detect RF characterization and wireless threat management. Valid values: disable, enable.
    mode str
    Configure operation mode of 5G radios (default = single-5G). Valid values: dual-5G, single-5G.
    object_wirelesscontroller_wtpprofile_platform_id str
    an identifier for the resource.
    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.
    type str
    WTP, FortiAP or AP platform type. There are built-in WTP profiles for all supported FortiAP models. You can select a built-in profile and customize it or create a new profile. Valid values: 30B-50B, 60B, 80CM-81CM, 220A, 220B, 210B, 60C, 222B, 112B, 320B, 11C, 14C, 223B, 28C, 320C, 221C, 25D, 222C, 224D, 214B, 21D, 24D, 112D, 223C, 321C, C220C, C225C, S321C, S323C, FWF, S311C, S313C, AP-11N, S322C, S321CR, S322CR, S323CR, S421E, S422E, S423E, 421E, 423E, C221E, C226E, C23JD, C24JE, C21D, U421E, U423E, 221E, 222E, 223E, S221E, S223E, U221EV, U223EV, U321EV, U323EV, 224E, U422EV, U24JEV, 321E, U431F, U433F, 231E, 431F, 433F, 231F, 432F, 234F, 23JF, U231F, 831F, U234F, U432F.
    wtp_profile str
    Wtp Profile.
    _localPlatformStr String
    _Local_Platform_Str.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ddscan String
    Enable/disable use of one radio for dedicated dual-band scanning to detect RF characterization and wireless threat management. Valid values: disable, enable.
    mode String
    Configure operation mode of 5G radios (default = single-5G). Valid values: dual-5G, single-5G.
    objectWirelesscontrollerWtpprofilePlatformId String
    an identifier for the resource.
    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.
    type String
    WTP, FortiAP or AP platform type. There are built-in WTP profiles for all supported FortiAP models. You can select a built-in profile and customize it or create a new profile. Valid values: 30B-50B, 60B, 80CM-81CM, 220A, 220B, 210B, 60C, 222B, 112B, 320B, 11C, 14C, 223B, 28C, 320C, 221C, 25D, 222C, 224D, 214B, 21D, 24D, 112D, 223C, 321C, C220C, C225C, S321C, S323C, FWF, S311C, S313C, AP-11N, S322C, S321CR, S322CR, S323CR, S421E, S422E, S423E, 421E, 423E, C221E, C226E, C23JD, C24JE, C21D, U421E, U423E, 221E, 222E, 223E, S221E, S223E, U221EV, U223EV, U321EV, U323EV, 224E, U422EV, U24JEV, 321E, U431F, U433F, 231E, 431F, 433F, 231F, 432F, 234F, 23JF, U231F, 831F, U234F, U432F.
    wtpProfile String
    Wtp Profile.

    Import

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

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectWirelesscontrollerWtpprofilePlatform:ObjectWirelesscontrollerWtpprofilePlatform labelname ObjectWirelessControllerWtpProfilePlatform
    

    $ 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