1. Packages
  2. Juniper Mist Provider
  3. API Docs
  4. device
  5. getApStats
Juniper Mist v0.4.0 published on Wednesday, Apr 16, 2025 by Pulumi

junipermist.device.getApStats

Explore with Pulumi AI

junipermist logo
Juniper Mist v0.4.0 published on Wednesday, Apr 16, 2025 by Pulumi

    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 dictionary

    The following arguments are supported:

    OrgId string
    Duration string
    End int
    Mac string
    SiteId string
    Start int
    Status string
    OrgId string
    Duration string
    End int
    Mac string
    SiteId string
    Start int
    Status string
    orgId String
    duration String
    end Integer
    mac String
    siteId String
    start Integer
    status String
    orgId string
    duration string
    end number
    mac string
    siteId string
    start number
    status string
    org_id str
    duration str
    end int
    mac str
    site_id str
    start int
    status str
    orgId String
    duration String
    end Number
    mac String
    siteId String
    start Number
    status String

    getApStats Result

    The following output properties are available:

    DeviceApStats List<Pulumi.JuniperMist.Device.Outputs.GetApStatsDeviceApStat>
    Id string
    The provider-assigned unique ID for this managed resource.
    OrgId string
    Duration string
    End int
    Mac string
    SiteId string
    Start int
    Status string
    DeviceApStats []GetApStatsDeviceApStat
    Id string
    The provider-assigned unique ID for this managed resource.
    OrgId string
    Duration string
    End int
    Mac string
    SiteId string
    Start int
    Status string
    deviceApStats List<GetApStatsDeviceApStat>
    id String
    The provider-assigned unique ID for this managed resource.
    orgId String
    duration String
    end Integer
    mac String
    siteId String
    start Integer
    status String
    deviceApStats GetApStatsDeviceApStat[]
    id string
    The provider-assigned unique ID for this managed resource.
    orgId string
    duration string
    end number
    mac string
    siteId string
    start number
    status string
    device_ap_stats Sequence[GetApStatsDeviceApStat]
    id str
    The provider-assigned unique ID for this managed resource.
    org_id str
    duration str
    end int
    mac str
    site_id str
    start int
    status str
    deviceApStats List<Property Map>
    id String
    The provider-assigned unique ID for this managed resource.
    orgId String
    duration String
    end Number
    mac String
    siteId String
    start Number
    status String

    Supporting Types

    GetApStatsDeviceApStat

    AutoPlacement Pulumi.JuniperMist.Device.Inputs.GetApStatsDeviceApStatAutoPlacement
    AutoUpgradeStat Pulumi.JuniperMist.Device.Inputs.GetApStatsDeviceApStatAutoUpgradeStat
    BleStat Pulumi.JuniperMist.Device.Inputs.GetApStatsDeviceApStatBleStat
    CertExpiry double
    ConfigReverted bool
    CpuSystem int
    CpuUtil int
    CreatedTime double
    When the object has been created, in epoch
    DeviceprofileId string
    EnvStat Pulumi.JuniperMist.Device.Inputs.GetApStatsDeviceApStatEnvStat
    Device environment, including CPU temperature, Ambient temperature, Humidity, Attitude, Pressure, Accelerometers, Magnetometers and vCore Voltage
    EslStat Pulumi.JuniperMist.Device.Inputs.GetApStatsDeviceApStatEslStat
    ExtIp string
    Fwupdate Pulumi.JuniperMist.Device.Inputs.GetApStatsDeviceApStatFwupdate
    Gps Pulumi.JuniperMist.Device.Inputs.GetApStatsDeviceApStatGps
    HwRev string
    Id string
    Unique ID of the object instance in the Mist Organization
    InactiveWiredVlans List<int>
    IotStat Dictionary<string, Pulumi.JuniperMist.Device.Inputs.GetApStatsDeviceApStatIotStat>
    Ip string
    IpConfig Pulumi.JuniperMist.Device.Inputs.GetApStatsDeviceApStatIpConfig
    IP AP settings
    IpStat Pulumi.JuniperMist.Device.Inputs.GetApStatsDeviceApStatIpStat
    L2tpStat Dictionary<string, Pulumi.JuniperMist.Device.Inputs.GetApStatsDeviceApStatL2tpStat>
    L2TP tunnel status (key is the wxtunnel_id)
    LastSeen double
    Last seen timestamp
    LastTrouble Pulumi.JuniperMist.Device.Inputs.GetApStatsDeviceApStatLastTrouble
    Last trouble code of switch
    Led Pulumi.JuniperMist.Device.Inputs.GetApStatsDeviceApStatLed
    LED AP settings
    LldpStat Pulumi.JuniperMist.Device.Inputs.GetApStatsDeviceApStatLldpStat
    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
    MemUsedKb int
    MeshDownlinks Dictionary<string, Pulumi.JuniperMist.Device.Inputs.GetApStatsDeviceApStatMeshDownlinks>
    Property key is the mesh downlink id (e.g. 00000000-0000-0000-1000-5c5b35000010)
    MeshUplink Pulumi.JuniperMist.Device.Inputs.GetApStatsDeviceApStatMeshUplink
    Model string
    Device model
    ModifiedTime double
    When the object has been modified for the last time, in epoch
    Mount string
    Name string
    Notes string
    NumClients int
    How many wireless clients are currently connected
    NumWlans int
    How many WLANs are applied to the device
    OrgId string
    PortStat Dictionary<string, Pulumi.JuniperMist.Device.Inputs.GetApStatsDeviceApStatPortStat>
    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.JuniperMist.Device.Inputs.GetApStatsDeviceApStatRadioStat
    RxBps int
    Rate of receiving traffic, bits/seconds, last known
    RxBytes int
    Amount of traffic received since connection
    RxPkts int
    Amount of packets received since connection
    Serial string
    Serial Number
    SiteId string
    Status string
    SwitchRedundancy Pulumi.JuniperMist.Device.Inputs.GetApStatsDeviceApStatSwitchRedundancy
    TxBps int
    Rate of transmitting traffic, bits/seconds, last known
    TxBytes int
    Amount of traffic sent since connection
    TxPkts int
    Amount of packets sent since connection
    Uptime double
    How long, in seconds, has the device been up (or rebooted)
    UsbStat Pulumi.JuniperMist.Device.Inputs.GetApStatsDeviceApStatUsbStat
    Version string
    X double
    Y double
    AutoPlacement GetApStatsDeviceApStatAutoPlacement
    AutoUpgradeStat GetApStatsDeviceApStatAutoUpgradeStat
    BleStat GetApStatsDeviceApStatBleStat
    CertExpiry float64
    ConfigReverted bool
    CpuSystem int
    CpuUtil int
    CreatedTime float64
    When the object has been created, in epoch
    DeviceprofileId string
    EnvStat GetApStatsDeviceApStatEnvStat
    Device environment, including CPU temperature, Ambient temperature, Humidity, Attitude, Pressure, Accelerometers, Magnetometers and vCore Voltage
    EslStat GetApStatsDeviceApStatEslStat
    ExtIp string
    Fwupdate GetApStatsDeviceApStatFwupdate
    Gps GetApStatsDeviceApStatGps
    HwRev string
    Id string
    Unique ID of the object instance in the Mist Organization
    InactiveWiredVlans []int
    IotStat map[string]GetApStatsDeviceApStatIotStat
    Ip string
    IpConfig GetApStatsDeviceApStatIpConfig
    IP AP settings
    IpStat GetApStatsDeviceApStatIpStat
    L2tpStat map[string]GetApStatsDeviceApStatL2tpStat
    L2TP tunnel status (key is the wxtunnel_id)
    LastSeen float64
    Last seen timestamp
    LastTrouble GetApStatsDeviceApStatLastTrouble
    Last trouble code of switch
    Led GetApStatsDeviceApStatLed
    LED AP settings
    LldpStat GetApStatsDeviceApStatLldpStat
    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
    MemUsedKb int
    MeshDownlinks map[string]GetApStatsDeviceApStatMeshDownlinks
    Property key is the mesh downlink id (e.g. 00000000-0000-0000-1000-5c5b35000010)
    MeshUplink GetApStatsDeviceApStatMeshUplink
    Model string
    Device model
    ModifiedTime float64
    When the object has been modified for the last time, in epoch
    Mount string
    Name string
    Notes string
    NumClients int
    How many wireless clients are currently connected
    NumWlans int
    How many WLANs are applied to the device
    OrgId string
    PortStat map[string]GetApStatsDeviceApStatPortStat
    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 GetApStatsDeviceApStatRadioStat
    RxBps int
    Rate of receiving traffic, bits/seconds, last known
    RxBytes int
    Amount of traffic received since connection
    RxPkts int
    Amount of packets received since connection
    Serial string
    Serial Number
    SiteId string
    Status string
    SwitchRedundancy GetApStatsDeviceApStatSwitchRedundancy
    TxBps int
    Rate of transmitting traffic, bits/seconds, last known
    TxBytes int
    Amount of traffic sent since connection
    TxPkts int
    Amount of packets sent since connection
    Uptime float64
    How long, in seconds, has the device been up (or rebooted)
    UsbStat GetApStatsDeviceApStatUsbStat
    Version string
    X float64
    Y float64
    autoPlacement GetApStatsDeviceApStatAutoPlacement
    autoUpgradeStat GetApStatsDeviceApStatAutoUpgradeStat
    bleStat GetApStatsDeviceApStatBleStat
    certExpiry Double
    configReverted Boolean
    cpuSystem Integer
    cpuUtil Integer
    createdTime Double
    When the object has been created, in epoch
    deviceprofileId String
    envStat GetApStatsDeviceApStatEnvStat
    Device environment, including CPU temperature, Ambient temperature, Humidity, Attitude, Pressure, Accelerometers, Magnetometers and vCore Voltage
    eslStat GetApStatsDeviceApStatEslStat
    extIp String
    fwupdate GetApStatsDeviceApStatFwupdate
    gps GetApStatsDeviceApStatGps
    hwRev String
    id String
    Unique ID of the object instance in the Mist Organization
    inactiveWiredVlans List<Integer>
    iotStat Map<String,GetApStatsDeviceApStatIotStat>
    ip String
    ipConfig GetApStatsDeviceApStatIpConfig
    IP AP settings
    ipStat GetApStatsDeviceApStatIpStat
    l2tpStat Map<String,GetApStatsDeviceApStatL2tpStat>
    L2TP tunnel status (key is the wxtunnel_id)
    lastSeen Double
    Last seen timestamp
    lastTrouble GetApStatsDeviceApStatLastTrouble
    Last trouble code of switch
    led GetApStatsDeviceApStatLed
    LED AP settings
    lldpStat GetApStatsDeviceApStatLldpStat
    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
    memUsedKb Integer
    meshDownlinks Map<String,GetApStatsDeviceApStatMeshDownlinks>
    Property key is the mesh downlink id (e.g. 00000000-0000-0000-1000-5c5b35000010)
    meshUplink GetApStatsDeviceApStatMeshUplink
    model String
    Device model
    modifiedTime Double
    When the object has been modified for the last time, in epoch
    mount String
    name String
    notes String
    numClients Integer
    How many wireless clients are currently connected
    numWlans Integer
    How many WLANs are applied to the device
    orgId String
    portStat Map<String,GetApStatsDeviceApStatPortStat>
    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 GetApStatsDeviceApStatRadioStat
    rxBps Integer
    Rate of receiving traffic, bits/seconds, last known
    rxBytes Integer
    Amount of traffic received since connection
    rxPkts Integer
    Amount of packets received since connection
    serial String
    Serial Number
    siteId String
    status String
    switchRedundancy GetApStatsDeviceApStatSwitchRedundancy
    txBps Integer
    Rate of transmitting traffic, bits/seconds, last known
    txBytes Integer
    Amount of traffic sent since connection
    txPkts Integer
    Amount of packets sent since connection
    uptime Double
    How long, in seconds, has the device been up (or rebooted)
    usbStat GetApStatsDeviceApStatUsbStat
    version String
    x Double
    y Double
    autoPlacement GetApStatsDeviceApStatAutoPlacement
    autoUpgradeStat GetApStatsDeviceApStatAutoUpgradeStat
    bleStat GetApStatsDeviceApStatBleStat
    certExpiry number
    configReverted boolean
    cpuSystem number
    cpuUtil number
    createdTime number
    When the object has been created, in epoch
    deviceprofileId string
    envStat GetApStatsDeviceApStatEnvStat
    Device environment, including CPU temperature, Ambient temperature, Humidity, Attitude, Pressure, Accelerometers, Magnetometers and vCore Voltage
    eslStat GetApStatsDeviceApStatEslStat
    extIp string
    fwupdate GetApStatsDeviceApStatFwupdate
    gps GetApStatsDeviceApStatGps
    hwRev string
    id string
    Unique ID of the object instance in the Mist Organization
    inactiveWiredVlans number[]
    iotStat {[key: string]: GetApStatsDeviceApStatIotStat}
    ip string
    ipConfig GetApStatsDeviceApStatIpConfig
    IP AP settings
    ipStat GetApStatsDeviceApStatIpStat
    l2tpStat {[key: string]: GetApStatsDeviceApStatL2tpStat}
    L2TP tunnel status (key is the wxtunnel_id)
    lastSeen number
    Last seen timestamp
    lastTrouble GetApStatsDeviceApStatLastTrouble
    Last trouble code of switch
    led GetApStatsDeviceApStatLed
    LED AP settings
    lldpStat GetApStatsDeviceApStatLldpStat
    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
    memUsedKb number
    meshDownlinks {[key: string]: GetApStatsDeviceApStatMeshDownlinks}
    Property key is the mesh downlink id (e.g. 00000000-0000-0000-1000-5c5b35000010)
    meshUplink GetApStatsDeviceApStatMeshUplink
    model string
    Device model
    modifiedTime number
    When the object has been modified for the last time, in epoch
    mount string
    name string
    notes string
    numClients number
    How many wireless clients are currently connected
    numWlans number
    How many WLANs are applied to the device
    orgId string
    portStat {[key: string]: GetApStatsDeviceApStatPortStat}
    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 GetApStatsDeviceApStatRadioStat
    rxBps number
    Rate of receiving traffic, bits/seconds, last known
    rxBytes number
    Amount of traffic received since connection
    rxPkts number
    Amount of packets received since connection
    serial string
    Serial Number
    siteId string
    status string
    switchRedundancy GetApStatsDeviceApStatSwitchRedundancy
    txBps number
    Rate of transmitting traffic, bits/seconds, last known
    txBytes number
    Amount of traffic sent since connection
    txPkts number
    Amount of packets sent since connection
    uptime number
    How long, in seconds, has the device been up (or rebooted)
    usbStat GetApStatsDeviceApStatUsbStat
    version string
    x number
    y number
    auto_placement GetApStatsDeviceApStatAutoPlacement
    auto_upgrade_stat GetApStatsDeviceApStatAutoUpgradeStat
    ble_stat GetApStatsDeviceApStatBleStat
    cert_expiry float
    config_reverted bool
    cpu_system int
    cpu_util int
    created_time float
    When the object has been created, in epoch
    deviceprofile_id str
    env_stat GetApStatsDeviceApStatEnvStat
    Device environment, including CPU temperature, Ambient temperature, Humidity, Attitude, Pressure, Accelerometers, Magnetometers and vCore Voltage
    esl_stat GetApStatsDeviceApStatEslStat
    ext_ip str
    fwupdate GetApStatsDeviceApStatFwupdate
    gps GetApStatsDeviceApStatGps
    hw_rev str
    id str
    Unique ID of the object instance in the Mist Organization
    inactive_wired_vlans Sequence[int]
    iot_stat Mapping[str, GetApStatsDeviceApStatIotStat]
    ip str
    ip_config GetApStatsDeviceApStatIpConfig
    IP AP settings
    ip_stat GetApStatsDeviceApStatIpStat
    l2tp_stat Mapping[str, GetApStatsDeviceApStatL2tpStat]
    L2TP tunnel status (key is the wxtunnel_id)
    last_seen float
    Last seen timestamp
    last_trouble GetApStatsDeviceApStatLastTrouble
    Last trouble code of switch
    led GetApStatsDeviceApStatLed
    LED AP settings
    lldp_stat GetApStatsDeviceApStatLldpStat
    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_kb int
    mesh_downlinks Mapping[str, GetApStatsDeviceApStatMeshDownlinks]
    Property key is the mesh downlink id (e.g. 00000000-0000-0000-1000-5c5b35000010)
    mesh_uplink GetApStatsDeviceApStatMeshUplink
    model str
    Device model
    modified_time float
    When the object has been modified for the last time, in epoch
    mount str
    name str
    notes str
    num_clients int
    How many wireless clients are currently connected
    num_wlans int
    How many WLANs are applied to the device
    org_id str
    port_stat Mapping[str, GetApStatsDeviceApStatPortStat]
    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 GetApStatsDeviceApStatRadioStat
    rx_bps int
    Rate of receiving traffic, bits/seconds, last known
    rx_bytes int
    Amount of traffic received since connection
    rx_pkts int
    Amount of packets received since connection
    serial str
    Serial Number
    site_id str
    status str
    switch_redundancy GetApStatsDeviceApStatSwitchRedundancy
    tx_bps int
    Rate of transmitting traffic, bits/seconds, last known
    tx_bytes int
    Amount of traffic sent since connection
    tx_pkts int
    Amount of packets sent since connection
    uptime float
    How long, in seconds, has the device been up (or rebooted)
    usb_stat GetApStatsDeviceApStatUsbStat
    version str
    x float
    y float
    autoPlacement Property Map
    autoUpgradeStat Property Map
    bleStat Property Map
    certExpiry Number
    configReverted Boolean
    cpuSystem Number
    cpuUtil Number
    createdTime Number
    When the object has been created, in epoch
    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
    gps Property Map
    hwRev String
    id String
    Unique ID of the object instance in the Mist Organization
    inactiveWiredVlans List<Number>
    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
    memUsedKb Number
    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
    When the object has been modified for the last time, in epoch
    mount String
    name String
    notes String
    numClients Number
    How many wireless clients are currently connected
    numWlans Number
    How many WLANs are applied to the device
    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
    Rate of receiving traffic, bits/seconds, last known
    rxBytes Number
    Amount of traffic received since connection
    rxPkts Number
    Amount of packets received since connection
    serial String
    Serial Number
    siteId String
    status String
    switchRedundancy Property Map
    txBps Number
    Rate of transmitting traffic, bits/seconds, last known
    txBytes Number
    Amount of traffic sent since connection
    txPkts Number
    Amount of packets sent since connection
    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.JuniperMist.Device.Inputs.GetApStatsDeviceApStatAutoPlacementInfo
    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
    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 GetApStatsDeviceApStatAutoPlacementInfo
    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
    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 GetApStatsDeviceApStatAutoPlacementInfo
    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
    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 GetApStatsDeviceApStatAutoPlacementInfo
    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
    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 GetApStatsDeviceApStatAutoPlacementInfo
    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
    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
    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.JuniperMist.Device.Inputs.GetApStatsDeviceApStatAutoPlacementInfoProbabilitySurface
    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 GetApStatsDeviceApStatAutoPlacementInfoProbabilitySurface
    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 GetApStatsDeviceApStatAutoPlacementInfoProbabilitySurface
    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 GetApStatsDeviceApStatAutoPlacementInfoProbabilitySurface
    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 GetApStatsDeviceApStatAutoPlacementInfoProbabilitySurface
    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

    Radius double
    The radius representing placement uncertainty, measured in pixels
    RadiusM double
    The radius representing placement uncertainty, measured in meters
    X double
    Y-coordinate of the potential placement’s center, measured in pixels
    Radius float64
    The radius representing placement uncertainty, measured in pixels
    RadiusM float64
    The radius representing placement uncertainty, measured in meters
    X float64
    Y-coordinate of the potential placement’s center, measured in pixels
    radius Double
    The radius representing placement uncertainty, measured in pixels
    radiusM Double
    The radius representing placement uncertainty, measured in meters
    x Double
    Y-coordinate of the potential placement’s center, measured in pixels
    radius number
    The radius representing placement uncertainty, measured in pixels
    radiusM number
    The radius representing placement uncertainty, measured in meters
    x number
    Y-coordinate of the potential placement’s center, measured in pixels
    radius float
    The radius representing placement uncertainty, measured in pixels
    radius_m float
    The radius representing placement uncertainty, measured in meters
    x float
    Y-coordinate of the potential placement’s center, measured in pixels
    radius Number
    The radius representing placement uncertainty, measured in pixels
    radiusM Number
    The radius representing placement uncertainty, measured in meters
    x Number
    Y-coordinate of the potential placement’s center, measured in pixels

    GetApStatsDeviceApStatAutoUpgradeStat

    lastcheck Integer
    lastcheck number
    lastcheck Number

    GetApStatsDeviceApStatBleStat

    BeaconEnabled bool
    BeaconRate int
    EddystoneUidEnabled bool
    EddystoneUidFreqMsec int
    EddystoneUidInstance string
    EddystoneUidNamespace string
    EddystoneUrlEnabled bool
    EddystoneUrlFreqMsec int
    Frequency (msec) of data emmit by Eddystone-UID beacon
    EddystoneUrlUrl string
    IbeaconEnabled bool
    IbeaconFreqMsec int
    IbeaconMajor int
    IbeaconMinor int
    IbeaconUuid string
    Major int
    Minors List<int>
    Power int
    RxBytes int
    Amount of traffic received since connection
    RxPkts int
    Amount of packets received since connection
    TxBytes int
    Amount of traffic sent since connection
    TxPkts int
    Amount of packets sent since connection
    TxResets int
    Resets due to tx hung
    Uuid string
    BeaconEnabled bool
    BeaconRate int
    EddystoneUidEnabled bool
    EddystoneUidFreqMsec int
    EddystoneUidInstance string
    EddystoneUidNamespace string
    EddystoneUrlEnabled bool
    EddystoneUrlFreqMsec int
    Frequency (msec) of data emmit by Eddystone-UID beacon
    EddystoneUrlUrl string
    IbeaconEnabled bool
    IbeaconFreqMsec int
    IbeaconMajor int
    IbeaconMinor int
    IbeaconUuid string
    Major int
    Minors []int
    Power int
    RxBytes int
    Amount of traffic received since connection
    RxPkts int
    Amount of packets received since connection
    TxBytes int
    Amount of traffic sent since connection
    TxPkts int
    Amount of packets sent since connection
    TxResets int
    Resets due to tx hung
    Uuid string
    beaconEnabled Boolean
    beaconRate Integer
    eddystoneUidEnabled Boolean
    eddystoneUidFreqMsec Integer
    eddystoneUidInstance String
    eddystoneUidNamespace String
    eddystoneUrlEnabled Boolean
    eddystoneUrlFreqMsec Integer
    Frequency (msec) of data emmit by Eddystone-UID beacon
    eddystoneUrlUrl String
    ibeaconEnabled Boolean
    ibeaconFreqMsec Integer
    ibeaconMajor Integer
    ibeaconMinor Integer
    ibeaconUuid String
    major Integer
    minors List<Integer>
    power Integer
    rxBytes Integer
    Amount of traffic received since connection
    rxPkts Integer
    Amount of packets received since connection
    txBytes Integer
    Amount of traffic sent since connection
    txPkts Integer
    Amount of packets sent since connection
    txResets Integer
    Resets due to tx hung
    uuid String
    beaconEnabled boolean
    beaconRate number
    eddystoneUidEnabled boolean
    eddystoneUidFreqMsec number
    eddystoneUidInstance string
    eddystoneUidNamespace string
    eddystoneUrlEnabled boolean
    eddystoneUrlFreqMsec number
    Frequency (msec) of data emmit by Eddystone-UID beacon
    eddystoneUrlUrl string
    ibeaconEnabled boolean
    ibeaconFreqMsec number
    ibeaconMajor number
    ibeaconMinor number
    ibeaconUuid string
    major number
    minors number[]
    power number
    rxBytes number
    Amount of traffic received since connection
    rxPkts number
    Amount of packets received since connection
    txBytes number
    Amount of traffic sent since connection
    txPkts number
    Amount of packets sent since connection
    txResets number
    Resets due to tx hung
    uuid string
    beacon_enabled bool
    beacon_rate int
    eddystone_uid_enabled bool
    eddystone_uid_freq_msec int
    eddystone_uid_instance str
    eddystone_uid_namespace str
    eddystone_url_enabled bool
    eddystone_url_freq_msec int
    Frequency (msec) of data emmit by Eddystone-UID beacon
    eddystone_url_url str
    ibeacon_enabled bool
    ibeacon_freq_msec int
    ibeacon_major int
    ibeacon_minor int
    ibeacon_uuid str
    major int
    minors Sequence[int]
    power int
    rx_bytes int
    Amount of traffic received since connection
    rx_pkts int
    Amount of packets received since connection
    tx_bytes int
    Amount of traffic sent since connection
    tx_pkts int
    Amount of packets sent since connection
    tx_resets int
    Resets due to tx hung
    uuid str
    beaconEnabled Boolean
    beaconRate Number
    eddystoneUidEnabled Boolean
    eddystoneUidFreqMsec Number
    eddystoneUidInstance String
    eddystoneUidNamespace String
    eddystoneUrlEnabled Boolean
    eddystoneUrlFreqMsec Number
    Frequency (msec) of data emmit by Eddystone-UID beacon
    eddystoneUrlUrl String
    ibeaconEnabled Boolean
    ibeaconFreqMsec Number
    ibeaconMajor Number
    ibeaconMinor Number
    ibeaconUuid String
    major Number
    minors List<Number>
    power Number
    rxBytes Number
    Amount of traffic received since connection
    rxPkts Number
    Amount of packets received since connection
    txBytes Number
    Amount of traffic sent since connection
    txPkts Number
    Amount of packets sent since connection
    txResets Number
    Resets due to tx hung
    uuid String

    GetApStatsDeviceApStatEnvStat

    AccelX double
    AccelY double
    AccelZ double
    AmbientTemp int
    Attitude int
    CpuTemp int
    Humidity int
    MagneX double
    MagneY double
    MagneZ double
    Pressure double
    VcoreVoltage int
    AccelX float64
    AccelY float64
    AccelZ float64
    AmbientTemp int
    Attitude int
    CpuTemp int
    Humidity int
    MagneX float64
    MagneY float64
    MagneZ float64
    Pressure float64
    VcoreVoltage int
    accelX Double
    accelY Double
    accelZ Double
    ambientTemp Integer
    attitude Integer
    cpuTemp Integer
    humidity Integer
    magneX Double
    magneY Double
    magneZ Double
    pressure Double
    vcoreVoltage Integer
    accelX number
    accelY number
    accelZ number
    ambientTemp number
    attitude number
    cpuTemp number
    humidity number
    magneX number
    magneY number
    magneZ number
    pressure number
    vcoreVoltage number
    accelX Number
    accelY Number
    accelZ Number
    ambientTemp Number
    attitude Number
    cpuTemp Number
    humidity Number
    magneX Number
    magneY Number
    magneZ Number
    pressure Number
    vcoreVoltage Number

    GetApStatsDeviceApStatEslStat

    Channel int
    Connected bool
    Type string
    Up bool
    Channel int
    Connected bool
    Type string
    Up bool
    channel Integer
    connected Boolean
    type String
    up Boolean
    channel number
    connected boolean
    type string
    up boolean
    channel int
    connected bool
    type str
    up bool
    channel Number
    connected Boolean
    type String
    up Boolean

    GetApStatsDeviceApStatFwupdate

    Progress int
    Status string
    enum: inprogress, failed, upgraded
    StatusId int
    Timestamp double
    Epoch (seconds)
    WillRetry bool
    Progress int
    Status string
    enum: inprogress, failed, upgraded
    StatusId int
    Timestamp float64
    Epoch (seconds)
    WillRetry bool
    progress Integer
    status String
    enum: inprogress, failed, upgraded
    statusId Integer
    timestamp Double
    Epoch (seconds)
    willRetry Boolean
    progress number
    status string
    enum: inprogress, failed, upgraded
    statusId number
    timestamp number
    Epoch (seconds)
    willRetry boolean
    progress int
    status str
    enum: inprogress, failed, upgraded
    status_id int
    timestamp float
    Epoch (seconds)
    will_retry bool
    progress Number
    status String
    enum: inprogress, failed, upgraded
    statusId Number
    timestamp Number
    Epoch (seconds)
    willRetry Boolean

    GetApStatsDeviceApStatGps

    Accuracy double
    The estimated accuracy or accuracy of the GPS coordinates, measured in meters.
    Altitude double
    The elevation of the AP above sea level, measured in meters.
    Latitude double
    The geographic latitude of the AP, measured in degrees.
    Longitude double
    The geographic longitude of the AP, measured in degrees.
    Src string
    The origin of the GPS data. enum:

    • gps: from this device’s GPS estimates
    • other_ap from neighboring device GPS estimates
    Timestamp double
    Epoch (seconds)
    Accuracy float64
    The estimated accuracy or accuracy of the GPS coordinates, measured in meters.
    Altitude float64
    The elevation of the AP above sea level, measured in meters.
    Latitude float64
    The geographic latitude of the AP, measured in degrees.
    Longitude float64
    The geographic longitude of the AP, measured in degrees.
    Src string
    The origin of the GPS data. enum:

    • gps: from this device’s GPS estimates
    • other_ap from neighboring device GPS estimates
    Timestamp float64
    Epoch (seconds)
    accuracy Double
    The estimated accuracy or accuracy of the GPS coordinates, measured in meters.
    altitude Double
    The elevation of the AP above sea level, measured in meters.
    latitude Double
    The geographic latitude of the AP, measured in degrees.
    longitude Double
    The geographic longitude of the AP, measured in degrees.
    src String
    The origin of the GPS data. enum:

    • gps: from this device’s GPS estimates
    • other_ap from neighboring device GPS estimates
    timestamp Double
    Epoch (seconds)
    accuracy number
    The estimated accuracy or accuracy of the GPS coordinates, measured in meters.
    altitude number
    The elevation of the AP above sea level, measured in meters.
    latitude number
    The geographic latitude of the AP, measured in degrees.
    longitude number
    The geographic longitude of the AP, measured in degrees.
    src string
    The origin of the GPS data. enum:

    • gps: from this device’s GPS estimates
    • other_ap from neighboring device GPS estimates
    timestamp number
    Epoch (seconds)
    accuracy float
    The estimated accuracy or accuracy of the GPS coordinates, measured in meters.
    altitude float
    The elevation of the AP above sea level, measured in meters.
    latitude float
    The geographic latitude of the AP, measured in degrees.
    longitude float
    The geographic longitude of the AP, measured in degrees.
    src str
    The origin of the GPS data. enum:

    • gps: from this device’s GPS estimates
    • other_ap from neighboring device GPS estimates
    timestamp float
    Epoch (seconds)
    accuracy Number
    The estimated accuracy or accuracy of the GPS coordinates, measured in meters.
    altitude Number
    The elevation of the AP above sea level, measured in meters.
    latitude Number
    The geographic latitude of the AP, measured in degrees.
    longitude Number
    The geographic longitude of the AP, measured in degrees.
    src String
    The origin of the GPS data. enum:

    • gps: from this device’s GPS estimates
    • other_ap from neighboring device GPS estimates
    timestamp Number
    Epoch (seconds)

    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
    enum: dhcp, static
    Type6 string
    enum: autoconf, dhcp, disabled, static
    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
    enum: dhcp, static
    Type6 string
    enum: autoconf, dhcp, disabled, static
    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
    enum: dhcp, static
    type6 String
    enum: autoconf, dhcp, disabled, static
    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
    enum: dhcp, static
    type6 string
    enum: autoconf, dhcp, disabled, static
    vlanId number
    Management VLAN id, default is 1 (untagged)
    dns Sequence[str]
    If type==static
    dns_suffixes Sequence[str]
    Required if type==static
    gateway str
    Required if type==static
    gateway6 str
    ip str
    Required if type==static
    ip6 str
    mtu int
    netmask str
    Required if type==static
    netmask6 str
    type str
    enum: dhcp, static
    type6 str
    enum: autoconf, dhcp, disabled, static
    vlan_id 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 Number
    netmask String
    Required if type==static
    netmask6 String
    type String
    enum: dhcp, static
    type6 String
    enum: autoconf, dhcp, disabled, static
    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.JuniperMist.Device.Inputs.GetApStatsDeviceApStatL2tpStatSession>
    List of sessions
    State string
    enum: established, established_with_session, idle, wait-ctrl-conn, wait-ctrl-reply
    Uptime int
    Uptime
    WxtunnelId string
    WxlanTunnel ID
    Sessions []GetApStatsDeviceApStatL2tpStatSession
    List of sessions
    State string
    enum: established, established_with_session, idle, wait-ctrl-conn, wait-ctrl-reply
    Uptime int
    Uptime
    WxtunnelId string
    WxlanTunnel ID
    sessions List<GetApStatsDeviceApStatL2tpStatSession>
    List of sessions
    state String
    enum: established, established_with_session, idle, wait-ctrl-conn, wait-ctrl-reply
    uptime Integer
    Uptime
    wxtunnelId String
    WxlanTunnel ID
    sessions GetApStatsDeviceApStatL2tpStatSession[]
    List of sessions
    state string
    enum: established, established_with_session, idle, wait-ctrl-conn, wait-ctrl-reply
    uptime number
    Uptime
    wxtunnelId string
    WxlanTunnel ID
    sessions Sequence[GetApStatsDeviceApStatL2tpStatSession]
    List of sessions
    state str
    enum: established, established_with_session, idle, wait-ctrl-conn, wait-ctrl-reply
    uptime int
    Uptime
    wxtunnel_id str
    WxlanTunnel ID
    sessions List<Property Map>
    List of sessions
    state String
    enum: established, established_with_session, idle, wait-ctrl-conn, wait-ctrl-reply
    uptime Number
    Uptime
    wxtunnelId String
    WxlanTunnel ID

    GetApStatsDeviceApStatL2tpStatSession

    LocalSid int
    Remote sessions id (dynamically unless Tunnel is said to be static)
    RemoteId string
    WxlanTunnel Remote ID (user-configured)
    RemoteSid int
    Remote sessions id (dynamically unless Tunnel is said to be static)
    State string
    enum: established, established_with_session, idle, wait-ctrl-conn, wait-ctrl-reply
    LocalSid int
    Remote sessions id (dynamically unless Tunnel is said to be static)
    RemoteId string
    WxlanTunnel Remote ID (user-configured)
    RemoteSid int
    Remote sessions id (dynamically unless Tunnel is said to be static)
    State string
    enum: established, established_with_session, idle, wait-ctrl-conn, wait-ctrl-reply
    localSid Integer
    Remote sessions id (dynamically unless Tunnel is said to be static)
    remoteId String
    WxlanTunnel Remote ID (user-configured)
    remoteSid Integer
    Remote sessions id (dynamically unless Tunnel is said to be static)
    state String
    enum: established, established_with_session, idle, wait-ctrl-conn, wait-ctrl-reply
    localSid number
    Remote sessions id (dynamically unless Tunnel is said to be static)
    remoteId string
    WxlanTunnel Remote ID (user-configured)
    remoteSid number
    Remote sessions id (dynamically unless Tunnel is said to be static)
    state string
    enum: established, established_with_session, idle, wait-ctrl-conn, wait-ctrl-reply
    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
    enum: established, established_with_session, idle, wait-ctrl-conn, wait-ctrl-reply
    localSid Number
    Remote sessions id (dynamically unless Tunnel is said to be static)
    remoteId String
    WxlanTunnel Remote ID (user-configured)
    remoteSid Number
    Remote sessions id (dynamically unless Tunnel is said to be static)
    state String
    enum: established, established_with_session, idle, wait-ctrl-conn, wait-ctrl-reply

    GetApStatsDeviceApStatLastTrouble

    Code string
    Code definitions list at List Ap Led Definition
    Timestamp double
    Epoch (seconds)
    Code string
    Code definitions list at List Ap Led Definition
    Timestamp float64
    Epoch (seconds)
    code String
    Code definitions list at List Ap Led Definition
    timestamp Double
    Epoch (seconds)
    code string
    Code definitions list at List Ap Led Definition
    timestamp number
    Epoch (seconds)
    code str
    Code definitions list at List Ap Led Definition
    timestamp float
    Epoch (seconds)
    code String
    Code definitions list at List Ap Led Definition
    timestamp Number
    Epoch (seconds)

    GetApStatsDeviceApStatLed

    brightness Integer
    enabled Boolean
    brightness number
    enabled boolean
    brightness Number
    enabled Boolean

    GetApStatsDeviceApStatLldpStat

    ChassisId string
    LldpMedSupported bool
    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
    PowerRequestCount int
    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
    LldpMedSupported bool
    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
    PowerRequestCount int
    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
    lldpMedSupported Boolean
    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
    powerRequestCount Integer
    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
    lldpMedSupported boolean
    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
    powerRequestCount number
    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_supported bool
    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_count int
    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
    lldpMedSupported Boolean
    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
    powerRequestCount Number
    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
    Band string
    Channel int
    IdleTime int
    LastSeen double
    Last seen timestamp
    Proto string
    Rssi int
    RxBps int
    Rate of receiving traffic, bits/seconds, last known
    RxBytes int
    Amount of traffic received since connection
    RxPackets int
    Amount of packets received since connection
    RxRate double
    RX Rate, Mbps
    RxRetries int
    Amount of rx retries
    SiteId string
    Snr int
    TxBps int
    Rate of transmitting traffic, bits/seconds, last known
    TxBytes int
    Amount of traffic sent since connection
    TxPackets int
    Amount of packets sent since connection
    TxRate double
    TX Rate, Mbps
    TxRetries int
    Amount of tx retries
    Band string
    Channel int
    IdleTime int
    LastSeen float64
    Last seen timestamp
    Proto string
    Rssi int
    RxBps int
    Rate of receiving traffic, bits/seconds, last known
    RxBytes int
    Amount of traffic received since connection
    RxPackets int
    Amount of packets received since connection
    RxRate float64
    RX Rate, Mbps
    RxRetries int
    Amount of rx retries
    SiteId string
    Snr int
    TxBps int
    Rate of transmitting traffic, bits/seconds, last known
    TxBytes int
    Amount of traffic sent since connection
    TxPackets int
    Amount of packets sent since connection
    TxRate float64
    TX Rate, Mbps
    TxRetries int
    Amount of tx retries
    band String
    channel Integer
    idleTime Integer
    lastSeen Double
    Last seen timestamp
    proto String
    rssi Integer
    rxBps Integer
    Rate of receiving traffic, bits/seconds, last known
    rxBytes Integer
    Amount of traffic received since connection
    rxPackets Integer
    Amount of packets received since connection
    rxRate Double
    RX Rate, Mbps
    rxRetries Integer
    Amount of rx retries
    siteId String
    snr Integer
    txBps Integer
    Rate of transmitting traffic, bits/seconds, last known
    txBytes Integer
    Amount of traffic sent since connection
    txPackets Integer
    Amount of packets sent since connection
    txRate Double
    TX Rate, Mbps
    txRetries Integer
    Amount of tx retries
    band string
    channel number
    idleTime number
    lastSeen number
    Last seen timestamp
    proto string
    rssi number
    rxBps number
    Rate of receiving traffic, bits/seconds, last known
    rxBytes number
    Amount of traffic received since connection
    rxPackets number
    Amount of packets received since connection
    rxRate number
    RX Rate, Mbps
    rxRetries number
    Amount of rx retries
    siteId string
    snr number
    txBps number
    Rate of transmitting traffic, bits/seconds, last known
    txBytes number
    Amount of traffic sent since connection
    txPackets number
    Amount of packets sent since connection
    txRate number
    TX Rate, Mbps
    txRetries number
    Amount of tx retries
    band str
    channel int
    idle_time int
    last_seen float
    Last seen timestamp
    proto str
    rssi int
    rx_bps int
    Rate of receiving traffic, bits/seconds, last known
    rx_bytes int
    Amount of traffic received since connection
    rx_packets int
    Amount of packets received since connection
    rx_rate float
    RX Rate, Mbps
    rx_retries int
    Amount of rx retries
    site_id str
    snr int
    tx_bps int
    Rate of transmitting traffic, bits/seconds, last known
    tx_bytes int
    Amount of traffic sent since connection
    tx_packets int
    Amount of packets sent since connection
    tx_rate float
    TX Rate, Mbps
    tx_retries int
    Amount of tx retries
    band String
    channel Number
    idleTime Number
    lastSeen Number
    Last seen timestamp
    proto String
    rssi Number
    rxBps Number
    Rate of receiving traffic, bits/seconds, last known
    rxBytes Number
    Amount of traffic received since connection
    rxPackets Number
    Amount of packets received since connection
    rxRate Number
    RX Rate, Mbps
    rxRetries Number
    Amount of rx retries
    siteId String
    snr Number
    txBps Number
    Rate of transmitting traffic, bits/seconds, last known
    txBytes Number
    Amount of traffic sent since connection
    txPackets Number
    Amount of packets sent since connection
    txRate Number
    TX Rate, Mbps
    txRetries Number
    Amount of tx retries
    Band string
    Channel int
    IdleTime int
    LastSeen double
    Last seen timestamp
    Proto string
    Rssi int
    RxBps int
    Rate of receiving traffic, bits/seconds, last known
    RxBytes int
    Amount of traffic received since connection
    RxPackets int
    Amount of packets received since connection
    RxRate double
    RX Rate, Mbps
    RxRetries int
    Amount of rx retries
    SiteId string
    Snr int
    TxBps int
    Rate of transmitting traffic, bits/seconds, last known
    TxBytes int
    Amount of traffic sent since connection
    TxPackets int
    Amount of packets sent since connection
    TxRate double
    TX Rate, Mbps
    TxRetries int
    Amount of tx retries
    UplinkApId string
    Band string
    Channel int
    IdleTime int
    LastSeen float64
    Last seen timestamp
    Proto string
    Rssi int
    RxBps int
    Rate of receiving traffic, bits/seconds, last known
    RxBytes int
    Amount of traffic received since connection
    RxPackets int
    Amount of packets received since connection
    RxRate float64
    RX Rate, Mbps
    RxRetries int
    Amount of rx retries
    SiteId string
    Snr int
    TxBps int
    Rate of transmitting traffic, bits/seconds, last known
    TxBytes int
    Amount of traffic sent since connection
    TxPackets int
    Amount of packets sent since connection
    TxRate float64
    TX Rate, Mbps
    TxRetries int
    Amount of tx retries
    UplinkApId string
    band String
    channel Integer
    idleTime Integer
    lastSeen Double
    Last seen timestamp
    proto String
    rssi Integer
    rxBps Integer
    Rate of receiving traffic, bits/seconds, last known
    rxBytes Integer
    Amount of traffic received since connection
    rxPackets Integer
    Amount of packets received since connection
    rxRate Double
    RX Rate, Mbps
    rxRetries Integer
    Amount of rx retries
    siteId String
    snr Integer
    txBps Integer
    Rate of transmitting traffic, bits/seconds, last known
    txBytes Integer
    Amount of traffic sent since connection
    txPackets Integer
    Amount of packets sent since connection
    txRate Double
    TX Rate, Mbps
    txRetries Integer
    Amount of tx retries
    uplinkApId String
    band string
    channel number
    idleTime number
    lastSeen number
    Last seen timestamp
    proto string
    rssi number
    rxBps number
    Rate of receiving traffic, bits/seconds, last known
    rxBytes number
    Amount of traffic received since connection
    rxPackets number
    Amount of packets received since connection
    rxRate number
    RX Rate, Mbps
    rxRetries number
    Amount of rx retries
    siteId string
    snr number
    txBps number
    Rate of transmitting traffic, bits/seconds, last known
    txBytes number
    Amount of traffic sent since connection
    txPackets number
    Amount of packets sent since connection
    txRate number
    TX Rate, Mbps
    txRetries number
    Amount of tx retries
    uplinkApId string
    band str
    channel int
    idle_time int
    last_seen float
    Last seen timestamp
    proto str
    rssi int
    rx_bps int
    Rate of receiving traffic, bits/seconds, last known
    rx_bytes int
    Amount of traffic received since connection
    rx_packets int
    Amount of packets received since connection
    rx_rate float
    RX Rate, Mbps
    rx_retries int
    Amount of rx retries
    site_id str
    snr int
    tx_bps int
    Rate of transmitting traffic, bits/seconds, last known
    tx_bytes int
    Amount of traffic sent since connection
    tx_packets int
    Amount of packets sent since connection
    tx_rate float
    TX Rate, Mbps
    tx_retries int
    Amount of tx retries
    uplink_ap_id str
    band String
    channel Number
    idleTime Number
    lastSeen Number
    Last seen timestamp
    proto String
    rssi Number
    rxBps Number
    Rate of receiving traffic, bits/seconds, last known
    rxBytes Number
    Amount of traffic received since connection
    rxPackets Number
    Amount of packets received since connection
    rxRate Number
    RX Rate, Mbps
    rxRetries Number
    Amount of rx retries
    siteId String
    snr Number
    txBps Number
    Rate of transmitting traffic, bits/seconds, last known
    txBytes Number
    Amount of traffic sent since connection
    txPackets Number
    Amount of packets sent since connection
    txRate Number
    TX Rate, Mbps
    txRetries Number
    Amount of tx retries
    uplinkApId String

    GetApStatsDeviceApStatPortStat

    FullDuplex bool
    RxBytes int
    Amount of traffic received since connection
    RxErrors int
    RxPeakBps int
    RxPkts int
    Amount of packets received since connection
    Speed int
    TxBytes int
    Amount of traffic sent since connection
    TxPeakBps int
    TxPkts int
    Amount of packets sent since connection
    Up bool
    FullDuplex bool
    RxBytes int
    Amount of traffic received since connection
    RxErrors int
    RxPeakBps int
    RxPkts int
    Amount of packets received since connection
    Speed int
    TxBytes int
    Amount of traffic sent since connection
    TxPeakBps int
    TxPkts int
    Amount of packets sent since connection
    Up bool
    fullDuplex Boolean
    rxBytes Integer
    Amount of traffic received since connection
    rxErrors Integer
    rxPeakBps Integer
    rxPkts Integer
    Amount of packets received since connection
    speed Integer
    txBytes Integer
    Amount of traffic sent since connection
    txPeakBps Integer
    txPkts Integer
    Amount of packets sent since connection
    up Boolean
    fullDuplex boolean
    rxBytes number
    Amount of traffic received since connection
    rxErrors number
    rxPeakBps number
    rxPkts number
    Amount of packets received since connection
    speed number
    txBytes number
    Amount of traffic sent since connection
    txPeakBps number
    txPkts number
    Amount of packets sent since connection
    up boolean
    full_duplex bool
    rx_bytes int
    Amount of traffic received since connection
    rx_errors int
    rx_peak_bps int
    rx_pkts int
    Amount of packets received since connection
    speed int
    tx_bytes int
    Amount of traffic sent since connection
    tx_peak_bps int
    tx_pkts int
    Amount of packets sent since connection
    up bool
    fullDuplex Boolean
    rxBytes Number
    Amount of traffic received since connection
    rxErrors Number
    rxPeakBps Number
    rxPkts Number
    Amount of packets received since connection
    speed Number
    txBytes Number
    Amount of traffic sent since connection
    txPeakBps Number
    txPkts Number
    Amount of packets sent since connection
    up Boolean

    GetApStatsDeviceApStatRadioStat

    GetApStatsDeviceApStatRadioStatBand24

    Bandwidth int
    channel width for the band.enum: 20, 40, 80 (only applicable for band_5 and band_6), 160 (only for band_6)
    Channel int
    Current channel the radio is running on
    DynamicChainingEnabled bool
    Use dynamic chaining for downlink
    Mac string
    Radio (base) mac, it can have 16 bssids (e.g. 5c5b350001a0-5c5b350001af)
    NoiseFloor int
    NumClients int
    NumWlans int
    How many WLANs are applied to the radio
    Power int
    Transmit power (in dBm)
    RxBytes int
    Amount of traffic received since connection
    RxPkts int
    Amount of packets received since connection
    TxBytes int
    Amount of traffic sent since connection
    TxPkts int
    Amount of packets sent since connection
    Usage string
    UtilAll int
    All utilization in percentage
    UtilNonWifi int
    Reception of "No Packets" utilization in percentage, received frames with invalid PLCPs and CRS glitches as noise
    UtilRxInBss int
    Reception of "In BSS" utilization in percentage, only frames that are received from AP/STAs within the BSS
    UtilRxOtherBss int
    Reception of "Other BSS" utilization in percentage, all frames received from AP/STAs that are outside the BSS
    UtilTx int
    Transmission utilization in percentage
    UtilUndecodableWifi int
    Reception of "UnDecodable Wifi" utilization in percentage, only Preamble, PLCP header is decoded, Rest is undecodable in this radio
    UtilUnknownWifi int
    Reception of "No Category" utilization in percentage, all 802.11 frames that are corrupted at the receiver
    Bandwidth int
    channel width for the band.enum: 20, 40, 80 (only applicable for band_5 and band_6), 160 (only for band_6)
    Channel int
    Current channel the radio is running on
    DynamicChainingEnabled bool
    Use dynamic chaining for downlink
    Mac string
    Radio (base) mac, it can have 16 bssids (e.g. 5c5b350001a0-5c5b350001af)
    NoiseFloor int
    NumClients int
    NumWlans int
    How many WLANs are applied to the radio
    Power int
    Transmit power (in dBm)
    RxBytes int
    Amount of traffic received since connection
    RxPkts int
    Amount of packets received since connection
    TxBytes int
    Amount of traffic sent since connection
    TxPkts int
    Amount of packets sent since connection
    Usage string
    UtilAll int
    All utilization in percentage
    UtilNonWifi int
    Reception of "No Packets" utilization in percentage, received frames with invalid PLCPs and CRS glitches as noise
    UtilRxInBss int
    Reception of "In BSS" utilization in percentage, only frames that are received from AP/STAs within the BSS
    UtilRxOtherBss int
    Reception of "Other BSS" utilization in percentage, all frames received from AP/STAs that are outside the BSS
    UtilTx int
    Transmission utilization in percentage
    UtilUndecodableWifi int
    Reception of "UnDecodable Wifi" utilization in percentage, only Preamble, PLCP header is decoded, Rest is undecodable in this radio
    UtilUnknownWifi int
    Reception of "No Category" utilization in percentage, all 802.11 frames that are corrupted at the receiver
    bandwidth Integer
    channel width for the band.enum: 20, 40, 80 (only applicable for band_5 and band_6), 160 (only for band_6)
    channel Integer
    Current channel the radio is running on
    dynamicChainingEnabled Boolean
    Use dynamic chaining for downlink
    mac String
    Radio (base) mac, it can have 16 bssids (e.g. 5c5b350001a0-5c5b350001af)
    noiseFloor Integer
    numClients Integer
    numWlans Integer
    How many WLANs are applied to the radio
    power Integer
    Transmit power (in dBm)
    rxBytes Integer
    Amount of traffic received since connection
    rxPkts Integer
    Amount of packets received since connection
    txBytes Integer
    Amount of traffic sent since connection
    txPkts Integer
    Amount of packets sent since connection
    usage String
    utilAll Integer
    All utilization in percentage
    utilNonWifi Integer
    Reception of "No Packets" utilization in percentage, received frames with invalid PLCPs and CRS glitches as noise
    utilRxInBss Integer
    Reception of "In BSS" utilization in percentage, only frames that are received from AP/STAs within the BSS
    utilRxOtherBss Integer
    Reception of "Other BSS" utilization in percentage, all frames received from AP/STAs that are outside the BSS
    utilTx Integer
    Transmission utilization in percentage
    utilUndecodableWifi Integer
    Reception of "UnDecodable Wifi" utilization in percentage, only Preamble, PLCP header is decoded, Rest is undecodable in this radio
    utilUnknownWifi Integer
    Reception of "No Category" utilization in percentage, all 802.11 frames that are corrupted at the receiver
    bandwidth number
    channel width for the band.enum: 20, 40, 80 (only applicable for band_5 and band_6), 160 (only for band_6)
    channel number
    Current channel the radio is running on
    dynamicChainingEnabled boolean
    Use dynamic chaining for downlink
    mac string
    Radio (base) mac, it can have 16 bssids (e.g. 5c5b350001a0-5c5b350001af)
    noiseFloor number
    numClients number
    numWlans number
    How many WLANs are applied to the radio
    power number
    Transmit power (in dBm)
    rxBytes number
    Amount of traffic received since connection
    rxPkts number
    Amount of packets received since connection
    txBytes number
    Amount of traffic sent since connection
    txPkts number
    Amount of packets sent since connection
    usage string
    utilAll number
    All utilization in percentage
    utilNonWifi number
    Reception of "No Packets" utilization in percentage, received frames with invalid PLCPs and CRS glitches as noise
    utilRxInBss number
    Reception of "In BSS" utilization in percentage, only frames that are received from AP/STAs within the BSS
    utilRxOtherBss number
    Reception of "Other BSS" utilization in percentage, all frames received from AP/STAs that are outside the BSS
    utilTx number
    Transmission utilization in percentage
    utilUndecodableWifi number
    Reception of "UnDecodable Wifi" utilization in percentage, only Preamble, PLCP header is decoded, Rest is undecodable in this radio
    utilUnknownWifi number
    Reception of "No Category" utilization in percentage, all 802.11 frames that are corrupted at the receiver
    bandwidth int
    channel width for the band.enum: 20, 40, 80 (only applicable for band_5 and band_6), 160 (only for band_6)
    channel int
    Current channel the radio is running on
    dynamic_chaining_enabled bool
    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
    num_wlans int
    How many WLANs are applied to the radio
    power int
    Transmit power (in dBm)
    rx_bytes int
    Amount of traffic received since connection
    rx_pkts int
    Amount of packets received since connection
    tx_bytes int
    Amount of traffic sent since connection
    tx_pkts int
    Amount of packets sent since connection
    usage str
    util_all int
    All utilization in percentage
    util_non_wifi int
    Reception of "No Packets" utilization in percentage, received frames with invalid PLCPs and CRS glitches as noise
    util_rx_in_bss int
    Reception of "In BSS" utilization in percentage, only frames that are received from AP/STAs within the BSS
    util_rx_other_bss int
    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_wifi int
    Reception of "UnDecodable Wifi" utilization in percentage, only Preamble, PLCP header is decoded, Rest is undecodable in this radio
    util_unknown_wifi int
    Reception of "No Category" utilization in percentage, all 802.11 frames that are corrupted at the receiver
    bandwidth Number
    channel width for the band.enum: 20, 40, 80 (only applicable for band_5 and band_6), 160 (only for band_6)
    channel Number
    Current channel the radio is running on
    dynamicChainingEnabled Boolean
    Use dynamic chaining for downlink
    mac String
    Radio (base) mac, it can have 16 bssids (e.g. 5c5b350001a0-5c5b350001af)
    noiseFloor Number
    numClients Number
    numWlans Number
    How many WLANs are applied to the radio
    power Number
    Transmit power (in dBm)
    rxBytes Number
    Amount of traffic received since connection
    rxPkts Number
    Amount of packets received since connection
    txBytes Number
    Amount of traffic sent since connection
    txPkts Number
    Amount of packets sent since connection
    usage String
    utilAll Number
    All utilization in percentage
    utilNonWifi Number
    Reception of "No Packets" utilization in percentage, received frames with invalid PLCPs and CRS glitches as noise
    utilRxInBss Number
    Reception of "In BSS" utilization in percentage, only frames that are received from AP/STAs within the BSS
    utilRxOtherBss Number
    Reception of "Other BSS" utilization in percentage, all frames received from AP/STAs that are outside the BSS
    utilTx Number
    Transmission utilization in percentage
    utilUndecodableWifi Number
    Reception of "UnDecodable Wifi" utilization in percentage, only Preamble, PLCP header is decoded, Rest is undecodable in this radio
    utilUnknownWifi Number
    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.enum: 20, 40, 80 (only applicable for band_5 and band_6), 160 (only for band_6)
    Channel int
    Current channel the radio is running on
    DynamicChainingEnabled bool
    Use dynamic chaining for downlink
    Mac string
    Radio (base) mac, it can have 16 bssids (e.g. 5c5b350001a0-5c5b350001af)
    NoiseFloor int
    NumClients int
    NumWlans int
    How many WLANs are applied to the radio
    Power int
    Transmit power (in dBm)
    RxBytes int
    Amount of traffic received since connection
    RxPkts int
    Amount of packets received since connection
    TxBytes int
    Amount of traffic sent since connection
    TxPkts int
    Amount of packets sent since connection
    Usage string
    UtilAll int
    All utilization in percentage
    UtilNonWifi int
    Reception of "No Packets" utilization in percentage, received frames with invalid PLCPs and CRS glitches as noise
    UtilRxInBss int
    Reception of "In BSS" utilization in percentage, only frames that are received from AP/STAs within the BSS
    UtilRxOtherBss int
    Reception of "Other BSS" utilization in percentage, all frames received from AP/STAs that are outside the BSS
    UtilTx int
    Transmission utilization in percentage
    UtilUndecodableWifi int
    Reception of "UnDecodable Wifi" utilization in percentage, only Preamble, PLCP header is decoded, Rest is undecodable in this radio
    UtilUnknownWifi int
    Reception of "No Category" utilization in percentage, all 802.11 frames that are corrupted at the receiver
    Bandwidth int
    channel width for the band.enum: 20, 40, 80 (only applicable for band_5 and band_6), 160 (only for band_6)
    Channel int
    Current channel the radio is running on
    DynamicChainingEnabled bool
    Use dynamic chaining for downlink
    Mac string
    Radio (base) mac, it can have 16 bssids (e.g. 5c5b350001a0-5c5b350001af)
    NoiseFloor int
    NumClients int
    NumWlans int
    How many WLANs are applied to the radio
    Power int
    Transmit power (in dBm)
    RxBytes int
    Amount of traffic received since connection
    RxPkts int
    Amount of packets received since connection
    TxBytes int
    Amount of traffic sent since connection
    TxPkts int
    Amount of packets sent since connection
    Usage string
    UtilAll int
    All utilization in percentage
    UtilNonWifi int
    Reception of "No Packets" utilization in percentage, received frames with invalid PLCPs and CRS glitches as noise
    UtilRxInBss int
    Reception of "In BSS" utilization in percentage, only frames that are received from AP/STAs within the BSS
    UtilRxOtherBss int
    Reception of "Other BSS" utilization in percentage, all frames received from AP/STAs that are outside the BSS
    UtilTx int
    Transmission utilization in percentage
    UtilUndecodableWifi int
    Reception of "UnDecodable Wifi" utilization in percentage, only Preamble, PLCP header is decoded, Rest is undecodable in this radio
    UtilUnknownWifi int
    Reception of "No Category" utilization in percentage, all 802.11 frames that are corrupted at the receiver
    bandwidth Integer
    channel width for the band.enum: 20, 40, 80 (only applicable for band_5 and band_6), 160 (only for band_6)
    channel Integer
    Current channel the radio is running on
    dynamicChainingEnabled Boolean
    Use dynamic chaining for downlink
    mac String
    Radio (base) mac, it can have 16 bssids (e.g. 5c5b350001a0-5c5b350001af)
    noiseFloor Integer
    numClients Integer
    numWlans Integer
    How many WLANs are applied to the radio
    power Integer
    Transmit power (in dBm)
    rxBytes Integer
    Amount of traffic received since connection
    rxPkts Integer
    Amount of packets received since connection
    txBytes Integer
    Amount of traffic sent since connection
    txPkts Integer
    Amount of packets sent since connection
    usage String
    utilAll Integer
    All utilization in percentage
    utilNonWifi Integer
    Reception of "No Packets" utilization in percentage, received frames with invalid PLCPs and CRS glitches as noise
    utilRxInBss Integer
    Reception of "In BSS" utilization in percentage, only frames that are received from AP/STAs within the BSS
    utilRxOtherBss Integer
    Reception of "Other BSS" utilization in percentage, all frames received from AP/STAs that are outside the BSS
    utilTx Integer
    Transmission utilization in percentage
    utilUndecodableWifi Integer
    Reception of "UnDecodable Wifi" utilization in percentage, only Preamble, PLCP header is decoded, Rest is undecodable in this radio
    utilUnknownWifi Integer
    Reception of "No Category" utilization in percentage, all 802.11 frames that are corrupted at the receiver
    bandwidth number
    channel width for the band.enum: 20, 40, 80 (only applicable for band_5 and band_6), 160 (only for band_6)
    channel number
    Current channel the radio is running on
    dynamicChainingEnabled boolean
    Use dynamic chaining for downlink
    mac string
    Radio (base) mac, it can have 16 bssids (e.g. 5c5b350001a0-5c5b350001af)
    noiseFloor number
    numClients number
    numWlans number
    How many WLANs are applied to the radio
    power number
    Transmit power (in dBm)
    rxBytes number
    Amount of traffic received since connection
    rxPkts number
    Amount of packets received since connection
    txBytes number
    Amount of traffic sent since connection
    txPkts number
    Amount of packets sent since connection
    usage string
    utilAll number
    All utilization in percentage
    utilNonWifi number
    Reception of "No Packets" utilization in percentage, received frames with invalid PLCPs and CRS glitches as noise
    utilRxInBss number
    Reception of "In BSS" utilization in percentage, only frames that are received from AP/STAs within the BSS
    utilRxOtherBss number
    Reception of "Other BSS" utilization in percentage, all frames received from AP/STAs that are outside the BSS
    utilTx number
    Transmission utilization in percentage
    utilUndecodableWifi number
    Reception of "UnDecodable Wifi" utilization in percentage, only Preamble, PLCP header is decoded, Rest is undecodable in this radio
    utilUnknownWifi number
    Reception of "No Category" utilization in percentage, all 802.11 frames that are corrupted at the receiver
    bandwidth int
    channel width for the band.enum: 20, 40, 80 (only applicable for band_5 and band_6), 160 (only for band_6)
    channel int
    Current channel the radio is running on
    dynamic_chaining_enabled bool
    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
    num_wlans int
    How many WLANs are applied to the radio
    power int
    Transmit power (in dBm)
    rx_bytes int
    Amount of traffic received since connection
    rx_pkts int
    Amount of packets received since connection
    tx_bytes int
    Amount of traffic sent since connection
    tx_pkts int
    Amount of packets sent since connection
    usage str
    util_all int
    All utilization in percentage
    util_non_wifi int
    Reception of "No Packets" utilization in percentage, received frames with invalid PLCPs and CRS glitches as noise
    util_rx_in_bss int
    Reception of "In BSS" utilization in percentage, only frames that are received from AP/STAs within the BSS
    util_rx_other_bss int
    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_wifi int
    Reception of "UnDecodable Wifi" utilization in percentage, only Preamble, PLCP header is decoded, Rest is undecodable in this radio
    util_unknown_wifi int
    Reception of "No Category" utilization in percentage, all 802.11 frames that are corrupted at the receiver
    bandwidth Number
    channel width for the band.enum: 20, 40, 80 (only applicable for band_5 and band_6), 160 (only for band_6)
    channel Number
    Current channel the radio is running on
    dynamicChainingEnabled Boolean
    Use dynamic chaining for downlink
    mac String
    Radio (base) mac, it can have 16 bssids (e.g. 5c5b350001a0-5c5b350001af)
    noiseFloor Number
    numClients Number
    numWlans Number
    How many WLANs are applied to the radio
    power Number
    Transmit power (in dBm)
    rxBytes Number
    Amount of traffic received since connection
    rxPkts Number
    Amount of packets received since connection
    txBytes Number
    Amount of traffic sent since connection
    txPkts Number
    Amount of packets sent since connection
    usage String
    utilAll Number
    All utilization in percentage
    utilNonWifi Number
    Reception of "No Packets" utilization in percentage, received frames with invalid PLCPs and CRS glitches as noise
    utilRxInBss Number
    Reception of "In BSS" utilization in percentage, only frames that are received from AP/STAs within the BSS
    utilRxOtherBss Number
    Reception of "Other BSS" utilization in percentage, all frames received from AP/STAs that are outside the BSS
    utilTx Number
    Transmission utilization in percentage
    utilUndecodableWifi Number
    Reception of "UnDecodable Wifi" utilization in percentage, only Preamble, PLCP header is decoded, Rest is undecodable in this radio
    utilUnknownWifi Number
    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.enum: 20, 40, 80 (only applicable for band_5 and band_6), 160 (only for band_6)
    Channel int
    Current channel the radio is running on
    DynamicChainingEnabled bool
    Use dynamic chaining for downlink
    Mac string
    Radio (base) mac, it can have 16 bssids (e.g. 5c5b350001a0-5c5b350001af)
    NoiseFloor int
    NumClients int
    NumWlans int
    How many WLANs are applied to the radio
    Power int
    Transmit power (in dBm)
    RxBytes int
    Amount of traffic received since connection
    RxPkts int
    Amount of packets received since connection
    TxBytes int
    Amount of traffic sent since connection
    TxPkts int
    Amount of packets sent since connection
    Usage string
    UtilAll int
    All utilization in percentage
    UtilNonWifi int
    Reception of "No Packets" utilization in percentage, received frames with invalid PLCPs and CRS glitches as noise
    UtilRxInBss int
    Reception of "In BSS" utilization in percentage, only frames that are received from AP/STAs within the BSS
    UtilRxOtherBss int
    Reception of "Other BSS" utilization in percentage, all frames received from AP/STAs that are outside the BSS
    UtilTx int
    Transmission utilization in percentage
    UtilUndecodableWifi int
    Reception of "UnDecodable Wifi" utilization in percentage, only Preamble, PLCP header is decoded, Rest is undecodable in this radio
    UtilUnknownWifi int
    Reception of "No Category" utilization in percentage, all 802.11 frames that are corrupted at the receiver
    Bandwidth int
    channel width for the band.enum: 20, 40, 80 (only applicable for band_5 and band_6), 160 (only for band_6)
    Channel int
    Current channel the radio is running on
    DynamicChainingEnabled bool
    Use dynamic chaining for downlink
    Mac string
    Radio (base) mac, it can have 16 bssids (e.g. 5c5b350001a0-5c5b350001af)
    NoiseFloor int
    NumClients int
    NumWlans int
    How many WLANs are applied to the radio
    Power int
    Transmit power (in dBm)
    RxBytes int
    Amount of traffic received since connection
    RxPkts int
    Amount of packets received since connection
    TxBytes int
    Amount of traffic sent since connection
    TxPkts int
    Amount of packets sent since connection
    Usage string
    UtilAll int
    All utilization in percentage
    UtilNonWifi int
    Reception of "No Packets" utilization in percentage, received frames with invalid PLCPs and CRS glitches as noise
    UtilRxInBss int
    Reception of "In BSS" utilization in percentage, only frames that are received from AP/STAs within the BSS
    UtilRxOtherBss int
    Reception of "Other BSS" utilization in percentage, all frames received from AP/STAs that are outside the BSS
    UtilTx int
    Transmission utilization in percentage
    UtilUndecodableWifi int
    Reception of "UnDecodable Wifi" utilization in percentage, only Preamble, PLCP header is decoded, Rest is undecodable in this radio
    UtilUnknownWifi int
    Reception of "No Category" utilization in percentage, all 802.11 frames that are corrupted at the receiver
    bandwidth Integer
    channel width for the band.enum: 20, 40, 80 (only applicable for band_5 and band_6), 160 (only for band_6)
    channel Integer
    Current channel the radio is running on
    dynamicChainingEnabled Boolean
    Use dynamic chaining for downlink
    mac String
    Radio (base) mac, it can have 16 bssids (e.g. 5c5b350001a0-5c5b350001af)
    noiseFloor Integer
    numClients Integer
    numWlans Integer
    How many WLANs are applied to the radio
    power Integer
    Transmit power (in dBm)
    rxBytes Integer
    Amount of traffic received since connection
    rxPkts Integer
    Amount of packets received since connection
    txBytes Integer
    Amount of traffic sent since connection
    txPkts Integer
    Amount of packets sent since connection
    usage String
    utilAll Integer
    All utilization in percentage
    utilNonWifi Integer
    Reception of "No Packets" utilization in percentage, received frames with invalid PLCPs and CRS glitches as noise
    utilRxInBss Integer
    Reception of "In BSS" utilization in percentage, only frames that are received from AP/STAs within the BSS
    utilRxOtherBss Integer
    Reception of "Other BSS" utilization in percentage, all frames received from AP/STAs that are outside the BSS
    utilTx Integer
    Transmission utilization in percentage
    utilUndecodableWifi Integer
    Reception of "UnDecodable Wifi" utilization in percentage, only Preamble, PLCP header is decoded, Rest is undecodable in this radio
    utilUnknownWifi Integer
    Reception of "No Category" utilization in percentage, all 802.11 frames that are corrupted at the receiver
    bandwidth number
    channel width for the band.enum: 20, 40, 80 (only applicable for band_5 and band_6), 160 (only for band_6)
    channel number
    Current channel the radio is running on
    dynamicChainingEnabled boolean
    Use dynamic chaining for downlink
    mac string
    Radio (base) mac, it can have 16 bssids (e.g. 5c5b350001a0-5c5b350001af)
    noiseFloor number
    numClients number
    numWlans number
    How many WLANs are applied to the radio
    power number
    Transmit power (in dBm)
    rxBytes number
    Amount of traffic received since connection
    rxPkts number
    Amount of packets received since connection
    txBytes number
    Amount of traffic sent since connection
    txPkts number
    Amount of packets sent since connection
    usage string
    utilAll number
    All utilization in percentage
    utilNonWifi number
    Reception of "No Packets" utilization in percentage, received frames with invalid PLCPs and CRS glitches as noise
    utilRxInBss number
    Reception of "In BSS" utilization in percentage, only frames that are received from AP/STAs within the BSS
    utilRxOtherBss number
    Reception of "Other BSS" utilization in percentage, all frames received from AP/STAs that are outside the BSS
    utilTx number
    Transmission utilization in percentage
    utilUndecodableWifi number
    Reception of "UnDecodable Wifi" utilization in percentage, only Preamble, PLCP header is decoded, Rest is undecodable in this radio
    utilUnknownWifi number
    Reception of "No Category" utilization in percentage, all 802.11 frames that are corrupted at the receiver
    bandwidth int
    channel width for the band.enum: 20, 40, 80 (only applicable for band_5 and band_6), 160 (only for band_6)
    channel int
    Current channel the radio is running on
    dynamic_chaining_enabled bool
    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
    num_wlans int
    How many WLANs are applied to the radio
    power int
    Transmit power (in dBm)
    rx_bytes int
    Amount of traffic received since connection
    rx_pkts int
    Amount of packets received since connection
    tx_bytes int
    Amount of traffic sent since connection
    tx_pkts int
    Amount of packets sent since connection
    usage str
    util_all int
    All utilization in percentage
    util_non_wifi int
    Reception of "No Packets" utilization in percentage, received frames with invalid PLCPs and CRS glitches as noise
    util_rx_in_bss int
    Reception of "In BSS" utilization in percentage, only frames that are received from AP/STAs within the BSS
    util_rx_other_bss int
    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_wifi int
    Reception of "UnDecodable Wifi" utilization in percentage, only Preamble, PLCP header is decoded, Rest is undecodable in this radio
    util_unknown_wifi int
    Reception of "No Category" utilization in percentage, all 802.11 frames that are corrupted at the receiver
    bandwidth Number
    channel width for the band.enum: 20, 40, 80 (only applicable for band_5 and band_6), 160 (only for band_6)
    channel Number
    Current channel the radio is running on
    dynamicChainingEnabled Boolean
    Use dynamic chaining for downlink
    mac String
    Radio (base) mac, it can have 16 bssids (e.g. 5c5b350001a0-5c5b350001af)
    noiseFloor Number
    numClients Number
    numWlans Number
    How many WLANs are applied to the radio
    power Number
    Transmit power (in dBm)
    rxBytes Number
    Amount of traffic received since connection
    rxPkts Number
    Amount of packets received since connection
    txBytes Number
    Amount of traffic sent since connection
    txPkts Number
    Amount of packets sent since connection
    usage String
    utilAll Number
    All utilization in percentage
    utilNonWifi Number
    Reception of "No Packets" utilization in percentage, received frames with invalid PLCPs and CRS glitches as noise
    utilRxInBss Number
    Reception of "In BSS" utilization in percentage, only frames that are received from AP/STAs within the BSS
    utilRxOtherBss Number
    Reception of "Other BSS" utilization in percentage, all frames received from AP/STAs that are outside the BSS
    utilTx Number
    Transmission utilization in percentage
    utilUndecodableWifi Number
    Reception of "UnDecodable Wifi" utilization in percentage, only Preamble, PLCP header is decoded, Rest is undecodable in this radio
    utilUnknownWifi Number
    Reception of "No Category" utilization in percentage, all 802.11 frames that are corrupted at the receiver

    GetApStatsDeviceApStatSwitchRedundancy

    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 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 mist Terraform Provider.
    junipermist logo
    Juniper Mist v0.4.0 published on Wednesday, Apr 16, 2025 by Pulumi