Juniper Mist v0.4.0 published on Wednesday, Apr 16, 2025 by Pulumi
junipermist.device.getGatewayStats
Explore with Pulumi AI
This data source provides the list of Gateways with their statistics.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as junipermist from "@pulumi/junipermist";
const gatewayStats = junipermist.device.getGatewayStats({
orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550",
mac: "e8a245000000",
siteId: "4a422ae5-7ca0-4599-87a3-8e49aa63685f",
status: "connected",
duration: "1d",
start: 1736031600,
end: 1736175934,
});
import pulumi
import pulumi_junipermist as junipermist
gateway_stats = junipermist.device.get_gateway_stats(org_id="15fca2ac-b1a6-47cc-9953-cc6906281550",
mac="e8a245000000",
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.GetGatewayStats(ctx, &device.GetGatewayStatsArgs{
OrgId: "15fca2ac-b1a6-47cc-9953-cc6906281550",
Mac: pulumi.StringRef("e8a245000000"),
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 gatewayStats = JuniperMist.Device.GetGatewayStats.Invoke(new()
{
OrgId = "15fca2ac-b1a6-47cc-9953-cc6906281550",
Mac = "e8a245000000",
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.GetGatewayStatsArgs;
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 gatewayStats = DeviceFunctions.getGatewayStats(GetGatewayStatsArgs.builder()
.orgId("15fca2ac-b1a6-47cc-9953-cc6906281550")
.mac("e8a245000000")
.siteId("4a422ae5-7ca0-4599-87a3-8e49aa63685f")
.status("connected")
.duration("1d")
.start(1736031600)
.end(1736175934)
.build());
}
}
variables:
gatewayStats:
fn::invoke:
function: junipermist:device:getGatewayStats
arguments:
orgId: 15fca2ac-b1a6-47cc-9953-cc6906281550
mac: e8a245000000
siteId: 4a422ae5-7ca0-4599-87a3-8e49aa63685f
status: connected
duration: 1d
start: 1.7360316e+09
end: 1.736175934e+09
Using getGatewayStats
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 getGatewayStats(args: GetGatewayStatsArgs, opts?: InvokeOptions): Promise<GetGatewayStatsResult>
function getGatewayStatsOutput(args: GetGatewayStatsOutputArgs, opts?: InvokeOptions): Output<GetGatewayStatsResult>
def get_gateway_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) -> GetGatewayStatsResult
def get_gateway_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[GetGatewayStatsResult]
func GetGatewayStats(ctx *Context, args *GetGatewayStatsArgs, opts ...InvokeOption) (*GetGatewayStatsResult, error)
func GetGatewayStatsOutput(ctx *Context, args *GetGatewayStatsOutputArgs, opts ...InvokeOption) GetGatewayStatsResultOutput
> Note: This function is named GetGatewayStats
in the Go SDK.
public static class GetGatewayStats
{
public static Task<GetGatewayStatsResult> InvokeAsync(GetGatewayStatsArgs args, InvokeOptions? opts = null)
public static Output<GetGatewayStatsResult> Invoke(GetGatewayStatsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetGatewayStatsResult> getGatewayStats(GetGatewayStatsArgs args, InvokeOptions options)
public static Output<GetGatewayStatsResult> getGatewayStats(GetGatewayStatsArgs args, InvokeOptions options)
fn::invoke:
function: junipermist:device/getGatewayStats:getGatewayStats
arguments:
# arguments dictionary
The following arguments are supported:
- 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
- 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
getGatewayStats Result
The following output properties are available:
- Device
Gateway List<Pulumi.Stats Juniper Mist. Device. Outputs. Get Gateway Stats Device Gateway 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
- 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
Gateway []GetStats Gateway Stats Device Gateway 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
- 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
Gateway List<GetStats Gateway Stats Device Gateway 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
- 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
Gateway GetStats Gateway Stats Device Gateway 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
- 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_
gateway_ Sequence[Getstats Gateway Stats Device Gateway Stat] - id str
- The provider-assigned unique ID for this managed resource.
- org_
id str - duration str
- Duration like 7d, 2w
- end int
- End datetime, can be epoch or relative time like -1d, -2h; now if not specified
- mac str
- site_
id str - start int
- Start datetime, can be epoch or relative time like -1d, -1w; -1d if not specified
- status str
- enum:
all
,connected
,disconnected
- device
Gateway 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
- 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
GetGatewayStatsDeviceGatewayStat
- Ap
Redundancy Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Ap Redundancy - Arp
Table Pulumi.Stats Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Arp Table Stats - Bgp
Peers List<Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Bgp Peer> - Only present when
bgp_peers
infields
query parameter. Each port object is same asGET /api/v1/sites/{site_id}/stats/bgp_peers/search
result object, except that orgid, siteid, mac, model are removed - Cert
Expiry int - Cluster
Config Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Cluster Config - Cluster
Stat Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Cluster Stat - Conductor
Name string - Config
Status string - Cpu2Stat
Pulumi.
Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Cpu2Stat - Cpu
Stat Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Cpu Stat - Created
Time double - When the object has been created, in epoch
- Deviceprofile
Id string - Dhcpd2Stat
Dictionary<string, Pulumi.
Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Dhcpd2Stat> - Property key is the network name
- Dhcpd
Stat Dictionary<string, Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Dhcpd Stat> - Property key is the network name
- Ext
Ip string - IP address
- Fwupdate
Pulumi.
Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Fwupdate - Has
Pcap bool - Hostname string
- Hostname reported by the device
- Id string
- Unique ID of the object instance in the Mist Organization
- If2Stat
Dictionary<string, Pulumi.
Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat If2Stat> - Property key is the interface name
- If
Stat Dictionary<string, Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat If Stat> - Property key is the interface name
- Ip string
- IP address
- Ip2Stat
Pulumi.
Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Ip2Stat - Ip
Stat Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Ip Stat - Is
Ha bool - Last
Seen double - Last seen timestamp
- Mac string
- Device mac
- Map
Id string - Serial Number
- Memory2Stat
Pulumi.
Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Memory2Stat - Memory usage stat (for virtual chassis, memory usage of master RE)
- Memory
Stat Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Memory Stat - Memory usage stat (for virtual chassis, memory usage of master RE)
- Model string
- Device model
- Modified
Time double - When the object has been modified for the last time, in epoch
- Module2Stats
List<Pulumi.
Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Module2Stat> - Module
Stats List<Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Module Stat> - Name string
- Device name if configured
- Node
Name string - Org
Id string - Ports
List<Pulumi.
Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Port> - Only present when
ports
infields
query parameter. Each port object is same asGET /api/v1/sites/{site_id}/stats/ports/search
result object, except that orgid, siteid, mac, model are removed - Route
Summary Pulumi.Stats Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Route Summary Stats - Router
Name string - Device name if configured
- Serial string
- Serial Number
- Service2Stat
Dictionary<string, Pulumi.
Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Service2Stat> - Service
Stat Dictionary<string, Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Service Stat> - Service
Status Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Service Status - Site
Id string - Spu2Stats
List<Pulumi.
Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Spu2Stat> - Spu
Stats List<Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Spu Stat> - Status string
- Tunnels
List<Pulumi.
Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Tunnel> - Only present when
tunnels
infields
query parameter. Each port object is same asGET /api/v1/sites/{site_id}/stats/tunnels/search
result object, except that orgid, siteid, mac, model are removed - Uptime double
- Version string
- Vpn
Peers List<Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Vpn Peer> - Only present when
vpn_peers
infields
query parameter. Each port object is same asGET /api/v1/sites/{site_id}/stats/vpn_peers/search
result object, except that orgid, siteid, mac, model are removed
- Ap
Redundancy GetGateway Stats Device Gateway Stat Ap Redundancy - Arp
Table GetStats Gateway Stats Device Gateway Stat Arp Table Stats - Bgp
Peers []GetGateway Stats Device Gateway Stat Bgp Peer - Only present when
bgp_peers
infields
query parameter. Each port object is same asGET /api/v1/sites/{site_id}/stats/bgp_peers/search
result object, except that orgid, siteid, mac, model are removed - Cert
Expiry int - Cluster
Config GetGateway Stats Device Gateway Stat Cluster Config - Cluster
Stat GetGateway Stats Device Gateway Stat Cluster Stat - Conductor
Name string - Config
Status string - Cpu2Stat
Get
Gateway Stats Device Gateway Stat Cpu2Stat - Cpu
Stat GetGateway Stats Device Gateway Stat Cpu Stat - Created
Time float64 - When the object has been created, in epoch
- Deviceprofile
Id string - Dhcpd2Stat
map[string]Get
Gateway Stats Device Gateway Stat Dhcpd2Stat - Property key is the network name
- Dhcpd
Stat map[string]GetGateway Stats Device Gateway Stat Dhcpd Stat - Property key is the network name
- Ext
Ip string - IP address
- Fwupdate
Get
Gateway Stats Device Gateway Stat Fwupdate - Has
Pcap bool - Hostname string
- Hostname reported by the device
- Id string
- Unique ID of the object instance in the Mist Organization
- If2Stat
map[string]Get
Gateway Stats Device Gateway Stat If2Stat - Property key is the interface name
- If
Stat map[string]GetGateway Stats Device Gateway Stat If Stat - Property key is the interface name
- Ip string
- IP address
- Ip2Stat
Get
Gateway Stats Device Gateway Stat Ip2Stat - Ip
Stat GetGateway Stats Device Gateway Stat Ip Stat - Is
Ha bool - Last
Seen float64 - Last seen timestamp
- Mac string
- Device mac
- Map
Id string - Serial Number
- Memory2Stat
Get
Gateway Stats Device Gateway Stat Memory2Stat - Memory usage stat (for virtual chassis, memory usage of master RE)
- Memory
Stat GetGateway Stats Device Gateway Stat Memory Stat - Memory usage stat (for virtual chassis, memory usage of master RE)
- Model string
- Device model
- Modified
Time float64 - When the object has been modified for the last time, in epoch
- Module2Stats
[]Get
Gateway Stats Device Gateway Stat Module2Stat - Module
Stats []GetGateway Stats Device Gateway Stat Module Stat - Name string
- Device name if configured
- Node
Name string - Org
Id string - Ports
[]Get
Gateway Stats Device Gateway Stat Port - Only present when
ports
infields
query parameter. Each port object is same asGET /api/v1/sites/{site_id}/stats/ports/search
result object, except that orgid, siteid, mac, model are removed - Route
Summary GetStats Gateway Stats Device Gateway Stat Route Summary Stats - Router
Name string - Device name if configured
- Serial string
- Serial Number
- Service2Stat
map[string]Get
Gateway Stats Device Gateway Stat Service2Stat - Service
Stat map[string]GetGateway Stats Device Gateway Stat Service Stat - Service
Status GetGateway Stats Device Gateway Stat Service Status - Site
Id string - Spu2Stats
[]Get
Gateway Stats Device Gateway Stat Spu2Stat - Spu
Stats []GetGateway Stats Device Gateway Stat Spu Stat - Status string
- Tunnels
[]Get
Gateway Stats Device Gateway Stat Tunnel - Only present when
tunnels
infields
query parameter. Each port object is same asGET /api/v1/sites/{site_id}/stats/tunnels/search
result object, except that orgid, siteid, mac, model are removed - Uptime float64
- Version string
- Vpn
Peers []GetGateway Stats Device Gateway Stat Vpn Peer - Only present when
vpn_peers
infields
query parameter. Each port object is same asGET /api/v1/sites/{site_id}/stats/vpn_peers/search
result object, except that orgid, siteid, mac, model are removed
- ap
Redundancy GetGateway Stats Device Gateway Stat Ap Redundancy - arp
Table GetStats Gateway Stats Device Gateway Stat Arp Table Stats - bgp
Peers List<GetGateway Stats Device Gateway Stat Bgp Peer> - Only present when
bgp_peers
infields
query parameter. Each port object is same asGET /api/v1/sites/{site_id}/stats/bgp_peers/search
result object, except that orgid, siteid, mac, model are removed - cert
Expiry Integer - cluster
Config GetGateway Stats Device Gateway Stat Cluster Config - cluster
Stat GetGateway Stats Device Gateway Stat Cluster Stat - conductor
Name String - config
Status String - cpu2Stat
Get
Gateway Stats Device Gateway Stat Cpu2Stat - cpu
Stat GetGateway Stats Device Gateway Stat Cpu Stat - created
Time Double - When the object has been created, in epoch
- deviceprofile
Id String - dhcpd2Stat
Map<String,Get
Gateway Stats Device Gateway Stat Dhcpd2Stat> - Property key is the network name
- dhcpd
Stat Map<String,GetGateway Stats Device Gateway Stat Dhcpd Stat> - Property key is the network name
- ext
Ip String - IP address
- fwupdate
Get
Gateway Stats Device Gateway Stat Fwupdate - has
Pcap Boolean - hostname String
- Hostname reported by the device
- id String
- Unique ID of the object instance in the Mist Organization
- if2Stat
Map<String,Get
Gateway Stats Device Gateway Stat If2Stat> - Property key is the interface name
- if
Stat Map<String,GetGateway Stats Device Gateway Stat If Stat> - Property key is the interface name
- ip String
- IP address
- ip2Stat
Get
Gateway Stats Device Gateway Stat Ip2Stat - ip
Stat GetGateway Stats Device Gateway Stat Ip Stat - is
Ha Boolean - last
Seen Double - Last seen timestamp
- mac String
- Device mac
- map
Id String - Serial Number
- memory2Stat
Get
Gateway Stats Device Gateway Stat Memory2Stat - Memory usage stat (for virtual chassis, memory usage of master RE)
- memory
Stat GetGateway Stats Device Gateway Stat Memory Stat - Memory usage stat (for virtual chassis, memory usage of master RE)
- model String
- Device model
- modified
Time Double - When the object has been modified for the last time, in epoch
- module2Stats
List<Get
Gateway Stats Device Gateway Stat Module2Stat> - module
Stats List<GetGateway Stats Device Gateway Stat Module Stat> - name String
- Device name if configured
- node
Name String - org
Id String - ports
List<Get
Gateway Stats Device Gateway Stat Port> - Only present when
ports
infields
query parameter. Each port object is same asGET /api/v1/sites/{site_id}/stats/ports/search
result object, except that orgid, siteid, mac, model are removed - route
Summary GetStats Gateway Stats Device Gateway Stat Route Summary Stats - router
Name String - Device name if configured
- serial String
- Serial Number
- service2Stat
Map<String,Get
Gateway Stats Device Gateway Stat Service2Stat> - service
Stat Map<String,GetGateway Stats Device Gateway Stat Service Stat> - service
Status GetGateway Stats Device Gateway Stat Service Status - site
Id String - spu2Stats
List<Get
Gateway Stats Device Gateway Stat Spu2Stat> - spu
Stats List<GetGateway Stats Device Gateway Stat Spu Stat> - status String
- tunnels
List<Get
Gateway Stats Device Gateway Stat Tunnel> - Only present when
tunnels
infields
query parameter. Each port object is same asGET /api/v1/sites/{site_id}/stats/tunnels/search
result object, except that orgid, siteid, mac, model are removed - uptime Double
- version String
- vpn
Peers List<GetGateway Stats Device Gateway Stat Vpn Peer> - Only present when
vpn_peers
infields
query parameter. Each port object is same asGET /api/v1/sites/{site_id}/stats/vpn_peers/search
result object, except that orgid, siteid, mac, model are removed
- ap
Redundancy GetGateway Stats Device Gateway Stat Ap Redundancy - arp
Table GetStats Gateway Stats Device Gateway Stat Arp Table Stats - bgp
Peers GetGateway Stats Device Gateway Stat Bgp Peer[] - Only present when
bgp_peers
infields
query parameter. Each port object is same asGET /api/v1/sites/{site_id}/stats/bgp_peers/search
result object, except that orgid, siteid, mac, model are removed - cert
Expiry number - cluster
Config GetGateway Stats Device Gateway Stat Cluster Config - cluster
Stat GetGateway Stats Device Gateway Stat Cluster Stat - conductor
Name string - config
Status string - cpu2Stat
Get
Gateway Stats Device Gateway Stat Cpu2Stat - cpu
Stat GetGateway Stats Device Gateway Stat Cpu Stat - created
Time number - When the object has been created, in epoch
- deviceprofile
Id string - dhcpd2Stat
{[key: string]: Get
Gateway Stats Device Gateway Stat Dhcpd2Stat} - Property key is the network name
- dhcpd
Stat {[key: string]: GetGateway Stats Device Gateway Stat Dhcpd Stat} - Property key is the network name
- ext
Ip string - IP address
- fwupdate
Get
Gateway Stats Device Gateway Stat Fwupdate - has
Pcap boolean - hostname string
- Hostname reported by the device
- id string
- Unique ID of the object instance in the Mist Organization
- if2Stat
{[key: string]: Get
Gateway Stats Device Gateway Stat If2Stat} - Property key is the interface name
- if
Stat {[key: string]: GetGateway Stats Device Gateway Stat If Stat} - Property key is the interface name
- ip string
- IP address
- ip2Stat
Get
Gateway Stats Device Gateway Stat Ip2Stat - ip
Stat GetGateway Stats Device Gateway Stat Ip Stat - is
Ha boolean - last
Seen number - Last seen timestamp
- mac string
- Device mac
- map
Id string - Serial Number
- memory2Stat
Get
Gateway Stats Device Gateway Stat Memory2Stat - Memory usage stat (for virtual chassis, memory usage of master RE)
- memory
Stat GetGateway Stats Device Gateway Stat Memory Stat - Memory usage stat (for virtual chassis, memory usage of master RE)
- model string
- Device model
- modified
Time number - When the object has been modified for the last time, in epoch
- module2Stats
Get
Gateway Stats Device Gateway Stat Module2Stat[] - module
Stats GetGateway Stats Device Gateway Stat Module Stat[] - name string
- Device name if configured
- node
Name string - org
Id string - ports
Get
Gateway Stats Device Gateway Stat Port[] - Only present when
ports
infields
query parameter. Each port object is same asGET /api/v1/sites/{site_id}/stats/ports/search
result object, except that orgid, siteid, mac, model are removed - route
Summary GetStats Gateway Stats Device Gateway Stat Route Summary Stats - router
Name string - Device name if configured
- serial string
- Serial Number
- service2Stat
{[key: string]: Get
Gateway Stats Device Gateway Stat Service2Stat} - service
Stat {[key: string]: GetGateway Stats Device Gateway Stat Service Stat} - service
Status GetGateway Stats Device Gateway Stat Service Status - site
Id string - spu2Stats
Get
Gateway Stats Device Gateway Stat Spu2Stat[] - spu
Stats GetGateway Stats Device Gateway Stat Spu Stat[] - status string
- tunnels
Get
Gateway Stats Device Gateway Stat Tunnel[] - Only present when
tunnels
infields
query parameter. Each port object is same asGET /api/v1/sites/{site_id}/stats/tunnels/search
result object, except that orgid, siteid, mac, model are removed - uptime number
- version string
- vpn
Peers GetGateway Stats Device Gateway Stat Vpn Peer[] - Only present when
vpn_peers
infields
query parameter. Each port object is same asGET /api/v1/sites/{site_id}/stats/vpn_peers/search
result object, except that orgid, siteid, mac, model are removed
- ap_
redundancy GetGateway Stats Device Gateway Stat Ap Redundancy - arp_
table_ Getstats Gateway Stats Device Gateway Stat Arp Table Stats - bgp_
peers Sequence[GetGateway Stats Device Gateway Stat Bgp Peer] - Only present when
bgp_peers
infields
query parameter. Each port object is same asGET /api/v1/sites/{site_id}/stats/bgp_peers/search
result object, except that orgid, siteid, mac, model are removed - cert_
expiry int - cluster_
config GetGateway Stats Device Gateway Stat Cluster Config - cluster_
stat GetGateway Stats Device Gateway Stat Cluster Stat - conductor_
name str - config_
status str - cpu2_
stat GetGateway Stats Device Gateway Stat Cpu2Stat - cpu_
stat GetGateway Stats Device Gateway Stat Cpu Stat - created_
time float - When the object has been created, in epoch
- deviceprofile_
id str - dhcpd2_
stat Mapping[str, GetGateway Stats Device Gateway Stat Dhcpd2Stat] - Property key is the network name
- dhcpd_
stat Mapping[str, GetGateway Stats Device Gateway Stat Dhcpd Stat] - Property key is the network name
- ext_
ip str - IP address
- fwupdate
Get
Gateway Stats Device Gateway Stat Fwupdate - has_
pcap bool - hostname str
- Hostname reported by the device
- id str
- Unique ID of the object instance in the Mist Organization
- if2_
stat Mapping[str, GetGateway Stats Device Gateway Stat If2Stat] - Property key is the interface name
- if_
stat Mapping[str, GetGateway Stats Device Gateway Stat If Stat] - Property key is the interface name
- ip str
- IP address
- ip2_
stat GetGateway Stats Device Gateway Stat Ip2Stat - ip_
stat GetGateway Stats Device Gateway Stat Ip Stat - is_
ha bool - last_
seen float - Last seen timestamp
- mac str
- Device mac
- map_
id str - Serial Number
- memory2_
stat GetGateway Stats Device Gateway Stat Memory2Stat - Memory usage stat (for virtual chassis, memory usage of master RE)
- memory_
stat GetGateway Stats Device Gateway Stat Memory Stat - Memory usage stat (for virtual chassis, memory usage of master RE)
- model str
- Device model
- modified_
time float - When the object has been modified for the last time, in epoch
- module2_
stats Sequence[GetGateway Stats Device Gateway Stat Module2Stat] - module_
stats Sequence[GetGateway Stats Device Gateway Stat Module Stat] - name str
- Device name if configured
- node_
name str - org_
id str - ports
Sequence[Get
Gateway Stats Device Gateway Stat Port] - Only present when
ports
infields
query parameter. Each port object is same asGET /api/v1/sites/{site_id}/stats/ports/search
result object, except that orgid, siteid, mac, model are removed - route_
summary_ Getstats Gateway Stats Device Gateway Stat Route Summary Stats - router_
name str - Device name if configured
- serial str
- Serial Number
- service2_
stat Mapping[str, GetGateway Stats Device Gateway Stat Service2Stat] - service_
stat Mapping[str, GetGateway Stats Device Gateway Stat Service Stat] - service_
status GetGateway Stats Device Gateway Stat Service Status - site_
id str - spu2_
stats Sequence[GetGateway Stats Device Gateway Stat Spu2Stat] - spu_
stats Sequence[GetGateway Stats Device Gateway Stat Spu Stat] - status str
- tunnels
Sequence[Get
Gateway Stats Device Gateway Stat Tunnel] - Only present when
tunnels
infields
query parameter. Each port object is same asGET /api/v1/sites/{site_id}/stats/tunnels/search
result object, except that orgid, siteid, mac, model are removed - uptime float
- version str
- vpn_
peers Sequence[GetGateway Stats Device Gateway Stat Vpn Peer] - Only present when
vpn_peers
infields
query parameter. Each port object is same asGET /api/v1/sites/{site_id}/stats/vpn_peers/search
result object, except that orgid, siteid, mac, model are removed
- ap
Redundancy Property Map - arp
Table Property MapStats - bgp
Peers List<Property Map> - Only present when
bgp_peers
infields
query parameter. Each port object is same asGET /api/v1/sites/{site_id}/stats/bgp_peers/search
result object, except that orgid, siteid, mac, model are removed - cert
Expiry Number - cluster
Config Property Map - cluster
Stat Property Map - conductor
Name String - config
Status String - cpu2Stat Property Map
- cpu
Stat Property Map - created
Time Number - When the object has been created, in epoch
- deviceprofile
Id String - dhcpd2Stat Map<Property Map>
- Property key is the network name
- dhcpd
Stat Map<Property Map> - Property key is the network name
- ext
Ip String - IP address
- fwupdate Property Map
- has
Pcap Boolean - hostname String
- Hostname reported by the device
- id String
- Unique ID of the object instance in the Mist Organization
- if2Stat Map<Property Map>
- Property key is the interface name
- if
Stat Map<Property Map> - Property key is the interface name
- ip String
- IP address
- ip2Stat Property Map
- ip
Stat Property Map - is
Ha Boolean - last
Seen Number - Last seen timestamp
- mac String
- Device mac
- map
Id String - Serial Number
- memory2Stat Property Map
- Memory usage stat (for virtual chassis, memory usage of master RE)
- memory
Stat Property Map - Memory usage stat (for virtual chassis, memory usage of master RE)
- model String
- Device model
- modified
Time Number - When the object has been modified for the last time, in epoch
- module2Stats List<Property Map>
- module
Stats List<Property Map> - name String
- Device name if configured
- node
Name String - org
Id String - ports List<Property Map>
- Only present when
ports
infields
query parameter. Each port object is same asGET /api/v1/sites/{site_id}/stats/ports/search
result object, except that orgid, siteid, mac, model are removed - route
Summary Property MapStats - router
Name String - Device name if configured
- serial String
- Serial Number
- service2Stat Map<Property Map>
- service
Stat Map<Property Map> - service
Status Property Map - site
Id String - spu2Stats List<Property Map>
- spu
Stats List<Property Map> - status String
- tunnels List<Property Map>
- Only present when
tunnels
infields
query parameter. Each port object is same asGET /api/v1/sites/{site_id}/stats/tunnels/search
result object, except that orgid, siteid, mac, model are removed - uptime Number
- version String
- vpn
Peers List<Property Map> - Only present when
vpn_peers
infields
query parameter. Each port object is same asGET /api/v1/sites/{site_id}/stats/vpn_peers/search
result object, except that orgid, siteid, mac, model are removed
GetGatewayStatsDeviceGatewayStatApRedundancy
- Modules
Dictionary<string, Pulumi.
Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Ap Redundancy Modules> - Property key is the node id
- Num
Aps int - Num
Aps intWith Switch Redundancy
- Modules
map[string]Get
Gateway Stats Device Gateway Stat Ap Redundancy Modules - Property key is the node id
- Num
Aps int - Num
Aps intWith Switch Redundancy
- modules
Map<String,Get
Gateway Stats Device Gateway Stat Ap Redundancy Modules> - Property key is the node id
- num
Aps Integer - num
Aps IntegerWith Switch Redundancy
- modules
{[key: string]: Get
Gateway Stats Device Gateway Stat Ap Redundancy Modules} - Property key is the node id
- num
Aps number - num
Aps numberWith Switch Redundancy
- modules
Mapping[str, Get
Gateway Stats Device Gateway Stat Ap Redundancy Modules] - Property key is the node id
- num_
aps int - num_
aps_ intwith_ switch_ redundancy
- modules Map<Property Map>
- Property key is the node id
- num
Aps Number - num
Aps NumberWith Switch Redundancy
GetGatewayStatsDeviceGatewayStatApRedundancyModules
- 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
GetGatewayStatsDeviceGatewayStatArpTableStats
- 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
GetGatewayStatsDeviceGatewayStatBgpPeer
- Evpn
Overlay bool - If this is created for evpn overlay
- For
Overlay bool - If this is created for overlay
- Local
As string - Neighbor string
- Neighbor
As string - Neighbor
Mac string - If it's another device in the same org
- Node string
- Node0/node1
- Rx
Pkts int - Amount of packets received since connection
- Rx
Routes int - Number of received routes
- State string
- enum:
active
,connect
,established
,idle
,open_config
,open_sent
- Timestamp double
- Epoch (seconds)
- Tx
Pkts int - Amount of packets sent since connection
- Tx
Routes int - Up bool
- Uptime int
- Vrf
Name string
- Evpn
Overlay bool - If this is created for evpn overlay
- For
Overlay bool - If this is created for overlay
- Local
As string - Neighbor string
- Neighbor
As string - Neighbor
Mac string - If it's another device in the same org
- Node string
- Node0/node1
- Rx
Pkts int - Amount of packets received since connection
- Rx
Routes int - Number of received routes
- State string
- enum:
active
,connect
,established
,idle
,open_config
,open_sent
- Timestamp float64
- Epoch (seconds)
- Tx
Pkts int - Amount of packets sent since connection
- Tx
Routes int - Up bool
- Uptime int
- Vrf
Name string
- evpn
Overlay Boolean - If this is created for evpn overlay
- for
Overlay Boolean - If this is created for overlay
- local
As String - neighbor String
- neighbor
As String - neighbor
Mac String - If it's another device in the same org
- node String
- Node0/node1
- rx
Pkts Integer - Amount of packets received since connection
- rx
Routes Integer - Number of received routes
- state String
- enum:
active
,connect
,established
,idle
,open_config
,open_sent
- timestamp Double
- Epoch (seconds)
- tx
Pkts Integer - Amount of packets sent since connection
- tx
Routes Integer - up Boolean
- uptime Integer
- vrf
Name String
- evpn
Overlay boolean - If this is created for evpn overlay
- for
Overlay boolean - If this is created for overlay
- local
As string - neighbor string
- neighbor
As string - neighbor
Mac string - If it's another device in the same org
- node string
- Node0/node1
- rx
Pkts number - Amount of packets received since connection
- rx
Routes number - Number of received routes
- state string
- enum:
active
,connect
,established
,idle
,open_config
,open_sent
- timestamp number
- Epoch (seconds)
- tx
Pkts number - Amount of packets sent since connection
- tx
Routes number - up boolean
- uptime number
- vrf
Name string
- evpn_
overlay bool - If this is created for evpn overlay
- for_
overlay bool - If this is created for overlay
- local_
as str - neighbor str
- neighbor_
as str - neighbor_
mac str - If it's another device in the same org
- node str
- Node0/node1
- rx_
pkts int - Amount of packets received since connection
- rx_
routes int - Number of received routes
- state str
- enum:
active
,connect
,established
,idle
,open_config
,open_sent
- timestamp float
- Epoch (seconds)
- tx_
pkts int - Amount of packets sent since connection
- tx_
routes int - up bool
- uptime int
- vrf_
name str
- evpn
Overlay Boolean - If this is created for evpn overlay
- for
Overlay Boolean - If this is created for overlay
- local
As String - neighbor String
- neighbor
As String - neighbor
Mac String - If it's another device in the same org
- node String
- Node0/node1
- rx
Pkts Number - Amount of packets received since connection
- rx
Routes Number - Number of received routes
- state String
- enum:
active
,connect
,established
,idle
,open_config
,open_sent
- timestamp Number
- Epoch (seconds)
- tx
Pkts Number - Amount of packets sent since connection
- tx
Routes Number - up Boolean
- uptime Number
- vrf
Name String
GetGatewayStatsDeviceGatewayStatClusterConfig
- Configuration string
- Control
Link Pulumi.Info Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Cluster Config Control Link Info - Ethernet
Connections List<Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Cluster Config Ethernet Connection> - Fabric
Link Pulumi.Info Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Cluster Config Fabric Link Info - Last
Status stringChange Reason - Operational string
- Primary
Node stringHealth - Redundancy
Group List<Pulumi.Informations Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Cluster Config Redundancy Group Information> - Secondary
Node stringHealth - Status string
- Configuration string
- Control
Link GetInfo Gateway Stats Device Gateway Stat Cluster Config Control Link Info - Ethernet
Connections []GetGateway Stats Device Gateway Stat Cluster Config Ethernet Connection - Fabric
Link GetInfo Gateway Stats Device Gateway Stat Cluster Config Fabric Link Info - Last
Status stringChange Reason - Operational string
- Primary
Node stringHealth - Redundancy
Group []GetInformations Gateway Stats Device Gateway Stat Cluster Config Redundancy Group Information - Secondary
Node stringHealth - Status string
- configuration String
- control
Link GetInfo Gateway Stats Device Gateway Stat Cluster Config Control Link Info - ethernet
Connections List<GetGateway Stats Device Gateway Stat Cluster Config Ethernet Connection> - fabric
Link GetInfo Gateway Stats Device Gateway Stat Cluster Config Fabric Link Info - last
Status StringChange Reason - operational String
- primary
Node StringHealth - redundancy
Group List<GetInformations Gateway Stats Device Gateway Stat Cluster Config Redundancy Group Information> - secondary
Node StringHealth - status String
- configuration string
- control
Link GetInfo Gateway Stats Device Gateway Stat Cluster Config Control Link Info - ethernet
Connections GetGateway Stats Device Gateway Stat Cluster Config Ethernet Connection[] - fabric
Link GetInfo Gateway Stats Device Gateway Stat Cluster Config Fabric Link Info - last
Status stringChange Reason - operational string
- primary
Node stringHealth - redundancy
Group GetInformations Gateway Stats Device Gateway Stat Cluster Config Redundancy Group Information[] - secondary
Node stringHealth - status string
- configuration str
- control_
link_ Getinfo Gateway Stats Device Gateway Stat Cluster Config Control Link Info - ethernet_
connections Sequence[GetGateway Stats Device Gateway Stat Cluster Config Ethernet Connection] - fabric_
link_ Getinfo Gateway Stats Device Gateway Stat Cluster Config Fabric Link Info - last_
status_ strchange_ reason - operational str
- primary_
node_ strhealth - redundancy_
group_ Sequence[Getinformations Gateway Stats Device Gateway Stat Cluster Config Redundancy Group Information] - secondary_
node_ strhealth - status str
GetGatewayStatsDeviceGatewayStatClusterConfigControlLinkInfo
GetGatewayStatsDeviceGatewayStatClusterConfigEthernetConnection
GetGatewayStatsDeviceGatewayStatClusterConfigFabricLinkInfo
- Data
Plane stringNotified Status - Interfaces List<string>
- Internal
Status string - State string
- Status string
- Data
Plane stringNotified Status - Interfaces []string
- Internal
Status string - State string
- Status string
- data
Plane StringNotified Status - interfaces List<String>
- internal
Status String - state String
- status String
- data
Plane stringNotified Status - interfaces string[]
- internal
Status string - state string
- status string
- data_
plane_ strnotified_ status - interfaces Sequence[str]
- internal_
status str - state str
- status str
- data
Plane StringNotified Status - interfaces List<String>
- internal
Status String - state String
- status String
GetGatewayStatsDeviceGatewayStatClusterConfigRedundancyGroupInformation
- Id int
- Monitoring
Failure string - Threshold int
- Id int
- Monitoring
Failure string - Threshold int
- id Integer
- monitoring
Failure String - threshold Integer
- id number
- monitoring
Failure string - threshold number
- id int
- monitoring_
failure str - threshold int
- id Number
- monitoring
Failure String - threshold Number
GetGatewayStatsDeviceGatewayStatClusterStat
- State string
- State string
- state String
- state string
- state str
- state String
GetGatewayStatsDeviceGatewayStatCpu2Stat
- 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
GetGatewayStatsDeviceGatewayStatCpuStat
- 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
GetGatewayStatsDeviceGatewayStatDhcpd2Stat
- num_
ips int - num_
leased int
GetGatewayStatsDeviceGatewayStatDhcpdStat
- num_
ips int - num_
leased int
GetGatewayStatsDeviceGatewayStatFwupdate
- progress int
- status str
- enum:
inprogress
,failed
,upgraded
- status_
id int - timestamp float
- Epoch (seconds)
- will_
retry bool
GetGatewayStatsDeviceGatewayStatIf2Stat
- 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 Gateway Stats Device Gateway Stat If2Stat 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 GetGateway Stats Device Gateway Stat If2Stat 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 GetGateway Stats Device Gateway Stat If2Stat 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 GetGateway Stats Device Gateway Stat If2Stat 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 GetGateway Stats Device Gateway Stat If2Stat 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
GetGatewayStatsDeviceGatewayStatIf2StatServpInfo
- 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
GetGatewayStatsDeviceGatewayStatIfStat
- 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 Gateway Stats Device Gateway 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 GetGateway Stats Device Gateway 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 GetGateway Stats Device Gateway 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 GetGateway Stats Device Gateway 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 GetGateway Stats Device Gateway 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
GetGatewayStatsDeviceGatewayStatIfStatServpInfo
- 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
GetGatewayStatsDeviceGatewayStatIp2Stat
- 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
GetGatewayStatsDeviceGatewayStatIpStat
- 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
GetGatewayStatsDeviceGatewayStatMemory2Stat
- Usage double
- Usage float64
- usage Double
- usage number
- usage float
- usage Number
GetGatewayStatsDeviceGatewayStatMemoryStat
- Usage double
- Usage float64
- usage Double
- usage number
- usage float
- usage Number
GetGatewayStatsDeviceGatewayStatModule2Stat
- Backup
Version string - Bios
Version string - Cpld
Version string - Fans
List<Pulumi.
Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Module2Stat Fan> - Fpga
Version string - Last
Seen double - Last seen timestamp
- Locating bool
- Mac string
- Model string
- Optics
Cpld stringVersion - Pending
Version string - Poe
Pulumi.
Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Module2Stat Poe - Poe
Version string - Power
Cpld stringVersion - Psuses
List<Pulumi.
Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Module2Stat Psus> - Re
Fpga stringVersion - Recovery
Version string - Serial string
- Status string
- Temperatures
List<Pulumi.
Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Module2Stat Temperature> - Tmc
Fpga stringVersion - Uboot
Version string - Uptime int
- Vc
Links List<Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Module2Stat 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 - Fans
[]Get
Gateway Stats Device Gateway Stat Module2Stat Fan - Fpga
Version string - Last
Seen float64 - Last seen timestamp
- Locating bool
- Mac string
- Model string
- Optics
Cpld stringVersion - Pending
Version string - Poe
Get
Gateway Stats Device Gateway Stat Module2Stat Poe - Poe
Version string - Power
Cpld stringVersion - Psuses
[]Get
Gateway Stats Device Gateway Stat Module2Stat Psus - Re
Fpga stringVersion - Recovery
Version string - Serial string
- Status string
- Temperatures
[]Get
Gateway Stats Device Gateway Stat Module2Stat Temperature - Tmc
Fpga stringVersion - Uboot
Version string - Uptime int
- Vc
Links []GetGateway Stats Device Gateway Stat Module2Stat 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 - fans
List<Get
Gateway Stats Device Gateway Stat Module2Stat Fan> - fpga
Version String - last
Seen Double - Last seen timestamp
- locating Boolean
- mac String
- model String
- optics
Cpld StringVersion - pending
Version String - poe
Get
Gateway Stats Device Gateway Stat Module2Stat Poe - poe
Version String - power
Cpld StringVersion - psuses
List<Get
Gateway Stats Device Gateway Stat Module2Stat Psus> - re
Fpga StringVersion - recovery
Version String - serial String
- status String
- temperatures
List<Get
Gateway Stats Device Gateway Stat Module2Stat Temperature> - tmc
Fpga StringVersion - uboot
Version String - uptime Integer
- vc
Links List<GetGateway Stats Device Gateway Stat Module2Stat 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 - fans
Get
Gateway Stats Device Gateway Stat Module2Stat Fan[] - fpga
Version string - last
Seen number - Last seen timestamp
- locating boolean
- mac string
- model string
- optics
Cpld stringVersion - pending
Version string - poe
Get
Gateway Stats Device Gateway Stat Module2Stat Poe - poe
Version string - power
Cpld stringVersion - psuses
Get
Gateway Stats Device Gateway Stat Module2Stat Psus[] - re
Fpga stringVersion - recovery
Version string - serial string
- status string
- temperatures
Get
Gateway Stats Device Gateway Stat Module2Stat Temperature[] - tmc
Fpga stringVersion - uboot
Version string - uptime number
- vc
Links GetGateway Stats Device Gateway Stat Module2Stat 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 - fans
Sequence[Get
Gateway Stats Device Gateway Stat Module2Stat Fan] - fpga_
version str - last_
seen float - Last seen timestamp
- locating bool
- mac str
- model str
- optics_
cpld_ strversion - pending_
version str - poe
Get
Gateway Stats Device Gateway Stat Module2Stat Poe - poe_
version str - power_
cpld_ strversion - psuses
Sequence[Get
Gateway Stats Device Gateway Stat Module2Stat Psus] - re_
fpga_ strversion - recovery_
version str - serial str
- status str
- temperatures
Sequence[Get
Gateway Stats Device Gateway Stat Module2Stat Temperature] - tmc_
fpga_ strversion - uboot_
version str - uptime int
- vc_
links Sequence[GetGateway Stats Device Gateway Stat Module2Stat 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 - fans List<Property Map>
- fpga
Version String - last
Seen Number - Last seen timestamp
- locating Boolean
- mac String
- model String
- optics
Cpld StringVersion - pending
Version String - 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 - 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
GetGatewayStatsDeviceGatewayStatModule2StatFan
GetGatewayStatsDeviceGatewayStatModule2StatPoe
- max_
power float - power_
draw float
GetGatewayStatsDeviceGatewayStatModule2StatPsus
GetGatewayStatsDeviceGatewayStatModule2StatTemperature
GetGatewayStatsDeviceGatewayStatModule2StatVcLink
- 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
GetGatewayStatsDeviceGatewayStatModuleStat
- Backup
Version string - Bios
Version string - Cpld
Version string - Fans
List<Pulumi.
Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Module Stat Fan> - Fpga
Version string - Last
Seen double - Last seen timestamp
- Locating bool
- Mac string
- Model string
- Optics
Cpld stringVersion - Pending
Version string - Poe
Pulumi.
Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Module Stat Poe - Poe
Version string - Power
Cpld stringVersion - Psuses
List<Pulumi.
Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Module Stat Psus> - Re
Fpga stringVersion - Recovery
Version string - Serial string
- Status string
- Temperatures
List<Pulumi.
Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Module Stat Temperature> - Tmc
Fpga stringVersion - Uboot
Version string - Uptime int
- Vc
Links List<Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway 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 - Fans
[]Get
Gateway Stats Device Gateway Stat Module Stat Fan - Fpga
Version string - Last
Seen float64 - Last seen timestamp
- Locating bool
- Mac string
- Model string
- Optics
Cpld stringVersion - Pending
Version string - Poe
Get
Gateway Stats Device Gateway Stat Module Stat Poe - Poe
Version string - Power
Cpld stringVersion - Psuses
[]Get
Gateway Stats Device Gateway Stat Module Stat Psus - Re
Fpga stringVersion - Recovery
Version string - Serial string
- Status string
- Temperatures
[]Get
Gateway Stats Device Gateway Stat Module Stat Temperature - Tmc
Fpga stringVersion - Uboot
Version string - Uptime int
- Vc
Links []GetGateway Stats Device Gateway 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 - fans
List<Get
Gateway Stats Device Gateway Stat Module Stat Fan> - fpga
Version String - last
Seen Double - Last seen timestamp
- locating Boolean
- mac String
- model String
- optics
Cpld StringVersion - pending
Version String - poe
Get
Gateway Stats Device Gateway Stat Module Stat Poe - poe
Version String - power
Cpld StringVersion - psuses
List<Get
Gateway Stats Device Gateway Stat Module Stat Psus> - re
Fpga StringVersion - recovery
Version String - serial String
- status String
- temperatures
List<Get
Gateway Stats Device Gateway Stat Module Stat Temperature> - tmc
Fpga StringVersion - uboot
Version String - uptime Integer
- vc
Links List<GetGateway Stats Device Gateway 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 - fans
Get
Gateway Stats Device Gateway Stat Module Stat Fan[] - fpga
Version string - last
Seen number - Last seen timestamp
- locating boolean
- mac string
- model string
- optics
Cpld stringVersion - pending
Version string - poe
Get
Gateway Stats Device Gateway Stat Module Stat Poe - poe
Version string - power
Cpld stringVersion - psuses
Get
Gateway Stats Device Gateway Stat Module Stat Psus[] - re
Fpga stringVersion - recovery
Version string - serial string
- status string
- temperatures
Get
Gateway Stats Device Gateway Stat Module Stat Temperature[] - tmc
Fpga stringVersion - uboot
Version string - uptime number
- vc
Links GetGateway Stats Device Gateway 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 - fans
Sequence[Get
Gateway Stats Device Gateway Stat Module Stat Fan] - fpga_
version str - last_
seen float - Last seen timestamp
- locating bool
- mac str
- model str
- optics_
cpld_ strversion - pending_
version str - poe
Get
Gateway Stats Device Gateway Stat Module Stat Poe - poe_
version str - power_
cpld_ strversion - psuses
Sequence[Get
Gateway Stats Device Gateway Stat Module Stat Psus] - re_
fpga_ strversion - recovery_
version str - serial str
- status str
- temperatures
Sequence[Get
Gateway Stats Device Gateway Stat Module Stat Temperature] - tmc_
fpga_ strversion - uboot_
version str - uptime int
- vc_
links Sequence[GetGateway Stats Device Gateway 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 - fans List<Property Map>
- fpga
Version String - last
Seen Number - Last seen timestamp
- locating Boolean
- mac String
- model String
- optics
Cpld StringVersion - pending
Version String - 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 - 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
GetGatewayStatsDeviceGatewayStatModuleStatFan
GetGatewayStatsDeviceGatewayStatModuleStatPoe
- max_
power float - power_
draw float
GetGatewayStatsDeviceGatewayStatModuleStatPsus
GetGatewayStatsDeviceGatewayStatModuleStatTemperature
GetGatewayStatsDeviceGatewayStatModuleStatVcLink
- 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
GetGatewayStatsDeviceGatewayStatPort
- Active bool
- Indicates if interface is active/inactive
- Auth
State string - if
up
==true
and 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
- 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
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"
- Poe
Disabled bool - Is the POE configured not be 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
- 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
==true
and 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
- 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
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"
- Poe
Disabled bool - Is the POE configured not be 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
- 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
==true
and 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
- 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
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"
- poe
Disabled Boolean - Is the POE configured not be 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
- 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
==true
and 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
- 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
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"
- poe
Disabled boolean - Is the POE configured not be 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
- 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
==true
and 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
- 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_
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"
- poe_
disabled bool - Is the POE configured not be 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
- 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
==true
and 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
- 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
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"
- poe
Disabled Boolean - Is the POE configured not be 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
- 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
GetGatewayStatsDeviceGatewayStatRouteSummaryStats
- 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
GetGatewayStatsDeviceGatewayStatService2Stat
- 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
GetGatewayStatsDeviceGatewayStatServiceStat
- 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
GetGatewayStatsDeviceGatewayStatServiceStatus
- Appid
Install stringResult - Appid
Install stringTimestamp - Appid
Status string - Appid
Version int - Ewf
Status string - Idp
Install stringResult - Idp
Install stringTimestamp - Idp
Policy string - Idp
Status string - Idp
Update stringTimestamp
- Appid
Install stringResult - Appid
Install stringTimestamp - Appid
Status string - Appid
Version int - Ewf
Status string - Idp
Install stringResult - Idp
Install stringTimestamp - Idp
Policy string - Idp
Status string - Idp
Update stringTimestamp
- appid
Install StringResult - appid
Install StringTimestamp - appid
Status String - appid
Version Integer - ewf
Status String - idp
Install StringResult - idp
Install StringTimestamp - idp
Policy String - idp
Status String - idp
Update StringTimestamp
- appid
Install stringResult - appid
Install stringTimestamp - appid
Status string - appid
Version number - ewf
Status string - idp
Install stringResult - idp
Install stringTimestamp - idp
Policy string - idp
Status string - idp
Update stringTimestamp
- appid_
install_ strresult - appid_
install_ strtimestamp - appid_
status str - appid_
version int - ewf_
status str - idp_
install_ strresult - idp_
install_ strtimestamp - idp_
policy str - idp_
status str - idp_
update_ strtimestamp
- appid
Install StringResult - appid
Install StringTimestamp - appid
Status String - appid
Version Number - ewf
Status String - idp
Install StringResult - idp
Install StringTimestamp - idp
Policy String - idp
Status String - idp
Update StringTimestamp
GetGatewayStatsDeviceGatewayStatSpu2Stat
- Spu
Cpu int - Spu
Current intSession - Spu
Max intSession - Spu
Memory int - Spu
Pending intSession - Spu
Valid intSession
- Spu
Cpu int - Spu
Current intSession - Spu
Max intSession - Spu
Memory int - Spu
Pending intSession - Spu
Valid intSession
- spu
Cpu Integer - spu
Current IntegerSession - spu
Max IntegerSession - spu
Memory Integer - spu
Pending IntegerSession - spu
Valid IntegerSession
- spu
Cpu number - spu
Current numberSession - spu
Max numberSession - spu
Memory number - spu
Pending numberSession - spu
Valid numberSession
- spu_
cpu int - spu_
current_ intsession - spu_
max_ intsession - spu_
memory int - spu_
pending_ intsession - spu_
valid_ intsession
- spu
Cpu Number - spu
Current NumberSession - spu
Max NumberSession - spu
Memory Number - spu
Pending NumberSession - spu
Valid NumberSession
GetGatewayStatsDeviceGatewayStatSpuStat
- Spu
Cpu int - Spu
Current intSession - Spu
Max intSession - Spu
Memory int - Spu
Pending intSession - Spu
Valid intSession
- Spu
Cpu int - Spu
Current intSession - Spu
Max intSession - Spu
Memory int - Spu
Pending intSession - Spu
Valid intSession
- spu
Cpu Integer - spu
Current IntegerSession - spu
Max IntegerSession - spu
Memory Integer - spu
Pending IntegerSession - spu
Valid IntegerSession
- spu
Cpu number - spu
Current numberSession - spu
Max numberSession - spu
Memory number - spu
Pending numberSession - spu
Valid numberSession
- spu_
cpu int - spu_
current_ intsession - spu_
max_ intsession - spu_
memory int - spu_
pending_ intsession - spu_
valid_ intsession
- spu
Cpu Number - spu
Current NumberSession - spu
Max NumberSession - spu
Memory Number - spu
Pending NumberSession - spu
Valid NumberSession
GetGatewayStatsDeviceGatewayStatTunnel
- Auth
Algo string - Authentication algorithm
- Encrypt
Algo string - Encryption algorithm
- Ike
Version string - IKE version
- Ip string
- IP Address
- Last
Event string - Reason of why the tunnel is down
- Last
Flapped double - Indicates when the port was last flapped
- Node string
- Node0/node1
- Peer
Host string - Peer host
- Peer
Ip string - Peer ip address
- Priority string
- enum:
primary
,secondary
- Protocol string
- enum:
gre
,ipsec
- Rx
Bytes int - Amount of traffic received since connection
- Rx
Pkts int - Amount of packets received since connection
- Tunnel
Name string - Mist Tunnel Name
- Tx
Bytes int - Amount of traffic sent since connection
- Tx
Pkts int - Amount of packets sent since connection
- Up bool
- Uptime int
- Duration from first (or last) SA was established
- Wan
Name string - WAN interface name
- Auth
Algo string - Authentication algorithm
- Encrypt
Algo string - Encryption algorithm
- Ike
Version string - IKE version
- Ip string
- IP Address
- Last
Event string - Reason of why the tunnel is down
- Last
Flapped float64 - Indicates when the port was last flapped
- Node string
- Node0/node1
- Peer
Host string - Peer host
- Peer
Ip string - Peer ip address
- Priority string
- enum:
primary
,secondary
- Protocol string
- enum:
gre
,ipsec
- Rx
Bytes int - Amount of traffic received since connection
- Rx
Pkts int - Amount of packets received since connection
- Tunnel
Name string - Mist Tunnel Name
- Tx
Bytes int - Amount of traffic sent since connection
- Tx
Pkts int - Amount of packets sent since connection
- Up bool
- Uptime int
- Duration from first (or last) SA was established
- Wan
Name string - WAN interface name
- auth
Algo String - Authentication algorithm
- encrypt
Algo String - Encryption algorithm
- ike
Version String - IKE version
- ip String
- IP Address
- last
Event String - Reason of why the tunnel is down
- last
Flapped Double - Indicates when the port was last flapped
- node String
- Node0/node1
- peer
Host String - Peer host
- peer
Ip String - Peer ip address
- priority String
- enum:
primary
,secondary
- protocol String
- enum:
gre
,ipsec
- rx
Bytes Integer - Amount of traffic received since connection
- rx
Pkts Integer - Amount of packets received since connection
- tunnel
Name String - Mist Tunnel Name
- tx
Bytes Integer - Amount of traffic sent since connection
- tx
Pkts Integer - Amount of packets sent since connection
- up Boolean
- uptime Integer
- Duration from first (or last) SA was established
- wan
Name String - WAN interface name
- auth
Algo string - Authentication algorithm
- encrypt
Algo string - Encryption algorithm
- ike
Version string - IKE version
- ip string
- IP Address
- last
Event string - Reason of why the tunnel is down
- last
Flapped number - Indicates when the port was last flapped
- node string
- Node0/node1
- peer
Host string - Peer host
- peer
Ip string - Peer ip address
- priority string
- enum:
primary
,secondary
- protocol string
- enum:
gre
,ipsec
- rx
Bytes number - Amount of traffic received since connection
- rx
Pkts number - Amount of packets received since connection
- tunnel
Name string - Mist Tunnel Name
- tx
Bytes number - Amount of traffic sent since connection
- tx
Pkts number - Amount of packets sent since connection
- up boolean
- uptime number
- Duration from first (or last) SA was established
- wan
Name string - WAN interface name
- auth_
algo str - Authentication algorithm
- encrypt_
algo str - Encryption algorithm
- ike_
version str - IKE version
- ip str
- IP Address
- last_
event str - Reason of why the tunnel is down
- last_
flapped float - Indicates when the port was last flapped
- node str
- Node0/node1
- peer_
host str - Peer host
- peer_
ip str - Peer ip address
- priority str
- enum:
primary
,secondary
- protocol str
- enum:
gre
,ipsec
- rx_
bytes int - Amount of traffic received since connection
- rx_
pkts int - Amount of packets received since connection
- tunnel_
name str - Mist Tunnel Name
- tx_
bytes int - Amount of traffic sent since connection
- tx_
pkts int - Amount of packets sent since connection
- up bool
- uptime int
- Duration from first (or last) SA was established
- wan_
name str - WAN interface name
- auth
Algo String - Authentication algorithm
- encrypt
Algo String - Encryption algorithm
- ike
Version String - IKE version
- ip String
- IP Address
- last
Event String - Reason of why the tunnel is down
- last
Flapped Number - Indicates when the port was last flapped
- node String
- Node0/node1
- peer
Host String - Peer host
- peer
Ip String - Peer ip address
- priority String
- enum:
primary
,secondary
- protocol String
- enum:
gre
,ipsec
- rx
Bytes Number - Amount of traffic received since connection
- rx
Pkts Number - Amount of packets received since connection
- tunnel
Name String - Mist Tunnel Name
- tx
Bytes Number - Amount of traffic sent since connection
- tx
Pkts Number - Amount of packets sent since connection
- up Boolean
- uptime Number
- Duration from first (or last) SA was established
- wan
Name String - WAN interface name
GetGatewayStatsDeviceGatewayStatVpnPeer
- Is
Active bool - Redundancy status of the associated interface
- Last
Seen double - Last seen timestamp
- Latency double
- Mos double
- Mtu int
- Peer
Mac string - Peer router mac address
- Peer
Port stringId - Peer router device interface
- Peer
Router stringName - Peer
Site stringId - Port
Id string - Router device interface
- Router
Name string - Type string
ipsec
for SRX,svr
for 128T- Up bool
- Uptime int
- Is
Active bool - Redundancy status of the associated interface
- Last
Seen float64 - Last seen timestamp
- Latency float64
- Mos float64
- Mtu int
- Peer
Mac string - Peer router mac address
- Peer
Port stringId - Peer router device interface
- Peer
Router stringName - Peer
Site stringId - Port
Id string - Router device interface
- Router
Name string - Type string
ipsec
for SRX,svr
for 128T- Up bool
- Uptime int
- is
Active Boolean - Redundancy status of the associated interface
- last
Seen Double - Last seen timestamp
- latency Double
- mos Double
- mtu Integer
- peer
Mac String - Peer router mac address
- peer
Port StringId - Peer router device interface
- peer
Router StringName - peer
Site StringId - port
Id String - Router device interface
- router
Name String - type String
ipsec
for SRX,svr
for 128T- up Boolean
- uptime Integer
- is
Active boolean - Redundancy status of the associated interface
- last
Seen number - Last seen timestamp
- latency number
- mos number
- mtu number
- peer
Mac string - Peer router mac address
- peer
Port stringId - Peer router device interface
- peer
Router stringName - peer
Site stringId - port
Id string - Router device interface
- router
Name string - type string
ipsec
for SRX,svr
for 128T- up boolean
- uptime number
- is_
active bool - Redundancy status of the associated interface
- last_
seen float - Last seen timestamp
- latency float
- mos float
- mtu int
- peer_
mac str - Peer router mac address
- peer_
port_ strid - Peer router device interface
- peer_
router_ strname - peer_
site_ strid - port_
id str - Router device interface
- router_
name str - type str
ipsec
for SRX,svr
for 128T- up bool
- uptime int
- is
Active Boolean - Redundancy status of the associated interface
- last
Seen Number - Last seen timestamp
- latency Number
- mos Number
- mtu Number
- peer
Mac String - Peer router mac address
- peer
Port StringId - Peer router device interface
- peer
Router StringName - peer
Site StringId - port
Id String - Router device interface
- router
Name String - type String
ipsec
for SRX,svr
for 128T- up Boolean
- uptime Number
Package Details
- Repository
- junipermist pulumi/pulumi-junipermist
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
mist
Terraform Provider.