1. Packages
  2. Cisco Meraki Provider
  3. API Docs
  4. devices
  5. getWirelessLatencyStats
Cisco Meraki v0.4.1 published on Saturday, Mar 15, 2025 by Pulumi

meraki.devices.getWirelessLatencyStats

Explore with Pulumi AI

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as meraki from "@pulumi/meraki";

const example = meraki.devices.getWirelessLatencyStats({
    apTag: "string",
    band: "string",
    fields: "string",
    serial: "string",
    ssid: 1,
    t0: "string",
    t1: "string",
    timespan: 1,
    vlan: 1,
});
export const merakiDevicesWirelessLatencyStatsExample = example.then(example => example.item);
Copy
import pulumi
import pulumi_meraki as meraki

example = meraki.devices.get_wireless_latency_stats(ap_tag="string",
    band="string",
    fields="string",
    serial="string",
    ssid=1,
    t0="string",
    t1="string",
    timespan=1,
    vlan=1)
pulumi.export("merakiDevicesWirelessLatencyStatsExample", example.item)
Copy
package main

import (
	"github.com/pulumi/pulumi-meraki/sdk/go/meraki/devices"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := devices.GetWirelessLatencyStats(ctx, &devices.GetWirelessLatencyStatsArgs{
			ApTag:    pulumi.StringRef("string"),
			Band:     pulumi.StringRef("string"),
			Fields:   pulumi.StringRef("string"),
			Serial:   "string",
			Ssid:     pulumi.IntRef(1),
			T0:       pulumi.StringRef("string"),
			T1:       pulumi.StringRef("string"),
			Timespan: pulumi.Float64Ref(1),
			Vlan:     pulumi.IntRef(1),
		}, nil)
		if err != nil {
			return err
		}
		ctx.Export("merakiDevicesWirelessLatencyStatsExample", example.Item)
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Meraki = Pulumi.Meraki;

return await Deployment.RunAsync(() => 
{
    var example = Meraki.Devices.GetWirelessLatencyStats.Invoke(new()
    {
        ApTag = "string",
        Band = "string",
        Fields = "string",
        Serial = "string",
        Ssid = 1,
        T0 = "string",
        T1 = "string",
        Timespan = 1,
        Vlan = 1,
    });

    return new Dictionary<string, object?>
    {
        ["merakiDevicesWirelessLatencyStatsExample"] = example.Apply(getWirelessLatencyStatsResult => getWirelessLatencyStatsResult.Item),
    };
});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.meraki.devices.DevicesFunctions;
import com.pulumi.meraki.devices.inputs.GetWirelessLatencyStatsArgs;
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 example = DevicesFunctions.getWirelessLatencyStats(GetWirelessLatencyStatsArgs.builder()
            .apTag("string")
            .band("string")
            .fields("string")
            .serial("string")
            .ssid(1)
            .t0("string")
            .t1("string")
            .timespan(1)
            .vlan(1)
            .build());

        ctx.export("merakiDevicesWirelessLatencyStatsExample", example.applyValue(getWirelessLatencyStatsResult -> getWirelessLatencyStatsResult.item()));
    }
}
Copy
variables:
  example:
    fn::invoke:
      function: meraki:devices:getWirelessLatencyStats
      arguments:
        apTag: string
        band: string
        fields: string
        serial: string
        ssid: 1
        t0: string
        t1: string
        timespan: 1
        vlan: 1
outputs:
  merakiDevicesWirelessLatencyStatsExample: ${example.item}
Copy

Using getWirelessLatencyStats

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 getWirelessLatencyStats(args: GetWirelessLatencyStatsArgs, opts?: InvokeOptions): Promise<GetWirelessLatencyStatsResult>
function getWirelessLatencyStatsOutput(args: GetWirelessLatencyStatsOutputArgs, opts?: InvokeOptions): Output<GetWirelessLatencyStatsResult>
Copy
def get_wireless_latency_stats(ap_tag: Optional[str] = None,
                               band: Optional[str] = None,
                               fields: Optional[str] = None,
                               serial: Optional[str] = None,
                               ssid: Optional[int] = None,
                               t0: Optional[str] = None,
                               t1: Optional[str] = None,
                               timespan: Optional[float] = None,
                               vlan: Optional[int] = None,
                               opts: Optional[InvokeOptions] = None) -> GetWirelessLatencyStatsResult
