Juniper Mist v0.6.4 published on Thursday, Nov 13, 2025 by Pulumi
Juniper Mist v0.6.4 published on Thursday, Nov 13, 2025 by Pulumi
This data source provides the list of Switches with their statistics.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as junipermist from "@pulumi/juniper-mist";
const switchStats = junipermist.device.getSwitchStats({
orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550",
mac: "485a0d000000",
siteId: "4a422ae5-7ca0-4599-87a3-8e49aa63685f",
status: "connected",
evpnUnused: "true",
evpntopoId: "92984e2f-94db-4cd8-9763-9cf83fbd079e",
duration: "1d",
start: 1736031600,
end: 1736175934,
});
import pulumi
import pulumi_junipermist as junipermist
switch_stats = junipermist.device.get_switch_stats(org_id="15fca2ac-b1a6-47cc-9953-cc6906281550",
mac="485a0d000000",
site_id="4a422ae5-7ca0-4599-87a3-8e49aa63685f",
status="connected",
evpn_unused="true",
evpntopo_id="92984e2f-94db-4cd8-9763-9cf83fbd079e",
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.GetSwitchStats(ctx, &device.GetSwitchStatsArgs{
OrgId: "15fca2ac-b1a6-47cc-9953-cc6906281550",
Mac: pulumi.StringRef("485a0d000000"),
SiteId: pulumi.StringRef("4a422ae5-7ca0-4599-87a3-8e49aa63685f"),
Status: pulumi.StringRef("connected"),
EvpnUnused: pulumi.StringRef("true"),
EvpntopoId: pulumi.StringRef("92984e2f-94db-4cd8-9763-9cf83fbd079e"),
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 switchStats = JuniperMist.Device.GetSwitchStats.Invoke(new()
{
OrgId = "15fca2ac-b1a6-47cc-9953-cc6906281550",
Mac = "485a0d000000",
SiteId = "4a422ae5-7ca0-4599-87a3-8e49aa63685f",
Status = "connected",
EvpnUnused = "true",
EvpntopoId = "92984e2f-94db-4cd8-9763-9cf83fbd079e",
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.GetSwitchStatsArgs;
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 switchStats = DeviceFunctions.getSwitchStats(GetSwitchStatsArgs.builder()
.orgId("15fca2ac-b1a6-47cc-9953-cc6906281550")
.mac("485a0d000000")
.siteId("4a422ae5-7ca0-4599-87a3-8e49aa63685f")
.status("connected")
.evpnUnused("true")
.evpntopoId("92984e2f-94db-4cd8-9763-9cf83fbd079e")
.duration("1d")
.start(1736031600)
.end(1736175934)
.build());
}
}
variables:
switchStats:
fn::invoke:
function: junipermist:device:getSwitchStats
arguments:
orgId: 15fca2ac-b1a6-47cc-9953-cc6906281550
mac: 485a0d000000
siteId: 4a422ae5-7ca0-4599-87a3-8e49aa63685f
status: connected
evpnUnused: true
evpntopoId: 92984e2f-94db-4cd8-9763-9cf83fbd079e
duration: 1d
start: 1.7360316e+09
end: 1.736175934e+09
Using getSwitchStats
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 getSwitchStats(args: GetSwitchStatsArgs, opts?: InvokeOptions): Promise<GetSwitchStatsResult>
function getSwitchStatsOutput(args: GetSwitchStatsOutputArgs, opts?: InvokeOptions): Output<GetSwitchStatsResult>def get_switch_stats(duration: Optional[str] = None,
end: Optional[int] = None,
evpn_unused: Optional[str] = None,
evpntopo_id: Optional[str] = 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) -> GetSwitchStatsResult
def get_switch_stats_output(duration: Optional[pulumi.Input[str]] = None,
end: Optional[pulumi.Input[int]] = None,
evpn_unused: Optional[pulumi.Input[str]] = None,
evpntopo_id: Optional[pulumi.Input[str]] = 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[GetSwitchStatsResult]func GetSwitchStats(ctx *Context, args *GetSwitchStatsArgs, opts ...InvokeOption) (*GetSwitchStatsResult, error)
func GetSwitchStatsOutput(ctx *Context, args *GetSwitchStatsOutputArgs, opts ...InvokeOption) GetSwitchStatsResultOutput> Note: This function is named GetSwitchStats in the Go SDK.
public static class GetSwitchStats
{
public static Task<GetSwitchStatsResult> InvokeAsync(GetSwitchStatsArgs args, InvokeOptions? opts = null)
public static Output<GetSwitchStatsResult> Invoke(GetSwitchStatsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetSwitchStatsResult> getSwitchStats(GetSwitchStatsArgs args, InvokeOptions options)
public static Output<GetSwitchStatsResult> getSwitchStats(GetSwitchStatsArgs args, InvokeOptions options)
fn::invoke:
function: junipermist:device/getSwitchStats:getSwitchStats
arguments:
# arguments dictionaryThe following arguments are supported:
- Org
Id string - Duration string
- Duration like 7d, 2w
- End int
- End datetime, can be epoch or relative time like -1d, -2h; now if not specified
- Evpn
Unused string - If
evpn_unused==true, find EVPN eligible switches which don’t belong to any EVPN Topology yet - Evpntopo
Id string - EVPN Topology ID
- Mac string
- Site
Id string - Start int
- Start datetime, can be epoch or relative time like -1d, -1w; -1d if not specified
- Status string
- enum:
all,connected,disconnected
- Org
Id string - Duration string
- Duration like 7d, 2w
- End int
- End datetime, can be epoch or relative time like -1d, -2h; now if not specified
- Evpn
Unused string - If
evpn_unused==true, find EVPN eligible switches which don’t belong to any EVPN Topology yet - Evpntopo
Id string - EVPN Topology ID
- Mac string
- Site
Id string - Start int
- Start datetime, can be epoch or relative time like -1d, -1w; -1d if not specified
- Status string
- enum:
all,connected,disconnected
- org
Id String - duration String
- Duration like 7d, 2w
- end Integer
- End datetime, can be epoch or relative time like -1d, -2h; now if not specified
- evpn
Unused String - If
evpn_unused==true, find EVPN eligible switches which don’t belong to any EVPN Topology yet - evpntopo
Id String - EVPN Topology ID
- mac String
- site
Id String - start Integer
- Start datetime, can be epoch or relative time like -1d, -1w; -1d if not specified
- status String
- enum:
all,connected,disconnected
- org
Id string - duration string
- Duration like 7d, 2w
- end number
- End datetime, can be epoch or relative time like -1d, -2h; now if not specified
- evpn
Unused string - If
evpn_unused==true, find EVPN eligible switches which don’t belong to any EVPN Topology yet - evpntopo
Id string - EVPN Topology ID
- mac string
- site
Id string - start number
- Start datetime, can be epoch or relative time like -1d, -1w; -1d if not specified
- status string
- enum:
all,connected,disconnected
- org_
id str - duration str
- Duration like 7d, 2w
- end int
- End datetime, can be epoch or relative time like -1d, -2h; now if not specified
- evpn_
unused str - If
evpn_unused==true, find EVPN eligible switches which don’t belong to any EVPN Topology yet - evpntopo_
id str - EVPN Topology ID
- mac str
- site_
id str - start int
- Start datetime, can be epoch or relative time like -1d, -1w; -1d if not specified
- status str
- enum:
all,connected,disconnected
- org
Id String - duration String
- Duration like 7d, 2w
- end Number
- End datetime, can be epoch or relative time like -1d, -2h; now if not specified
- evpn
Unused String - If
evpn_unused==true, find EVPN eligible switches which don’t belong to any EVPN Topology yet - evpntopo
Id String - EVPN Topology ID
- mac String
- site
Id String - start Number
- Start datetime, can be epoch or relative time like -1d, -1w; -1d if not specified
- status String
- enum:
all,connected,disconnected
getSwitchStats Result
The following output properties are available:
- Device
Switch List<Pulumi.Stats Juniper Mist. Device. Outputs. Get Switch Stats Device Switch Stat> - Id string
- The provider-assigned unique ID for this managed resource.
- Org
Id string - Duration string
- Duration like 7d, 2w
- End int
- End datetime, can be epoch or relative time like -1d, -2h; now if not specified
- Evpn
Unused string - If
evpn_unused==true, find EVPN eligible switches which don’t belong to any EVPN Topology yet - Evpntopo
Id string - EVPN Topology ID
- Mac string
- Site
Id string - Start int
- Start datetime, can be epoch or relative time like -1d, -1w; -1d if not specified
- Status string
- enum:
all,connected,disconnected
- Device
Switch []GetStats Switch Stats Device Switch Stat - Id string
- The provider-assigned unique ID for this managed resource.
- Org
Id string - Duration string
- Duration like 7d, 2w
- End int
- End datetime, can be epoch or relative time like -1d, -2h; now if not specified
- Evpn
Unused string - If
evpn_unused==true, find EVPN eligible switches which don’t belong to any EVPN Topology yet - Evpntopo
Id string - EVPN Topology ID
- Mac string
- Site
Id string - Start int
- Start datetime, can be epoch or relative time like -1d, -1w; -1d if not specified
- Status string
- enum:
all,connected,disconnected
- device
Switch List<GetStats Switch Stats Device Switch Stat> - id String
- The provider-assigned unique ID for this managed resource.
- org
Id String - duration String
- Duration like 7d, 2w
- end Integer
- End datetime, can be epoch or relative time like -1d, -2h; now if not specified
- evpn
Unused String - If
evpn_unused==true, find EVPN eligible switches which don’t belong to any EVPN Topology yet - evpntopo
Id String - EVPN Topology ID
- mac String
- site
Id String - start Integer
- Start datetime, can be epoch or relative time like -1d, -1w; -1d if not specified
- status String
- enum:
all,connected,disconnected
- device
Switch GetStats Switch Stats Device Switch Stat[] - id string
- The provider-assigned unique ID for this managed resource.
- org
Id string - duration string
- Duration like 7d, 2w
- end number
- End datetime, can be epoch or relative time like -1d, -2h; now if not specified
- evpn
Unused string - If
evpn_unused==true, find EVPN eligible switches which don’t belong to any EVPN Topology yet - evpntopo
Id string - EVPN Topology ID
- mac string
- site
Id string - start number
- Start datetime, can be epoch or relative time like -1d, -1w; -1d if not specified
- status string
- enum:
all,connected,disconnected
- device_
switch_ Sequence[Getstats Switch Stats Device Switch Stat] - id str
- The provider-assigned unique ID for this managed resource.
- org_
id str - duration str
- Duration like 7d, 2w
- end int
- End datetime, can be epoch or relative time like -1d, -2h; now if not specified
- evpn_
unused str - If
evpn_unused==true, find EVPN eligible switches which don’t belong to any EVPN Topology yet - evpntopo_
id str - EVPN Topology ID
- mac str
- site_
id str - start int
- Start datetime, can be epoch or relative time like -1d, -1w; -1d if not specified
- status str
- enum:
all,connected,disconnected
- device
Switch List<Property Map>Stats - id String
- The provider-assigned unique ID for this managed resource.
- org
Id String - duration String
- Duration like 7d, 2w
- end Number
- End datetime, can be epoch or relative time like -1d, -2h; now if not specified
- evpn
Unused String - If
evpn_unused==true, find EVPN eligible switches which don’t belong to any EVPN Topology yet - evpntopo
Id String - EVPN Topology ID
- mac String
- site
Id String - start Number
- Start datetime, can be epoch or relative time like -1d, -1w; -1d if not specified
- status String
- enum:
all,connected,disconnected
Supporting Types
GetSwitchStatsDeviceSwitchStat
- Ap
Redundancy Pulumi.Juniper Mist. Device. Inputs. Get Switch Stats Device Switch Stat Ap Redundancy - Arp
Table Pulumi.Stats Juniper Mist. Device. Inputs. Get Switch Stats Device Switch Stat Arp Table Stats - Cert
Expiry int - Clients
List<Pulumi.
Juniper Mist. Device. Inputs. Get Switch Stats Device Switch Stat Client> - Clients
Stats Pulumi.Juniper Mist. Device. Inputs. Get Switch Stats Device Switch Stat Clients Stats - Config
Status string - Cpu
Stat Pulumi.Juniper Mist. Device. Inputs. Get Switch Stats Device Switch Stat Cpu Stat - Created
Time double - When the object has been created, in epoch
- Deviceprofile
Id string - Dhcpd
Stat Dictionary<string, Pulumi.Juniper Mist. Device. Inputs. Get Switch Stats Device Switch Stat Dhcpd Stat> - Property key is the network name
- Evpntopo
Id string - Fw
Versions boolOutofsync - Fwupdate
Pulumi.
Juniper Mist. Device. Inputs. Get Switch Stats Device Switch Stat Fwupdate - Has
Pcap bool - Whether the switch supports packet capture
- Hostname string
- Hostname reported by the device
- Hw
Rev string - Device hardware revision number
- Id string
- Unique ID of the object instance in the Mist Organization
- If
Stat Dictionary<string, Pulumi.Juniper Mist. Device. Inputs. Get Switch Stats Device Switch Stat If Stat> - Property key is the interface name
- Ip string
- Ip
Stat Pulumi.Juniper Mist. Device. Inputs. Get Switch Stats Device Switch Stat Ip Stat - Last
Seen double - Last seen timestamp
- Last
Trouble Pulumi.Juniper Mist. Device. Inputs. Get Switch Stats Device Switch Stat Last Trouble - Last trouble code of switch
- Mac string
- Mac
Table Pulumi.Stats Juniper Mist. Device. Inputs. Get Switch Stats Device Switch Stat Mac Table Stats - Map
Id string - Memory
Stat Pulumi.Juniper Mist. Device. Inputs. Get Switch Stats Device Switch Stat Memory Stat - Memory usage stat (for virtual chassis, memory usage of master RE)
- Model string
- Modified
Time double - When the object has been modified for the last time, in epoch
- Module
Stats List<Pulumi.Juniper Mist. Device. Inputs. Get Switch Stats Device Switch Stat Module Stat> - Name string
- Device name if configured
- Org
Id string - Ports
List<Pulumi.
Juniper Mist. Device. Inputs. Get Switch Stats Device Switch Stat Port> - Route
Summary Pulumi.Stats Juniper Mist. Device. Inputs. Get Switch Stats Device Switch Stat Route Summary Stats - Serial string
- Service
Stat Dictionary<string, Pulumi.Juniper Mist. Device. Inputs. Get Switch Stats Device Switch Stat Service Stat> - Site
Id string - Status string
- Uptime double
- Vc
Mac string - Vc
Setup Pulumi.Info Juniper Mist. Device. Inputs. Get Switch Stats Device Switch Stat Vc Setup Info - Version string
- Ap
Redundancy GetSwitch Stats Device Switch Stat Ap Redundancy - Arp
Table GetStats Switch Stats Device Switch Stat Arp Table Stats - Cert
Expiry int - Clients
[]Get
Switch Stats Device Switch Stat Client - Clients
Stats GetSwitch Stats Device Switch Stat Clients Stats - Config
Status string - Cpu
Stat GetSwitch Stats Device Switch Stat Cpu Stat - Created
Time float64 - When the object has been created, in epoch
- Deviceprofile
Id string - Dhcpd
Stat map[string]GetSwitch Stats Device Switch Stat Dhcpd Stat - Property key is the network name
- Evpntopo
Id string - Fw
Versions boolOutofsync - Fwupdate
Get
Switch Stats Device Switch Stat Fwupdate - Has
Pcap bool - Whether the switch supports packet capture
- Hostname string
- Hostname reported by the device
- Hw
Rev string - Device hardware revision number
- Id string
- Unique ID of the object instance in the Mist Organization
- If
Stat map[string]GetSwitch Stats Device Switch Stat If Stat - Property key is the interface name
- Ip string
- Ip
Stat GetSwitch Stats Device Switch Stat Ip Stat - Last
Seen float64 - Last seen timestamp
- Last
Trouble GetSwitch Stats Device Switch Stat Last Trouble - Last trouble code of switch
- Mac string
- Mac
Table GetStats Switch Stats Device Switch Stat Mac Table Stats - Map
Id string - Memory
Stat GetSwitch Stats Device Switch Stat Memory Stat - Memory usage stat (for virtual chassis, memory usage of master RE)
- Model string
- Modified
Time float64 - When the object has been modified for the last time, in epoch
- Module
Stats []GetSwitch Stats Device Switch Stat Module Stat - Name string
- Device name if configured
- Org
Id string - Ports
[]Get
Switch Stats Device Switch Stat Port - Route
Summary GetStats Switch Stats Device Switch Stat Route Summary Stats - Serial string
- Service
Stat map[string]GetSwitch Stats Device Switch Stat Service Stat - Site
Id string - Status string
- Uptime float64
- Vc
Mac string - Vc
Setup GetInfo Switch Stats Device Switch Stat Vc Setup Info - Version string
- ap
Redundancy GetSwitch Stats Device Switch Stat Ap Redundancy - arp
Table GetStats Switch Stats Device Switch Stat Arp Table Stats - cert
Expiry Integer - clients
List<Get
Switch Stats Device Switch Stat Client> - clients
Stats GetSwitch Stats Device Switch Stat Clients Stats - config
Status String - cpu
Stat GetSwitch Stats Device Switch Stat Cpu Stat - created
Time Double - When the object has been created, in epoch
- deviceprofile
Id String - dhcpd
Stat Map<String,GetSwitch Stats Device Switch Stat Dhcpd Stat> - Property key is the network name
- evpntopo
Id String - fw
Versions BooleanOutofsync - fwupdate
Get
Switch Stats Device Switch Stat Fwupdate - has
Pcap Boolean - Whether the switch supports packet capture
- hostname String
- Hostname reported by the device
- hw
Rev String - Device hardware revision number
- id String
- Unique ID of the object instance in the Mist Organization
- if
Stat Map<String,GetSwitch Stats Device Switch Stat If Stat> - Property key is the interface name
- ip String
- ip
Stat GetSwitch Stats Device Switch Stat Ip Stat - last
Seen Double - Last seen timestamp
- last
Trouble GetSwitch Stats Device Switch Stat Last Trouble - Last trouble code of switch
- mac String
- mac
Table GetStats Switch Stats Device Switch Stat Mac Table Stats - map
Id String - memory
Stat GetSwitch Stats Device Switch Stat Memory Stat - Memory usage stat (for virtual chassis, memory usage of master RE)
- model String
- modified
Time Double - When the object has been modified for the last time, in epoch
- module
Stats List<GetSwitch Stats Device Switch Stat Module Stat> - name String
- Device name if configured
- org
Id String - ports
List<Get
Switch Stats Device Switch Stat Port> - route
Summary GetStats Switch Stats Device Switch Stat Route Summary Stats - serial String
- service
Stat Map<String,GetSwitch Stats Device Switch Stat Service Stat> - site
Id String - status String
- uptime Double
- vc
Mac String - vc
Setup GetInfo Switch Stats Device Switch Stat Vc Setup Info - version String
- ap
Redundancy GetSwitch Stats Device Switch Stat Ap Redundancy - arp
Table GetStats Switch Stats Device Switch Stat Arp Table Stats - cert
Expiry number - clients
Get
Switch Stats Device Switch Stat Client[] - clients
Stats GetSwitch Stats Device Switch Stat Clients Stats - config
Status string - cpu
Stat GetSwitch Stats Device Switch Stat Cpu Stat - created
Time number - When the object has been created, in epoch
- deviceprofile
Id string - dhcpd
Stat {[key: string]: GetSwitch Stats Device Switch Stat Dhcpd Stat} - Property key is the network name
- evpntopo
Id string - fw
Versions booleanOutofsync - fwupdate
Get
Switch Stats Device Switch Stat Fwupdate - has
Pcap boolean - Whether the switch supports packet capture
- hostname string
- Hostname reported by the device
- hw
Rev string - Device hardware revision number
- id string
- Unique ID of the object instance in the Mist Organization
- if
Stat {[key: string]: GetSwitch Stats Device Switch Stat If Stat} - Property key is the interface name
- ip string
- ip
Stat GetSwitch Stats Device Switch Stat Ip Stat - last
Seen number - Last seen timestamp
- last
Trouble GetSwitch Stats Device Switch Stat Last Trouble - Last trouble code of switch
- mac string
- mac
Table GetStats Switch Stats Device Switch Stat Mac Table Stats - map
Id string - memory
Stat GetSwitch Stats Device Switch Stat Memory Stat - Memory usage stat (for virtual chassis, memory usage of master RE)
- model string
- modified
Time number - When the object has been modified for the last time, in epoch
- module
Stats GetSwitch Stats Device Switch Stat Module Stat[] - name string
- Device name if configured
- org
Id string - ports
Get
Switch Stats Device Switch Stat Port[] - route
Summary GetStats Switch Stats Device Switch Stat Route Summary Stats - serial string
- service
Stat {[key: string]: GetSwitch Stats Device Switch Stat Service Stat} - site
Id string - status string
- uptime number
- vc
Mac string - vc
Setup GetInfo Switch Stats Device Switch Stat Vc Setup Info - version string
- ap_
redundancy GetSwitch Stats Device Switch Stat Ap Redundancy - arp_
table_ Getstats Switch Stats Device Switch Stat Arp Table Stats - cert_
expiry int - clients
Sequence[Get
Switch Stats Device Switch Stat Client] - clients_
stats GetSwitch Stats Device Switch Stat Clients Stats - config_
status str - cpu_
stat GetSwitch Stats Device Switch Stat Cpu Stat - created_
time float - When the object has been created, in epoch
- deviceprofile_
id str - dhcpd_
stat Mapping[str, GetSwitch Stats Device Switch Stat Dhcpd Stat] - Property key is the network name
- evpntopo_
id str - fw_
versions_ booloutofsync - fwupdate
Get
Switch Stats Device Switch Stat Fwupdate - has_
pcap bool - Whether the switch supports packet capture
- hostname str
- Hostname reported by the device
- hw_
rev str - Device hardware revision number
- id str
- Unique ID of the object instance in the Mist Organization
- if_
stat Mapping[str, GetSwitch Stats Device Switch Stat If Stat] - Property key is the interface name
- ip str
- ip_
stat GetSwitch Stats Device Switch Stat Ip Stat - last_
seen float - Last seen timestamp
- last_
trouble GetSwitch Stats Device Switch Stat Last Trouble - Last trouble code of switch
- mac str
- mac_
table_ Getstats Switch Stats Device Switch Stat Mac Table Stats - map_
id str - memory_
stat GetSwitch Stats Device Switch Stat Memory Stat - Memory usage stat (for virtual chassis, memory usage of master RE)
- model str
- modified_
time float - When the object has been modified for the last time, in epoch
- module_
stats Sequence[GetSwitch Stats Device Switch Stat Module Stat] - name str
- Device name if configured
- org_
id str - ports
Sequence[Get
Switch Stats Device Switch Stat Port] - route_
summary_ Getstats Switch Stats Device Switch Stat Route Summary Stats - serial str
- service_
stat Mapping[str, GetSwitch Stats Device Switch Stat Service Stat] - site_
id str - status str
- uptime float
- vc_
mac str - vc_
setup_ Getinfo Switch Stats Device Switch Stat Vc Setup Info - version str
- ap
Redundancy Property Map - arp
Table Property MapStats - cert
Expiry Number - clients List<Property Map>
- clients
Stats Property Map - config
Status String - cpu
Stat Property Map - created
Time Number - When the object has been created, in epoch
- deviceprofile
Id String - dhcpd
Stat Map<Property Map> - Property key is the network name
- evpntopo
Id String - fw
Versions BooleanOutofsync - fwupdate Property Map
- has
Pcap Boolean - Whether the switch supports packet capture
- hostname String
- Hostname reported by the device
- hw
Rev String - Device hardware revision number
- id String
- Unique ID of the object instance in the Mist Organization
- if
Stat Map<Property Map> - Property key is the interface name
- ip String
- ip
Stat Property Map - last
Seen Number - Last seen timestamp
- last
Trouble Property Map - Last trouble code of switch
- mac String
- mac
Table Property MapStats - map
Id String - memory
Stat Property Map - Memory usage stat (for virtual chassis, memory usage of master RE)
- model String
- modified
Time Number - When the object has been modified for the last time, in epoch
- module
Stats List<Property Map> - name String
- Device name if configured
- org
Id String - ports List<Property Map>
- route
Summary Property MapStats - serial String
- service
Stat Map<Property Map> - site
Id String - status String
- uptime Number
- vc
Mac String - vc
Setup Property MapInfo - version String
GetSwitchStatsDeviceSwitchStatApRedundancy
- Modules
Dictionary<string, Pulumi.
Juniper Mist. Device. Inputs. Get Switch Stats Device Switch Stat Ap Redundancy Modules> - For a VC / stacked switches.
- Num
Aps int - Num
Aps intWith Switch Redundancy
- Modules
map[string]Get
Switch Stats Device Switch Stat Ap Redundancy Modules - For a VC / stacked switches.
- Num
Aps int - Num
Aps intWith Switch Redundancy
- modules
Map<String,Get
Switch Stats Device Switch Stat Ap Redundancy Modules> - For a VC / stacked switches.
- num
Aps Integer - num
Aps IntegerWith Switch Redundancy
- modules
{[key: string]: Get
Switch Stats Device Switch Stat Ap Redundancy Modules} - For a VC / stacked switches.
- num
Aps number - num
Aps numberWith Switch Redundancy
- modules
Mapping[str, Get
Switch Stats Device Switch Stat Ap Redundancy Modules] - For a VC / stacked switches.
- num_
aps int - num_
aps_ intwith_ switch_ redundancy
- modules Map<Property Map>
- For a VC / stacked switches.
- num
Aps Number - num
Aps NumberWith Switch Redundancy
GetSwitchStatsDeviceSwitchStatApRedundancyModules
- Num
Aps int - Num
Aps intWith Switch Redundancy
- Num
Aps int - Num
Aps intWith Switch Redundancy
- num
Aps Integer - num
Aps IntegerWith Switch Redundancy
- num
Aps number - num
Aps numberWith Switch Redundancy
- num
Aps Number - num
Aps NumberWith Switch Redundancy
GetSwitchStatsDeviceSwitchStatArpTableStats
- Arp
Table intCount - Max
Entries intSupported
- Arp
Table intCount - Max
Entries intSupported
- arp
Table IntegerCount - max
Entries IntegerSupported
- arp
Table numberCount - max
Entries numberSupported
- arp
Table NumberCount - max
Entries NumberSupported
GetSwitchStatsDeviceSwitchStatClient
- device_
mac str - hostname str
- mac str
- port_
id str
GetSwitchStatsDeviceSwitchStatClientsStats
GetSwitchStatsDeviceSwitchStatClientsStatsTotal
- Num
Aps List<int> - Num
Wired intClients
- Num
Aps []int - Num
Wired intClients
- num
Aps List<Integer> - num
Wired IntegerClients
- num
Aps number[] - num
Wired numberClients
- num_
aps Sequence[int] - num_
wired_ intclients
- num
Aps List<Number> - num
Wired NumberClients
GetSwitchStatsDeviceSwitchStatCpuStat
- Idle double
- Percentage of CPU time that is idle
- Interrupt double
- Percentage of CPU time being used by interrupts
- Load
Avgs List<double> - Load averages for the last 1, 5, and 15 minutes
- System double
- Percentage of CPU time being used by system processes
- User double
- Percentage of CPU time being used by user processes
- Idle float64
- Percentage of CPU time that is idle
- Interrupt float64
- Percentage of CPU time being used by interrupts
- Load
Avgs []float64 - Load averages for the last 1, 5, and 15 minutes
- System float64
- Percentage of CPU time being used by system processes
- User float64
- Percentage of CPU time being used by user processes
- idle Double
- Percentage of CPU time that is idle
- interrupt Double
- Percentage of CPU time being used by interrupts
- load
Avgs List<Double> - Load averages for the last 1, 5, and 15 minutes
- system Double
- Percentage of CPU time being used by system processes
- user Double
- Percentage of CPU time being used by user processes
- idle number
- Percentage of CPU time that is idle
- interrupt number
- Percentage of CPU time being used by interrupts
- load
Avgs number[] - Load averages for the last 1, 5, and 15 minutes
- system number
- Percentage of CPU time being used by system processes
- user number
- Percentage of CPU time being used by user processes
- idle float
- Percentage of CPU time that is idle
- interrupt float
- Percentage of CPU time being used by interrupts
- load_
avgs Sequence[float] - Load averages for the last 1, 5, and 15 minutes
- system float
- Percentage of CPU time being used by system processes
- user float
- Percentage of CPU time being used by user processes
- idle Number
- Percentage of CPU time that is idle
- interrupt Number
- Percentage of CPU time being used by interrupts
- load
Avgs List<Number> - Load averages for the last 1, 5, and 15 minutes
- system Number
- Percentage of CPU time being used by system processes
- user Number
- Percentage of CPU time being used by user processes
GetSwitchStatsDeviceSwitchStatDhcpdStat
- num_
ips int - num_
leased int
GetSwitchStatsDeviceSwitchStatFwupdate
- progress int
- status str
- enum:
inprogress,failed,upgraded - status_
id int - timestamp float
- Epoch (seconds)
- will_
retry bool
GetSwitchStatsDeviceSwitchStatIfStat
- Address
Mode string - Ips List<string>
- Nat
Addresses List<string> - Network
Name string - Port
Id string - Port
Usage string - Redundancy
State string - Rx
Bytes int - Amount of traffic received since connection
- Rx
Pkts int - Amount of packets received since connection
- Servp
Info Pulumi.Juniper Mist. Device. Inputs. Get Switch Stats Device Switch Stat If Stat Servp Info - Tx
Bytes int - Amount of traffic sent since connection
- Tx
Pkts int - Amount of packets sent since connection
- Up bool
- Vlan int
- Wan
Name string - Wan
Type string
- Address
Mode string - Ips []string
- Nat
Addresses []string - Network
Name string - Port
Id string - Port
Usage string - Redundancy
State string - Rx
Bytes int - Amount of traffic received since connection
- Rx
Pkts int - Amount of packets received since connection
- Servp
Info GetSwitch Stats Device Switch Stat If Stat Servp Info - Tx
Bytes int - Amount of traffic sent since connection
- Tx
Pkts int - Amount of packets sent since connection
- Up bool
- Vlan int
- Wan
Name string - Wan
Type string
- address
Mode String - ips List<String>
- nat
Addresses List<String> - network
Name String - port
Id String - port
Usage String - redundancy
State String - rx
Bytes Integer - Amount of traffic received since connection
- rx
Pkts Integer - Amount of packets received since connection
- servp
Info GetSwitch Stats Device Switch Stat If Stat Servp Info - tx
Bytes Integer - Amount of traffic sent since connection
- tx
Pkts Integer - Amount of packets sent since connection
- up Boolean
- vlan Integer
- wan
Name String - wan
Type String
- address
Mode string - ips string[]
- nat
Addresses string[] - network
Name string - port
Id string - port
Usage string - redundancy
State string - rx
Bytes number - Amount of traffic received since connection
- rx
Pkts number - Amount of packets received since connection
- servp
Info GetSwitch Stats Device Switch Stat If Stat Servp Info - tx
Bytes number - Amount of traffic sent since connection
- tx
Pkts number - Amount of packets sent since connection
- up boolean
- vlan number
- wan
Name string - wan
Type string
- address_
mode str - ips Sequence[str]
- nat_
addresses Sequence[str] - network_
name str - port_
id str - port_
usage str - redundancy_
state str - rx_
bytes int - Amount of traffic received since connection
- rx_
pkts int - Amount of packets received since connection
- servp_
info GetSwitch Stats Device Switch Stat If Stat Servp Info - tx_
bytes int - Amount of traffic sent since connection
- tx_
pkts int - Amount of packets sent since connection
- up bool
- vlan int
- wan_
name str - wan_
type str
- address
Mode String - ips List<String>
- nat
Addresses List<String> - network
Name String - port
Id String - port
Usage String - redundancy
State String - rx
Bytes Number - Amount of traffic received since connection
- rx
Pkts Number - Amount of packets received since connection
- servp
Info Property Map - tx
Bytes Number - Amount of traffic sent since connection
- tx
Pkts Number - Amount of packets sent since connection
- up Boolean
- vlan Number
- wan
Name String - wan
Type String
GetSwitchStatsDeviceSwitchStatIfStatServpInfo
- Asn string
- City string
- Country
Code string - Latitude double
- Longitude double
- Org string
- Region
Code string
- Asn string
- City string
- Country
Code string - Latitude float64
- Longitude float64
- Org string
- Region
Code string
- asn String
- city String
- country
Code String - latitude Double
- longitude Double
- org String
- region
Code String
- asn string
- city string
- country
Code string - latitude number
- longitude number
- org string
- region
Code string
- asn str
- city str
- country_
code str - latitude float
- longitude float
- org str
- region_
code str
- asn String
- city String
- country
Code String - latitude Number
- longitude Number
- org String
- region
Code String
GetSwitchStatsDeviceSwitchStatIpStat
- Dhcp
Server string - Dns List<string>
- Dns
Suffixes List<string> - Gateway string
- Gateway6 string
- Ip string
- Ip6 string
- Ips Dictionary<string, string>
- Netmask string
- Netmask6 string
- Dhcp
Server string - Dns []string
- Dns
Suffixes []string - Gateway string
- Gateway6 string
- Ip string
- Ip6 string
- Ips map[string]string
- Netmask string
- Netmask6 string
- dhcp
Server String - dns List<String>
- dns
Suffixes List<String> - gateway String
- gateway6 String
- ip String
- ip6 String
- ips Map<String,String>
- netmask String
- netmask6 String
- dhcp
Server string - dns string[]
- dns
Suffixes 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
- dhcp
Server String - dns List<String>
- dns
Suffixes List<String> - gateway String
- gateway6 String
- ip String
- ip6 String
- ips Map<String>
- netmask String
- netmask6 String
GetSwitchStatsDeviceSwitchStatLastTrouble
GetSwitchStatsDeviceSwitchStatMacTableStats
- mac
Table IntegerCount - max
Mac IntegerEntries Supported
- mac
Table numberCount - max
Mac numberEntries Supported
- mac
Table NumberCount - max
Mac NumberEntries Supported
GetSwitchStatsDeviceSwitchStatMemoryStat
- Usage double
- Usage float64
- usage Double
- usage number
- usage float
- usage Number
GetSwitchStatsDeviceSwitchStatModuleStat
- Backup
Version string - Bios
Version string - Cpld
Version string - Cpu
Stat Pulumi.Juniper Mist. Device. Inputs. Get Switch Stats Device Switch Stat Module Stat Cpu Stat - Errors
List<Pulumi.
Juniper Mist. Device. Inputs. Get Switch Stats Device Switch Stat Module Stat Error> - Used to report all error states the device node is running into. An error should always have
typeandsincefields, and could have some other fields specific to that type. - Fans
List<Pulumi.
Juniper Mist. Device. Inputs. Get Switch Stats Device Switch Stat Module Stat Fan> - Fpc
Idx int - Fpga
Version string - Last
Seen double - Last seen timestamp
- Locating bool
- Mac string
- Model string
- Optics
Cpld stringVersion - Pending
Version string - Pics
List<Pulumi.
Juniper Mist. Device. Inputs. Get Switch Stats Device Switch Stat Module Stat Pic> - Poe
Pulumi.
Juniper Mist. Device. Inputs. Get Switch Stats Device Switch Stat Module Stat Poe - Poe
Version string - Power
Cpld stringVersion - Psuses
List<Pulumi.
Juniper Mist. Device. Inputs. Get Switch Stats Device Switch Stat Module Stat Psus> - Re
Fpga stringVersion - Recovery
Version string - Serial string
- Status string
- Temperatures
List<Pulumi.
Juniper Mist. Device. Inputs. Get Switch Stats Device Switch Stat Module Stat Temperature> - Tmc
Fpga stringVersion - Type string
- Uboot
Version string - Uptime int
- Vc
Links List<Pulumi.Juniper Mist. Device. Inputs. Get Switch Stats Device Switch Stat Module Stat Vc Link> - Vc
Mode string - Vc
Role string - enum:
master,backup,linecard - Vc
State string - Version string
- Backup
Version string - Bios
Version string - Cpld
Version string - Cpu
Stat GetSwitch Stats Device Switch Stat Module Stat Cpu Stat - Errors
[]Get
Switch Stats Device Switch Stat Module Stat Error - Used to report all error states the device node is running into. An error should always have
typeandsincefields, and could have some other fields specific to that type. - Fans
[]Get
Switch Stats Device Switch Stat Module Stat Fan - Fpc
Idx int - Fpga
Version string - Last
Seen float64 - Last seen timestamp
- Locating bool
- Mac string
- Model string
- Optics
Cpld stringVersion - Pending
Version string - Pics
[]Get
Switch Stats Device Switch Stat Module Stat Pic - Poe
Get
Switch Stats Device Switch Stat Module Stat Poe - Poe
Version string - Power
Cpld stringVersion - Psuses
[]Get
Switch Stats Device Switch Stat Module Stat Psus - Re
Fpga stringVersion - Recovery
Version string - Serial string
- Status string
- Temperatures
[]Get
Switch Stats Device Switch Stat Module Stat Temperature - Tmc
Fpga stringVersion - Type string
- Uboot
Version string - Uptime int
- Vc
Links []GetSwitch Stats Device Switch Stat Module Stat Vc Link - Vc
Mode string - Vc
Role string - enum:
master,backup,linecard - Vc
State string - Version string
- backup
Version String - bios
Version String - cpld
Version String - cpu
Stat GetSwitch Stats Device Switch Stat Module Stat Cpu Stat - errors
List<Get
Switch Stats Device Switch Stat Module Stat Error> - Used to report all error states the device node is running into. An error should always have
typeandsincefields, and could have some other fields specific to that type. - fans
List<Get
Switch Stats Device Switch Stat Module Stat Fan> - fpc
Idx Integer - fpga
Version String - last
Seen Double - Last seen timestamp
- locating Boolean
- mac String
- model String
- optics
Cpld StringVersion - pending
Version String - pics
List<Get
Switch Stats Device Switch Stat Module Stat Pic> - poe
Get
Switch Stats Device Switch Stat Module Stat Poe - poe
Version String - power
Cpld StringVersion - psuses
List<Get
Switch Stats Device Switch Stat Module Stat Psus> - re
Fpga StringVersion - recovery
Version String - serial String
- status String
- temperatures
List<Get
Switch Stats Device Switch Stat Module Stat Temperature> - tmc
Fpga StringVersion - type String
- uboot
Version String - uptime Integer
- vc
Links List<GetSwitch Stats Device Switch Stat Module Stat Vc Link> - vc
Mode String - vc
Role String - enum:
master,backup,linecard - vc
State String - version String
- backup
Version string - bios
Version string - cpld
Version string - cpu
Stat GetSwitch Stats Device Switch Stat Module Stat Cpu Stat - errors
Get
Switch Stats Device Switch Stat Module Stat Error[] - Used to report all error states the device node is running into. An error should always have
typeandsincefields, and could have some other fields specific to that type. - fans
Get
Switch Stats Device Switch Stat Module Stat Fan[] - fpc
Idx number - fpga
Version string - last
Seen number - Last seen timestamp
- locating boolean
- mac string
- model string
- optics
Cpld stringVersion - pending
Version string - pics
Get
Switch Stats Device Switch Stat Module Stat Pic[] - poe
Get
Switch Stats Device Switch Stat Module Stat Poe - poe
Version string - power
Cpld stringVersion - psuses
Get
Switch Stats Device Switch Stat Module Stat Psus[] - re
Fpga stringVersion - recovery
Version string - serial string
- status string
- temperatures
Get
Switch Stats Device Switch Stat Module Stat Temperature[] - tmc
Fpga stringVersion - type string
- uboot
Version string - uptime number
- vc
Links GetSwitch Stats Device Switch Stat Module Stat Vc Link[] - vc
Mode string - vc
Role string - enum:
master,backup,linecard - vc
State string - version string
- backup_
version str - bios_
version str - cpld_
version str - cpu_
stat GetSwitch Stats Device Switch Stat Module Stat Cpu Stat - errors
Sequence[Get
Switch Stats Device Switch Stat Module Stat Error] - Used to report all error states the device node is running into. An error should always have
typeandsincefields, and could have some other fields specific to that type. - fans
Sequence[Get
Switch Stats Device Switch Stat Module Stat Fan] - fpc_
idx int - fpga_
version str - last_
seen float - Last seen timestamp
- locating bool
- mac str
- model str
- optics_
cpld_ strversion - pending_
version str - pics
Sequence[Get
Switch Stats Device Switch Stat Module Stat Pic] - poe
Get
Switch Stats Device Switch Stat Module Stat Poe - poe_
version str - power_
cpld_ strversion - psuses
Sequence[Get
Switch Stats Device Switch Stat Module Stat Psus] - re_
fpga_ strversion - recovery_
version str - serial str
- status str
- temperatures
Sequence[Get
Switch Stats Device Switch Stat Module Stat Temperature] - tmc_
fpga_ strversion - type str
- uboot_
version str - uptime int
- vc_
links Sequence[GetSwitch Stats Device Switch Stat Module Stat Vc Link] - vc_
mode str - vc_
role str - enum:
master,backup,linecard - vc_
state str - version str
- backup
Version String - bios
Version String - cpld
Version String - cpu
Stat Property Map - errors List<Property Map>
- Used to report all error states the device node is running into. An error should always have
typeandsincefields, and could have some other fields specific to that type. - fans List<Property Map>
- fpc
Idx Number - fpga
Version String - last
Seen Number - Last seen timestamp
- locating Boolean
- mac String
- model String
- optics
Cpld StringVersion - pending
Version String - pics List<Property Map>
- poe Property Map
- poe
Version String - power
Cpld StringVersion - psuses List<Property Map>
- re
Fpga StringVersion - recovery
Version String - serial String
- status String
- temperatures List<Property Map>
- tmc
Fpga StringVersion - type String
- uboot
Version String - uptime Number
- vc
Links List<Property Map> - vc
Mode String - vc
Role String - enum:
master,backup,linecard - vc
State String - version String
GetSwitchStatsDeviceSwitchStatModuleStatCpuStat
- Idle double
- Percentage of CPU time that is idle
- Interrupt double
- Percentage of CPU time being used by interrupts
- Load
Avgs List<double> - Load averages for the last 1, 5, and 15 minutes
- System double
- Percentage of CPU time being used by system processes
- User double
- Percentage of CPU time being used by user processes
- Idle float64
- Percentage of CPU time that is idle
- Interrupt float64
- Percentage of CPU time being used by interrupts
- Load
Avgs []float64 - Load averages for the last 1, 5, and 15 minutes
- System float64
- Percentage of CPU time being used by system processes
- User float64
- Percentage of CPU time being used by user processes
- idle Double
- Percentage of CPU time that is idle
- interrupt Double
- Percentage of CPU time being used by interrupts
- load
Avgs List<Double> - Load averages for the last 1, 5, and 15 minutes
- system Double
- Percentage of CPU time being used by system processes
- user Double
- Percentage of CPU time being used by user processes
- idle number
- Percentage of CPU time that is idle
- interrupt number
- Percentage of CPU time being used by interrupts
- load
Avgs number[] - Load averages for the last 1, 5, and 15 minutes
- system number
- Percentage of CPU time being used by system processes
- user number
- Percentage of CPU time being used by user processes
- idle float
- Percentage of CPU time that is idle
- interrupt float
- Percentage of CPU time being used by interrupts
- load_
avgs Sequence[float] - Load averages for the last 1, 5, and 15 minutes
- system float
- Percentage of CPU time being used by system processes
- user float
- Percentage of CPU time being used by user processes
- idle Number
- Percentage of CPU time that is idle
- interrupt Number
- Percentage of CPU time being used by interrupts
- load
Avgs List<Number> - Load averages for the last 1, 5, and 15 minutes
- system Number
- Percentage of CPU time being used by system processes
- user Number
- Percentage of CPU time being used by user processes
GetSwitchStatsDeviceSwitchStatModuleStatError
- Feature string
- Minimum
Version string - Reason string
- Since int
- Type string
- Feature string
- Minimum
Version string - Reason string
- Since int
- Type string
- feature String
- minimum
Version String - reason String
- since Integer
- type String
- feature string
- minimum
Version string - reason string
- since number
- type string
- feature str
- minimum_
version str - reason str
- since int
- type str
- feature String
- minimum
Version String - reason String
- since Number
- type String
GetSwitchStatsDeviceSwitchStatModuleStatFan
GetSwitchStatsDeviceSwitchStatModuleStatPic
- index Number
- model
Number String - port
Groups List<Property Map>
GetSwitchStatsDeviceSwitchStatModuleStatPicPortGroup
GetSwitchStatsDeviceSwitchStatModuleStatPoe
- max_
power float - power_
draw float
GetSwitchStatsDeviceSwitchStatModuleStatPsus
GetSwitchStatsDeviceSwitchStatModuleStatTemperature
GetSwitchStatsDeviceSwitchStatModuleStatVcLink
- Neighbor
Module intIdx - Neighbor
Port stringId - Port
Id string
- Neighbor
Module intIdx - Neighbor
Port stringId - Port
Id string
- neighbor
Module IntegerIdx - neighbor
Port StringId - port
Id String
- neighbor
Module numberIdx - neighbor
Port stringId - port
Id string
- neighbor_
module_ intidx - neighbor_
port_ strid - port_
id str
- neighbor
Module NumberIdx - neighbor
Port StringId - port
Id String
GetSwitchStatsDeviceSwitchStatPort
- Active bool
- Indicates if interface is active/inactive
- Auth
State string - if
up==trueand has Authenticator role. enum:authenticated,authenticating,held,init - Disabled bool
- Indicates if interface is disabled
- For
Site bool - Full
Duplex bool - Indicates full or half duplex
- Jitter double
- Last sampled jitter of the interface
- Last
Flapped double - Indicates when the port was last flapped
- Latency double
- Last sampled latency of the interface
- Loss double
- Last sampled loss of the interface
- Lte
Iccid string - LTE ICCID value, Check for null/empty
- Lte
Imei string - LTE IMEI value, Check for null/empty
- Lte
Imsi string - LTE IMSI value, Check for null/empty
- Mac string
- Mac
Count int - Number of mac addresses in the forwarding table
- Mac
Limit int - Limit on number of dynamically learned macs
- Neighbor
Mac string - chassis identifier of the chassis type listed
- Neighbor
Port stringDesc - Description supplied by the system on the interface E.g. "GigabitEthernet2/0/39"
- Neighbor
System stringName - Name supplied by the system on the interface E.g. neighbor system name E.g. "Kumar-Acc-SW.mist.local"
- Org
Id string - Poe
Disabled bool - Is the POE disabled
- Poe
Mode string - enum:
802.3af,802.3at,802.3bt - Poe
On bool - Is the device attached to POE
- Port
Id string - Port
Mac string - Interface MAC address
- Port
Usage string - gateway port usage. enum:
lan - Power
Draw double - Amount of power being used by the interface at the time the command is executed. Unit in watts.
- Rx
Bcast intPkts - Broadcast input packets
- Rx
Bps int - Rate of receiving traffic, bits/seconds, last known
- Rx
Bytes int - Amount of traffic received since connection
- Rx
Errors int - Input errors
- Rx
Mcast intPkts - Multicast input packets
- Rx
Pkts int - Amount of packets received since connection
- Site
Id string - Speed int
- Port speed
- Stp
Role string - if
up==true. enum:alternate,backup,designated,root,root-prevented - Stp
State string - if
up==true. enum:blocking,disabled,forwarding,learning,listening - Tx
Bcast intPkts - Broadcast output packets
- Tx
Bps int - Rate of transmitting traffic, bits/seconds, last known
- Tx
Bytes int - Amount of traffic sent since connection
- Tx
Errors int - Output errors
- Tx
Mcast intPkts - Multicast output packets
- Tx
Pkts int - Amount of packets sent since connection
- Type string
- device type. enum:
ap,ble,gateway,mxedge,nac,switch - Unconfigured bool
- Indicates if interface is unconfigured
- Up bool
- Indicates if interface is up
- Xcvr
Model string - Optic Slot ModelName, Check for null/empty
- Xcvr
Part stringNumber - Optic Slot Partnumber, Check for null/empty
- Xcvr
Serial string - Optic Slot SerialNumber, Check for null/empty
- Active bool
- Indicates if interface is active/inactive
- Auth
State string - if
up==trueand has Authenticator role. enum:authenticated,authenticating,held,init - Disabled bool
- Indicates if interface is disabled
- For
Site bool - Full
Duplex bool - Indicates full or half duplex
- Jitter float64
- Last sampled jitter of the interface
- Last
Flapped float64 - Indicates when the port was last flapped
- Latency float64
- Last sampled latency of the interface
- Loss float64
- Last sampled loss of the interface
- Lte
Iccid string - LTE ICCID value, Check for null/empty
- Lte
Imei string - LTE IMEI value, Check for null/empty
- Lte
Imsi string - LTE IMSI value, Check for null/empty
- Mac string
- Mac
Count int - Number of mac addresses in the forwarding table
- Mac
Limit int - Limit on number of dynamically learned macs
- Neighbor
Mac string - chassis identifier of the chassis type listed
- Neighbor
Port stringDesc - Description supplied by the system on the interface E.g. "GigabitEthernet2/0/39"
- Neighbor
System stringName - Name supplied by the system on the interface E.g. neighbor system name E.g. "Kumar-Acc-SW.mist.local"
- Org
Id string - Poe
Disabled bool - Is the POE disabled
- Poe
Mode string - enum:
802.3af,802.3at,802.3bt - Poe
On bool - Is the device attached to POE
- Port
Id string - Port
Mac string - Interface MAC address
- Port
Usage string - gateway port usage. enum:
lan - Power
Draw float64 - Amount of power being used by the interface at the time the command is executed. Unit in watts.
- Rx
Bcast intPkts - Broadcast input packets
- Rx
Bps int - Rate of receiving traffic, bits/seconds, last known
- Rx
Bytes int - Amount of traffic received since connection
- Rx
Errors int - Input errors
- Rx
Mcast intPkts - Multicast input packets
- Rx
Pkts int - Amount of packets received since connection
- Site
Id string - Speed int
- Port speed
- Stp
Role string - if
up==true. enum:alternate,backup,designated,root,root-prevented - Stp
State string - if
up==true. enum:blocking,disabled,forwarding,learning,listening - Tx
Bcast intPkts - Broadcast output packets
- Tx
Bps int - Rate of transmitting traffic, bits/seconds, last known
- Tx
Bytes int - Amount of traffic sent since connection
- Tx
Errors int - Output errors
- Tx
Mcast intPkts - Multicast output packets
- Tx
Pkts int - Amount of packets sent since connection
- Type string
- device type. enum:
ap,ble,gateway,mxedge,nac,switch - Unconfigured bool
- Indicates if interface is unconfigured
- Up bool
- Indicates if interface is up
- Xcvr
Model string - Optic Slot ModelName, Check for null/empty
- Xcvr
Part stringNumber - Optic Slot Partnumber, Check for null/empty
- Xcvr
Serial string - Optic Slot SerialNumber, Check for null/empty
- active Boolean
- Indicates if interface is active/inactive
- auth
State String - if
up==trueand has Authenticator role. enum:authenticated,authenticating,held,init - disabled Boolean
- Indicates if interface is disabled
- for
Site Boolean - full
Duplex Boolean - Indicates full or half duplex
- jitter Double
- Last sampled jitter of the interface
- last
Flapped Double - Indicates when the port was last flapped
- latency Double
- Last sampled latency of the interface
- loss Double
- Last sampled loss of the interface
- lte
Iccid String - LTE ICCID value, Check for null/empty
- lte
Imei String - LTE IMEI value, Check for null/empty
- lte
Imsi String - LTE IMSI value, Check for null/empty
- mac String
- mac
Count Integer - Number of mac addresses in the forwarding table
- mac
Limit Integer - Limit on number of dynamically learned macs
- neighbor
Mac String - chassis identifier of the chassis type listed
- neighbor
Port StringDesc - Description supplied by the system on the interface E.g. "GigabitEthernet2/0/39"
- neighbor
System StringName - Name supplied by the system on the interface E.g. neighbor system name E.g. "Kumar-Acc-SW.mist.local"
- org
Id String - poe
Disabled Boolean - Is the POE disabled
- poe
Mode String - enum:
802.3af,802.3at,802.3bt - poe
On Boolean - Is the device attached to POE
- port
Id String - port
Mac String - Interface MAC address
- port
Usage String - gateway port usage. enum:
lan - power
Draw Double - Amount of power being used by the interface at the time the command is executed. Unit in watts.
- rx
Bcast IntegerPkts - Broadcast input packets
- rx
Bps Integer - Rate of receiving traffic, bits/seconds, last known
- rx
Bytes Integer - Amount of traffic received since connection
- rx
Errors Integer - Input errors
- rx
Mcast IntegerPkts - Multicast input packets
- rx
Pkts Integer - Amount of packets received since connection
- site
Id String - speed Integer
- Port speed
- stp
Role String - if
up==true. enum:alternate,backup,designated,root,root-prevented - stp
State String - if
up==true. enum:blocking,disabled,forwarding,learning,listening - tx
Bcast IntegerPkts - Broadcast output packets
- tx
Bps Integer - Rate of transmitting traffic, bits/seconds, last known
- tx
Bytes Integer - Amount of traffic sent since connection
- tx
Errors Integer - Output errors
- tx
Mcast IntegerPkts - Multicast output packets
- tx
Pkts Integer - Amount of packets sent since connection
- type String
- device type. enum:
ap,ble,gateway,mxedge,nac,switch - unconfigured Boolean
- Indicates if interface is unconfigured
- up Boolean
- Indicates if interface is up
- xcvr
Model String - Optic Slot ModelName, Check for null/empty
- xcvr
Part StringNumber - Optic Slot Partnumber, Check for null/empty
- xcvr
Serial String - Optic Slot SerialNumber, Check for null/empty
- active boolean
- Indicates if interface is active/inactive
- auth
State string - if
up==trueand has Authenticator role. enum:authenticated,authenticating,held,init - disabled boolean
- Indicates if interface is disabled
- for
Site boolean - full
Duplex boolean - Indicates full or half duplex
- jitter number
- Last sampled jitter of the interface
- last
Flapped number - Indicates when the port was last flapped
- latency number
- Last sampled latency of the interface
- loss number
- Last sampled loss of the interface
- lte
Iccid string - LTE ICCID value, Check for null/empty
- lte
Imei string - LTE IMEI value, Check for null/empty
- lte
Imsi string - LTE IMSI value, Check for null/empty
- mac string
- mac
Count number - Number of mac addresses in the forwarding table
- mac
Limit number - Limit on number of dynamically learned macs
- neighbor
Mac string - chassis identifier of the chassis type listed
- neighbor
Port stringDesc - Description supplied by the system on the interface E.g. "GigabitEthernet2/0/39"
- neighbor
System stringName - Name supplied by the system on the interface E.g. neighbor system name E.g. "Kumar-Acc-SW.mist.local"
- org
Id string - poe
Disabled boolean - Is the POE disabled
- poe
Mode string - enum:
802.3af,802.3at,802.3bt - poe
On boolean - Is the device attached to POE
- port
Id string - port
Mac string - Interface MAC address
- port
Usage string - gateway port usage. enum:
lan - power
Draw number - Amount of power being used by the interface at the time the command is executed. Unit in watts.
- rx
Bcast numberPkts - Broadcast input packets
- rx
Bps number - Rate of receiving traffic, bits/seconds, last known
- rx
Bytes number - Amount of traffic received since connection
- rx
Errors number - Input errors
- rx
Mcast numberPkts - Multicast input packets
- rx
Pkts number - Amount of packets received since connection
- site
Id string - speed number
- Port speed
- stp
Role string - if
up==true. enum:alternate,backup,designated,root,root-prevented - stp
State string - if
up==true. enum:blocking,disabled,forwarding,learning,listening - tx
Bcast numberPkts - Broadcast output packets
- tx
Bps number - Rate of transmitting traffic, bits/seconds, last known
- tx
Bytes number - Amount of traffic sent since connection
- tx
Errors number - Output errors
- tx
Mcast numberPkts - Multicast output packets
- tx
Pkts number - Amount of packets sent since connection
- type string
- device type. enum:
ap,ble,gateway,mxedge,nac,switch - unconfigured boolean
- Indicates if interface is unconfigured
- up boolean
- Indicates if interface is up
- xcvr
Model string - Optic Slot ModelName, Check for null/empty
- xcvr
Part stringNumber - Optic Slot Partnumber, Check for null/empty
- xcvr
Serial string - Optic Slot SerialNumber, Check for null/empty
- active bool
- Indicates if interface is active/inactive
- auth_
state str - if
up==trueand has Authenticator role. enum:authenticated,authenticating,held,init - disabled bool
- Indicates if interface is disabled
- for_
site bool - full_
duplex bool - Indicates full or half duplex
- jitter float
- Last sampled jitter of the interface
- last_
flapped float - Indicates when the port was last flapped
- latency float
- Last sampled latency of the interface
- loss float
- Last sampled loss of the interface
- lte_
iccid str - LTE ICCID value, Check for null/empty
- lte_
imei str - LTE IMEI value, Check for null/empty
- lte_
imsi str - LTE IMSI value, Check for null/empty
- mac str
- mac_
count int - Number of mac addresses in the forwarding table
- mac_
limit int - Limit on number of dynamically learned macs
- neighbor_
mac str - chassis identifier of the chassis type listed
- neighbor_
port_ strdesc - Description supplied by the system on the interface E.g. "GigabitEthernet2/0/39"
- neighbor_
system_ strname - Name supplied by the system on the interface E.g. neighbor system name E.g. "Kumar-Acc-SW.mist.local"
- org_
id str - poe_
disabled bool - Is the POE disabled
- poe_
mode str - enum:
802.3af,802.3at,802.3bt - poe_
on bool - Is the device attached to POE
- port_
id str - port_
mac str - Interface MAC address
- port_
usage str - gateway port usage. enum:
lan - power_
draw float - Amount of power being used by the interface at the time the command is executed. Unit in watts.
- rx_
bcast_ intpkts - Broadcast input packets
- rx_
bps int - Rate of receiving traffic, bits/seconds, last known
- rx_
bytes int - Amount of traffic received since connection
- rx_
errors int - Input errors
- rx_
mcast_ intpkts - Multicast input packets
- rx_
pkts int - Amount of packets received since connection
- site_
id str - speed int
- Port speed
- stp_
role str - if
up==true. enum:alternate,backup,designated,root,root-prevented - stp_
state str - if
up==true. enum:blocking,disabled,forwarding,learning,listening - tx_
bcast_ intpkts - Broadcast output packets
- tx_
bps int - Rate of transmitting traffic, bits/seconds, last known
- tx_
bytes int - Amount of traffic sent since connection
- tx_
errors int - Output errors
- tx_
mcast_ intpkts - Multicast output packets
- tx_
pkts int - Amount of packets sent since connection
- type str
- device type. enum:
ap,ble,gateway,mxedge,nac,switch - unconfigured bool
- Indicates if interface is unconfigured
- up bool
- Indicates if interface is up
- xcvr_
model str - Optic Slot ModelName, Check for null/empty
- xcvr_
part_ strnumber - Optic Slot Partnumber, Check for null/empty
- xcvr_
serial str - Optic Slot SerialNumber, Check for null/empty
- active Boolean
- Indicates if interface is active/inactive
- auth
State String - if
up==trueand has Authenticator role. enum:authenticated,authenticating,held,init - disabled Boolean
- Indicates if interface is disabled
- for
Site Boolean - full
Duplex Boolean - Indicates full or half duplex
- jitter Number
- Last sampled jitter of the interface
- last
Flapped Number - Indicates when the port was last flapped
- latency Number
- Last sampled latency of the interface
- loss Number
- Last sampled loss of the interface
- lte
Iccid String - LTE ICCID value, Check for null/empty
- lte
Imei String - LTE IMEI value, Check for null/empty
- lte
Imsi String - LTE IMSI value, Check for null/empty
- mac String
- mac
Count Number - Number of mac addresses in the forwarding table
- mac
Limit Number - Limit on number of dynamically learned macs
- neighbor
Mac String - chassis identifier of the chassis type listed
- neighbor
Port StringDesc - Description supplied by the system on the interface E.g. "GigabitEthernet2/0/39"
- neighbor
System StringName - Name supplied by the system on the interface E.g. neighbor system name E.g. "Kumar-Acc-SW.mist.local"
- org
Id String - poe
Disabled Boolean - Is the POE disabled
- poe
Mode String - enum:
802.3af,802.3at,802.3bt - poe
On Boolean - Is the device attached to POE
- port
Id String - port
Mac String - Interface MAC address
- port
Usage String - gateway port usage. enum:
lan - power
Draw Number - Amount of power being used by the interface at the time the command is executed. Unit in watts.
- rx
Bcast NumberPkts - Broadcast input packets
- rx
Bps Number - Rate of receiving traffic, bits/seconds, last known
- rx
Bytes Number - Amount of traffic received since connection
- rx
Errors Number - Input errors
- rx
Mcast NumberPkts - Multicast input packets
- rx
Pkts Number - Amount of packets received since connection
- site
Id String - speed Number
- Port speed
- stp
Role String - if
up==true. enum:alternate,backup,designated,root,root-prevented - stp
State String - if
up==true. enum:blocking,disabled,forwarding,learning,listening - tx
Bcast NumberPkts - Broadcast output packets
- tx
Bps Number - Rate of transmitting traffic, bits/seconds, last known
- tx
Bytes Number - Amount of traffic sent since connection
- tx
Errors Number - Output errors
- tx
Mcast NumberPkts - Multicast output packets
- tx
Pkts Number - Amount of packets sent since connection
- type String
- device type. enum:
ap,ble,gateway,mxedge,nac,switch - unconfigured Boolean
- Indicates if interface is unconfigured
- up Boolean
- Indicates if interface is up
- xcvr
Model String - Optic Slot ModelName, Check for null/empty
- xcvr
Part StringNumber - Optic Slot Partnumber, Check for null/empty
- xcvr
Serial String - Optic Slot SerialNumber, Check for null/empty
GetSwitchStatsDeviceSwitchStatRouteSummaryStats
- Fib
Routes int - Max
Unicast intRoutes Supported - Rib
Routes int - Total
Routes int
- Fib
Routes int - Max
Unicast intRoutes Supported - Rib
Routes int - Total
Routes int
- fib
Routes Integer - max
Unicast IntegerRoutes Supported - rib
Routes Integer - total
Routes Integer
- fib
Routes number - max
Unicast numberRoutes Supported - rib
Routes number - total
Routes number
- fib_
routes int - max_
unicast_ introutes_ supported - rib_
routes int - total_
routes int
- fib
Routes Number - max
Unicast NumberRoutes Supported - rib
Routes Number - total
Routes Number
GetSwitchStatsDeviceSwitchStatServiceStat
- Ash
Version string - Cia
Version string - Ember
Version string - Ipsec
Client stringVersion - Mist
Agent stringVersion - Package
Version string - Testing
Tools stringVersion - Wheeljack
Version string
- Ash
Version string - Cia
Version string - Ember
Version string - Ipsec
Client stringVersion - Mist
Agent stringVersion - Package
Version string - Testing
Tools stringVersion - Wheeljack
Version string
- ash
Version String - cia
Version String - ember
Version String - ipsec
Client StringVersion - mist
Agent StringVersion - package
Version String - testing
Tools StringVersion - wheeljack
Version String
- ash
Version string - cia
Version string - ember
Version string - ipsec
Client stringVersion - mist
Agent stringVersion - package
Version string - testing
Tools stringVersion - wheeljack
Version string
- ash_
version str - cia_
version str - ember_
version str - ipsec_
client_ strversion - mist_
agent_ strversion - package_
version str - testing_
tools_ strversion - wheeljack_
version str
- ash
Version String - cia
Version String - ember
Version String - ipsec
Client StringVersion - mist
Agent StringVersion - package
Version String - testing
Tools StringVersion - wheeljack
Version String
GetSwitchStatsDeviceSwitchStatVcSetupInfo
- Config
Type string - Current
Stats string - Err
Missing boolDev Id Fpc - Last
Update double - Request
Time double - Request
Type string
- Config
Type string - Current
Stats string - Err
Missing boolDev Id Fpc - Last
Update float64 - Request
Time float64 - Request
Type string
- config
Type String - current
Stats String - err
Missing BooleanDev Id Fpc - last
Update Double - request
Time Double - request
Type String
- config
Type string - current
Stats string - err
Missing booleanDev Id Fpc - last
Update number - request
Time number - request
Type string
- config_
type str - current_
stats str - err_
missing_ booldev_ id_ fpc - last_
update float - request_
time float - request_
type str
- config
Type String - current
Stats String - err
Missing BooleanDev Id Fpc - last
Update Number - request
Time Number - request
Type String
Package Details
- Repository
- junipermist pulumi/pulumi-junipermist
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
mistTerraform Provider.
Juniper Mist v0.6.4 published on Thursday, Nov 13, 2025 by Pulumi
