Juniper Mist v0.2.4 published on Saturday, Mar 1, 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 dictionaryThe following arguments are supported:
getGatewayStats Result
The following output properties are available:
- DeviceGateway List<Pulumi.Stats Juniper Mist. Device. Outputs. Get Gateway Stats Device Gateway Stat> 
- Id string
- The provider-assigned unique ID for this managed resource.
- OrgId string
- Duration string
- duration like 7d, 2w
- End int
- end datetime, can be epoch or relative time like -1d, -2h; now if not specified
- Mac string
- SiteId string
- Start int
- start datetime, can be epoch or relative time like -1d, -1w; -1d if not specified
- Status string
- DeviceGateway []GetStats Gateway Stats Device Gateway Stat 
- Id string
- The provider-assigned unique ID for this managed resource.
- OrgId string
- Duration string
- duration like 7d, 2w
- End int
- end datetime, can be epoch or relative time like -1d, -2h; now if not specified
- Mac string
- SiteId string
- Start int
- start datetime, can be epoch or relative time like -1d, -1w; -1d if not specified
- Status string
- deviceGateway List<GetStats Gateway Stats Device Gateway Stat> 
- id String
- The provider-assigned unique ID for this managed resource.
- orgId String
- duration String
- duration like 7d, 2w
- end Integer
- end datetime, can be epoch or relative time like -1d, -2h; now if not specified
- mac String
- siteId String
- start Integer
- start datetime, can be epoch or relative time like -1d, -1w; -1d if not specified
- status String
- deviceGateway GetStats Gateway Stats Device Gateway Stat[] 
- id string
- The provider-assigned unique ID for this managed resource.
- orgId string
- duration string
- duration like 7d, 2w
- end number
- end datetime, can be epoch or relative time like -1d, -2h; now if not specified
- mac string
- siteId string
- start number
- start datetime, can be epoch or relative time like -1d, -1w; -1d if not specified
- status string
- device_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
- deviceGateway List<Property Map>Stats 
- id String
- The provider-assigned unique ID for this managed resource.
- orgId String
- duration String
- duration like 7d, 2w
- end Number
- end datetime, can be epoch or relative time like -1d, -2h; now if not specified
- mac String
- siteId String
- start Number
- start datetime, can be epoch or relative time like -1d, -1w; -1d if not specified
- status String
Supporting Types
GetGatewayStatsDeviceGatewayStat     
- ApRedundancy Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Ap Redundancy 
- ArpTable Pulumi.Stats Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Arp Table Stats 
- CertExpiry int
- ClusterConfig Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Cluster Config 
- ClusterStat Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Cluster Stat 
- ConductorName string
- ConfigStatus string
- Cpu2Stat
Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Cpu2Stat 
- CpuStat Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Cpu Stat 
- CreatedTime int
- DeviceprofileId string
- Dhcpd2Stat
Dictionary<string, Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Dhcpd2Stat> 
- Property key is the network name
- DhcpdStat Dictionary<string, Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Dhcpd Stat> 
- Property key is the network name
- ExtIp string
- IP address
- Fwupdate
Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Fwupdate 
- HasPcap bool
- Hostname string
- hostname reported by the device
- Id string
- serial
- If2Stat
Dictionary<string, Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat If2Stat> 
- Property key is the interface name
- IfStat 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 
- IpStat Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Ip Stat 
- IsHa bool
- LastSeen double
- last seen timestamp
- Mac string
- device mac
- MapId string
- serial
- Memory2Stat
Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Memory2Stat 
- memory usage stat (for virtual chassis, memory usage of master RE)
- MemoryStat 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
- ModifiedTime int
- Module2Stats
List<Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Module2Stat> 
- ModuleStats List<Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Module Stat> 
- Name string
- device name if configured
- NodeName string
- OrgId string
- serial
- RouteSummary Pulumi.Stats Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Route Summary Stats 
- RouterName string
- device name if configured
- Serial string
- serial
- Service2Stat
Dictionary<string, Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Service2Stat> 
- ServiceStat Dictionary<string, Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Service Stat> 
- ServiceStatus Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Service Status 
- SiteId string
- serial
- Spu2Stats
List<Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Spu2Stat> 
- SpuStats List<Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Spu Stat> 
- Status string
- Uptime double
- Version string
- ApRedundancy GetGateway Stats Device Gateway Stat Ap Redundancy 
- ArpTable GetStats Gateway Stats Device Gateway Stat Arp Table Stats 
- CertExpiry int
- ClusterConfig GetGateway Stats Device Gateway Stat Cluster Config 
- ClusterStat GetGateway Stats Device Gateway Stat Cluster Stat 
- ConductorName string
- ConfigStatus string
- Cpu2Stat
GetGateway Stats Device Gateway Stat Cpu2Stat 
- CpuStat GetGateway Stats Device Gateway Stat Cpu Stat 
- CreatedTime int
- DeviceprofileId string
- Dhcpd2Stat
map[string]GetGateway Stats Device Gateway Stat Dhcpd2Stat 
- Property key is the network name
- DhcpdStat map[string]GetGateway Stats Device Gateway Stat Dhcpd Stat 
- Property key is the network name
- ExtIp string
- IP address
- Fwupdate
GetGateway Stats Device Gateway Stat Fwupdate 
- HasPcap bool
- Hostname string
- hostname reported by the device
- Id string
- serial
- If2Stat
map[string]GetGateway Stats Device Gateway Stat If2Stat 
- Property key is the interface name
- IfStat map[string]GetGateway Stats Device Gateway Stat If Stat 
- Property key is the interface name
- Ip string
- IP address
- Ip2Stat
GetGateway Stats Device Gateway Stat Ip2Stat 
- IpStat GetGateway Stats Device Gateway Stat Ip Stat 
- IsHa bool
- LastSeen float64
- last seen timestamp
- Mac string
- device mac
- MapId string
- serial
- Memory2Stat
GetGateway Stats Device Gateway Stat Memory2Stat 
- memory usage stat (for virtual chassis, memory usage of master RE)
- MemoryStat GetGateway Stats Device Gateway Stat Memory Stat 
- memory usage stat (for virtual chassis, memory usage of master RE)
- Model string
- device model
- ModifiedTime int
- Module2Stats
[]GetGateway Stats Device Gateway Stat Module2Stat 
- ModuleStats []GetGateway Stats Device Gateway Stat Module Stat 
- Name string
- device name if configured
- NodeName string
- OrgId string
- serial
- RouteSummary GetStats Gateway Stats Device Gateway Stat Route Summary Stats 
- RouterName string
- device name if configured
- Serial string
- serial
- Service2Stat
map[string]GetGateway Stats Device Gateway Stat Service2Stat 
- ServiceStat map[string]GetGateway Stats Device Gateway Stat Service Stat 
- ServiceStatus GetGateway Stats Device Gateway Stat Service Status 
- SiteId string
- serial
- Spu2Stats
[]GetGateway Stats Device Gateway Stat Spu2Stat 
- SpuStats []GetGateway Stats Device Gateway Stat Spu Stat 
- Status string
- Uptime float64
- Version string
- apRedundancy GetGateway Stats Device Gateway Stat Ap Redundancy 
- arpTable GetStats Gateway Stats Device Gateway Stat Arp Table Stats 
- certExpiry Integer
- clusterConfig GetGateway Stats Device Gateway Stat Cluster Config 
- clusterStat GetGateway Stats Device Gateway Stat Cluster Stat 
- conductorName String
- configStatus String
- cpu2Stat
GetGateway Stats Device Gateway Stat Cpu2Stat 
- cpuStat GetGateway Stats Device Gateway Stat Cpu Stat 
- createdTime Integer
- deviceprofileId String
- dhcpd2Stat
Map<String,GetGateway Stats Device Gateway Stat Dhcpd2Stat> 
- Property key is the network name
- dhcpdStat Map<String,GetGateway Stats Device Gateway Stat Dhcpd Stat> 
- Property key is the network name
- extIp String
- IP address
- fwupdate
GetGateway Stats Device Gateway Stat Fwupdate 
- hasPcap Boolean
- hostname String
- hostname reported by the device
- id String
- serial
- if2Stat
Map<String,GetGateway Stats Device Gateway Stat If2Stat> 
- Property key is the interface name
- ifStat Map<String,GetGateway Stats Device Gateway Stat If Stat> 
- Property key is the interface name
- ip String
- IP address
- ip2Stat
GetGateway Stats Device Gateway Stat Ip2Stat 
- ipStat GetGateway Stats Device Gateway Stat Ip Stat 
- isHa Boolean
- lastSeen Double
- last seen timestamp
- mac String
- device mac
- mapId String
- serial
- memory2Stat
GetGateway Stats Device Gateway Stat Memory2Stat 
- memory usage stat (for virtual chassis, memory usage of master RE)
- memoryStat GetGateway Stats Device Gateway Stat Memory Stat 
- memory usage stat (for virtual chassis, memory usage of master RE)
- model String
- device model
- modifiedTime Integer
- module2Stats
List<GetGateway Stats Device Gateway Stat Module2Stat> 
- moduleStats List<GetGateway Stats Device Gateway Stat Module Stat> 
- name String
- device name if configured
- nodeName String
- orgId String
- serial
- routeSummary GetStats Gateway Stats Device Gateway Stat Route Summary Stats 
- routerName String
- device name if configured
- serial String
- serial
- service2Stat
Map<String,GetGateway Stats Device Gateway Stat Service2Stat> 
- serviceStat Map<String,GetGateway Stats Device Gateway Stat Service Stat> 
- serviceStatus GetGateway Stats Device Gateway Stat Service Status 
- siteId String
- serial
- spu2Stats
List<GetGateway Stats Device Gateway Stat Spu2Stat> 
- spuStats List<GetGateway Stats Device Gateway Stat Spu Stat> 
- status String
- uptime Double
- version String
- apRedundancy GetGateway Stats Device Gateway Stat Ap Redundancy 
- arpTable GetStats Gateway Stats Device Gateway Stat Arp Table Stats 
- certExpiry number
- clusterConfig GetGateway Stats Device Gateway Stat Cluster Config 
- clusterStat GetGateway Stats Device Gateway Stat Cluster Stat 
- conductorName string
- configStatus string
- cpu2Stat
GetGateway Stats Device Gateway Stat Cpu2Stat 
- cpuStat GetGateway Stats Device Gateway Stat Cpu Stat 
- createdTime number
- deviceprofileId string
- dhcpd2Stat
{[key: string]: GetGateway Stats Device Gateway Stat Dhcpd2Stat} 
- Property key is the network name
- dhcpdStat {[key: string]: GetGateway Stats Device Gateway Stat Dhcpd Stat} 
- Property key is the network name
- extIp string
- IP address
- fwupdate
GetGateway Stats Device Gateway Stat Fwupdate 
- hasPcap boolean
- hostname string
- hostname reported by the device
- id string
- serial
- if2Stat
{[key: string]: GetGateway Stats Device Gateway Stat If2Stat} 
- Property key is the interface name
- ifStat {[key: string]: GetGateway Stats Device Gateway Stat If Stat} 
- Property key is the interface name
- ip string
- IP address
- ip2Stat
GetGateway Stats Device Gateway Stat Ip2Stat 
- ipStat GetGateway Stats Device Gateway Stat Ip Stat 
- isHa boolean
- lastSeen number
- last seen timestamp
- mac string
- device mac
- mapId string
- serial
- memory2Stat
GetGateway Stats Device Gateway Stat Memory2Stat 
- memory usage stat (for virtual chassis, memory usage of master RE)
- memoryStat GetGateway Stats Device Gateway Stat Memory Stat 
- memory usage stat (for virtual chassis, memory usage of master RE)
- model string
- device model
- modifiedTime number
- module2Stats
GetGateway Stats Device Gateway Stat Module2Stat[] 
- moduleStats GetGateway Stats Device Gateway Stat Module Stat[] 
- name string
- device name if configured
- nodeName string
- orgId string
- serial
- routeSummary GetStats Gateway Stats Device Gateway Stat Route Summary Stats 
- routerName string
- device name if configured
- serial string
- serial
- service2Stat
{[key: string]: GetGateway Stats Device Gateway Stat Service2Stat} 
- serviceStat {[key: string]: GetGateway Stats Device Gateway Stat Service Stat} 
- serviceStatus GetGateway Stats Device Gateway Stat Service Status 
- siteId string
- serial
- spu2Stats
GetGateway Stats Device Gateway Stat Spu2Stat[] 
- spuStats GetGateway Stats Device Gateway Stat Spu Stat[] 
- status string
- uptime number
- version string
- ap_redundancy GetGateway Stats Device Gateway Stat Ap Redundancy 
- arp_table_ Getstats Gateway Stats Device Gateway Stat Arp Table Stats 
- 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 int
- 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
GetGateway Stats Device Gateway Stat Fwupdate 
- has_pcap bool
- hostname str
- hostname reported by the device
- id str
- serial
- 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
- 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 int
- 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
- serial
- route_summary_ Getstats Gateway Stats Device Gateway Stat Route Summary Stats 
- router_name str
- device name if configured
- serial str
- serial
- 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
- serial
- spu2_stats Sequence[GetGateway Stats Device Gateway Stat Spu2Stat] 
- spu_stats Sequence[GetGateway Stats Device Gateway Stat Spu Stat] 
- status str
- uptime float
- version str
- apRedundancy Property Map
- arpTable Property MapStats 
- certExpiry Number
- clusterConfig Property Map
- clusterStat Property Map
- conductorName String
- configStatus String
- cpu2Stat Property Map
- cpuStat Property Map
- createdTime Number
- deviceprofileId String
- dhcpd2Stat Map<Property Map>
- Property key is the network name
- dhcpdStat Map<Property Map>
- Property key is the network name
- extIp String
- IP address
- fwupdate Property Map
- hasPcap Boolean
- hostname String
- hostname reported by the device
- id String
- serial
- if2Stat Map<Property Map>
- Property key is the interface name
- ifStat Map<Property Map>
- Property key is the interface name
- ip String
- IP address
- ip2Stat Property Map
- ipStat Property Map
- isHa Boolean
- lastSeen Number
- last seen timestamp
- mac String
- device mac
- mapId String
- serial
- memory2Stat Property Map
- memory usage stat (for virtual chassis, memory usage of master RE)
- memoryStat Property Map
- memory usage stat (for virtual chassis, memory usage of master RE)
- model String
- device model
- modifiedTime Number
- module2Stats List<Property Map>
- moduleStats List<Property Map>
- name String
- device name if configured
- nodeName String
- orgId String
- serial
- routeSummary Property MapStats 
- routerName String
- device name if configured
- serial String
- serial
- service2Stat Map<Property Map>
- serviceStat Map<Property Map>
- serviceStatus Property Map
- siteId String
- serial
- spu2Stats List<Property Map>
- spuStats List<Property Map>
- status String
- uptime Number
- version String
GetGatewayStatsDeviceGatewayStatApRedundancy       
- Modules
Dictionary<string, Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Ap Redundancy Modules> 
- Property key is the node id
- NumAps int
- NumAps intWith Switch Redundancy 
- Modules
map[string]GetGateway Stats Device Gateway Stat Ap Redundancy Modules 
- Property key is the node id
- NumAps int
- NumAps intWith Switch Redundancy 
- modules
Map<String,GetGateway Stats Device Gateway Stat Ap Redundancy Modules> 
- Property key is the node id
- numAps Integer
- numAps IntegerWith Switch Redundancy 
- modules
{[key: string]: GetGateway Stats Device Gateway Stat Ap Redundancy Modules} 
- Property key is the node id
- numAps number
- numAps numberWith Switch Redundancy 
- modules
Mapping[str, GetGateway 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
- numAps Number
- numAps NumberWith Switch Redundancy 
GetGatewayStatsDeviceGatewayStatApRedundancyModules        
- NumAps int
- NumAps intWith Switch Redundancy 
- NumAps int
- NumAps intWith Switch Redundancy 
- numAps Integer
- numAps IntegerWith Switch Redundancy 
- numAps number
- numAps numberWith Switch Redundancy 
- numAps Number
- numAps NumberWith Switch Redundancy 
GetGatewayStatsDeviceGatewayStatArpTableStats        
- ArpTable intCount 
- MaxEntries intSupported 
- ArpTable intCount 
- MaxEntries intSupported 
- arpTable IntegerCount 
- maxEntries IntegerSupported 
- arpTable numberCount 
- maxEntries numberSupported 
- arpTable NumberCount 
- maxEntries NumberSupported 
GetGatewayStatsDeviceGatewayStatClusterConfig       
- Configuration string
- ControlLink Pulumi.Info Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Cluster Config Control Link Info 
- EthernetConnections List<Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Cluster Config Ethernet Connection> 
- FabricLink Pulumi.Info Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Cluster Config Fabric Link Info 
- LastStatus stringChange Reason 
- Operational string
- PrimaryNode stringHealth 
- RedundancyGroup List<Pulumi.Informations Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Cluster Config Redundancy Group Information> 
- SecondaryNode stringHealth 
- Status string
- Configuration string
- ControlLink GetInfo Gateway Stats Device Gateway Stat Cluster Config Control Link Info 
- EthernetConnections []GetGateway Stats Device Gateway Stat Cluster Config Ethernet Connection 
- FabricLink GetInfo Gateway Stats Device Gateway Stat Cluster Config Fabric Link Info 
- LastStatus stringChange Reason 
- Operational string
- PrimaryNode stringHealth 
- RedundancyGroup []GetInformations Gateway Stats Device Gateway Stat Cluster Config Redundancy Group Information 
- SecondaryNode stringHealth 
- Status string
- configuration String
- controlLink GetInfo Gateway Stats Device Gateway Stat Cluster Config Control Link Info 
- ethernetConnections List<GetGateway Stats Device Gateway Stat Cluster Config Ethernet Connection> 
- fabricLink GetInfo Gateway Stats Device Gateway Stat Cluster Config Fabric Link Info 
- lastStatus StringChange Reason 
- operational String
- primaryNode StringHealth 
- redundancyGroup List<GetInformations Gateway Stats Device Gateway Stat Cluster Config Redundancy Group Information> 
- secondaryNode StringHealth 
- status String
- configuration string
- controlLink GetInfo Gateway Stats Device Gateway Stat Cluster Config Control Link Info 
- ethernetConnections GetGateway Stats Device Gateway Stat Cluster Config Ethernet Connection[] 
- fabricLink GetInfo Gateway Stats Device Gateway Stat Cluster Config Fabric Link Info 
- lastStatus stringChange Reason 
- operational string
- primaryNode stringHealth 
- redundancyGroup GetInformations Gateway Stats Device Gateway Stat Cluster Config Redundancy Group Information[] 
- secondaryNode 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          
- DataPlane stringNotified Status 
- Interfaces List<string>
- InternalStatus string
- State string
- Status string
- DataPlane stringNotified Status 
- Interfaces []string
- InternalStatus string
- State string
- Status string
- dataPlane StringNotified Status 
- interfaces List<String>
- internalStatus String
- state String
- status String
- dataPlane stringNotified Status 
- interfaces string[]
- internalStatus string
- state string
- status string
- data_plane_ strnotified_ status 
- interfaces Sequence[str]
- internal_status str
- state str
- status str
- dataPlane StringNotified Status 
- interfaces List<String>
- internalStatus String
- state String
- status String
GetGatewayStatsDeviceGatewayStatClusterConfigRedundancyGroupInformation          
- Id int
- MonitoringFailure string
- Threshold int
- Id int
- MonitoringFailure string
- Threshold int
- id Integer
- monitoringFailure String
- threshold Integer
- id number
- monitoringFailure string
- threshold number
- id int
- monitoring_failure str
- threshold int
- id Number
- monitoringFailure 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
- LoadAvgs 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 processe
- Idle float64
- Percentage of CPU time that is idle
- Interrupt float64
- Percentage of CPU time being used by interrupts
- LoadAvgs []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 processe
- idle Double
- Percentage of CPU time that is idle
- interrupt Double
- Percentage of CPU time being used by interrupts
- loadAvgs 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 processe
- idle number
- Percentage of CPU time that is idle
- interrupt number
- Percentage of CPU time being used by interrupts
- loadAvgs 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 processe
- 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 processe
- idle Number
- Percentage of CPU time that is idle
- interrupt Number
- Percentage of CPU time being used by interrupts
- loadAvgs 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 processe
GetGatewayStatsDeviceGatewayStatCpuStat       
- Idle double
- Percentage of CPU time that is idle
- Interrupt double
- Percentage of CPU time being used by interrupts
- LoadAvgs 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 processe
- Idle float64
- Percentage of CPU time that is idle
- Interrupt float64
- Percentage of CPU time being used by interrupts
- LoadAvgs []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 processe
- idle Double
- Percentage of CPU time that is idle
- interrupt Double
- Percentage of CPU time being used by interrupts
- loadAvgs 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 processe
- idle number
- Percentage of CPU time that is idle
- interrupt number
- Percentage of CPU time being used by interrupts
- loadAvgs 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 processe
- 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 processe
- idle Number
- Percentage of CPU time that is idle
- interrupt Number
- Percentage of CPU time being used by interrupts
- loadAvgs 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 processe
GetGatewayStatsDeviceGatewayStatDhcpd2Stat      
- num_ips int
- num_leased int
GetGatewayStatsDeviceGatewayStatDhcpdStat       
- num_ips int
- num_leased int
GetGatewayStatsDeviceGatewayStatFwupdate      
- progress int
- status str
- status_id int
- timestamp float
- will_retry bool
GetGatewayStatsDeviceGatewayStatIf2Stat      
- AddressMode string
- Ips List<string>
- NatAddresses List<string>
- NetworkName string
- PortId string
- PortUsage string
- RedundancyState string
- RxBytes int
- RxPkts int
- ServpInfo Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat If2Stat Servp Info 
- TxBytes int
- TxPkts int
- Up bool
- Vlan int
- WanName string
- WanType string
- AddressMode string
- Ips []string
- NatAddresses []string
- NetworkName string
- PortId string
- PortUsage string
- RedundancyState string
- RxBytes int
- RxPkts int
- ServpInfo GetGateway Stats Device Gateway Stat If2Stat Servp Info 
- TxBytes int
- TxPkts int
- Up bool
- Vlan int
- WanName string
- WanType string
- addressMode String
- ips List<String>
- natAddresses List<String>
- networkName String
- portId String
- portUsage String
- redundancyState String
- rxBytes Integer
- rxPkts Integer
- servpInfo GetGateway Stats Device Gateway Stat If2Stat Servp Info 
- txBytes Integer
- txPkts Integer
- up Boolean
- vlan Integer
- wanName String
- wanType String
- addressMode string
- ips string[]
- natAddresses string[]
- networkName string
- portId string
- portUsage string
- redundancyState string
- rxBytes number
- rxPkts number
- servpInfo GetGateway Stats Device Gateway Stat If2Stat Servp Info 
- txBytes number
- txPkts number
- up boolean
- vlan number
- wanName string
- wanType 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
- rx_pkts int
- servp_info GetGateway Stats Device Gateway Stat If2Stat Servp Info 
- tx_bytes int
- tx_pkts int
- up bool
- vlan int
- wan_name str
- wan_type str
- addressMode String
- ips List<String>
- natAddresses List<String>
- networkName String
- portId String
- portUsage String
- redundancyState String
- rxBytes Number
- rxPkts Number
- servpInfo Property Map
- txBytes Number
- txPkts Number
- up Boolean
- vlan Number
- wanName String
- wanType String
GetGatewayStatsDeviceGatewayStatIf2StatServpInfo        
- Asn string
- City string
- CountryCode string
- Latitude double
- Longitude double
- Org string
- RegionCode string
- Asn string
- City string
- CountryCode string
- Latitude float64
- Longitude float64
- Org string
- RegionCode string
- asn String
- city String
- countryCode String
- latitude Double
- longitude Double
- org String
- regionCode String
- asn string
- city string
- countryCode string
- latitude number
- longitude number
- org string
- regionCode string
- asn str
- city str
- country_code str
- latitude float
- longitude float
- org str
- region_code str
- asn String
- city String
- countryCode String
- latitude Number
- longitude Number
- org String
- regionCode String
GetGatewayStatsDeviceGatewayStatIfStat       
- AddressMode string
- Ips List<string>
- NatAddresses List<string>
- NetworkName string
- PortId string
- PortUsage string
- RedundancyState string
- RxBytes int
- RxPkts int
- ServpInfo Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat If Stat Servp Info 
- TxBytes int
- TxPkts int
- Up bool
- Vlan int
- WanName string
- WanType string
- AddressMode string
- Ips []string
- NatAddresses []string
- NetworkName string
- PortId string
- PortUsage string
- RedundancyState string
- RxBytes int
- RxPkts int
- ServpInfo GetGateway Stats Device Gateway Stat If Stat Servp Info 
- TxBytes int
- TxPkts int
- Up bool
- Vlan int
- WanName string
- WanType string
- addressMode String
- ips List<String>
- natAddresses List<String>
- networkName String
- portId String
- portUsage String
- redundancyState String
- rxBytes Integer
- rxPkts Integer
- servpInfo GetGateway Stats Device Gateway Stat If Stat Servp Info 
- txBytes Integer
- txPkts Integer
- up Boolean
- vlan Integer
- wanName String
- wanType String
- addressMode string
- ips string[]
- natAddresses string[]
- networkName string
- portId string
- portUsage string
- redundancyState string
- rxBytes number
- rxPkts number
- servpInfo GetGateway Stats Device Gateway Stat If Stat Servp Info 
- txBytes number
- txPkts number
- up boolean
- vlan number
- wanName string
- wanType 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
- rx_pkts int
- servp_info GetGateway Stats Device Gateway Stat If Stat Servp Info 
- tx_bytes int
- tx_pkts int
- up bool
- vlan int
- wan_name str
- wan_type str
- addressMode String
- ips List<String>
- natAddresses List<String>
- networkName String
- portId String
- portUsage String
- redundancyState String
- rxBytes Number
- rxPkts Number
- servpInfo Property Map
- txBytes Number
- txPkts Number
- up Boolean
- vlan Number
- wanName String
- wanType String
GetGatewayStatsDeviceGatewayStatIfStatServpInfo         
- Asn string
- City string
- CountryCode string
- Latitude double
- Longitude double
- Org string
- RegionCode string
- Asn string
- City string
- CountryCode string
- Latitude float64
- Longitude float64
- Org string
- RegionCode string
- asn String
- city String
- countryCode String
- latitude Double
- longitude Double
- org String
- regionCode String
- asn string
- city string
- countryCode string
- latitude number
- longitude number
- org string
- regionCode string
- asn str
- city str
- country_code str
- latitude float
- longitude float
- org str
- region_code str
- asn String
- city String
- countryCode String
- latitude Number
- longitude Number
- org String
- regionCode String
GetGatewayStatsDeviceGatewayStatIp2Stat      
- DhcpServer string
- Dns List<string>
- DnsSuffixes List<string>
- Gateway string
- Gateway6 string
- Ip string
- Ip6 string
- Ips Dictionary<string, string>
- Netmask string
- Netmask6 string
- DhcpServer string
- Dns []string
- DnsSuffixes []string
- Gateway string
- Gateway6 string
- Ip string
- Ip6 string
- Ips map[string]string
- Netmask string
- Netmask6 string
- dhcpServer String
- dns List<String>
- dnsSuffixes List<String>
- gateway String
- gateway6 String
- ip String
- ip6 String
- ips Map<String,String>
- netmask String
- netmask6 String
- dhcpServer string
- dns string[]
- dnsSuffixes string[]
- gateway string
- gateway6 string
- ip string
- ip6 string
- ips {[key: string]: string}
- netmask string
- netmask6 string
- dhcp_server str
- dns Sequence[str]
- dns_suffixes Sequence[str]
- gateway str
- gateway6 str
- ip str
- ip6 str
- ips Mapping[str, str]
- netmask str
- netmask6 str
- dhcpServer String
- dns List<String>
- dnsSuffixes List<String>
- gateway String
- gateway6 String
- ip String
- ip6 String
- ips Map<String>
- netmask String
- netmask6 String
GetGatewayStatsDeviceGatewayStatIpStat       
- DhcpServer string
- Dns List<string>
- DnsSuffixes List<string>
- Gateway string
- Gateway6 string
- Ip string
- Ip6 string
- Ips Dictionary<string, string>
- Netmask string
- Netmask6 string
- DhcpServer string
- Dns []string
- DnsSuffixes []string
- Gateway string
- Gateway6 string
- Ip string
- Ip6 string
- Ips map[string]string
- Netmask string
- Netmask6 string
- dhcpServer String
- dns List<String>
- dnsSuffixes List<String>
- gateway String
- gateway6 String
- ip String
- ip6 String
- ips Map<String,String>
- netmask String
- netmask6 String
- dhcpServer string
- dns string[]
- dnsSuffixes string[]
- gateway string
- gateway6 string
- ip string
- ip6 string
- ips {[key: string]: string}
- netmask string
- netmask6 string
- dhcp_server str
- dns Sequence[str]
- dns_suffixes Sequence[str]
- gateway str
- gateway6 str
- ip str
- ip6 str
- ips Mapping[str, str]
- netmask str
- netmask6 str
- dhcpServer String
- dns List<String>
- dnsSuffixes List<String>
- gateway String
- gateway6 String
- ip String
- ip6 String
- ips Map<String>
- netmask String
- netmask6 String
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      
- BackupVersion string
- BiosVersion string
- CpldVersion string
- Errors
List<Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Module2Stat Error> 
- used to report all error states the device node is running into.
An error should always have typeandsincefields, and could have some other fields specific to that type.
- Fans
List<Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Module2Stat Fan> 
- FpgaVersion string
- LastSeen double
- Model string
- OpticsCpld stringVersion 
- PendingVersion string
- Pics
List<Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Module2Stat Pic> 
- Poe
Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Module2Stat Poe 
- PoeVersion string
- PowerCpld stringVersion 
- Psuses
List<Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Module2Stat Psus> 
- ReFpga stringVersion 
- RecoveryVersion string
- Serial string
- Status string
- Temperatures
List<Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Module2Stat Temperature> 
- TmcFpga stringVersion 
- UbootVersion string
- Uptime int
- VcLinks List<Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Module2Stat Vc Link> 
- VcMode string
- VcRole string
- master / backup / linecard
- VcState string
- Version string
- BackupVersion string
- BiosVersion string
- CpldVersion string
- Errors
[]GetGateway Stats Device Gateway Stat Module2Stat Error 
- used to report all error states the device node is running into.
An error should always have typeandsincefields, and could have some other fields specific to that type.
- Fans
[]GetGateway Stats Device Gateway Stat Module2Stat Fan 
- FpgaVersion string
- LastSeen float64
- Model string
- OpticsCpld stringVersion 
- PendingVersion string
- Pics
[]GetGateway Stats Device Gateway Stat Module2Stat Pic 
- Poe
GetGateway Stats Device Gateway Stat Module2Stat Poe 
- PoeVersion string
- PowerCpld stringVersion 
- Psuses
[]GetGateway Stats Device Gateway Stat Module2Stat Psus 
- ReFpga stringVersion 
- RecoveryVersion string
- Serial string
- Status string
- Temperatures
[]GetGateway Stats Device Gateway Stat Module2Stat Temperature 
- TmcFpga stringVersion 
- UbootVersion string
- Uptime int
- VcLinks []GetGateway Stats Device Gateway Stat Module2Stat Vc Link 
- VcMode string
- VcRole string
- master / backup / linecard
- VcState string
- Version string
- backupVersion String
- biosVersion String
- cpldVersion String
- errors
List<GetGateway Stats Device Gateway Stat Module2Stat Error> 
- used to report all error states the device node is running into.
An error should always have typeandsincefields, and could have some other fields specific to that type.
- fans
List<GetGateway Stats Device Gateway Stat Module2Stat Fan> 
- fpgaVersion String
- lastSeen Double
- model String
- opticsCpld StringVersion 
- pendingVersion String
- pics
List<GetGateway Stats Device Gateway Stat Module2Stat Pic> 
- poe
GetGateway Stats Device Gateway Stat Module2Stat Poe 
- poeVersion String
- powerCpld StringVersion 
- psuses
List<GetGateway Stats Device Gateway Stat Module2Stat Psus> 
- reFpga StringVersion 
- recoveryVersion String
- serial String
- status String
- temperatures
List<GetGateway Stats Device Gateway Stat Module2Stat Temperature> 
- tmcFpga StringVersion 
- ubootVersion String
- uptime Integer
- vcLinks List<GetGateway Stats Device Gateway Stat Module2Stat Vc Link> 
- vcMode String
- vcRole String
- master / backup / linecard
- vcState String
- version String
- backupVersion string
- biosVersion string
- cpldVersion string
- errors
GetGateway Stats Device Gateway Stat Module2Stat Error[] 
- used to report all error states the device node is running into.
An error should always have typeandsincefields, and could have some other fields specific to that type.
- fans
GetGateway Stats Device Gateway Stat Module2Stat Fan[] 
- fpgaVersion string
- lastSeen number
- model string
- opticsCpld stringVersion 
- pendingVersion string
- pics
GetGateway Stats Device Gateway Stat Module2Stat Pic[] 
- poe
GetGateway Stats Device Gateway Stat Module2Stat Poe 
- poeVersion string
- powerCpld stringVersion 
- psuses
GetGateway Stats Device Gateway Stat Module2Stat Psus[] 
- reFpga stringVersion 
- recoveryVersion string
- serial string
- status string
- temperatures
GetGateway Stats Device Gateway Stat Module2Stat Temperature[] 
- tmcFpga stringVersion 
- ubootVersion string
- uptime number
- vcLinks GetGateway Stats Device Gateway Stat Module2Stat Vc Link[] 
- vcMode string
- vcRole string
- master / backup / linecard
- vcState string
- version string
- backup_version str
- bios_version str
- cpld_version str
- errors
Sequence[GetGateway Stats Device Gateway Stat Module2Stat Error] 
- used to report all error states the device node is running into.
An error should always have typeandsincefields, and could have some other fields specific to that type.
- fans
Sequence[GetGateway Stats Device Gateway Stat Module2Stat Fan] 
- fpga_version str
- last_seen float
- model str
- optics_cpld_ strversion 
- pending_version str
- pics
Sequence[GetGateway Stats Device Gateway Stat Module2Stat Pic] 
- poe
GetGateway Stats Device Gateway Stat Module2Stat Poe 
- poe_version str
- power_cpld_ strversion 
- psuses
Sequence[GetGateway Stats Device Gateway Stat Module2Stat Psus] 
- re_fpga_ strversion 
- recovery_version str
- serial str
- status str
- temperatures
Sequence[GetGateway 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
- master / backup / linecard
- vc_state str
- version str
- backupVersion String
- biosVersion String
- cpldVersion String
- errors List<Property Map>
- used to report all error states the device node is running into.
An error should always have typeandsincefields, and could have some other fields specific to that type.
- fans List<Property Map>
- fpgaVersion String
- lastSeen Number
- model String
- opticsCpld StringVersion 
- pendingVersion String
- pics List<Property Map>
- poe Property Map
- poeVersion String
- powerCpld StringVersion 
- psuses List<Property Map>
- reFpga StringVersion 
- recoveryVersion String
- serial String
- status String
- temperatures List<Property Map>
- tmcFpga StringVersion 
- ubootVersion String
- uptime Number
- vcLinks List<Property Map>
- vcMode String
- vcRole String
- master / backup / linecard
- vcState String
- version String
GetGatewayStatsDeviceGatewayStatModule2StatError       
- Feature string
- MinimumVersion string
- Reason string
- Since int
- Type string
- Feature string
- MinimumVersion string
- Reason string
- Since int
- Type string
- feature String
- minimumVersion String
- reason String
- since Integer
- type String
- feature string
- minimumVersion string
- reason string
- since number
- type string
- feature str
- minimum_version str
- reason str
- since int
- type str
- feature String
- minimumVersion String
- reason String
- since Number
- type String
GetGatewayStatsDeviceGatewayStatModule2StatFan       
GetGatewayStatsDeviceGatewayStatModule2StatPic       
- index Number
- modelNumber String
- portGroups List<Property Map>
GetGatewayStatsDeviceGatewayStatModule2StatPicPortGroup         
GetGatewayStatsDeviceGatewayStatModule2StatPoe       
- max_power float
- power_draw float
GetGatewayStatsDeviceGatewayStatModule2StatPsus       
GetGatewayStatsDeviceGatewayStatModule2StatTemperature       
GetGatewayStatsDeviceGatewayStatModule2StatVcLink        
- NeighborModule intIdx 
- NeighborPort stringId 
- PortId string
- NeighborModule intIdx 
- NeighborPort stringId 
- PortId string
- neighborModule IntegerIdx 
- neighborPort StringId 
- portId String
- neighborModule numberIdx 
- neighborPort stringId 
- portId string
- neighbor_module_ intidx 
- neighbor_port_ strid 
- port_id str
- neighborModule NumberIdx 
- neighborPort StringId 
- portId String
GetGatewayStatsDeviceGatewayStatModuleStat       
- BackupVersion string
- BiosVersion string
- CpldVersion string
- Errors
List<Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Module Stat Error> 
- used to report all error states the device node is running into.
An error should always have typeandsincefields, and could have some other fields specific to that type.
- Fans
List<Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Module Stat Fan> 
- FpgaVersion string
- LastSeen double
- Model string
- OpticsCpld stringVersion 
- PendingVersion string
- Pics
List<Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Module Stat Pic> 
- Poe
Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Module Stat Poe 
- PoeVersion string
- PowerCpld stringVersion 
- Psuses
List<Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Module Stat Psus> 
- ReFpga stringVersion 
- RecoveryVersion string
- Serial string
- Status string
- Temperatures
List<Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Module Stat Temperature> 
- TmcFpga stringVersion 
- UbootVersion string
- Uptime int
- VcLinks List<Pulumi.Juniper Mist. Device. Inputs. Get Gateway Stats Device Gateway Stat Module Stat Vc Link> 
- VcMode string
- VcRole string
- master / backup / linecard
- VcState string
- Version string
- BackupVersion string
- BiosVersion string
- CpldVersion string
- Errors
[]GetGateway Stats Device Gateway Stat Module Stat Error 
- used to report all error states the device node is running into.
An error should always have typeandsincefields, and could have some other fields specific to that type.
- Fans
[]GetGateway Stats Device Gateway Stat Module Stat Fan 
- FpgaVersion string
- LastSeen float64
- Model string
- OpticsCpld stringVersion 
- PendingVersion string
- Pics
[]GetGateway Stats Device Gateway Stat Module Stat Pic 
- Poe
GetGateway Stats Device Gateway Stat Module Stat Poe 
- PoeVersion string
- PowerCpld stringVersion 
- Psuses
[]GetGateway Stats Device Gateway Stat Module Stat Psus 
- ReFpga stringVersion 
- RecoveryVersion string
- Serial string
- Status string
- Temperatures
[]GetGateway Stats Device Gateway Stat Module Stat Temperature 
- TmcFpga stringVersion 
- UbootVersion string
- Uptime int
- VcLinks []GetGateway Stats Device Gateway Stat Module Stat Vc Link 
- VcMode string
- VcRole string
- master / backup / linecard
- VcState string
- Version string
- backupVersion String
- biosVersion String
- cpldVersion String
- errors
List<GetGateway Stats Device Gateway Stat Module Stat Error> 
- used to report all error states the device node is running into.
An error should always have typeandsincefields, and could have some other fields specific to that type.
- fans
List<GetGateway Stats Device Gateway Stat Module Stat Fan> 
- fpgaVersion String
- lastSeen Double
- model String
- opticsCpld StringVersion 
- pendingVersion String
- pics
List<GetGateway Stats Device Gateway Stat Module Stat Pic> 
- poe
GetGateway Stats Device Gateway Stat Module Stat Poe 
- poeVersion String
- powerCpld StringVersion 
- psuses
List<GetGateway Stats Device Gateway Stat Module Stat Psus> 
- reFpga StringVersion 
- recoveryVersion String
- serial String
- status String
- temperatures
List<GetGateway Stats Device Gateway Stat Module Stat Temperature> 
- tmcFpga StringVersion 
- ubootVersion String
- uptime Integer
- vcLinks List<GetGateway Stats Device Gateway Stat Module Stat Vc Link> 
- vcMode String
- vcRole String
- master / backup / linecard
- vcState String
- version String
- backupVersion string
- biosVersion string
- cpldVersion string
- errors
GetGateway Stats Device Gateway Stat Module Stat Error[] 
- used to report all error states the device node is running into.
An error should always have typeandsincefields, and could have some other fields specific to that type.
- fans
GetGateway Stats Device Gateway Stat Module Stat Fan[] 
- fpgaVersion string
- lastSeen number
- model string
- opticsCpld stringVersion 
- pendingVersion string
- pics
GetGateway Stats Device Gateway Stat Module Stat Pic[] 
- poe
GetGateway Stats Device Gateway Stat Module Stat Poe 
- poeVersion string
- powerCpld stringVersion 
- psuses
GetGateway Stats Device Gateway Stat Module Stat Psus[] 
- reFpga stringVersion 
- recoveryVersion string
- serial string
- status string
- temperatures
GetGateway Stats Device Gateway Stat Module Stat Temperature[] 
- tmcFpga stringVersion 
- ubootVersion string
- uptime number
- vcLinks GetGateway Stats Device Gateway Stat Module Stat Vc Link[] 
- vcMode string
- vcRole string
- master / backup / linecard
- vcState string
- version string
- backup_version str
- bios_version str
- cpld_version str
- errors
Sequence[GetGateway Stats Device Gateway Stat Module Stat Error] 
- used to report all error states the device node is running into.
An error should always have typeandsincefields, and could have some other fields specific to that type.
- fans
Sequence[GetGateway Stats Device Gateway Stat Module Stat Fan] 
- fpga_version str
- last_seen float
- model str
- optics_cpld_ strversion 
- pending_version str
- pics
Sequence[GetGateway Stats Device Gateway Stat Module Stat Pic] 
- poe
GetGateway Stats Device Gateway Stat Module Stat Poe 
- poe_version str
- power_cpld_ strversion 
- psuses
Sequence[GetGateway Stats Device Gateway Stat Module Stat Psus] 
- re_fpga_ strversion 
- recovery_version str
- serial str
- status str
- temperatures
Sequence[GetGateway 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
- master / backup / linecard
- vc_state str
- version str
- backupVersion String
- biosVersion String
- cpldVersion String
- errors List<Property Map>
- used to report all error states the device node is running into.
An error should always have typeandsincefields, and could have some other fields specific to that type.
- fans List<Property Map>
- fpgaVersion String
- lastSeen Number
- model String
- opticsCpld StringVersion 
- pendingVersion String
- pics List<Property Map>
- poe Property Map
- poeVersion String
- powerCpld StringVersion 
- psuses List<Property Map>
- reFpga StringVersion 
- recoveryVersion String
- serial String
- status String
- temperatures List<Property Map>
- tmcFpga StringVersion 
- ubootVersion String
- uptime Number
- vcLinks List<Property Map>
- vcMode String
- vcRole String
- master / backup / linecard
- vcState String
- version String
GetGatewayStatsDeviceGatewayStatModuleStatError        
- Feature string
- MinimumVersion string
- Reason string
- Since int
- Type string
- Feature string
- MinimumVersion string
- Reason string
- Since int
- Type string
- feature String
- minimumVersion String
- reason String
- since Integer
- type String
- feature string
- minimumVersion string
- reason string
- since number
- type string
- feature str
- minimum_version str
- reason str
- since int
- type str
- feature String
- minimumVersion String
- reason String
- since Number
- type String
GetGatewayStatsDeviceGatewayStatModuleStatFan        
GetGatewayStatsDeviceGatewayStatModuleStatPic        
- index Number
- modelNumber String
- portGroups List<Property Map>
GetGatewayStatsDeviceGatewayStatModuleStatPicPortGroup          
GetGatewayStatsDeviceGatewayStatModuleStatPoe        
- max_power float
- power_draw float
GetGatewayStatsDeviceGatewayStatModuleStatPsus        
GetGatewayStatsDeviceGatewayStatModuleStatTemperature        
GetGatewayStatsDeviceGatewayStatModuleStatVcLink         
- NeighborModule intIdx 
- NeighborPort stringId 
- PortId string
- NeighborModule intIdx 
- NeighborPort stringId 
- PortId string
- neighborModule IntegerIdx 
- neighborPort StringId 
- portId String
- neighborModule numberIdx 
- neighborPort stringId 
- portId string
- neighbor_module_ intidx 
- neighbor_port_ strid 
- port_id str
- neighborModule NumberIdx 
- neighborPort StringId 
- portId String
GetGatewayStatsDeviceGatewayStatRouteSummaryStats        
- FibRoutes int
- MaxUnicast intRoutes Supported 
- RibRoutes int
- TotalRoutes int
- FibRoutes int
- MaxUnicast intRoutes Supported 
- RibRoutes int
- TotalRoutes int
- fibRoutes Integer
- maxUnicast IntegerRoutes Supported 
- ribRoutes Integer
- totalRoutes Integer
- fibRoutes number
- maxUnicast numberRoutes Supported 
- ribRoutes number
- totalRoutes number
- fib_routes int
- max_unicast_ introutes_ supported 
- rib_routes int
- total_routes int
- fibRoutes Number
- maxUnicast NumberRoutes Supported 
- ribRoutes Number
- totalRoutes Number
GetGatewayStatsDeviceGatewayStatService2Stat      
- AshVersion string
- CiaVersion string
- EmberVersion string
- IpsecClient stringVersion 
- MistAgent stringVersion 
- PackageVersion string
- TestingTools stringVersion 
- WheeljackVersion string
- AshVersion string
- CiaVersion string
- EmberVersion string
- IpsecClient stringVersion 
- MistAgent stringVersion 
- PackageVersion string
- TestingTools stringVersion 
- WheeljackVersion string
- ashVersion String
- ciaVersion String
- emberVersion String
- ipsecClient StringVersion 
- mistAgent StringVersion 
- packageVersion String
- testingTools StringVersion 
- wheeljackVersion String
- ashVersion string
- ciaVersion string
- emberVersion string
- ipsecClient stringVersion 
- mistAgent stringVersion 
- packageVersion string
- testingTools stringVersion 
- wheeljackVersion 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
- ashVersion String
- ciaVersion String
- emberVersion String
- ipsecClient StringVersion 
- mistAgent StringVersion 
- packageVersion String
- testingTools StringVersion 
- wheeljackVersion String
GetGatewayStatsDeviceGatewayStatServiceStat       
- AshVersion string
- CiaVersion string
- EmberVersion string
- IpsecClient stringVersion 
- MistAgent stringVersion 
- PackageVersion string
- TestingTools stringVersion 
- WheeljackVersion string
- AshVersion string
- CiaVersion string
- EmberVersion string
- IpsecClient stringVersion 
- MistAgent stringVersion 
- PackageVersion string
- TestingTools stringVersion 
- WheeljackVersion string
- ashVersion String
- ciaVersion String
- emberVersion String
- ipsecClient StringVersion 
- mistAgent StringVersion 
- packageVersion String
- testingTools StringVersion 
- wheeljackVersion String
- ashVersion string
- ciaVersion string
- emberVersion string
- ipsecClient stringVersion 
- mistAgent stringVersion 
- packageVersion string
- testingTools stringVersion 
- wheeljackVersion 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
- ashVersion String
- ciaVersion String
- emberVersion String
- ipsecClient StringVersion 
- mistAgent StringVersion 
- packageVersion String
- testingTools StringVersion 
- wheeljackVersion String
GetGatewayStatsDeviceGatewayStatServiceStatus       
- AppidInstall stringResult 
- AppidInstall stringTimestamp 
- AppidStatus string
- AppidVersion int
- EwfStatus string
- IdpInstall stringResult 
- IdpInstall stringTimestamp 
- IdpPolicy string
- IdpStatus string
- IdpUpdate stringTimestamp 
- AppidInstall stringResult 
- AppidInstall stringTimestamp 
- AppidStatus string
- AppidVersion int
- EwfStatus string
- IdpInstall stringResult 
- IdpInstall stringTimestamp 
- IdpPolicy string
- IdpStatus string
- IdpUpdate stringTimestamp 
- appidInstall StringResult 
- appidInstall StringTimestamp 
- appidStatus String
- appidVersion Integer
- ewfStatus String
- idpInstall StringResult 
- idpInstall StringTimestamp 
- idpPolicy String
- idpStatus String
- idpUpdate StringTimestamp 
- appidInstall stringResult 
- appidInstall stringTimestamp 
- appidStatus string
- appidVersion number
- ewfStatus string
- idpInstall stringResult 
- idpInstall stringTimestamp 
- idpPolicy string
- idpStatus string
- idpUpdate 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 
- appidInstall StringResult 
- appidInstall StringTimestamp 
- appidStatus String
- appidVersion Number
- ewfStatus String
- idpInstall StringResult 
- idpInstall StringTimestamp 
- idpPolicy String
- idpStatus String
- idpUpdate StringTimestamp 
GetGatewayStatsDeviceGatewayStatSpu2Stat      
- SpuCpu int
- SpuCurrent intSession 
- SpuMax intSession 
- SpuMemory int
- SpuPending intSession 
- SpuValid intSession 
- SpuCpu int
- SpuCurrent intSession 
- SpuMax intSession 
- SpuMemory int
- SpuPending intSession 
- SpuValid intSession 
- spuCpu Integer
- spuCurrent IntegerSession 
- spuMax IntegerSession 
- spuMemory Integer
- spuPending IntegerSession 
- spuValid IntegerSession 
- spuCpu number
- spuCurrent numberSession 
- spuMax numberSession 
- spuMemory number
- spuPending numberSession 
- spuValid numberSession 
- spu_cpu int
- spu_current_ intsession 
- spu_max_ intsession 
- spu_memory int
- spu_pending_ intsession 
- spu_valid_ intsession 
- spuCpu Number
- spuCurrent NumberSession 
- spuMax NumberSession 
- spuMemory Number
- spuPending NumberSession 
- spuValid NumberSession 
GetGatewayStatsDeviceGatewayStatSpuStat       
- SpuCpu int
- SpuCurrent intSession 
- SpuMax intSession 
- SpuMemory int
- SpuPending intSession 
- SpuValid intSession 
- SpuCpu int
- SpuCurrent intSession 
- SpuMax intSession 
- SpuMemory int
- SpuPending intSession 
- SpuValid intSession 
- spuCpu Integer
- spuCurrent IntegerSession 
- spuMax IntegerSession 
- spuMemory Integer
- spuPending IntegerSession 
- spuValid IntegerSession 
- spuCpu number
- spuCurrent numberSession 
- spuMax numberSession 
- spuMemory number
- spuPending numberSession 
- spuValid numberSession 
- spu_cpu int
- spu_current_ intsession 
- spu_max_ intsession 
- spu_memory int
- spu_pending_ intsession 
- spu_valid_ intsession 
- spuCpu Number
- spuCurrent NumberSession 
- spuMax NumberSession 
- spuMemory Number
- spuPending NumberSession 
- spuValid NumberSession 
Package Details
- Repository
- junipermist pulumi/pulumi-junipermist
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the mistTerraform Provider.
