1. Registry
  2. Packages
  3. Fortimanager Provider
  4. API Docs
  5. ObjectWirelesscontrollerLwprofile
Viewing docs for fortimanager 1.18.0
published on Friday, Jul 31, 2026 by fortinetdev
Viewing docs for fortimanager 1.18.0
published on Friday, Jul 31, 2026 by fortinetdev

    Configure LoRaWAN profile.

    Create ObjectWirelesscontrollerLwprofile Resource

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

    Constructor syntax

    new ObjectWirelesscontrollerLwprofile(name: string, args?: ObjectWirelesscontrollerLwprofileArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectWirelesscontrollerLwprofile(resource_name: str,
                                          args: Optional[ObjectWirelesscontrollerLwprofileArgs] = None,
                                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectWirelesscontrollerLwprofile(resource_name: str,
                                          opts: Optional[ResourceOptions] = None,
                                          adom: Optional[str] = None,
                                          comment: Optional[str] = None,
                                          cups_api_keys: Optional[Sequence[str]] = None,
                                          cups_server: Optional[str] = None,
                                          cups_server_port: Optional[float] = None,
                                          lw_protocol: Optional[str] = None,
                                          name: Optional[str] = None,
                                          object_wirelesscontroller_lwprofile_id: Optional[str] = None,
                                          scopetype: Optional[str] = None,
                                          tc_api_keys: Optional[Sequence[str]] = None,
                                          tc_server: Optional[str] = None,
                                          tc_server_port: Optional[float] = None,
                                          update_if_exist: Optional[bool] = None)
    func NewObjectWirelesscontrollerLwprofile(ctx *Context, name string, args *ObjectWirelesscontrollerLwprofileArgs, opts ...ResourceOption) (*ObjectWirelesscontrollerLwprofile, error)
    public ObjectWirelesscontrollerLwprofile(string name, ObjectWirelesscontrollerLwprofileArgs? args = null, CustomResourceOptions? opts = null)
    public ObjectWirelesscontrollerLwprofile(String name, ObjectWirelesscontrollerLwprofileArgs args)
    public ObjectWirelesscontrollerLwprofile(String name, ObjectWirelesscontrollerLwprofileArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectWirelesscontrollerLwprofile
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "fortimanager_object_wirelesscontroller_lwprofile" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args ObjectWirelesscontrollerLwprofileArgs
    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 ObjectWirelesscontrollerLwprofileArgs
    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 ObjectWirelesscontrollerLwprofileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectWirelesscontrollerLwprofileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectWirelesscontrollerLwprofileArgs
    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 objectWirelesscontrollerLwprofileResource = new Fortimanager.ObjectWirelesscontrollerLwprofile("objectWirelesscontrollerLwprofileResource", new()
    {
        Adom = "string",
        Comment = "string",
        CupsApiKeys = new[]
        {
            "string",
        },
        CupsServer = "string",
        CupsServerPort = 0,
        LwProtocol = "string",
        Name = "string",
        ObjectWirelesscontrollerLwprofileId = "string",
        Scopetype = "string",
        TcApiKeys = new[]
        {
            "string",
        },
        TcServer = "string",
        TcServerPort = 0,
        UpdateIfExist = false,
    });
    
    example, err := fortimanager.NewObjectWirelesscontrollerLwprofile(ctx, "objectWirelesscontrollerLwprofileResource", &fortimanager.ObjectWirelesscontrollerLwprofileArgs{
    	Adom:    pulumi.String("string"),
    	Comment: pulumi.String("string"),
    	CupsApiKeys: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	CupsServer:                          pulumi.String("string"),
    	CupsServerPort:                      pulumi.Float64(0),
    	LwProtocol:                          pulumi.String("string"),
    	Name:                                pulumi.String("string"),
    	ObjectWirelesscontrollerLwprofileId: pulumi.String("string"),
    	Scopetype:                           pulumi.String("string"),
    	TcApiKeys: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	TcServer:      pulumi.String("string"),
    	TcServerPort:  pulumi.Float64(0),
    	UpdateIfExist: pulumi.Bool(false),
    })
    
    resource "fortimanager_object_wirelesscontroller_lwprofile" "objectWirelesscontrollerLwprofileResource" {
      lifecycle {
        create_before_destroy = true
      }
      adom                                   = "string"
      comment                                = "string"
      cups_api_keys                          = ["string"]
      cups_server                            = "string"
      cups_server_port                       = 0
      lw_protocol                            = "string"
      name                                   = "string"
      object_wirelesscontroller_lwprofile_id = "string"
      scopetype                              = "string"
      tc_api_keys                            = ["string"]
      tc_server                              = "string"
      tc_server_port                         = 0
      update_if_exist                        = false
    }
    
    var objectWirelesscontrollerLwprofileResource = new ObjectWirelesscontrollerLwprofile("objectWirelesscontrollerLwprofileResource", ObjectWirelesscontrollerLwprofileArgs.builder()
        .adom("string")
        .comment("string")
        .cupsApiKeys("string")
        .cupsServer("string")
        .cupsServerPort(0.0)
        .lwProtocol("string")
        .name("string")
        .objectWirelesscontrollerLwprofileId("string")
        .scopetype("string")
        .tcApiKeys("string")
        .tcServer("string")
        .tcServerPort(0.0)
        .updateIfExist(false)
        .build());
    
    object_wirelesscontroller_lwprofile_resource = fortimanager.ObjectWirelesscontrollerLwprofile("objectWirelesscontrollerLwprofileResource",
        adom="string",
        comment="string",
        cups_api_keys=["string"],
        cups_server="string",
        cups_server_port=float(0),
        lw_protocol="string",
        name="string",
        object_wirelesscontroller_lwprofile_id="string",
        scopetype="string",
        tc_api_keys=["string"],
        tc_server="string",
        tc_server_port=float(0),
        update_if_exist=False)
    
    const objectWirelesscontrollerLwprofileResource = new fortimanager.ObjectWirelesscontrollerLwprofile("objectWirelesscontrollerLwprofileResource", {
        adom: "string",
        comment: "string",
        cupsApiKeys: ["string"],
        cupsServer: "string",
        cupsServerPort: 0,
        lwProtocol: "string",
        name: "string",
        objectWirelesscontrollerLwprofileId: "string",
        scopetype: "string",
        tcApiKeys: ["string"],
        tcServer: "string",
        tcServerPort: 0,
        updateIfExist: false,
    });
    
    type: fortimanager:ObjectWirelesscontrollerLwprofile
    properties:
        adom: string
        comment: string
        cupsApiKeys:
            - string
        cupsServer: string
        cupsServerPort: 0
        lwProtocol: string
        name: string
        objectWirelesscontrollerLwprofileId: string
        scopetype: string
        tcApiKeys:
            - string
        tcServer: string
        tcServerPort: 0
        updateIfExist: false
    

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

    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Comment string
    Comment.
    CupsApiKeys List<string>
    CUPS API key of LoRaWAN device.
    CupsServer string
    CUPS (Configuration and Update Server) domain name or IP address of LoRaWAN device.
    CupsServerPort double
    CUPS Port value of LoRaWAN device.
    LwProtocol string
    Configure LoRaWAN protocol (default = basics-station) Valid values: basics-station, packet-forwarder.
    Name string
    LoRaWAN profile name.
    ObjectWirelesscontrollerLwprofileId 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.
    TcApiKeys List<string>
    TC API key of LoRaWAN device.
    TcServer string
    TC (Traffic Controller) domain name or IP address of LoRaWAN device.
    TcServerPort double
    TC Port value of LoRaWAN device.
    UpdateIfExist bool
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Comment string
    Comment.
    CupsApiKeys []string
    CUPS API key of LoRaWAN device.
    CupsServer string
    CUPS (Configuration and Update Server) domain name or IP address of LoRaWAN device.
    CupsServerPort float64
    CUPS Port value of LoRaWAN device.
    LwProtocol string
    Configure LoRaWAN protocol (default = basics-station) Valid values: basics-station, packet-forwarder.
    Name string
    LoRaWAN profile name.
    ObjectWirelesscontrollerLwprofileId 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.
    TcApiKeys []string
    TC API key of LoRaWAN device.
    TcServer string
    TC (Traffic Controller) domain name or IP address of LoRaWAN device.
    TcServerPort float64
    TC Port value of LoRaWAN device.
    UpdateIfExist bool
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment string
    Comment.
    cups_api_keys list(string)
    CUPS API key of LoRaWAN device.
    cups_server string
    CUPS (Configuration and Update Server) domain name or IP address of LoRaWAN device.
    cups_server_port number
    CUPS Port value of LoRaWAN device.
    lw_protocol string
    Configure LoRaWAN protocol (default = basics-station) Valid values: basics-station, packet-forwarder.
    name string
    LoRaWAN profile name.
    object_wirelesscontroller_lwprofile_id 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.
    tc_api_keys list(string)
    TC API key of LoRaWAN device.
    tc_server string
    TC (Traffic Controller) domain name or IP address of LoRaWAN device.
    tc_server_port number
    TC Port value of LoRaWAN device.
    update_if_exist bool
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment String
    Comment.
    cupsApiKeys List<String>
    CUPS API key of LoRaWAN device.
    cupsServer String
    CUPS (Configuration and Update Server) domain name or IP address of LoRaWAN device.
    cupsServerPort Double
    CUPS Port value of LoRaWAN device.
    lwProtocol String
    Configure LoRaWAN protocol (default = basics-station) Valid values: basics-station, packet-forwarder.
    name String
    LoRaWAN profile name.
    objectWirelesscontrollerLwprofileId 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.
    tcApiKeys List<String>
    TC API key of LoRaWAN device.
    tcServer String
    TC (Traffic Controller) domain name or IP address of LoRaWAN device.
    tcServerPort Double
    TC Port value of LoRaWAN device.
    updateIfExist Boolean
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment string
    Comment.
    cupsApiKeys string[]
    CUPS API key of LoRaWAN device.
    cupsServer string
    CUPS (Configuration and Update Server) domain name or IP address of LoRaWAN device.
    cupsServerPort number
    CUPS Port value of LoRaWAN device.
    lwProtocol string
    Configure LoRaWAN protocol (default = basics-station) Valid values: basics-station, packet-forwarder.
    name string
    LoRaWAN profile name.
    objectWirelesscontrollerLwprofileId 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.
    tcApiKeys string[]
    TC API key of LoRaWAN device.
    tcServer string
    TC (Traffic Controller) domain name or IP address of LoRaWAN device.
    tcServerPort number
    TC Port value of LoRaWAN device.
    updateIfExist boolean
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment str
    Comment.
    cups_api_keys Sequence[str]
    CUPS API key of LoRaWAN device.
    cups_server str
    CUPS (Configuration and Update Server) domain name or IP address of LoRaWAN device.
    cups_server_port float
    CUPS Port value of LoRaWAN device.
    lw_protocol str
    Configure LoRaWAN protocol (default = basics-station) Valid values: basics-station, packet-forwarder.
    name str
    LoRaWAN profile name.
    object_wirelesscontroller_lwprofile_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.
    tc_api_keys Sequence[str]
    TC API key of LoRaWAN device.
    tc_server str
    TC (Traffic Controller) domain name or IP address of LoRaWAN device.
    tc_server_port float
    TC Port value of LoRaWAN device.
    update_if_exist bool
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment String
    Comment.
    cupsApiKeys List<String>
    CUPS API key of LoRaWAN device.
    cupsServer String
    CUPS (Configuration and Update Server) domain name or IP address of LoRaWAN device.
    cupsServerPort Number
    CUPS Port value of LoRaWAN device.
    lwProtocol String
    Configure LoRaWAN protocol (default = basics-station) Valid values: basics-station, packet-forwarder.
    name String
    LoRaWAN profile name.
    objectWirelesscontrollerLwprofileId 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.
    tcApiKeys List<String>
    TC API key of LoRaWAN device.
    tcServer String
    TC (Traffic Controller) domain name or IP address of LoRaWAN device.
    tcServerPort Number
    TC Port value of LoRaWAN device.
    updateIfExist Boolean

    Outputs

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

    Get an existing ObjectWirelesscontrollerLwprofile 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?: ObjectWirelesscontrollerLwprofileState, opts?: CustomResourceOptions): ObjectWirelesscontrollerLwprofile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            comment: Optional[str] = None,
            cups_api_keys: Optional[Sequence[str]] = None,
            cups_server: Optional[str] = None,
            cups_server_port: Optional[float] = None,
            lw_protocol: Optional[str] = None,
            name: Optional[str] = None,
            object_wirelesscontroller_lwprofile_id: Optional[str] = None,
            scopetype: Optional[str] = None,
            tc_api_keys: Optional[Sequence[str]] = None,
            tc_server: Optional[str] = None,
            tc_server_port: Optional[float] = None,
            update_if_exist: Optional[bool] = None) -> ObjectWirelesscontrollerLwprofile
    func GetObjectWirelesscontrollerLwprofile(ctx *Context, name string, id IDInput, state *ObjectWirelesscontrollerLwprofileState, opts ...ResourceOption) (*ObjectWirelesscontrollerLwprofile, error)
    public static ObjectWirelesscontrollerLwprofile Get(string name, Input<string> id, ObjectWirelesscontrollerLwprofileState? state, CustomResourceOptions? opts = null)
    public static ObjectWirelesscontrollerLwprofile get(String name, Output<String> id, ObjectWirelesscontrollerLwprofileState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectWirelesscontrollerLwprofile    get:      id: ${id}
    import {
      to = fortimanager_object_wirelesscontroller_lwprofile.example
      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.
    Comment string
    Comment.
    CupsApiKeys List<string>
    CUPS API key of LoRaWAN device.
    CupsServer string
    CUPS (Configuration and Update Server) domain name or IP address of LoRaWAN device.
    CupsServerPort double
    CUPS Port value of LoRaWAN device.
    LwProtocol string
    Configure LoRaWAN protocol (default = basics-station) Valid values: basics-station, packet-forwarder.
    Name string
    LoRaWAN profile name.
    ObjectWirelesscontrollerLwprofileId 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.
    TcApiKeys List<string>
    TC API key of LoRaWAN device.
    TcServer string
    TC (Traffic Controller) domain name or IP address of LoRaWAN device.
    TcServerPort double
    TC Port value of LoRaWAN device.
    UpdateIfExist bool
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Comment string
    Comment.
    CupsApiKeys []string
    CUPS API key of LoRaWAN device.
    CupsServer string
    CUPS (Configuration and Update Server) domain name or IP address of LoRaWAN device.
    CupsServerPort float64
    CUPS Port value of LoRaWAN device.
    LwProtocol string
    Configure LoRaWAN protocol (default = basics-station) Valid values: basics-station, packet-forwarder.
    Name string
    LoRaWAN profile name.
    ObjectWirelesscontrollerLwprofileId 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.
    TcApiKeys []string
    TC API key of LoRaWAN device.
    TcServer string
    TC (Traffic Controller) domain name or IP address of LoRaWAN device.
    TcServerPort float64
    TC Port value of LoRaWAN device.
    UpdateIfExist bool
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment string
    Comment.
    cups_api_keys list(string)
    CUPS API key of LoRaWAN device.
    cups_server string
    CUPS (Configuration and Update Server) domain name or IP address of LoRaWAN device.
    cups_server_port number
    CUPS Port value of LoRaWAN device.
    lw_protocol string
    Configure LoRaWAN protocol (default = basics-station) Valid values: basics-station, packet-forwarder.
    name string
    LoRaWAN profile name.
    object_wirelesscontroller_lwprofile_id 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.
    tc_api_keys list(string)
    TC API key of LoRaWAN device.
    tc_server string
    TC (Traffic Controller) domain name or IP address of LoRaWAN device.
    tc_server_port number
    TC Port value of LoRaWAN device.
    update_if_exist bool
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment String
    Comment.
    cupsApiKeys List<String>
    CUPS API key of LoRaWAN device.
    cupsServer String
    CUPS (Configuration and Update Server) domain name or IP address of LoRaWAN device.
    cupsServerPort Double
    CUPS Port value of LoRaWAN device.
    lwProtocol String
    Configure LoRaWAN protocol (default = basics-station) Valid values: basics-station, packet-forwarder.
    name String
    LoRaWAN profile name.
    objectWirelesscontrollerLwprofileId 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.
    tcApiKeys List<String>
    TC API key of LoRaWAN device.
    tcServer String
    TC (Traffic Controller) domain name or IP address of LoRaWAN device.
    tcServerPort Double
    TC Port value of LoRaWAN device.
    updateIfExist Boolean
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment string
    Comment.
    cupsApiKeys string[]
    CUPS API key of LoRaWAN device.
    cupsServer string
    CUPS (Configuration and Update Server) domain name or IP address of LoRaWAN device.
    cupsServerPort number
    CUPS Port value of LoRaWAN device.
    lwProtocol string
    Configure LoRaWAN protocol (default = basics-station) Valid values: basics-station, packet-forwarder.
    name string
    LoRaWAN profile name.
    objectWirelesscontrollerLwprofileId 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.
    tcApiKeys string[]
    TC API key of LoRaWAN device.
    tcServer string
    TC (Traffic Controller) domain name or IP address of LoRaWAN device.
    tcServerPort number
    TC Port value of LoRaWAN device.
    updateIfExist boolean
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment str
    Comment.
    cups_api_keys Sequence[str]
    CUPS API key of LoRaWAN device.
    cups_server str
    CUPS (Configuration and Update Server) domain name or IP address of LoRaWAN device.
    cups_server_port float
    CUPS Port value of LoRaWAN device.
    lw_protocol str
    Configure LoRaWAN protocol (default = basics-station) Valid values: basics-station, packet-forwarder.
    name str
    LoRaWAN profile name.
    object_wirelesscontroller_lwprofile_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.
    tc_api_keys Sequence[str]
    TC API key of LoRaWAN device.
    tc_server str
    TC (Traffic Controller) domain name or IP address of LoRaWAN device.
    tc_server_port float
    TC Port value of LoRaWAN device.
    update_if_exist bool
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment String
    Comment.
    cupsApiKeys List<String>
    CUPS API key of LoRaWAN device.
    cupsServer String
    CUPS (Configuration and Update Server) domain name or IP address of LoRaWAN device.
    cupsServerPort Number
    CUPS Port value of LoRaWAN device.
    lwProtocol String
    Configure LoRaWAN protocol (default = basics-station) Valid values: basics-station, packet-forwarder.
    name String
    LoRaWAN profile name.
    objectWirelesscontrollerLwprofileId 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.
    tcApiKeys List<String>
    TC API key of LoRaWAN device.
    tcServer String
    TC (Traffic Controller) domain name or IP address of LoRaWAN device.
    tcServerPort Number
    TC Port value of LoRaWAN device.
    updateIfExist Boolean

    Import

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectWirelesscontrollerLwprofile:ObjectWirelesscontrollerLwprofile 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.
    Viewing docs for fortimanager 1.18.0
    published on Friday, Jul 31, 2026 by fortinetdev

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial