1. Packages
  2. Openwrt Provider
  3. API Docs
  4. WirelessWifiDevice
openwrt 0.0.20 published on Friday, Mar 7, 2025 by joneshf

openwrt.WirelessWifiDevice

Explore with Pulumi AI

openwrt logo
openwrt 0.0.20 published on Friday, Mar 7, 2025 by joneshf

    The physical radio device.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as openwrt from "@pulumi/openwrt";
    
    const fiveGhz = new openwrt.WirelessWifiDevice("fiveGhz", {
        band: "5g",
        channel: "auto",
        wirelessWifiDeviceId: "cfg123456",
        type: "mac80211",
    });
    
    import pulumi
    import pulumi_openwrt as openwrt
    
    five_ghz = openwrt.WirelessWifiDevice("fiveGhz",
        band="5g",
        channel="auto",
        wireless_wifi_device_id="cfg123456",
        type="mac80211")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/openwrt/openwrt"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := openwrt.NewWirelessWifiDevice(ctx, "fiveGhz", &openwrt.WirelessWifiDeviceArgs{
    			Band:                 pulumi.String("5g"),
    			Channel:              pulumi.String("auto"),
    			WirelessWifiDeviceId: pulumi.String("cfg123456"),
    			Type:                 pulumi.String("mac80211"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Openwrt = Pulumi.Openwrt;
    
    return await Deployment.RunAsync(() => 
    {
        var fiveGhz = new Openwrt.WirelessWifiDevice("fiveGhz", new()
        {
            Band = "5g",
            Channel = "auto",
            WirelessWifiDeviceId = "cfg123456",
            Type = "mac80211",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.openwrt.WirelessWifiDevice;
    import com.pulumi.openwrt.WirelessWifiDeviceArgs;
    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 fiveGhz = new WirelessWifiDevice("fiveGhz", WirelessWifiDeviceArgs.builder()
                .band("5g")
                .channel("auto")
                .wirelessWifiDeviceId("cfg123456")
                .type("mac80211")
                .build());
    
        }
    }
    
    resources:
      fiveGhz:
        type: openwrt:WirelessWifiDevice
        properties:
          band: 5g
          channel: auto
          wirelessWifiDeviceId: cfg123456
          type: mac80211
    

    Create WirelessWifiDevice Resource

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

    Constructor syntax

    new WirelessWifiDevice(name: string, args: WirelessWifiDeviceArgs, opts?: CustomResourceOptions);
    @overload
    def WirelessWifiDevice(resource_name: str,
                           args: WirelessWifiDeviceArgs,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def WirelessWifiDevice(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           channel: Optional[str] = None,
                           type: Optional[str] = None,
                           wireless_wifi_device_id: Optional[str] = None,
                           band: Optional[str] = None,
                           cell_density: Optional[float] = None,
                           country: Optional[str] = None,
                           htmode: Optional[str] = None,
                           path: Optional[str] = None)
    func NewWirelessWifiDevice(ctx *Context, name string, args WirelessWifiDeviceArgs, opts ...ResourceOption) (*WirelessWifiDevice, error)
    public WirelessWifiDevice(string name, WirelessWifiDeviceArgs args, CustomResourceOptions? opts = null)
    public WirelessWifiDevice(String name, WirelessWifiDeviceArgs args)
    public WirelessWifiDevice(String name, WirelessWifiDeviceArgs args, CustomResourceOptions options)
    
    type: openwrt:WirelessWifiDevice
    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 WirelessWifiDeviceArgs
    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 WirelessWifiDeviceArgs
    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 WirelessWifiDeviceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args WirelessWifiDeviceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args WirelessWifiDeviceArgs
    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 wirelessWifiDeviceResource = new Openwrt.WirelessWifiDevice("wirelessWifiDeviceResource", new()
    {
        Channel = "string",
        Type = "string",
        WirelessWifiDeviceId = "string",
        Band = "string",
        CellDensity = 0,
        Country = "string",
        Htmode = "string",
        Path = "string",
    });
    
    example, err := openwrt.NewWirelessWifiDevice(ctx, "wirelessWifiDeviceResource", &openwrt.WirelessWifiDeviceArgs{
    	Channel:              pulumi.String("string"),
    	Type:                 pulumi.String("string"),
    	WirelessWifiDeviceId: pulumi.String("string"),
    	Band:                 pulumi.String("string"),
    	CellDensity:          pulumi.Float64(0),
    	Country:              pulumi.String("string"),
    	Htmode:               pulumi.String("string"),
    	Path:                 pulumi.String("string"),
    })
    
    var wirelessWifiDeviceResource = new WirelessWifiDevice("wirelessWifiDeviceResource", WirelessWifiDeviceArgs.builder()
        .channel("string")
        .type("string")
        .wirelessWifiDeviceId("string")
        .band("string")
        .cellDensity(0)
        .country("string")
        .htmode("string")
        .path("string")
        .build());
    
    wireless_wifi_device_resource = openwrt.WirelessWifiDevice("wirelessWifiDeviceResource",
        channel="string",
        type="string",
        wireless_wifi_device_id="string",
        band="string",
        cell_density=0,
        country="string",
        htmode="string",
        path="string")
    
    const wirelessWifiDeviceResource = new openwrt.WirelessWifiDevice("wirelessWifiDeviceResource", {
        channel: "string",
        type: "string",
        wirelessWifiDeviceId: "string",
        band: "string",
        cellDensity: 0,
        country: "string",
        htmode: "string",
        path: "string",
    });
    
    type: openwrt:WirelessWifiDevice
    properties:
        band: string
        cellDensity: 0
        channel: string
        country: string
        htmode: string
        path: string
        type: string
        wirelessWifiDeviceId: string
    

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

    Channel string
    The wireless channel. Currently, only "auto" is supported.
    Type string
    The type of device. Currently only "mac80211" is supported.
    WirelessWifiDeviceId string
    Name of the section. This name is only used when interacting with UCI directly.
    Band string
    Channel width. Must be one of: "2g", "5g", "6g".
    CellDensity double
    Configures data rates based on the coverage cell density. Must be one of 0, 1, 2, 3.
    Country string
    Two-digit country code. E.g. "US".
    Htmode string
    Channel width. Must be one of: "HE20", "HE40", "HE80", "HE160", "HT20", "HT40", "HT40-", "HT40+", "NONE", "VHT20", "VHT40", "VHT80", "VHT160".
    Path string
    Path of the device in /sys/devices.
    Channel string
    The wireless channel. Currently, only "auto" is supported.
    Type string
    The type of device. Currently only "mac80211" is supported.
    WirelessWifiDeviceId string
    Name of the section. This name is only used when interacting with UCI directly.
    Band string
    Channel width. Must be one of: "2g", "5g", "6g".
    CellDensity float64
    Configures data rates based on the coverage cell density. Must be one of 0, 1, 2, 3.
    Country string
    Two-digit country code. E.g. "US".
    Htmode string
    Channel width. Must be one of: "HE20", "HE40", "HE80", "HE160", "HT20", "HT40", "HT40-", "HT40+", "NONE", "VHT20", "VHT40", "VHT80", "VHT160".
    Path string
    Path of the device in /sys/devices.
    channel String
    The wireless channel. Currently, only "auto" is supported.
    type String
    The type of device. Currently only "mac80211" is supported.
    wirelessWifiDeviceId String
    Name of the section. This name is only used when interacting with UCI directly.
    band String
    Channel width. Must be one of: "2g", "5g", "6g".
    cellDensity Double
    Configures data rates based on the coverage cell density. Must be one of 0, 1, 2, 3.
    country String
    Two-digit country code. E.g. "US".
    htmode String
    Channel width. Must be one of: "HE20", "HE40", "HE80", "HE160", "HT20", "HT40", "HT40-", "HT40+", "NONE", "VHT20", "VHT40", "VHT80", "VHT160".
    path String
    Path of the device in /sys/devices.
    channel string
    The wireless channel. Currently, only "auto" is supported.
    type string
    The type of device. Currently only "mac80211" is supported.
    wirelessWifiDeviceId string
    Name of the section. This name is only used when interacting with UCI directly.
    band string
    Channel width. Must be one of: "2g", "5g", "6g".
    cellDensity number
    Configures data rates based on the coverage cell density. Must be one of 0, 1, 2, 3.
    country string
    Two-digit country code. E.g. "US".
    htmode string
    Channel width. Must be one of: "HE20", "HE40", "HE80", "HE160", "HT20", "HT40", "HT40-", "HT40+", "NONE", "VHT20", "VHT40", "VHT80", "VHT160".
    path string
    Path of the device in /sys/devices.
    channel str
    The wireless channel. Currently, only "auto" is supported.
    type str
    The type of device. Currently only "mac80211" is supported.
    wireless_wifi_device_id str
    Name of the section. This name is only used when interacting with UCI directly.
    band str
    Channel width. Must be one of: "2g", "5g", "6g".
    cell_density float
    Configures data rates based on the coverage cell density. Must be one of 0, 1, 2, 3.
    country str
    Two-digit country code. E.g. "US".
    htmode str
    Channel width. Must be one of: "HE20", "HE40", "HE80", "HE160", "HT20", "HT40", "HT40-", "HT40+", "NONE", "VHT20", "VHT40", "VHT80", "VHT160".
    path str
    Path of the device in /sys/devices.
    channel String
    The wireless channel. Currently, only "auto" is supported.
    type String
    The type of device. Currently only "mac80211" is supported.
    wirelessWifiDeviceId String
    Name of the section. This name is only used when interacting with UCI directly.
    band String
    Channel width. Must be one of: "2g", "5g", "6g".
    cellDensity Number
    Configures data rates based on the coverage cell density. Must be one of 0, 1, 2, 3.
    country String
    Two-digit country code. E.g. "US".
    htmode String
    Channel width. Must be one of: "HE20", "HE40", "HE80", "HE160", "HT20", "HT40", "HT40-", "HT40+", "NONE", "VHT20", "VHT40", "VHT80", "VHT160".
    path String
    Path of the device in /sys/devices.

    Outputs

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

    Get an existing WirelessWifiDevice 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?: WirelessWifiDeviceState, opts?: CustomResourceOptions): WirelessWifiDevice
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            band: Optional[str] = None,
            cell_density: Optional[float] = None,
            channel: Optional[str] = None,
            country: Optional[str] = None,
            htmode: Optional[str] = None,
            path: Optional[str] = None,
            type: Optional[str] = None,
            wireless_wifi_device_id: Optional[str] = None) -> WirelessWifiDevice
    func GetWirelessWifiDevice(ctx *Context, name string, id IDInput, state *WirelessWifiDeviceState, opts ...ResourceOption) (*WirelessWifiDevice, error)
    public static WirelessWifiDevice Get(string name, Input<string> id, WirelessWifiDeviceState? state, CustomResourceOptions? opts = null)
    public static WirelessWifiDevice get(String name, Output<String> id, WirelessWifiDeviceState state, CustomResourceOptions options)
    resources:  _:    type: openwrt:WirelessWifiDevice    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:
    Band string
    Channel width. Must be one of: "2g", "5g", "6g".
    CellDensity double
    Configures data rates based on the coverage cell density. Must be one of 0, 1, 2, 3.
    Channel string
    The wireless channel. Currently, only "auto" is supported.
    Country string
    Two-digit country code. E.g. "US".
    Htmode string
    Channel width. Must be one of: "HE20", "HE40", "HE80", "HE160", "HT20", "HT40", "HT40-", "HT40+", "NONE", "VHT20", "VHT40", "VHT80", "VHT160".
    Path string
    Path of the device in /sys/devices.
    Type string
    The type of device. Currently only "mac80211" is supported.
    WirelessWifiDeviceId string
    Name of the section. This name is only used when interacting with UCI directly.
    Band string
    Channel width. Must be one of: "2g", "5g", "6g".
    CellDensity float64
    Configures data rates based on the coverage cell density. Must be one of 0, 1, 2, 3.
    Channel string
    The wireless channel. Currently, only "auto" is supported.
    Country string
    Two-digit country code. E.g. "US".
    Htmode string
    Channel width. Must be one of: "HE20", "HE40", "HE80", "HE160", "HT20", "HT40", "HT40-", "HT40+", "NONE", "VHT20", "VHT40", "VHT80", "VHT160".
    Path string
    Path of the device in /sys/devices.
    Type string
    The type of device. Currently only "mac80211" is supported.
    WirelessWifiDeviceId string
    Name of the section. This name is only used when interacting with UCI directly.
    band String
    Channel width. Must be one of: "2g", "5g", "6g".
    cellDensity Double
    Configures data rates based on the coverage cell density. Must be one of 0, 1, 2, 3.
    channel String
    The wireless channel. Currently, only "auto" is supported.
    country String
    Two-digit country code. E.g. "US".
    htmode String
    Channel width. Must be one of: "HE20", "HE40", "HE80", "HE160", "HT20", "HT40", "HT40-", "HT40+", "NONE", "VHT20", "VHT40", "VHT80", "VHT160".
    path String
    Path of the device in /sys/devices.
    type String
    The type of device. Currently only "mac80211" is supported.
    wirelessWifiDeviceId String
    Name of the section. This name is only used when interacting with UCI directly.
    band string
    Channel width. Must be one of: "2g", "5g", "6g".
    cellDensity number
    Configures data rates based on the coverage cell density. Must be one of 0, 1, 2, 3.
    channel string
    The wireless channel. Currently, only "auto" is supported.
    country string
    Two-digit country code. E.g. "US".
    htmode string
    Channel width. Must be one of: "HE20", "HE40", "HE80", "HE160", "HT20", "HT40", "HT40-", "HT40+", "NONE", "VHT20", "VHT40", "VHT80", "VHT160".
    path string
    Path of the device in /sys/devices.
    type string
    The type of device. Currently only "mac80211" is supported.
    wirelessWifiDeviceId string
    Name of the section. This name is only used when interacting with UCI directly.
    band str
    Channel width. Must be one of: "2g", "5g", "6g".
    cell_density float
    Configures data rates based on the coverage cell density. Must be one of 0, 1, 2, 3.
    channel str
    The wireless channel. Currently, only "auto" is supported.
    country str
    Two-digit country code. E.g. "US".
    htmode str
    Channel width. Must be one of: "HE20", "HE40", "HE80", "HE160", "HT20", "HT40", "HT40-", "HT40+", "NONE", "VHT20", "VHT40", "VHT80", "VHT160".
    path str
    Path of the device in /sys/devices.
    type str
    The type of device. Currently only "mac80211" is supported.
    wireless_wifi_device_id str
    Name of the section. This name is only used when interacting with UCI directly.
    band String
    Channel width. Must be one of: "2g", "5g", "6g".
    cellDensity Number
    Configures data rates based on the coverage cell density. Must be one of 0, 1, 2, 3.
    channel String
    The wireless channel. Currently, only "auto" is supported.
    country String
    Two-digit country code. E.g. "US".
    htmode String
    Channel width. Must be one of: "HE20", "HE40", "HE80", "HE160", "HT20", "HT40", "HT40-", "HT40+", "NONE", "VHT20", "VHT40", "VHT80", "VHT160".
    path String
    Path of the device in /sys/devices.
    type String
    The type of device. Currently only "mac80211" is supported.
    wirelessWifiDeviceId String
    Name of the section. This name is only used when interacting with UCI directly.

    Import

    Find the Terraform id from LuCI’s JSON-RPC API.

    One way to find this information is with curl and jq:

    curl \

    --data '{"id": 0, "method": "foreach", "params": ["wireless", "wifi-device"]}' \
    
    http://192.168.1.1/cgi-bin/luci/rpc/uci?auth=$AUTH_TOKEN \
    
    | jq '.result | map({terraformId: .[".name"]})'
    

    This command will output something like:

    [

    {

    "terraformId": "cfg123456",
    

    },

    {

    "terraformId": "cfg123457",
    

    }

    ]

    We’d then use the information to import the appropriate resource:

    $ pulumi import openwrt:index/wirelessWifiDevice:WirelessWifiDevice five_ghz cfg123456
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    openwrt joneshf/terraform-provider-openwrt
    License
    Notes
    This Pulumi package is based on the openwrt Terraform Provider.
    openwrt logo
    openwrt 0.0.20 published on Friday, Mar 7, 2025 by joneshf