def get_wireless_latency_stats_output(ap_tag: Optional[pulumi.Input[str]] = None,
                               band: Optional[pulumi.Input[str]] = None,
                               fields: Optional[pulumi.Input[str]] = None,
                               serial: Optional[pulumi.Input[str]] = None,
                               ssid: Optional[pulumi.Input[int]] = None,
                               t0: Optional[pulumi.Input[str]] = None,
                               t1: Optional[pulumi.Input[str]] = None,
                               timespan: Optional[pulumi.Input[float]] = None,
                               vlan: Optional[pulumi.Input[int]] = None,
                               opts: Optional[InvokeOptions] = None) -> Output[GetWirelessLatencyStatsResult]
Copy
func GetWirelessLatencyStats(ctx *Context, args *GetWirelessLatencyStatsArgs, opts ...InvokeOption) (*GetWirelessLatencyStatsResult, error)
func GetWirelessLatencyStatsOutput(ctx *Context, args *GetWirelessLatencyStatsOutputArgs, opts ...InvokeOption) GetWirelessLatencyStatsResultOutput
Copy

> Note: This function is named GetWirelessLatencyStats in the Go SDK.

public static class GetWirelessLatencyStats 
{
    public static Task<GetWirelessLatencyStatsResult> InvokeAsync(GetWirelessLatencyStatsArgs args, InvokeOptions? opts = null)
    public static Output<GetWirelessLatencyStatsResult> Invoke(GetWirelessLatencyStatsInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetWirelessLatencyStatsResult> getWirelessLatencyStats(GetWirelessLatencyStatsArgs args, InvokeOptions options)
public static Output<GetWirelessLatencyStatsResult> getWirelessLatencyStats(GetWirelessLatencyStatsArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: meraki:devices/getWirelessLatencyStats:getWirelessLatencyStats
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

Serial This property is required. string
serial path parameter.
ApTag string
apTag query parameter. Filter results by AP Tag
Band string
band query parameter. Filter results by band (either '2.4', '5' or '6'). Note that data prior to February 2020 will not have band information.
Fields string
fields query parameter. Partial selection: If present, this call will return only the selected fields of ["rawDistribution", "avg"]. All fields will be returned by default. Selected fields must be entered as a comma separated string.
Ssid int
ssid query parameter. Filter results by SSID
T0 string
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 180 days from today.
T1 string
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 7 days after t0.
Timespan double
timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 7 days.
Vlan int
vlan query parameter. Filter results by VLAN
Serial This property is required. string
serial path parameter.
ApTag string
apTag query parameter. Filter results by AP Tag
Band string
band query parameter. Filter results by band (either '2.4', '5' or '6'). Note that data prior to February 2020 will not have band information.
Fields string
fields query parameter. Partial selection: If present, this call will return only the selected fields of ["rawDistribution", "avg"]. All fields will be returned by default. Selected fields must be entered as a comma separated string.
Ssid int
ssid query parameter. Filter results by SSID
T0 string
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 180 days from today.
T1 string
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 7 days after t0.
Timespan float64
timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 7 days.
Vlan int
vlan query parameter. Filter results by VLAN
serial This property is required. String
serial path parameter.
apTag String
apTag query parameter. Filter results by AP Tag
band String
band query parameter. Filter results by band (either '2.4', '5' or '6'). Note that data prior to February 2020 will not have band information.
fields String
fields query parameter. Partial selection: If present, this call will return only the selected fields of ["rawDistribution", "avg"]. All fields will be returned by default. Selected fields must be entered as a comma separated string.
ssid Integer
ssid query parameter. Filter results by SSID
t0 String
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 180 days from today.
t1 String
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 7 days after t0.
timespan Double
timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 7 days.
vlan Integer
vlan query parameter. Filter results by VLAN
serial This property is required. string
serial path parameter.
apTag string
apTag query parameter. Filter results by AP Tag
band string
band query parameter. Filter results by band (either '2.4', '5' or '6'). Note that data prior to February 2020 will not have band information.
fields string
fields query parameter. Partial selection: If present, this call will return only the selected fields of ["rawDistribution", "avg"]. All fields will be returned by default. Selected fields must be entered as a comma separated string.
ssid number
ssid query parameter. Filter results by SSID
t0 string
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 180 days from today.
t1 string
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 7 days after t0.
timespan number
timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 7 days.
vlan number
vlan query parameter. Filter results by VLAN
serial This property is required. str
serial path parameter.
ap_tag str
apTag query parameter. Filter results by AP Tag
band str
band query parameter. Filter results by band (either '2.4', '5' or '6'). Note that data prior to February 2020 will not have band information.
fields str
fields query parameter. Partial selection: If present, this call will return only the selected fields of ["rawDistribution", "avg"]. All fields will be returned by default. Selected fields must be entered as a comma separated string.
ssid int
ssid query parameter. Filter results by SSID
t0 str
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 180 days from today.
t1 str
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 7 days after t0.
timespan float
timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 7 days.
vlan int
vlan query parameter. Filter results by VLAN
serial This property is required. String
serial path parameter.
apTag String
apTag query parameter. Filter results by AP Tag
band String
band query parameter. Filter results by band (either '2.4', '5' or '6'). Note that data prior to February 2020 will not have band information.
fields String
fields query parameter. Partial selection: If present, this call will return only the selected fields of ["rawDistribution", "avg"]. All fields will be returned by default. Selected fields must be entered as a comma separated string.
ssid Number
ssid query parameter. Filter results by SSID
t0 String
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 180 days from today.
t1 String
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 7 days after t0.
timespan Number
timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 7 days.
vlan Number
vlan query parameter. Filter results by VLAN

getWirelessLatencyStats Result

The following output properties are available:

Id string
The provider-assigned unique ID for this managed resource.
Item GetWirelessLatencyStatsItem
Serial string
serial path parameter.
ApTag string
apTag query parameter. Filter results by AP Tag
Band string
band query parameter. Filter results by band (either '2.4', '5' or '6'). Note that data prior to February 2020 will not have band information.
Fields string
fields query parameter. Partial selection: If present, this call will return only the selected fields of ["rawDistribution", "avg"]. All fields will be returned by default. Selected fields must be entered as a comma separated string.
Ssid int
ssid query parameter. Filter results by SSID
T0 string
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 180 days from today.
T1 string
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 7 days after t0.
Timespan double
timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 7 days.
Vlan int
vlan query parameter. Filter results by VLAN
Id string
The provider-assigned unique ID for this managed resource.
Item GetWirelessLatencyStatsItem
Serial string
serial path parameter.
ApTag string
apTag query parameter. Filter results by AP Tag
Band string
band query parameter. Filter results by band (either '2.4', '5' or '6'). Note that data prior to February 2020 will not have band information.
Fields string
fields query parameter. Partial selection: If present, this call will return only the selected fields of ["rawDistribution", "avg"]. All fields will be returned by default. Selected fields must be entered as a comma separated string.
Ssid int
ssid query parameter. Filter results by SSID
T0 string
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 180 days from today.
T1 string
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 7 days after t0.
Timespan float64
timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 7 days.
Vlan int
vlan query parameter. Filter results by VLAN
id String
The provider-assigned unique ID for this managed resource.
item GetWirelessLatencyStatsItem
serial String
serial path parameter.
apTag String
apTag query parameter. Filter results by AP Tag
band String
band query parameter. Filter results by band (either '2.4', '5' or '6'). Note that data prior to February 2020 will not have band information.
fields String
fields query parameter. Partial selection: If present, this call will return only the selected fields of ["rawDistribution", "avg"]. All fields will be returned by default. Selected fields must be entered as a comma separated string.
ssid Integer
ssid query parameter. Filter results by SSID
t0 String
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 180 days from today.
t1 String
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 7 days after t0.
timespan Double
timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 7 days.
vlan Integer
vlan query parameter. Filter results by VLAN
id string
The provider-assigned unique ID for this managed resource.
item GetWirelessLatencyStatsItem
serial string
serial path parameter.
apTag string
apTag query parameter. Filter results by AP Tag
band string
band query parameter. Filter results by band (either '2.4', '5' or '6'). Note that data prior to February 2020 will not have band information.
fields string
fields query parameter. Partial selection: If present, this call will return only the selected fields of ["rawDistribution", "avg"]. All fields will be returned by default. Selected fields must be entered as a comma separated string.
ssid number
ssid query parameter. Filter results by SSID
t0 string
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 180 days from today.
t1 string
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 7 days after t0.
timespan number
timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 7 days.
vlan number
vlan query parameter. Filter results by VLAN
id str
The provider-assigned unique ID for this managed resource.
item GetWirelessLatencyStatsItem
serial str
serial path parameter.
ap_tag str
apTag query parameter. Filter results by AP Tag
band str
band query parameter. Filter results by band (either '2.4', '5' or '6'). Note that data prior to February 2020 will not have band information.
fields str
fields query parameter. Partial selection: If present, this call will return only the selected fields of ["rawDistribution", "avg"]. All fields will be returned by default. Selected fields must be entered as a comma separated string.
ssid int
ssid query parameter. Filter results by SSID
t0 str
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 180 days from today.
t1 str
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 7 days after t0.
timespan float
timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 7 days.
vlan int
vlan query parameter. Filter results by VLAN
id String
The provider-assigned unique ID for this managed resource.
item Property Map
serial String
serial path parameter.
apTag String
apTag query parameter. Filter results by AP Tag
band String
band query parameter. Filter results by band (either '2.4', '5' or '6'). Note that data prior to February 2020 will not have band information.
fields String
fields query parameter. Partial selection: If present, this call will return only the selected fields of ["rawDistribution", "avg"]. All fields will be returned by default. Selected fields must be entered as a comma separated string.
ssid Number
ssid query parameter. Filter results by SSID
t0 String
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 180 days from today.
t1 String
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 7 days after t0.
timespan Number
timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 7 days.
vlan Number
vlan query parameter. Filter results by VLAN

Supporting Types

GetWirelessLatencyStatsItem

LatencyStats This property is required. GetWirelessLatencyStatsItemLatencyStats
Serial This property is required. string
LatencyStats This property is required. GetWirelessLatencyStatsItemLatencyStats
Serial This property is required. string
latencyStats This property is required. GetWirelessLatencyStatsItemLatencyStats
serial This property is required. String
latencyStats This property is required. GetWirelessLatencyStatsItemLatencyStats
serial This property is required. string
latency_stats This property is required. GetWirelessLatencyStatsItemLatencyStats
serial This property is required. str
latencyStats This property is required. Property Map
serial This property is required. String

GetWirelessLatencyStatsItemLatencyStats

BackgroundTraffic This property is required. GetWirelessLatencyStatsItemLatencyStatsBackgroundTraffic
BestEffortTraffic This property is required. string
VideoTraffic This property is required. string
VoiceTraffic This property is required. string
BackgroundTraffic This property is required. GetWirelessLatencyStatsItemLatencyStatsBackgroundTraffic
BestEffortTraffic This property is required. string
VideoTraffic This property is required. string
VoiceTraffic This property is required. string
backgroundTraffic This property is required. GetWirelessLatencyStatsItemLatencyStatsBackgroundTraffic
bestEffortTraffic This property is required. String
videoTraffic This property is required. String
voiceTraffic This property is required. String
backgroundTraffic This property is required. GetWirelessLatencyStatsItemLatencyStatsBackgroundTraffic
bestEffortTraffic This property is required. string
videoTraffic This property is required. string
voiceTraffic This property is required. string
background_traffic This property is required. GetWirelessLatencyStatsItemLatencyStatsBackgroundTraffic
best_effort_traffic This property is required. str
video_traffic This property is required. str
voice_traffic This property is required. str
backgroundTraffic This property is required. Property Map
bestEffortTraffic This property is required. String
videoTraffic This property is required. String
voiceTraffic This property is required. String

GetWirelessLatencyStatsItemLatencyStatsBackgroundTraffic

Avg This property is required. double
RawDistribution This property is required. GetWirelessLatencyStatsItemLatencyStatsBackgroundTrafficRawDistribution
Avg This property is required. float64
RawDistribution This property is required. GetWirelessLatencyStatsItemLatencyStatsBackgroundTrafficRawDistribution
avg This property is required. Double
rawDistribution This property is required. GetWirelessLatencyStatsItemLatencyStatsBackgroundTrafficRawDistribution
avg This property is required. number
rawDistribution This property is required. GetWirelessLatencyStatsItemLatencyStatsBackgroundTrafficRawDistribution
avg This property is required. float
raw_distribution This property is required. GetWirelessLatencyStatsItemLatencyStatsBackgroundTrafficRawDistribution
avg This property is required. Number
rawDistribution This property is required. Property Map

GetWirelessLatencyStatsItemLatencyStatsBackgroundTrafficRawDistribution

Status0 This property is required. int
Status1 This property is required. int
Status1024 This property is required. int
Status128 This property is required. int
Status16 This property is required. int
Status2 This property is required. int
Status2048 This property is required. int
Status256 This property is required. int
Status32 This property is required. int
Status4 This property is required. int
Status512 This property is required. int
Status64 This property is required. int
Status8 This property is required. int
Status0 This property is required. int
Status1 This property is required. int
Status1024 This property is required. int
Status128 This property is required. int
Status16 This property is required. int
Status2 This property is required. int
Status2048 This property is required. int
Status256 This property is required. int
Status32 This property is required. int
Status4 This property is required. int
Status512 This property is required. int
Status64 This property is required. int
Status8 This property is required. int
status0 This property is required. Integer
status1 This property is required. Integer
status1024 This property is required. Integer
status128 This property is required. Integer
status16 This property is required. Integer
status2 This property is required. Integer
status2048 This property is required. Integer
status256 This property is required. Integer
status32 This property is required. Integer
status4 This property is required. Integer
status512 This property is required. Integer
status64 This property is required. Integer
status8 This property is required. Integer
status0 This property is required. number
status1 This property is required. number
status1024 This property is required. number
status128 This property is required. number
status16 This property is required. number
status2 This property is required. number
status2048 This property is required. number
status256 This property is required. number
status32 This property is required. number
status4 This property is required. number
status512 This property is required. number
status64 This property is required. number
status8 This property is required. number
status0 This property is required. int
status1 This property is required. int
status1024 This property is required. int
status128 This property is required. int
status16 This property is required. int
status2 This property is required. int
status2048 This property is required. int
status256 This property is required. int
status32 This property is required. int
status4 This property is required. int
status512 This property is required. int
status64 This property is required. int
status8 This property is required. int
status0 This property is required. Number
status1 This property is required. Number
status1024 This property is required. Number
status128 This property is required. Number
status16 This property is required. Number
status2 This property is required. Number
status2048 This property is required. Number
status256 This property is required. Number
status32 This property is required. Number
status4 This property is required. Number
status512 This property is required. Number
status64 This property is required. Number
status8 This property is required. Number

Package Details

Repository
meraki pulumi/pulumi-meraki
License
Apache-2.0
Notes
This Pulumi package is based on the meraki Terraform Provider.