Juniper Mist v0.2.4 published on Saturday, Mar 1, 2025 by Pulumi
junipermist.device.getApStats
Explore with Pulumi AI
This data source provides the list of Wireless Access Points with their statistics.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as junipermist from "@pulumi/junipermist";
const apStats = junipermist.device.getApStats({
    orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550",
    mac: "5c5b35000000",
    siteId: "4a422ae5-7ca0-4599-87a3-8e49aa63685f",
    status: "connected",
    duration: "1d",
    start: 1736031600,
    end: 1736175934,
});
import pulumi
import pulumi_junipermist as junipermist
ap_stats = junipermist.device.get_ap_stats(org_id="15fca2ac-b1a6-47cc-9953-cc6906281550",
    mac="5c5b35000000",
    site_id="4a422ae5-7ca0-4599-87a3-8e49aa63685f",
    status="connected",
    duration="1d",
    start=1736031600,
    end=1736175934)
package main
import (
	"github.com/pulumi/pulumi-junipermist/sdk/go/junipermist/device"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := device.GetApStats(ctx, &device.GetApStatsArgs{
			OrgId:    "15fca2ac-b1a6-47cc-9953-cc6906281550",
			Mac:      pulumi.StringRef("5c5b35000000"),
			SiteId:   pulumi.StringRef("4a422ae5-7ca0-4599-87a3-8e49aa63685f"),
			Status:   pulumi.StringRef("connected"),
			Duration: pulumi.StringRef("1d"),
			Start:    pulumi.IntRef(1736031600),
			End:      pulumi.IntRef(1736175934),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using JuniperMist = Pulumi.JuniperMist;
return await Deployment.RunAsync(() => 
{
    var apStats = JuniperMist.Device.GetApStats.Invoke(new()
    {
        OrgId = "15fca2ac-b1a6-47cc-9953-cc6906281550",
        Mac = "5c5b35000000",
        SiteId = "4a422ae5-7ca0-4599-87a3-8e49aa63685f",
        Status = "connected",
        Duration = "1d",
        Start = 1736031600,
        End = 1736175934,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.junipermist.device.DeviceFunctions;
import com.pulumi.junipermist.device.inputs.GetApStatsArgs;
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) {
        final var apStats = DeviceFunctions.getApStats(GetApStatsArgs.builder()
            .orgId("15fca2ac-b1a6-47cc-9953-cc6906281550")
            .mac("5c5b35000000")
            .siteId("4a422ae5-7ca0-4599-87a3-8e49aa63685f")
            .status("connected")
            .duration("1d")
            .start(1736031600)
            .end(1736175934)
            .build());
    }
}
variables:
  apStats:
    fn::invoke:
      function: junipermist:device:getApStats
      arguments:
        orgId: 15fca2ac-b1a6-47cc-9953-cc6906281550
        mac: 5c5b35000000
        siteId: 4a422ae5-7ca0-4599-87a3-8e49aa63685f
        status: connected
        duration: 1d
        start: 1.7360316e+09
        end: 1.736175934e+09
Using getApStats
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getApStats(args: GetApStatsArgs, opts?: InvokeOptions): Promise<GetApStatsResult>
function getApStatsOutput(args: GetApStatsOutputArgs, opts?: InvokeOptions): Output<GetApStatsResult>def get_ap_stats(duration: Optional[str] = None,
                 end: Optional[int] = None,
                 mac: Optional[str] = None,
                 org_id: Optional[str] = None,
                 site_id: Optional[str] = None,
                 start: Optional[int] = None,
                 status: Optional[str] = None,
                 opts: Optional[InvokeOptions] = None) -> GetApStatsResult
def get_ap_stats_output(duration: Optional[pulumi.Input[str]] = None,
                 end: Optional[pulumi.Input[int]] = None,
                 mac: Optional[pulumi.Input[str]] = None,
                 org_id: Optional[pulumi.Input[str]] = None,
                 site_id: Optional[pulumi.Input[str]] = None,
                 start: Optional[pulumi.Input[int]] = None,
                 status: Optional[pulumi.Input[str]] = None,
                 opts: Optional[InvokeOptions] = None) -> Output[GetApStatsResult]func GetApStats(ctx *Context, args *GetApStatsArgs, opts ...InvokeOption) (*GetApStatsResult, error)
func GetApStatsOutput(ctx *Context, args *GetApStatsOutputArgs, opts ...InvokeOption) GetApStatsResultOutput> Note: This function is named GetApStats in the Go SDK.
public static class GetApStats 
{
    public static Task<GetApStatsResult> InvokeAsync(GetApStatsArgs args, InvokeOptions? opts = null)
    public static Output<GetApStatsResult> Invoke(GetApStatsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetApStatsResult> getApStats(GetApStatsArgs args, InvokeOptions options)
public static Output<GetApStatsResult> getApStats(GetApStatsArgs args, InvokeOptions options)
fn::invoke:
  function: junipermist:device/getApStats:getApStats
  arguments:
    # arguments dictionaryThe following arguments are supported:
getApStats Result
The following output properties are available:
- DeviceAp List<Pulumi.Stats Juniper Mist. Device. Outputs. Get Ap Stats Device Ap Stat> 
- Id string
- The provider-assigned unique ID for this managed resource.
- OrgId string
- Duration string
- duration like 7d, 2w
- End int
- end datetime, can be epoch or relative time like -1d, -2h; now if not specified
- Mac string
- SiteId string
- Start int
- start datetime, can be epoch or relative time like -1d, -1w; -1d if not specified
- Status string
- DeviceAp []GetStats Ap Stats Device Ap Stat 
- Id string
- The provider-assigned unique ID for this managed resource.
- OrgId string
- Duration string
- duration like 7d, 2w
- End int
- end datetime, can be epoch or relative time like -1d, -2h; now if not specified
- Mac string
- SiteId string
- Start int
- start datetime, can be epoch or relative time like -1d, -1w; -1d if not specified
- Status string
- deviceAp List<GetStats Ap Stats Device Ap Stat> 
- id String
- The provider-assigned unique ID for this managed resource.
- orgId String
- duration String
- duration like 7d, 2w
- end Integer
- end datetime, can be epoch or relative time like -1d, -2h; now if not specified
- mac String
- siteId String
- start Integer
- start datetime, can be epoch or relative time like -1d, -1w; -1d if not specified
- status String
- deviceAp GetStats Ap Stats Device Ap Stat[] 
- id string
- The provider-assigned unique ID for this managed resource.
- orgId string
- duration string
- duration like 7d, 2w
- end number
- end datetime, can be epoch or relative time like -1d, -2h; now if not specified
- mac string
- siteId string
- start number
- start datetime, can be epoch or relative time like -1d, -1w; -1d if not specified
- status string
- device_ap_ Sequence[Getstats Ap Stats Device Ap Stat] 
- id str
- The provider-assigned unique ID for this managed resource.
- org_id str
- duration str
- duration like 7d, 2w
- end int
- end datetime, can be epoch or relative time like -1d, -2h; now if not specified
- mac str
- site_id str
- start int
- start datetime, can be epoch or relative time like -1d, -1w; -1d if not specified
- status str
- deviceAp List<Property Map>Stats 
- id String
- The provider-assigned unique ID for this managed resource.
- orgId String
- duration String
- duration like 7d, 2w
- end Number
- end datetime, can be epoch or relative time like -1d, -2h; now if not specified
- mac String
- siteId String
- start Number
- start datetime, can be epoch or relative time like -1d, -1w; -1d if not specified
- status String
Supporting Types
GetApStatsDeviceApStat     
- AutoPlacement Pulumi.Juniper Mist. Device. Inputs. Get Ap Stats Device Ap Stat Auto Placement 
- AutoUpgrade Pulumi.Stat Juniper Mist. Device. Inputs. Get Ap Stats Device Ap Stat Auto Upgrade Stat 
- BleStat Pulumi.Juniper Mist. Device. Inputs. Get Ap Stats Device Ap Stat Ble Stat 
- CertExpiry double
- ConfigReverted bool
- CpuSystem int
- CpuUtil int
- CreatedTime int
- DeviceprofileId string
- EnvStat Pulumi.Juniper Mist. Device. Inputs. Get Ap Stats Device Ap Stat Env Stat 
- device environment, including CPU temperature, Ambient temperature, Humidity, Attitude, Pressure, Accelerometers, Magnetometers and vCore Voltage
- EslStat Pulumi.Juniper Mist. Device. Inputs. Get Ap Stats Device Ap Stat Esl Stat 
- ExtIp string
- Fwupdate
Pulumi.Juniper Mist. Device. Inputs. Get Ap Stats Device Ap Stat Fwupdate 
- HwRev string
- Id string
- InactiveWired List<int>Vlans 
- IotStat Dictionary<string, Pulumi.Juniper Mist. Device. Inputs. Get Ap Stats Device Ap Stat Iot Stat> 
- Ip string
- IpConfig Pulumi.Juniper Mist. Device. Inputs. Get Ap Stats Device Ap Stat Ip Config 
- IP AP settings
- IpStat Pulumi.Juniper Mist. Device. Inputs. Get Ap Stats Device Ap Stat Ip Stat 
- L2tpStat Dictionary<string, Pulumi.Juniper Mist. Device. Inputs. Get Ap Stats Device Ap Stat L2tp Stat> 
- l2tp tunnel status (key is the wxtunnel*id)
- LastSeen double
- last seen timestamp
- LastTrouble Pulumi.Juniper Mist. Device. Inputs. Get Ap Stats Device Ap Stat Last Trouble 
- last trouble code of switch
- Led
Pulumi.Juniper Mist. Device. Inputs. Get Ap Stats Device Ap Stat Led 
- LED AP settings
- LldpStat Pulumi.Juniper Mist. Device. Inputs. Get Ap Stats Device Ap Stat Lldp Stat 
- LLDP Stat (neighbor information, power negotiations)
- Locating bool
- Locked bool
- whether this AP is considered locked (placement / orientation has been vetted)
- Mac string
- device mac
- MapId string
- MemUsed intKb 
- MeshDownlinks Dictionary<string, Pulumi.Juniper Mist. Device. Inputs. Get Ap Stats Device Ap Stat Mesh Downlinks> 
- Property key is the mesh downlink id (e.g 00000000-0000-0000-1000-5c5b35000010)
- MeshUplink Pulumi.Juniper Mist. Device. Inputs. Get Ap Stats Device Ap Stat Mesh Uplink 
- Model string
- device model
- ModifiedTime int
- Mount string
- Name string
- Notes string
- NumClients int
- how many wireless clients are currently connected
- OrgId string
- PortStat Dictionary<string, Pulumi.Juniper Mist. Device. Inputs. Get Ap Stats Device Ap Stat Port Stat> 
- Property key is the port name (e.g. eth0)
- PowerBudget int
- in mW, surplus if positive or deficit if negative
- PowerConstrained bool
- whether insufficient power
- PowerOpmode string
- constrained mode
- PowerSrc string
- DC Input / PoE 802.3at / PoE 802.3af / LLDP / ? (unknown)
- RadioStat Pulumi.Juniper Mist. Device. Inputs. Get Ap Stats Device Ap Stat Radio Stat 
- RxBps double
- RxBytes int
- RxPkts int
- Serial string
- serial
- SiteId string
- Status string
- SwitchRedundancy Pulumi.Juniper Mist. Device. Inputs. Get Ap Stats Device Ap Stat Switch Redundancy 
- TxBps double
- TxBytes double
- TxPkts double
- Uptime double
- how long, in seconds, has the device been up (or rebooted)
- UsbStat Pulumi.Juniper Mist. Device. Inputs. Get Ap Stats Device Ap Stat Usb Stat 
- Version string
- X double
- Y double
- AutoPlacement GetAp Stats Device Ap Stat Auto Placement 
- AutoUpgrade GetStat Ap Stats Device Ap Stat Auto Upgrade Stat 
- BleStat GetAp Stats Device Ap Stat Ble Stat 
- CertExpiry float64
- ConfigReverted bool
- CpuSystem int
- CpuUtil int
- CreatedTime int
- DeviceprofileId string
- EnvStat GetAp Stats Device Ap Stat Env Stat 
- device environment, including CPU temperature, Ambient temperature, Humidity, Attitude, Pressure, Accelerometers, Magnetometers and vCore Voltage
- EslStat GetAp Stats Device Ap Stat Esl Stat 
- ExtIp string
- Fwupdate
GetAp Stats Device Ap Stat Fwupdate 
- HwRev string
- Id string
- InactiveWired []intVlans 
- IotStat map[string]GetAp Stats Device Ap Stat Iot Stat 
- Ip string
- IpConfig GetAp Stats Device Ap Stat Ip Config 
- IP AP settings
- IpStat GetAp Stats Device Ap Stat Ip Stat 
- L2tpStat map[string]GetAp Stats Device Ap Stat L2tp Stat 
- l2tp tunnel status (key is the wxtunnel*id)
- LastSeen float64
- last seen timestamp
- LastTrouble GetAp Stats Device Ap Stat Last Trouble 
- last trouble code of switch
- Led
GetAp Stats Device Ap Stat Led 
- LED AP settings
- LldpStat GetAp Stats Device Ap Stat Lldp Stat 
- LLDP Stat (neighbor information, power negotiations)
- Locating bool
- Locked bool
- whether this AP is considered locked (placement / orientation has been vetted)
- Mac string
- device mac
- MapId string
- MemUsed intKb 
- MeshDownlinks map[string]GetAp Stats Device Ap Stat Mesh Downlinks 
- Property key is the mesh downlink id (e.g 00000000-0000-0000-1000-5c5b35000010)
- MeshUplink GetAp Stats Device Ap Stat Mesh Uplink 
- Model string
- device model
- ModifiedTime int
- Mount string
- Name string
- Notes string
- NumClients int
- how many wireless clients are currently connected
- OrgId string
- PortStat map[string]GetAp Stats Device Ap Stat Port Stat 
- Property key is the port name (e.g. eth0)
- PowerBudget int
- in mW, surplus if positive or deficit if negative
- PowerConstrained bool
- whether insufficient power
- PowerOpmode string
- constrained mode
- PowerSrc string
- DC Input / PoE 802.3at / PoE 802.3af / LLDP / ? (unknown)
- RadioStat GetAp Stats Device Ap Stat Radio Stat 
- RxBps float64
- RxBytes int
- RxPkts int
- Serial string
- serial
- SiteId string
- Status string
- SwitchRedundancy GetAp Stats Device Ap Stat Switch Redundancy 
- TxBps float64
- TxBytes float64
- TxPkts float64
- Uptime float64
- how long, in seconds, has the device been up (or rebooted)
- UsbStat GetAp Stats Device Ap Stat Usb Stat 
- Version string
- X float64
- Y float64
- autoPlacement GetAp Stats Device Ap Stat Auto Placement 
- autoUpgrade GetStat Ap Stats Device Ap Stat Auto Upgrade Stat 
- bleStat GetAp Stats Device Ap Stat Ble Stat 
- certExpiry Double
- configReverted Boolean
- cpuSystem Integer
- cpuUtil Integer
- createdTime Integer
- deviceprofileId String
- envStat GetAp Stats Device Ap Stat Env Stat 
- device environment, including CPU temperature, Ambient temperature, Humidity, Attitude, Pressure, Accelerometers, Magnetometers and vCore Voltage
- eslStat GetAp Stats Device Ap Stat Esl Stat 
- extIp String
- fwupdate
GetAp Stats Device Ap Stat Fwupdate 
- hwRev String
- id String
- inactiveWired List<Integer>Vlans 
- iotStat Map<String,GetAp Stats Device Ap Stat Iot Stat> 
- ip String
- ipConfig GetAp Stats Device Ap Stat Ip Config 
- IP AP settings
- ipStat GetAp Stats Device Ap Stat Ip Stat 
- l2tpStat Map<String,GetAp Stats Device Ap Stat L2tp Stat> 
- l2tp tunnel status (key is the wxtunnel*id)
- lastSeen Double
- last seen timestamp
- lastTrouble GetAp Stats Device Ap Stat Last Trouble 
- last trouble code of switch
- led
GetAp Stats Device Ap Stat Led 
- LED AP settings
- lldpStat GetAp Stats Device Ap Stat Lldp Stat 
- LLDP Stat (neighbor information, power negotiations)
- locating Boolean
- locked Boolean
- whether this AP is considered locked (placement / orientation has been vetted)
- mac String
- device mac
- mapId String
- memUsed IntegerKb 
- meshDownlinks Map<String,GetAp Stats Device Ap Stat Mesh Downlinks> 
- Property key is the mesh downlink id (e.g 00000000-0000-0000-1000-5c5b35000010)
- meshUplink GetAp Stats Device Ap Stat Mesh Uplink 
- model String
- device model
- modifiedTime Integer
- mount String
- name String
- notes String
- numClients Integer
- how many wireless clients are currently connected
- orgId String
- portStat Map<String,GetAp Stats Device Ap Stat Port Stat> 
- Property key is the port name (e.g. eth0)
- powerBudget Integer
- in mW, surplus if positive or deficit if negative
- powerConstrained Boolean
- whether insufficient power
- powerOpmode String
- constrained mode
- powerSrc String
- DC Input / PoE 802.3at / PoE 802.3af / LLDP / ? (unknown)
- radioStat GetAp Stats Device Ap Stat Radio Stat 
- rxBps Double
- rxBytes Integer
- rxPkts Integer
- serial String
- serial
- siteId String
- status String
- switchRedundancy GetAp Stats Device Ap Stat Switch Redundancy 
- txBps Double
- txBytes Double
- txPkts Double
- uptime Double
- how long, in seconds, has the device been up (or rebooted)
- usbStat GetAp Stats Device Ap Stat Usb Stat 
- version String
- x Double
- y Double
- autoPlacement GetAp Stats Device Ap Stat Auto Placement 
- autoUpgrade GetStat Ap Stats Device Ap Stat Auto Upgrade Stat 
- bleStat GetAp Stats Device Ap Stat Ble Stat 
- certExpiry number
- configReverted boolean
- cpuSystem number
- cpuUtil number
- createdTime number
- deviceprofileId string
- envStat GetAp Stats Device Ap Stat Env Stat 
- device environment, including CPU temperature, Ambient temperature, Humidity, Attitude, Pressure, Accelerometers, Magnetometers and vCore Voltage
- eslStat GetAp Stats Device Ap Stat Esl Stat 
- extIp string
- fwupdate
GetAp Stats Device Ap Stat Fwupdate 
- hwRev string
- id string
- inactiveWired number[]Vlans 
- iotStat {[key: string]: GetAp Stats Device Ap Stat Iot Stat} 
- ip string
- ipConfig GetAp Stats Device Ap Stat Ip Config 
- IP AP settings
- ipStat GetAp Stats Device Ap Stat Ip Stat 
- l2tpStat {[key: string]: GetAp Stats Device Ap Stat L2tp Stat} 
- l2tp tunnel status (key is the wxtunnel*id)
- lastSeen number
- last seen timestamp
- lastTrouble GetAp Stats Device Ap Stat Last Trouble 
- last trouble code of switch
- led
GetAp Stats Device Ap Stat Led 
- LED AP settings
- lldpStat GetAp Stats Device Ap Stat Lldp Stat 
- LLDP Stat (neighbor information, power negotiations)
- locating boolean
- locked boolean
- whether this AP is considered locked (placement / orientation has been vetted)
- mac string
- device mac
- mapId string
- memUsed numberKb 
- meshDownlinks {[key: string]: GetAp Stats Device Ap Stat Mesh Downlinks} 
- Property key is the mesh downlink id (e.g 00000000-0000-0000-1000-5c5b35000010)
- meshUplink GetAp Stats Device Ap Stat Mesh Uplink 
- model string
- device model
- modifiedTime number
- mount string
- name string
- notes string
- numClients number
- how many wireless clients are currently connected
- orgId string
- portStat {[key: string]: GetAp Stats Device Ap Stat Port Stat} 
- Property key is the port name (e.g. eth0)
- powerBudget number
- in mW, surplus if positive or deficit if negative
- powerConstrained boolean
- whether insufficient power
- powerOpmode string
- constrained mode
- powerSrc string
- DC Input / PoE 802.3at / PoE 802.3af / LLDP / ? (unknown)
- radioStat GetAp Stats Device Ap Stat Radio Stat 
- rxBps number
- rxBytes number
- rxPkts number
- serial string
- serial
- siteId string
- status string
- switchRedundancy GetAp Stats Device Ap Stat Switch Redundancy 
- txBps number
- txBytes number
- txPkts number
- uptime number
- how long, in seconds, has the device been up (or rebooted)
- usbStat GetAp Stats Device Ap Stat Usb Stat 
- version string
- x number
- y number
- auto_placement GetAp Stats Device Ap Stat Auto Placement 
- auto_upgrade_ Getstat Ap Stats Device Ap Stat Auto Upgrade Stat 
- ble_stat GetAp Stats Device Ap Stat Ble Stat 
- cert_expiry float
- config_reverted bool
- cpu_system int
- cpu_util int
- created_time int
- deviceprofile_id str
- env_stat GetAp Stats Device Ap Stat Env Stat 
- device environment, including CPU temperature, Ambient temperature, Humidity, Attitude, Pressure, Accelerometers, Magnetometers and vCore Voltage
- esl_stat GetAp Stats Device Ap Stat Esl Stat 
- ext_ip str
- fwupdate
GetAp Stats Device Ap Stat Fwupdate 
- hw_rev str
- id str
- inactive_wired_ Sequence[int]vlans 
- iot_stat Mapping[str, GetAp Stats Device Ap Stat Iot Stat] 
- ip str
- ip_config GetAp Stats Device Ap Stat Ip Config 
- IP AP settings
- ip_stat GetAp Stats Device Ap Stat Ip Stat 
- l2tp_stat Mapping[str, GetAp Stats Device Ap Stat L2tp Stat] 
- l2tp tunnel status (key is the wxtunnel*id)
- last_seen float
- last seen timestamp
- last_trouble GetAp Stats Device Ap Stat Last Trouble 
- last trouble code of switch
- led
GetAp Stats Device Ap Stat Led 
- LED AP settings
- lldp_stat GetAp Stats Device Ap Stat Lldp Stat 
- LLDP Stat (neighbor information, power negotiations)
- locating bool
- locked bool
- whether this AP is considered locked (placement / orientation has been vetted)
- mac str
- device mac
- map_id str
- mem_used_ intkb 
- mesh_downlinks Mapping[str, GetAp Stats Device Ap Stat Mesh Downlinks] 
- Property key is the mesh downlink id (e.g 00000000-0000-0000-1000-5c5b35000010)
- mesh_uplink GetAp Stats Device Ap Stat Mesh Uplink 
- model str
- device model
- modified_time int
- mount str
- name str
- notes str
- num_clients int
- how many wireless clients are currently connected
- org_id str
- port_stat Mapping[str, GetAp Stats Device Ap Stat Port Stat] 
- Property key is the port name (e.g. eth0)
- power_budget int
- in mW, surplus if positive or deficit if negative
- power_constrained bool
- whether insufficient power
- power_opmode str
- constrained mode
- power_src str
- DC Input / PoE 802.3at / PoE 802.3af / LLDP / ? (unknown)
- radio_stat GetAp Stats Device Ap Stat Radio Stat 
- rx_bps float
- rx_bytes int
- rx_pkts int
- serial str
- serial
- site_id str
- status str
- switch_redundancy GetAp Stats Device Ap Stat Switch Redundancy 
- tx_bps float
- tx_bytes float
- tx_pkts float
- uptime float
- how long, in seconds, has the device been up (or rebooted)
- usb_stat GetAp Stats Device Ap Stat Usb Stat 
- version str
- x float
- y float
- autoPlacement Property Map
- autoUpgrade Property MapStat 
- bleStat Property Map
- certExpiry Number
- configReverted Boolean
- cpuSystem Number
- cpuUtil Number
- createdTime Number
- deviceprofileId String
- envStat Property Map
- device environment, including CPU temperature, Ambient temperature, Humidity, Attitude, Pressure, Accelerometers, Magnetometers and vCore Voltage
- eslStat Property Map
- extIp String
- fwupdate Property Map
- hwRev String
- id String
- inactiveWired List<Number>Vlans 
- iotStat Map<Property Map>
- ip String
- ipConfig Property Map
- IP AP settings
- ipStat Property Map
- l2tpStat Map<Property Map>
- l2tp tunnel status (key is the wxtunnel*id)
- lastSeen Number
- last seen timestamp
- lastTrouble Property Map
- last trouble code of switch
- led Property Map
- LED AP settings
- lldpStat Property Map
- LLDP Stat (neighbor information, power negotiations)
- locating Boolean
- locked Boolean
- whether this AP is considered locked (placement / orientation has been vetted)
- mac String
- device mac
- mapId String
- memUsed NumberKb 
- meshDownlinks Map<Property Map>
- Property key is the mesh downlink id (e.g 00000000-0000-0000-1000-5c5b35000010)
- meshUplink Property Map
- model String
- device model
- modifiedTime Number
- mount String
- name String
- notes String
- numClients Number
- how many wireless clients are currently connected
- orgId String
- portStat Map<Property Map>
- Property key is the port name (e.g. eth0)
- powerBudget Number
- in mW, surplus if positive or deficit if negative
- powerConstrained Boolean
- whether insufficient power
- powerOpmode String
- constrained mode
- powerSrc String
- DC Input / PoE 802.3at / PoE 802.3af / LLDP / ? (unknown)
- radioStat Property Map
- rxBps Number
- rxBytes Number
- rxPkts Number
- serial String
- serial
- siteId String
- status String
- switchRedundancy Property Map
- txBps Number
- txBytes Number
- txPkts Number
- uptime Number
- how long, in seconds, has the device been up (or rebooted)
- usbStat Property Map
- version String
- x Number
- y Number
GetApStatsDeviceApStatAutoPlacement       
- Info
Pulumi.Juniper Mist. Device. Inputs. Get Ap Stats Device Ap Stat Auto Placement Info 
- Additional information about auto placements AP data
- RecommendedAnchor bool
- Flag to represent if AP is recommended as an anchor by auto placement service
- Status string
- Basic Placement Status
- StatusDetail string
- Additional info about placement status
- UseAuto boolPlacement 
- Flag to represent if auto_placement values are currently utilized
- X double
- X Autoplaced Position in pixels
- XM double
- X Autoplaced Position in meters
- Y double
- Y Autoplaced Position in pixels
- YM double
- X Autoplaced Position in meters
- Info
GetAp Stats Device Ap Stat Auto Placement Info 
- Additional information about auto placements AP data
- RecommendedAnchor bool
- Flag to represent if AP is recommended as an anchor by auto placement service
- Status string
- Basic Placement Status
- StatusDetail string
- Additional info about placement status
- UseAuto boolPlacement 
- Flag to represent if auto_placement values are currently utilized
- X float64
- X Autoplaced Position in pixels
- XM float64
- X Autoplaced Position in meters
- Y float64
- Y Autoplaced Position in pixels
- YM float64
- X Autoplaced Position in meters
- info
GetAp Stats Device Ap Stat Auto Placement Info 
- Additional information about auto placements AP data
- recommendedAnchor Boolean
- Flag to represent if AP is recommended as an anchor by auto placement service
- status String
- Basic Placement Status
- statusDetail String
- Additional info about placement status
- useAuto BooleanPlacement 
- Flag to represent if auto_placement values are currently utilized
- x Double
- X Autoplaced Position in pixels
- xM Double
- X Autoplaced Position in meters
- y Double
- Y Autoplaced Position in pixels
- yM Double
- X Autoplaced Position in meters
- info
GetAp Stats Device Ap Stat Auto Placement Info 
- Additional information about auto placements AP data
- recommendedAnchor boolean
- Flag to represent if AP is recommended as an anchor by auto placement service
- status string
- Basic Placement Status
- statusDetail string
- Additional info about placement status
- useAuto booleanPlacement 
- Flag to represent if auto_placement values are currently utilized
- x number
- X Autoplaced Position in pixels
- xM number
- X Autoplaced Position in meters
- y number
- Y Autoplaced Position in pixels
- yM number
- X Autoplaced Position in meters
- info
GetAp Stats Device Ap Stat Auto Placement Info 
- Additional information about auto placements AP data
- recommended_anchor bool
- Flag to represent if AP is recommended as an anchor by auto placement service
- status str
- Basic Placement Status
- status_detail str
- Additional info about placement status
- use_auto_ boolplacement 
- Flag to represent if auto_placement values are currently utilized
- x float
- X Autoplaced Position in pixels
- x_m float
- X Autoplaced Position in meters
- y float
- Y Autoplaced Position in pixels
- y_m float
- X Autoplaced Position in meters
- info Property Map
- Additional information about auto placements AP data
- recommendedAnchor Boolean
- Flag to represent if AP is recommended as an anchor by auto placement service
- status String
- Basic Placement Status
- statusDetail String
- Additional info about placement status
- useAuto BooleanPlacement 
- Flag to represent if auto_placement values are currently utilized
- x Number
- X Autoplaced Position in pixels
- xM Number
- X Autoplaced Position in meters
- y Number
- Y Autoplaced Position in pixels
- yM Number
- X Autoplaced Position in meters
GetApStatsDeviceApStatAutoPlacementInfo        
- ClusterNumber int
- All APs sharing a given cluster number can be placed relative to each other
- OrientationStats int
- The orientation of an AP
- ProbabilitySurface Pulumi.Juniper Mist. Device. Inputs. Get Ap Stats Device Ap Stat Auto Placement Info Probability Surface 
- Coordinates representing a circle where the AP is most likely exists in the event of an inaccurate placement result
- ClusterNumber int
- All APs sharing a given cluster number can be placed relative to each other
- OrientationStats int
- The orientation of an AP
- ProbabilitySurface GetAp Stats Device Ap Stat Auto Placement Info Probability Surface 
- Coordinates representing a circle where the AP is most likely exists in the event of an inaccurate placement result
- clusterNumber Integer
- All APs sharing a given cluster number can be placed relative to each other
- orientationStats Integer
- The orientation of an AP
- probabilitySurface GetAp Stats Device Ap Stat Auto Placement Info Probability Surface 
- Coordinates representing a circle where the AP is most likely exists in the event of an inaccurate placement result
- clusterNumber number
- All APs sharing a given cluster number can be placed relative to each other
- orientationStats number
- The orientation of an AP
- probabilitySurface GetAp Stats Device Ap Stat Auto Placement Info Probability Surface 
- Coordinates representing a circle where the AP is most likely exists in the event of an inaccurate placement result
- cluster_number int
- All APs sharing a given cluster number can be placed relative to each other
- orientation_stats int
- The orientation of an AP
- probability_surface GetAp Stats Device Ap Stat Auto Placement Info Probability Surface 
- Coordinates representing a circle where the AP is most likely exists in the event of an inaccurate placement result
- clusterNumber Number
- All APs sharing a given cluster number can be placed relative to each other
- orientationStats Number
- The orientation of an AP
- probabilitySurface Property Map
- Coordinates representing a circle where the AP is most likely exists in the event of an inaccurate placement result
GetApStatsDeviceApStatAutoPlacementInfoProbabilitySurface          
GetApStatsDeviceApStatAutoUpgradeStat        
- Lastcheck int
- Lastcheck int
- lastcheck Integer
- lastcheck number
- lastcheck int
- lastcheck Number
GetApStatsDeviceApStatBleStat       
- BeaconEnabled bool
- BeaconRate int
- EddystoneUid boolEnabled 
- EddystoneUid intFreq Msec 
- EddystoneUid stringInstance 
- EddystoneUid stringNamespace 
- EddystoneUrl boolEnabled 
- EddystoneUrl intFreq Msec 
- Frequency (msec) of data emmit by Eddystone-UID beacon
- EddystoneUrl stringUrl 
- IbeaconEnabled bool
- IbeaconFreq intMsec 
- IbeaconMajor int
- IbeaconMinor int
- IbeaconUuid string
- Major int
- Minors List<int>
- Power int
- RxBytes int
- RxPkts int
- TxBytes int
- TxPkts int
- TxResets int
- resets due to tx hung
- Uuid string
- BeaconEnabled bool
- BeaconRate int
- EddystoneUid boolEnabled 
- EddystoneUid intFreq Msec 
- EddystoneUid stringInstance 
- EddystoneUid stringNamespace 
- EddystoneUrl boolEnabled 
- EddystoneUrl intFreq Msec 
- Frequency (msec) of data emmit by Eddystone-UID beacon
- EddystoneUrl stringUrl 
- IbeaconEnabled bool
- IbeaconFreq intMsec 
- IbeaconMajor int
- IbeaconMinor int
- IbeaconUuid string
- Major int
- Minors []int
- Power int
- RxBytes int
- RxPkts int
- TxBytes int
- TxPkts int
- TxResets int
- resets due to tx hung
- Uuid string
- beaconEnabled Boolean
- beaconRate Integer
- eddystoneUid BooleanEnabled 
- eddystoneUid IntegerFreq Msec 
- eddystoneUid StringInstance 
- eddystoneUid StringNamespace 
- eddystoneUrl BooleanEnabled 
- eddystoneUrl IntegerFreq Msec 
- Frequency (msec) of data emmit by Eddystone-UID beacon
- eddystoneUrl StringUrl 
- ibeaconEnabled Boolean
- ibeaconFreq IntegerMsec 
- ibeaconMajor Integer
- ibeaconMinor Integer
- ibeaconUuid String
- major Integer
- minors List<Integer>
- power Integer
- rxBytes Integer
- rxPkts Integer
- txBytes Integer
- txPkts Integer
- txResets Integer
- resets due to tx hung
- uuid String
- beaconEnabled boolean
- beaconRate number
- eddystoneUid booleanEnabled 
- eddystoneUid numberFreq Msec 
- eddystoneUid stringInstance 
- eddystoneUid stringNamespace 
- eddystoneUrl booleanEnabled 
- eddystoneUrl numberFreq Msec 
- Frequency (msec) of data emmit by Eddystone-UID beacon
- eddystoneUrl stringUrl 
- ibeaconEnabled boolean
- ibeaconFreq numberMsec 
- ibeaconMajor number
- ibeaconMinor number
- ibeaconUuid string
- major number
- minors number[]
- power number
- rxBytes number
- rxPkts number
- txBytes number
- txPkts number
- txResets number
- resets due to tx hung
- uuid string
- beacon_enabled bool
- beacon_rate int
- eddystone_uid_ boolenabled 
- eddystone_uid_ intfreq_ msec 
- eddystone_uid_ strinstance 
- eddystone_uid_ strnamespace 
- eddystone_url_ boolenabled 
- eddystone_url_ intfreq_ msec 
- Frequency (msec) of data emmit by Eddystone-UID beacon
- eddystone_url_ strurl 
- ibeacon_enabled bool
- ibeacon_freq_ intmsec 
- ibeacon_major int
- ibeacon_minor int
- ibeacon_uuid str
- major int
- minors Sequence[int]
- power int
- rx_bytes int
- rx_pkts int
- tx_bytes int
- tx_pkts int
- tx_resets int
- resets due to tx hung
- uuid str
- beaconEnabled Boolean
- beaconRate Number
- eddystoneUid BooleanEnabled 
- eddystoneUid NumberFreq Msec 
- eddystoneUid StringInstance 
- eddystoneUid StringNamespace 
- eddystoneUrl BooleanEnabled 
- eddystoneUrl NumberFreq Msec 
- Frequency (msec) of data emmit by Eddystone-UID beacon
- eddystoneUrl StringUrl 
- ibeaconEnabled Boolean
- ibeaconFreq NumberMsec 
- ibeaconMajor Number
- ibeaconMinor Number
- ibeaconUuid String
- major Number
- minors List<Number>
- power Number
- rxBytes Number
- rxPkts Number
- txBytes Number
- txPkts Number
- txResets Number
- resets due to tx hung
- uuid String
GetApStatsDeviceApStatEnvStat       
GetApStatsDeviceApStatEslStat       
GetApStatsDeviceApStatFwupdate      
- progress int
- status str
- status_id int
- timestamp float
- will_retry bool
GetApStatsDeviceApStatIotStat       
- Value int
- Value int
- value Integer
- value number
- value int
- value Number
GetApStatsDeviceApStatIpConfig       
- Dns List<string>
- if type==static
- DnsSuffixes List<string>
- required if type==static
- Gateway string
- required if type==static
- Gateway6 string
- Ip string
- required if type==static
- Ip6 string
- Mtu int
- Netmask string
- required if type==static
- Netmask6 string
- Type string
- Type6 string
- VlanId int
- management vlan id, default is 1 (untagged)
- Dns []string
- if type==static
- DnsSuffixes []string
- required if type==static
- Gateway string
- required if type==static
- Gateway6 string
- Ip string
- required if type==static
- Ip6 string
- Mtu int
- Netmask string
- required if type==static
- Netmask6 string
- Type string
- Type6 string
- VlanId int
- management vlan id, default is 1 (untagged)
- dns List<String>
- if type==static
- dnsSuffixes List<String>
- required if type==static
- gateway String
- required if type==static
- gateway6 String
- ip String
- required if type==static
- ip6 String
- mtu Integer
- netmask String
- required if type==static
- netmask6 String
- type String
- type6 String
- vlanId Integer
- management vlan id, default is 1 (untagged)
- dns string[]
- if type==static
- dnsSuffixes string[]
- required if type==static
- gateway string
- required if type==static
- gateway6 string
- ip string
- required if type==static
- ip6 string
- mtu number
- netmask string
- required if type==static
- netmask6 string
- type string
- type6 string
- vlanId number
- management vlan id, default is 1 (untagged)
- dns List<String>
- if type==static
- dnsSuffixes List<String>
- required if type==static
- gateway String
- required if type==static
- gateway6 String
- ip String
- required if type==static
- ip6 String
- mtu Number
- netmask String
- required if type==static
- netmask6 String
- type String
- type6 String
- vlanId Number
- management vlan id, default is 1 (untagged)
GetApStatsDeviceApStatIpStat       
- DhcpServer string
- Dns List<string>
- DnsSuffixes List<string>
- Gateway string
- Gateway6 string
- Ip string
- Ip6 string
- Ips Dictionary<string, string>
- Netmask string
- Netmask6 string
- DhcpServer string
- Dns []string
- DnsSuffixes []string
- Gateway string
- Gateway6 string
- Ip string
- Ip6 string
- Ips map[string]string
- Netmask string
- Netmask6 string
- dhcpServer String
- dns List<String>
- dnsSuffixes List<String>
- gateway String
- gateway6 String
- ip String
- ip6 String
- ips Map<String,String>
- netmask String
- netmask6 String
- dhcpServer string
- dns string[]
- dnsSuffixes string[]
- gateway string
- gateway6 string
- ip string
- ip6 string
- ips {[key: string]: string}
- netmask string
- netmask6 string
- dhcp_server str
- dns Sequence[str]
- dns_suffixes Sequence[str]
- gateway str
- gateway6 str
- ip str
- ip6 str
- ips Mapping[str, str]
- netmask str
- netmask6 str
- dhcpServer String
- dns List<String>
- dnsSuffixes List<String>
- gateway String
- gateway6 String
- ip String
- ip6 String
- ips Map<String>
- netmask String
- netmask6 String
GetApStatsDeviceApStatL2tpStat       
- Sessions
List<Pulumi.Juniper Mist. Device. Inputs. Get Ap Stats Device Ap Stat L2tp Stat Session> 
- list of sessions
- State string
- Uptime int
- uptime
- WxtunnelId string
- WxlanTunnel ID
- Sessions
[]GetAp Stats Device Ap Stat L2tp Stat Session 
- list of sessions
- State string
- Uptime int
- uptime
- WxtunnelId string
- WxlanTunnel ID
- sessions
List<GetAp Stats Device Ap Stat L2tp Stat Session> 
- list of sessions
- state String
- uptime Integer
- uptime
- wxtunnelId String
- WxlanTunnel ID
- sessions
GetAp Stats Device Ap Stat L2tp Stat Session[] 
- list of sessions
- state string
- uptime number
- uptime
- wxtunnelId string
- WxlanTunnel ID
- sessions
Sequence[GetAp Stats Device Ap Stat L2tp Stat Session] 
- list of sessions
- state str
- uptime int
- uptime
- wxtunnel_id str
- WxlanTunnel ID
- sessions List<Property Map>
- list of sessions
- state String
- uptime Number
- uptime
- wxtunnelId String
- WxlanTunnel ID
GetApStatsDeviceApStatL2tpStatSession        
- local_sid int
- remote sessions id (dynamically unless Tunnel is said to be static)
- remote_id str
- WxlanTunnel Remote ID (user-configured)
- remote_sid int
- remote sessions id (dynamically unless Tunnel is said to be static)
- state str
GetApStatsDeviceApStatLastTrouble       
GetApStatsDeviceApStatLed      
- Brightness int
- Enabled bool
- Brightness int
- Enabled bool
- brightness Integer
- enabled Boolean
- brightness number
- enabled boolean
- brightness int
- enabled bool
- brightness Number
- enabled Boolean
GetApStatsDeviceApStatLldpStat       
- ChassisId string
- LldpMed boolSupported 
- whether it support LLDP-MED
- MgmtAddr string
- switch’s management address (if advertised), can be IPv4, IPv6, or MAC
- MgmtAddrs List<string>
- PortDesc string
- ge-0/0/4
- PortId string
- PowerAllocated double
- in mW, provided/allocated by PSE
- PowerDraw double
- in mW, total power needed by PD
- PowerRequest intCount 
- number of negotiations, if it keeps increasing, we don’t have a stable power
- PowerRequested double
- in mW, the current power requested by PD
- SystemDesc string
- description provided by switch
- SystemName string
- name of the switch
- ChassisId string
- LldpMed boolSupported 
- whether it support LLDP-MED
- MgmtAddr string
- switch’s management address (if advertised), can be IPv4, IPv6, or MAC
- MgmtAddrs []string
- PortDesc string
- ge-0/0/4
- PortId string
- PowerAllocated float64
- in mW, provided/allocated by PSE
- PowerDraw float64
- in mW, total power needed by PD
- PowerRequest intCount 
- number of negotiations, if it keeps increasing, we don’t have a stable power
- PowerRequested float64
- in mW, the current power requested by PD
- SystemDesc string
- description provided by switch
- SystemName string
- name of the switch
- chassisId String
- lldpMed BooleanSupported 
- whether it support LLDP-MED
- mgmtAddr String
- switch’s management address (if advertised), can be IPv4, IPv6, or MAC
- mgmtAddrs List<String>
- portDesc String
- ge-0/0/4
- portId String
- powerAllocated Double
- in mW, provided/allocated by PSE
- powerDraw Double
- in mW, total power needed by PD
- powerRequest IntegerCount 
- number of negotiations, if it keeps increasing, we don’t have a stable power
- powerRequested Double
- in mW, the current power requested by PD
- systemDesc String
- description provided by switch
- systemName String
- name of the switch
- chassisId string
- lldpMed booleanSupported 
- whether it support LLDP-MED
- mgmtAddr string
- switch’s management address (if advertised), can be IPv4, IPv6, or MAC
- mgmtAddrs string[]
- portDesc string
- ge-0/0/4
- portId string
- powerAllocated number
- in mW, provided/allocated by PSE
- powerDraw number
- in mW, total power needed by PD
- powerRequest numberCount 
- number of negotiations, if it keeps increasing, we don’t have a stable power
- powerRequested number
- in mW, the current power requested by PD
- systemDesc string
- description provided by switch
- systemName string
- name of the switch
- chassis_id str
- lldp_med_ boolsupported 
- whether it support LLDP-MED
- mgmt_addr str
- switch’s management address (if advertised), can be IPv4, IPv6, or MAC
- mgmt_addrs Sequence[str]
- port_desc str
- ge-0/0/4
- port_id str
- power_allocated float
- in mW, provided/allocated by PSE
- power_draw float
- in mW, total power needed by PD
- power_request_ intcount 
- number of negotiations, if it keeps increasing, we don’t have a stable power
- power_requested float
- in mW, the current power requested by PD
- system_desc str
- description provided by switch
- system_name str
- name of the switch
- chassisId String
- lldpMed BooleanSupported 
- whether it support LLDP-MED
- mgmtAddr String
- switch’s management address (if advertised), can be IPv4, IPv6, or MAC
- mgmtAddrs List<String>
- portDesc String
- ge-0/0/4
- portId String
- powerAllocated Number
- in mW, provided/allocated by PSE
- powerDraw Number
- in mW, total power needed by PD
- powerRequest NumberCount 
- number of negotiations, if it keeps increasing, we don’t have a stable power
- powerRequested Number
- in mW, the current power requested by PD
- systemDesc String
- description provided by switch
- systemName String
- name of the switch
GetApStatsDeviceApStatMeshDownlinks       
- band str
- channel int
- idle_time int
- last_seen float
- proto str
- rssi int
- rx_bps int
- rx_bytes int
- rx_packets int
- rx_rate int
- rx_retries int
- site_id str
- snr int
- tx_bps int
- tx_bytes int
- tx_packets int
- tx_rate int
- tx_retries int
GetApStatsDeviceApStatMeshUplink       
- band str
- channel int
- idle_time int
- last_seen float
- proto str
- rssi int
- rx_bps int
- rx_bytes int
- rx_packets int
- rx_rate int
- rx_retries int
- site_id str
- snr int
- tx_bps int
- tx_bytes int
- tx_packets int
- tx_rate int
- tx_retries int
- uplink_ap_ strid 
GetApStatsDeviceApStatPortStat       
GetApStatsDeviceApStatRadioStat       
- Band24
GetAp Stats Device Ap Stat Radio Stat Band24 
- radio stat
- Band5
GetAp Stats Device Ap Stat Radio Stat Band5 
- radio stat
- Band6
GetAp Stats Device Ap Stat Radio Stat Band6 
- radio stat
- band24
GetAp Stats Device Ap Stat Radio Stat Band24 
- radio stat
- band5
GetAp Stats Device Ap Stat Radio Stat Band5 
- radio stat
- band6
GetAp Stats Device Ap Stat Radio Stat Band6 
- radio stat
- band24
GetAp Stats Device Ap Stat Radio Stat Band24 
- radio stat
- band5
GetAp Stats Device Ap Stat Radio Stat Band5 
- radio stat
- band6
GetAp Stats Device Ap Stat Radio Stat Band6 
- radio stat
- band24
GetAp Stats Device Ap Stat Radio Stat Band24 
- radio stat
- band5
GetAp Stats Device Ap Stat Radio Stat Band5 
- radio stat
- band6
GetAp Stats Device Ap Stat Radio Stat Band6 
- radio stat
- band24 Property Map
- radio stat
- band5 Property Map
- radio stat
- band6 Property Map
- radio stat
GetApStatsDeviceApStatRadioStatBand24        
- Bandwidth int
- channel width for the band * 80is only applicable for band5 and band6 *160is only for band_6
- Channel int
- current channel the radio is running on
- DynamicChaining boolEnalbed 
- Use dynamic chaining for downlink
- Mac string
- radio (base) mac, it can have 16 bssids (e.g. 5c5b350001a0-5c5b350001af)
- NoiseFloor int
- NumClients int
- Power int
- transmit power (in dBm)
- RxBytes int
- RxPkts int
- TxBytes int
- TxPkts int
- Usage string
- UtilAll int
- all utilization in percentage
- UtilNon intWifi 
- reception of “No Packets” utilization in percentage, received frames with invalid PLCPs and CRS glitches as noise
- UtilRx intIn Bss 
- reception of “In BSS” utilization in percentage, only frames that are received from AP/STAs within the BSS
- UtilRx intOther Bss 
- reception of “Other BSS” utilization in percentage, all frames received from AP/STAs that are outside the BSS
- UtilTx int
- transmission utilization in percentage
- UtilUndecodable intWifi 
- reception of “UnDecodable Wifi“ utilization in percentage, only Preamble, PLCP header is decoded, Rest is undecodable in this radio
- UtilUnknown intWifi 
- reception of “No Category” utilization in percentage, all 802.11 frames that are corrupted at the receiver
- Bandwidth int
- channel width for the band * 80is only applicable for band5 and band6 *160is only for band_6
- Channel int
- current channel the radio is running on
- DynamicChaining boolEnalbed 
- Use dynamic chaining for downlink
- Mac string
- radio (base) mac, it can have 16 bssids (e.g. 5c5b350001a0-5c5b350001af)
- NoiseFloor int
- NumClients int
- Power int
- transmit power (in dBm)
- RxBytes int
- RxPkts int
- TxBytes int
- TxPkts int
- Usage string
- UtilAll int
- all utilization in percentage
- UtilNon intWifi 
- reception of “No Packets” utilization in percentage, received frames with invalid PLCPs and CRS glitches as noise
- UtilRx intIn Bss 
- reception of “In BSS” utilization in percentage, only frames that are received from AP/STAs within the BSS
- UtilRx intOther Bss 
- reception of “Other BSS” utilization in percentage, all frames received from AP/STAs that are outside the BSS
- UtilTx int
- transmission utilization in percentage
- UtilUndecodable intWifi 
- reception of “UnDecodable Wifi“ utilization in percentage, only Preamble, PLCP header is decoded, Rest is undecodable in this radio
- UtilUnknown intWifi 
- reception of “No Category” utilization in percentage, all 802.11 frames that are corrupted at the receiver
- bandwidth Integer
- channel width for the band * 80is only applicable for band5 and band6 *160is only for band_6
- channel Integer
- current channel the radio is running on
- dynamicChaining BooleanEnalbed 
- Use dynamic chaining for downlink
- mac String
- radio (base) mac, it can have 16 bssids (e.g. 5c5b350001a0-5c5b350001af)
- noiseFloor Integer
- numClients Integer
- power Integer
- transmit power (in dBm)
- rxBytes Integer
- rxPkts Integer
- txBytes Integer
- txPkts Integer
- usage String
- utilAll Integer
- all utilization in percentage
- utilNon IntegerWifi 
- reception of “No Packets” utilization in percentage, received frames with invalid PLCPs and CRS glitches as noise
- utilRx IntegerIn Bss 
- reception of “In BSS” utilization in percentage, only frames that are received from AP/STAs within the BSS
- utilRx IntegerOther Bss 
- reception of “Other BSS” utilization in percentage, all frames received from AP/STAs that are outside the BSS
- utilTx Integer
- transmission utilization in percentage
- utilUndecodable IntegerWifi 
- reception of “UnDecodable Wifi“ utilization in percentage, only Preamble, PLCP header is decoded, Rest is undecodable in this radio
- utilUnknown IntegerWifi 
- reception of “No Category” utilization in percentage, all 802.11 frames that are corrupted at the receiver
- bandwidth number
- channel width for the band * 80is only applicable for band5 and band6 *160is only for band_6
- channel number
- current channel the radio is running on
- dynamicChaining booleanEnalbed 
- Use dynamic chaining for downlink
- mac string
- radio (base) mac, it can have 16 bssids (e.g. 5c5b350001a0-5c5b350001af)
- noiseFloor number
- numClients number
- power number
- transmit power (in dBm)
- rxBytes number
- rxPkts number
- txBytes number
- txPkts number
- usage string
- utilAll number
- all utilization in percentage
- utilNon numberWifi 
- reception of “No Packets” utilization in percentage, received frames with invalid PLCPs and CRS glitches as noise
- utilRx numberIn Bss 
- reception of “In BSS” utilization in percentage, only frames that are received from AP/STAs within the BSS
- utilRx numberOther Bss 
- reception of “Other BSS” utilization in percentage, all frames received from AP/STAs that are outside the BSS
- utilTx number
- transmission utilization in percentage
- utilUndecodable numberWifi 
- reception of “UnDecodable Wifi“ utilization in percentage, only Preamble, PLCP header is decoded, Rest is undecodable in this radio
- utilUnknown numberWifi 
- reception of “No Category” utilization in percentage, all 802.11 frames that are corrupted at the receiver
- bandwidth int
- channel width for the band * 80is only applicable for band5 and band6 *160is only for band_6
- channel int
- current channel the radio is running on
- dynamic_chaining_ boolenalbed 
- Use dynamic chaining for downlink
- mac str
- radio (base) mac, it can have 16 bssids (e.g. 5c5b350001a0-5c5b350001af)
- noise_floor int
- num_clients int
- power int
- transmit power (in dBm)
- rx_bytes int
- rx_pkts int
- tx_bytes int
- tx_pkts int
- usage str
- util_all int
- all utilization in percentage
- util_non_ intwifi 
- reception of “No Packets” utilization in percentage, received frames with invalid PLCPs and CRS glitches as noise
- util_rx_ intin_ bss 
- reception of “In BSS” utilization in percentage, only frames that are received from AP/STAs within the BSS
- util_rx_ intother_ bss 
- reception of “Other BSS” utilization in percentage, all frames received from AP/STAs that are outside the BSS
- util_tx int
- transmission utilization in percentage
- util_undecodable_ intwifi 
- reception of “UnDecodable Wifi“ utilization in percentage, only Preamble, PLCP header is decoded, Rest is undecodable in this radio
- util_unknown_ intwifi 
- reception of “No Category” utilization in percentage, all 802.11 frames that are corrupted at the receiver
- bandwidth Number
- channel width for the band * 80is only applicable for band5 and band6 *160is only for band_6
- channel Number
- current channel the radio is running on
- dynamicChaining BooleanEnalbed 
- Use dynamic chaining for downlink
- mac String
- radio (base) mac, it can have 16 bssids (e.g. 5c5b350001a0-5c5b350001af)
- noiseFloor Number
- numClients Number
- power Number
- transmit power (in dBm)
- rxBytes Number
- rxPkts Number
- txBytes Number
- txPkts Number
- usage String
- utilAll Number
- all utilization in percentage
- utilNon NumberWifi 
- reception of “No Packets” utilization in percentage, received frames with invalid PLCPs and CRS glitches as noise
- utilRx NumberIn Bss 
- reception of “In BSS” utilization in percentage, only frames that are received from AP/STAs within the BSS
- utilRx NumberOther Bss 
- reception of “Other BSS” utilization in percentage, all frames received from AP/STAs that are outside the BSS
- utilTx Number
- transmission utilization in percentage
- utilUndecodable NumberWifi 
- reception of “UnDecodable Wifi“ utilization in percentage, only Preamble, PLCP header is decoded, Rest is undecodable in this radio
- utilUnknown NumberWifi 
- reception of “No Category” utilization in percentage, all 802.11 frames that are corrupted at the receiver
GetApStatsDeviceApStatRadioStatBand5        
- Bandwidth int
- channel width for the band * 80is only applicable for band5 and band6 *160is only for band_6
- Channel int
- current channel the radio is running on
- DynamicChaining boolEnalbed 
- Use dynamic chaining for downlink
- Mac string
- radio (base) mac, it can have 16 bssids (e.g. 5c5b350001a0-5c5b350001af)
- NoiseFloor int
- NumClients int
- Power int
- transmit power (in dBm)
- RxBytes int
- RxPkts int
- TxBytes int
- TxPkts int
- Usage string
- UtilAll int
- all utilization in percentage
- UtilNon intWifi 
- reception of “No Packets” utilization in percentage, received frames with invalid PLCPs and CRS glitches as noise
- UtilRx intIn Bss 
- reception of “In BSS” utilization in percentage, only frames that are received from AP/STAs within the BSS
- UtilRx intOther Bss 
- reception of “Other BSS” utilization in percentage, all frames received from AP/STAs that are outside the BSS
- UtilTx int
- transmission utilization in percentage
- UtilUndecodable intWifi 
- reception of “UnDecodable Wifi“ utilization in percentage, only Preamble, PLCP header is decoded, Rest is undecodable in this radio
- UtilUnknown intWifi 
- reception of “No Category” utilization in percentage, all 802.11 frames that are corrupted at the receiver
- Bandwidth int
- channel width for the band * 80is only applicable for band5 and band6 *160is only for band_6
- Channel int
- current channel the radio is running on
- DynamicChaining boolEnalbed 
- Use dynamic chaining for downlink
- Mac string
- radio (base) mac, it can have 16 bssids (e.g. 5c5b350001a0-5c5b350001af)
- NoiseFloor int
- NumClients int
- Power int
- transmit power (in dBm)
- RxBytes int
- RxPkts int
- TxBytes int
- TxPkts int
- Usage string
- UtilAll int
- all utilization in percentage
- UtilNon intWifi 
- reception of “No Packets” utilization in percentage, received frames with invalid PLCPs and CRS glitches as noise
- UtilRx intIn Bss 
- reception of “In BSS” utilization in percentage, only frames that are received from AP/STAs within the BSS
- UtilRx intOther Bss 
- reception of “Other BSS” utilization in percentage, all frames received from AP/STAs that are outside the BSS
- UtilTx int
- transmission utilization in percentage
- UtilUndecodable intWifi 
- reception of “UnDecodable Wifi“ utilization in percentage, only Preamble, PLCP header is decoded, Rest is undecodable in this radio
- UtilUnknown intWifi 
- reception of “No Category” utilization in percentage, all 802.11 frames that are corrupted at the receiver
- bandwidth Integer
- channel width for the band * 80is only applicable for band5 and band6 *160is only for band_6
- channel Integer
- current channel the radio is running on
- dynamicChaining BooleanEnalbed 
- Use dynamic chaining for downlink
- mac String
- radio (base) mac, it can have 16 bssids (e.g. 5c5b350001a0-5c5b350001af)
- noiseFloor Integer
- numClients Integer
- power Integer
- transmit power (in dBm)
- rxBytes Integer
- rxPkts Integer
- txBytes Integer
- txPkts Integer
- usage String
- utilAll Integer
- all utilization in percentage
- utilNon IntegerWifi 
- reception of “No Packets” utilization in percentage, received frames with invalid PLCPs and CRS glitches as noise
- utilRx IntegerIn Bss 
- reception of “In BSS” utilization in percentage, only frames that are received from AP/STAs within the BSS
- utilRx IntegerOther Bss 
- reception of “Other BSS” utilization in percentage, all frames received from AP/STAs that are outside the BSS
- utilTx Integer
- transmission utilization in percentage
- utilUndecodable IntegerWifi 
- reception of “UnDecodable Wifi“ utilization in percentage, only Preamble, PLCP header is decoded, Rest is undecodable in this radio
- utilUnknown IntegerWifi 
- reception of “No Category” utilization in percentage, all 802.11 frames that are corrupted at the receiver
- bandwidth number
- channel width for the band * 80is only applicable for band5 and band6 *160is only for band_6
- channel number
- current channel the radio is running on
- dynamicChaining booleanEnalbed 
- Use dynamic chaining for downlink
- mac string
- radio (base) mac, it can have 16 bssids (e.g. 5c5b350001a0-5c5b350001af)
- noiseFloor number
- numClients number
- power number
- transmit power (in dBm)
- rxBytes number
- rxPkts number
- txBytes number
- txPkts number
- usage string
- utilAll number
- all utilization in percentage
- utilNon numberWifi 
- reception of “No Packets” utilization in percentage, received frames with invalid PLCPs and CRS glitches as noise
- utilRx numberIn Bss 
- reception of “In BSS” utilization in percentage, only frames that are received from AP/STAs within the BSS
- utilRx numberOther Bss 
- reception of “Other BSS” utilization in percentage, all frames received from AP/STAs that are outside the BSS
- utilTx number
- transmission utilization in percentage
- utilUndecodable numberWifi 
- reception of “UnDecodable Wifi“ utilization in percentage, only Preamble, PLCP header is decoded, Rest is undecodable in this radio
- utilUnknown numberWifi 
- reception of “No Category” utilization in percentage, all 802.11 frames that are corrupted at the receiver
- bandwidth int
- channel width for the band * 80is only applicable for band5 and band6 *160is only for band_6
- channel int
- current channel the radio is running on
- dynamic_chaining_ boolenalbed 
- Use dynamic chaining for downlink
- mac str
- radio (base) mac, it can have 16 bssids (e.g. 5c5b350001a0-5c5b350001af)
- noise_floor int
- num_clients int
- power int
- transmit power (in dBm)
- rx_bytes int
- rx_pkts int
- tx_bytes int
- tx_pkts int
- usage str
- util_all int
- all utilization in percentage
- util_non_ intwifi 
- reception of “No Packets” utilization in percentage, received frames with invalid PLCPs and CRS glitches as noise
- util_rx_ intin_ bss 
- reception of “In BSS” utilization in percentage, only frames that are received from AP/STAs within the BSS
- util_rx_ intother_ bss 
- reception of “Other BSS” utilization in percentage, all frames received from AP/STAs that are outside the BSS
- util_tx int
- transmission utilization in percentage
- util_undecodable_ intwifi 
- reception of “UnDecodable Wifi“ utilization in percentage, only Preamble, PLCP header is decoded, Rest is undecodable in this radio
- util_unknown_ intwifi 
- reception of “No Category” utilization in percentage, all 802.11 frames that are corrupted at the receiver
- bandwidth Number
- channel width for the band * 80is only applicable for band5 and band6 *160is only for band_6
- channel Number
- current channel the radio is running on
- dynamicChaining BooleanEnalbed 
- Use dynamic chaining for downlink
- mac String
- radio (base) mac, it can have 16 bssids (e.g. 5c5b350001a0-5c5b350001af)
- noiseFloor Number
- numClients Number
- power Number
- transmit power (in dBm)
- rxBytes Number
- rxPkts Number
- txBytes Number
- txPkts Number
- usage String
- utilAll Number
- all utilization in percentage
- utilNon NumberWifi 
- reception of “No Packets” utilization in percentage, received frames with invalid PLCPs and CRS glitches as noise
- utilRx NumberIn Bss 
- reception of “In BSS” utilization in percentage, only frames that are received from AP/STAs within the BSS
- utilRx NumberOther Bss 
- reception of “Other BSS” utilization in percentage, all frames received from AP/STAs that are outside the BSS
- utilTx Number
- transmission utilization in percentage
- utilUndecodable NumberWifi 
- reception of “UnDecodable Wifi“ utilization in percentage, only Preamble, PLCP header is decoded, Rest is undecodable in this radio
- utilUnknown NumberWifi 
- reception of “No Category” utilization in percentage, all 802.11 frames that are corrupted at the receiver
GetApStatsDeviceApStatRadioStatBand6        
- Bandwidth int
- channel width for the band * 80is only applicable for band5 and band6 *160is only for band_6
- Channel int
- current channel the radio is running on
- DynamicChaining boolEnalbed 
- Use dynamic chaining for downlink
- Mac string
- radio (base) mac, it can have 16 bssids (e.g. 5c5b350001a0-5c5b350001af)
- NoiseFloor int
- NumClients int
- Power int
- transmit power (in dBm)
- RxBytes int
- RxPkts int
- TxBytes int
- TxPkts int
- Usage string
- UtilAll int
- all utilization in percentage
- UtilNon intWifi 
- reception of “No Packets” utilization in percentage, received frames with invalid PLCPs and CRS glitches as noise
- UtilRx intIn Bss 
- reception of “In BSS” utilization in percentage, only frames that are received from AP/STAs within the BSS
- UtilRx intOther Bss 
- reception of “Other BSS” utilization in percentage, all frames received from AP/STAs that are outside the BSS
- UtilTx int
- transmission utilization in percentage
- UtilUndecodable intWifi 
- reception of “UnDecodable Wifi“ utilization in percentage, only Preamble, PLCP header is decoded, Rest is undecodable in this radio
- UtilUnknown intWifi 
- reception of “No Category” utilization in percentage, all 802.11 frames that are corrupted at the receiver
- Bandwidth int
- channel width for the band * 80is only applicable for band5 and band6 *160is only for band_6
- Channel int
- current channel the radio is running on
- DynamicChaining boolEnalbed 
- Use dynamic chaining for downlink
- Mac string
- radio (base) mac, it can have 16 bssids (e.g. 5c5b350001a0-5c5b350001af)
- NoiseFloor int
- NumClients int
- Power int
- transmit power (in dBm)
- RxBytes int
- RxPkts int
- TxBytes int
- TxPkts int
- Usage string
- UtilAll int
- all utilization in percentage
- UtilNon intWifi 
- reception of “No Packets” utilization in percentage, received frames with invalid PLCPs and CRS glitches as noise
- UtilRx intIn Bss 
- reception of “In BSS” utilization in percentage, only frames that are received from AP/STAs within the BSS
- UtilRx intOther Bss 
- reception of “Other BSS” utilization in percentage, all frames received from AP/STAs that are outside the BSS
- UtilTx int
- transmission utilization in percentage
- UtilUndecodable intWifi 
- reception of “UnDecodable Wifi“ utilization in percentage, only Preamble, PLCP header is decoded, Rest is undecodable in this radio
- UtilUnknown intWifi 
- reception of “No Category” utilization in percentage, all 802.11 frames that are corrupted at the receiver
- bandwidth Integer
- channel width for the band * 80is only applicable for band5 and band6 *160is only for band_6
- channel Integer
- current channel the radio is running on
- dynamicChaining BooleanEnalbed 
- Use dynamic chaining for downlink
- mac String
- radio (base) mac, it can have 16 bssids (e.g. 5c5b350001a0-5c5b350001af)
- noiseFloor Integer
- numClients Integer
- power Integer
- transmit power (in dBm)
- rxBytes Integer
- rxPkts Integer
- txBytes Integer
- txPkts Integer
- usage String
- utilAll Integer
- all utilization in percentage
- utilNon IntegerWifi 
- reception of “No Packets” utilization in percentage, received frames with invalid PLCPs and CRS glitches as noise
- utilRx IntegerIn Bss 
- reception of “In BSS” utilization in percentage, only frames that are received from AP/STAs within the BSS
- utilRx IntegerOther Bss 
- reception of “Other BSS” utilization in percentage, all frames received from AP/STAs that are outside the BSS
- utilTx Integer
- transmission utilization in percentage
- utilUndecodable IntegerWifi 
- reception of “UnDecodable Wifi“ utilization in percentage, only Preamble, PLCP header is decoded, Rest is undecodable in this radio
- utilUnknown IntegerWifi 
- reception of “No Category” utilization in percentage, all 802.11 frames that are corrupted at the receiver
- bandwidth number
- channel width for the band * 80is only applicable for band5 and band6 *160is only for band_6
- channel number
- current channel the radio is running on
- dynamicChaining booleanEnalbed 
- Use dynamic chaining for downlink
- mac string
- radio (base) mac, it can have 16 bssids (e.g. 5c5b350001a0-5c5b350001af)
- noiseFloor number
- numClients number
- power number
- transmit power (in dBm)
- rxBytes number
- rxPkts number
- txBytes number
- txPkts number
- usage string
- utilAll number
- all utilization in percentage
- utilNon numberWifi 
- reception of “No Packets” utilization in percentage, received frames with invalid PLCPs and CRS glitches as noise
- utilRx numberIn Bss 
- reception of “In BSS” utilization in percentage, only frames that are received from AP/STAs within the BSS
- utilRx numberOther Bss 
- reception of “Other BSS” utilization in percentage, all frames received from AP/STAs that are outside the BSS
- utilTx number
- transmission utilization in percentage
- utilUndecodable numberWifi 
- reception of “UnDecodable Wifi“ utilization in percentage, only Preamble, PLCP header is decoded, Rest is undecodable in this radio
- utilUnknown numberWifi 
- reception of “No Category” utilization in percentage, all 802.11 frames that are corrupted at the receiver
- bandwidth int
- channel width for the band * 80is only applicable for band5 and band6 *160is only for band_6
- channel int
- current channel the radio is running on
- dynamic_chaining_ boolenalbed 
- Use dynamic chaining for downlink
- mac str
- radio (base) mac, it can have 16 bssids (e.g. 5c5b350001a0-5c5b350001af)
- noise_floor int
- num_clients int
- power int
- transmit power (in dBm)
- rx_bytes int
- rx_pkts int
- tx_bytes int
- tx_pkts int
- usage str
- util_all int
- all utilization in percentage
- util_non_ intwifi 
- reception of “No Packets” utilization in percentage, received frames with invalid PLCPs and CRS glitches as noise
- util_rx_ intin_ bss 
- reception of “In BSS” utilization in percentage, only frames that are received from AP/STAs within the BSS
- util_rx_ intother_ bss 
- reception of “Other BSS” utilization in percentage, all frames received from AP/STAs that are outside the BSS
- util_tx int
- transmission utilization in percentage
- util_undecodable_ intwifi 
- reception of “UnDecodable Wifi“ utilization in percentage, only Preamble, PLCP header is decoded, Rest is undecodable in this radio
- util_unknown_ intwifi 
- reception of “No Category” utilization in percentage, all 802.11 frames that are corrupted at the receiver
- bandwidth Number
- channel width for the band * 80is only applicable for band5 and band6 *160is only for band_6
- channel Number
- current channel the radio is running on
- dynamicChaining BooleanEnalbed 
- Use dynamic chaining for downlink
- mac String
- radio (base) mac, it can have 16 bssids (e.g. 5c5b350001a0-5c5b350001af)
- noiseFloor Number
- numClients Number
- power Number
- transmit power (in dBm)
- rxBytes Number
- rxPkts Number
- txBytes Number
- txPkts Number
- usage String
- utilAll Number
- all utilization in percentage
- utilNon NumberWifi 
- reception of “No Packets” utilization in percentage, received frames with invalid PLCPs and CRS glitches as noise
- utilRx NumberIn Bss 
- reception of “In BSS” utilization in percentage, only frames that are received from AP/STAs within the BSS
- utilRx NumberOther Bss 
- reception of “Other BSS” utilization in percentage, all frames received from AP/STAs that are outside the BSS
- utilTx Number
- transmission utilization in percentage
- utilUndecodable NumberWifi 
- reception of “UnDecodable Wifi“ utilization in percentage, only Preamble, PLCP header is decoded, Rest is undecodable in this radio
- utilUnknown NumberWifi 
- reception of “No Category” utilization in percentage, all 802.11 frames that are corrupted at the receiver
GetApStatsDeviceApStatSwitchRedundancy       
- NumRedundant intAps 
- NumRedundant intAps 
- numRedundant IntegerAps 
- numRedundant numberAps 
- numRedundant NumberAps 
GetApStatsDeviceApStatUsbStat       
- Channel int
- Connected bool
- LastActivity int
- Type string
- Up bool
- Channel int
- Connected bool
- LastActivity int
- Type string
- Up bool
- channel Integer
- connected Boolean
- lastActivity Integer
- type String
- up Boolean
- channel number
- connected boolean
- lastActivity number
- type string
- up boolean
- channel int
- connected bool
- last_activity int
- type str
- up bool
- channel Number
- connected Boolean
- lastActivity Number
- type String
- up Boolean
Package Details
- Repository
- junipermist pulumi/pulumi-junipermist
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the mistTerraform Provider.
