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

meraki.networks.getWirelessUsageHistory

Explore with Pulumi AI

Example Usage

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

const example = meraki.networks.getWirelessUsageHistory({
    apTag: "string",
    autoResolution: false,
    band: "string",
    clientId: "string",
    deviceSerial: "string",
    networkId: "string",
    resolution: 1,
    ssid: 1,
    t0: "string",
    t1: "string",
    timespan: 1,
});
export const merakiNetworksWirelessUsageHistoryExample = example.then(example => example.items);
Copy
import pulumi
import pulumi_meraki as meraki

example = meraki.networks.get_wireless_usage_history(ap_tag="string",
    auto_resolution=False,
    band="string",
    client_id="string",
    device_serial="string",
    network_id="string",
    resolution=1,
    ssid=1,
    t0="string",
    t1="string",
    timespan=1)
pulumi.export("merakiNetworksWirelessUsageHistoryExample", example.items)
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := networks.GetWirelessUsageHistory(ctx, &networks.GetWirelessUsageHistoryArgs{
			ApTag:          pulumi.StringRef("string"),
			AutoResolution: pulumi.BoolRef(false),
			Band:           pulumi.StringRef("string"),
			ClientId:       pulumi.StringRef("string"),
			DeviceSerial:   pulumi.StringRef("string"),
			NetworkId:      "string",
			Resolution:     pulumi.IntRef(1),
			Ssid:           pulumi.IntRef(1),
			T0:             pulumi.StringRef("string"),
			T1:             pulumi.StringRef("string"),
			Timespan:       pulumi.Float64Ref(1),
		}, nil)
		if err != nil {
			return err
		}
		ctx.Export("merakiNetworksWirelessUsageHistoryExample", example.Items)
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Meraki = Pulumi.Meraki;

return await Deployment.RunAsync(() => 
{
    var example = Meraki.Networks.GetWirelessUsageHistory.Invoke(new()
    {
        ApTag = "string",
        AutoResolution = false,
        Band = "string",
        ClientId = "string",
        DeviceSerial = "string",
        NetworkId = "string",
        Resolution = 1,
        Ssid = 1,
        T0 = "string",
        T1 = "string",
        Timespan = 1,
    });

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

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.meraki.networks.NetworksFunctions;
import com.pulumi.meraki.networks.inputs.GetWirelessUsageHistoryArgs;
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 = NetworksFunctions.getWirelessUsageHistory(GetWirelessUsageHistoryArgs.builder()
            .apTag("string")
            .autoResolution(false)
            .band("string")
            .clientId("string")
            .deviceSerial("string")
            .networkId("string")
            .resolution(1)
            .ssid(1)
            .t0("string")
            .t1("string")
            .timespan(1)
            .build());

        ctx.export("merakiNetworksWirelessUsageHistoryExample", example.applyValue(getWirelessUsageHistoryResult -> getWirelessUsageHistoryResult.items()));
    }
}
Copy
variables:
  example:
    fn::invoke:
      function: meraki:networks:getWirelessUsageHistory
      arguments:
        apTag: string
        autoResolution: false
        band: string
        clientId: string
        deviceSerial: string
        networkId: string
        resolution: 1
        ssid: 1
        t0: string
        t1: string
        timespan: 1
outputs:
  merakiNetworksWirelessUsageHistoryExample: ${example.items}
Copy

Using getWirelessUsageHistory

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 getWirelessUsageHistory(args: GetWirelessUsageHistoryArgs, opts?: InvokeOptions): Promise<GetWirelessUsageHistoryResult>
function getWirelessUsageHistoryOutput(args: GetWirelessUsageHistoryOutputArgs, opts?: InvokeOptions): Output<GetWirelessUsageHistoryResult>
Copy
def get_wireless_usage_history(ap_tag: Optional[str] = None,
                               auto_resolution: Optional[bool] = None,
                               band: Optional[str] = None,
                               client_id: Optional[str] = None,
                               device_serial: Optional[str] = None,
                               network_id: Optional[str] = None,
                               resolution: Optional[int] = None,
                               ssid: Optional[int] = None,
                               t0: Optional[str] = None,
                               t1: Optional[str] = None,
                               timespan: Optional[float] = None,
                               opts: Optional[InvokeOptions] = None) -> GetWirelessUsageHistoryResult
def get_wireless_usage_history_output(ap_tag: Optional[pulumi.Input[str]] = None,
                               auto_resolution: Optional[pulumi.Input[bool]] = None,
                               band: Optional[pulumi.Input[str]] = None,
                               client_id: Optional[pulumi.Input[str]] = None,
                               device_serial: Optional[pulumi.Input[str]] = None,
                               network_id: Optional[pulumi.Input[str]] = None,
                               resolution: Optional[pulumi.Input[int]] = 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,
                               opts: Optional[InvokeOptions] = None) -> Output[GetWirelessUsageHistoryResult]
Copy
func GetWirelessUsageHistory(ctx *Context, args *GetWirelessUsageHistoryArgs, opts ...InvokeOption) (*GetWirelessUsageHistoryResult, error)
func GetWirelessUsageHistoryOutput(ctx *Context, args *GetWirelessUsageHistoryOutputArgs, opts ...InvokeOption) GetWirelessUsageHistoryResultOutput
Copy

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

public static class GetWirelessUsageHistory 
{
    public static Task<GetWirelessUsageHistoryResult> InvokeAsync(GetWirelessUsageHistoryArgs args, InvokeOptions? opts = null)
    public static Output<GetWirelessUsageHistoryResult> Invoke(GetWirelessUsageHistoryInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetWirelessUsageHistoryResult> getWirelessUsageHistory(GetWirelessUsageHistoryArgs args, InvokeOptions options)
public static Output<GetWirelessUsageHistoryResult> getWirelessUsageHistory(GetWirelessUsageHistoryArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: meraki:networks/getWirelessUsageHistory:getWirelessUsageHistory
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

NetworkId This property is required. string
networkId path parameter. Network ID
ApTag string
apTag query parameter. Filter results by AP tag; either :clientId or :deviceSerial must be jointly specified.
AutoResolution bool
autoResolution query parameter. Automatically select a data resolution based on the given timespan; this overrides the value specified by the 'resolution' parameter. The default setting is false.
Band string
band query parameter. Filter results by band (either '2.4', '5' or '6').
ClientId string
clientId query parameter. Filter results by network client to return per-device AP usage over time inner joined by the queried client's connection history.
DeviceSerial string
deviceSerial query parameter. Filter results by device. Requires :band.
Resolution int
resolution query parameter. The time resolution in seconds for returned data. The valid resolutions are: 300, 600, 1200, 3600, 14400, 86400. The default is 86400.
Ssid int
ssid query parameter. Filter results by SSID number.
T0 string
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
T1 string
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 31 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 31 days. The default is 7 days.
NetworkId This property is required. string
networkId path parameter. Network ID
ApTag string
apTag query parameter. Filter results by AP tag; either :clientId or :deviceSerial must be jointly specified.
AutoResolution bool
autoResolution query parameter. Automatically select a data resolution based on the given timespan; this overrides the value specified by the 'resolution' parameter. The default setting is false.
Band string
band query parameter. Filter results by band (either '2.4', '5' or '6').
ClientId string
clientId query parameter. Filter results by network client to return per-device AP usage over time inner joined by the queried client's connection history.
DeviceSerial string
deviceSerial query parameter. Filter results by device. Requires :band.
Resolution int
resolution query parameter. The time resolution in seconds for returned data. The valid resolutions are: 300, 600, 1200, 3600, 14400, 86400. The default is 86400.
Ssid int
ssid query parameter. Filter results by SSID number.
T0 string
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
T1 string
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 31 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 31 days. The default is 7 days.
networkId This property is required. String
networkId path parameter. Network ID
apTag String
apTag query parameter. Filter results by AP tag; either :clientId or :deviceSerial must be jointly specified.
autoResolution Boolean
autoResolution query parameter. Automatically select a data resolution based on the given timespan; this overrides the value specified by the 'resolution' parameter. The default setting is false.
band String
band query parameter. Filter results by band (either '2.4', '5' or '6').
clientId String
clientId query parameter. Filter results by network client to return per-device AP usage over time inner joined by the queried client's connection history.
deviceSerial String
deviceSerial query parameter. Filter results by device. Requires :band.
resolution Integer
resolution query parameter. The time resolution in seconds for returned data. The valid resolutions are: 300, 600, 1200, 3600, 14400, 86400. The default is 86400.
ssid Integer
ssid query parameter. Filter results by SSID number.
t0 String
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
t1 String
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 31 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 31 days. The default is 7 days.
networkId This property is required. string
networkId path parameter. Network ID
apTag string
apTag query parameter. Filter results by AP tag; either :clientId or :deviceSerial must be jointly specified.
autoResolution boolean
autoResolution query parameter. Automatically select a data resolution based on the given timespan; this overrides the value specified by the 'resolution' parameter. The default setting is false.
band string
band query parameter. Filter results by band (either '2.4', '5' or '6').
clientId string
clientId query parameter. Filter results by network client to return per-device AP usage over time inner joined by the queried client's connection history.
deviceSerial string
deviceSerial query parameter. Filter results by device. Requires :band.
resolution number
resolution query parameter. The time resolution in seconds for returned data. The valid resolutions are: 300, 600, 1200, 3600, 14400, 86400. The default is 86400.
ssid number
ssid query parameter. Filter results by SSID number.
t0 string
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
t1 string
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 31 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 31 days. The default is 7 days.
network_id This property is required. str
networkId path parameter. Network ID
ap_tag str
apTag query parameter. Filter results by AP tag; either :clientId or :deviceSerial must be jointly specified.
auto_resolution bool
autoResolution query parameter. Automatically select a data resolution based on the given timespan; this overrides the value specified by the 'resolution' parameter. The default setting is false.
band str
band query parameter. Filter results by band (either '2.4', '5' or '6').
client_id str
clientId query parameter. Filter results by network client to return per-device AP usage over time inner joined by the queried client's connection history.
device_serial str
deviceSerial query parameter. Filter results by device. Requires :band.
resolution int
resolution query parameter. The time resolution in seconds for returned data. The valid resolutions are: 300, 600, 1200, 3600, 14400, 86400. The default is 86400.
ssid int
ssid query parameter. Filter results by SSID number.
t0 str
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
t1 str
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 31 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 31 days. The default is 7 days.
networkId This property is required. String
networkId path parameter. Network ID
apTag String
apTag query parameter. Filter results by AP tag; either :clientId or :deviceSerial must be jointly specified.
autoResolution Boolean
autoResolution query parameter. Automatically select a data resolution based on the given timespan; this overrides the value specified by the 'resolution' parameter. The default setting is false.
band String
band query parameter. Filter results by band (either '2.4', '5' or '6').
clientId String
clientId query parameter. Filter results by network client to return per-device AP usage over time inner joined by the queried client's connection history.
deviceSerial String
deviceSerial query parameter. Filter results by device. Requires :band.
resolution Number
resolution query parameter. The time resolution in seconds for returned data. The valid resolutions are: 300, 600, 1200, 3600, 14400, 86400. The default is 86400.
ssid Number
ssid query parameter. Filter results by SSID number.
t0 String
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
t1 String
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 31 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 31 days. The default is 7 days.

getWirelessUsageHistory Result

The following output properties are available:

Id string
The provider-assigned unique ID for this managed resource.
Items List<GetWirelessUsageHistoryItem>
Array of ResponseWirelessGetNetworkWirelessUsageHistory
NetworkId string
networkId path parameter. Network ID
ApTag string
apTag query parameter. Filter results by AP tag; either :clientId or :deviceSerial must be jointly specified.
AutoResolution bool
autoResolution query parameter. Automatically select a data resolution based on the given timespan; this overrides the value specified by the 'resolution' parameter. The default setting is false.
Band string
band query parameter. Filter results by band (either '2.4', '5' or '6').
ClientId string
clientId query parameter. Filter results by network client to return per-device AP usage over time inner joined by the queried client's connection history.
DeviceSerial string
deviceSerial query parameter. Filter results by device. Requires :band.
Resolution int
resolution query parameter. The time resolution in seconds for returned data. The valid resolutions are: 300, 600, 1200, 3600, 14400, 86400. The default is 86400.
Ssid int
ssid query parameter. Filter results by SSID number.
T0 string
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
T1 string
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 31 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 31 days. The default is 7 days.
Id string
The provider-assigned unique ID for this managed resource.
Items []GetWirelessUsageHistoryItem
Array of ResponseWirelessGetNetworkWirelessUsageHistory
NetworkId string
networkId path parameter. Network ID
ApTag string
apTag query parameter. Filter results by AP tag; either :clientId or :deviceSerial must be jointly specified.
AutoResolution bool
autoResolution query parameter. Automatically select a data resolution based on the given timespan; this overrides the value specified by the 'resolution' parameter. The default setting is false.
Band string
band query parameter. Filter results by band (either '2.4', '5' or '6').
ClientId string
clientId query parameter. Filter results by network client to return per-device AP usage over time inner joined by the queried client's connection history.
DeviceSerial string
deviceSerial query parameter. Filter results by device. Requires :band.
Resolution int
resolution query parameter. The time resolution in seconds for returned data. The valid resolutions are: 300, 600, 1200, 3600, 14400, 86400. The default is 86400.
Ssid int
ssid query parameter. Filter results by SSID number.
T0 string
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
T1 string
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 31 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 31 days. The default is 7 days.
id String
The provider-assigned unique ID for this managed resource.
items List<GetWirelessUsageHistoryItem>
Array of ResponseWirelessGetNetworkWirelessUsageHistory
networkId String
networkId path parameter. Network ID
apTag String
apTag query parameter. Filter results by AP tag; either :clientId or :deviceSerial must be jointly specified.
autoResolution Boolean
autoResolution query parameter. Automatically select a data resolution based on the given timespan; this overrides the value specified by the 'resolution' parameter. The default setting is false.
band String
band query parameter. Filter results by band (either '2.4', '5' or '6').
clientId String
clientId query parameter. Filter results by network client to return per-device AP usage over time inner joined by the queried client's connection history.
deviceSerial String
deviceSerial query parameter. Filter results by device. Requires :band.
resolution Integer
resolution query parameter. The time resolution in seconds for returned data. The valid resolutions are: 300, 600, 1200, 3600, 14400, 86400. The default is 86400.
ssid Integer
ssid query parameter. Filter results by SSID number.
t0 String
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
t1 String
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 31 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 31 days. The default is 7 days.
id string
The provider-assigned unique ID for this managed resource.
items GetWirelessUsageHistoryItem[]
Array of ResponseWirelessGetNetworkWirelessUsageHistory
networkId string
networkId path parameter. Network ID
apTag string
apTag query parameter. Filter results by AP tag; either :clientId or :deviceSerial must be jointly specified.
autoResolution boolean
autoResolution query parameter. Automatically select a data resolution based on the given timespan; this overrides the value specified by the 'resolution' parameter. The default setting is false.
band string
band query parameter. Filter results by band (either '2.4', '5' or '6').
clientId string
clientId query parameter. Filter results by network client to return per-device AP usage over time inner joined by the queried client's connection history.
deviceSerial string
deviceSerial query parameter. Filter results by device. Requires :band.
resolution number
resolution query parameter. The time resolution in seconds for returned data. The valid resolutions are: 300, 600, 1200, 3600, 14400, 86400. The default is 86400.
ssid number
ssid query parameter. Filter results by SSID number.
t0 string
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
t1 string
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 31 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 31 days. The default is 7 days.
id str
The provider-assigned unique ID for this managed resource.
items Sequence[GetWirelessUsageHistoryItem]
Array of ResponseWirelessGetNetworkWirelessUsageHistory
network_id str
networkId path parameter. Network ID
ap_tag str
apTag query parameter. Filter results by AP tag; either :clientId or :deviceSerial must be jointly specified.
auto_resolution bool
autoResolution query parameter. Automatically select a data resolution based on the given timespan; this overrides the value specified by the 'resolution' parameter. The default setting is false.
band str
band query parameter. Filter results by band (either '2.4', '5' or '6').
client_id str
clientId query parameter. Filter results by network client to return per-device AP usage over time inner joined by the queried client's connection history.
device_serial str
deviceSerial query parameter. Filter results by device. Requires :band.
resolution int
resolution query parameter. The time resolution in seconds for returned data. The valid resolutions are: 300, 600, 1200, 3600, 14400, 86400. The default is 86400.
ssid int
ssid query parameter. Filter results by SSID number.
t0 str
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
t1 str
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 31 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 31 days. The default is 7 days.
id String
The provider-assigned unique ID for this managed resource.
items List<Property Map>
Array of ResponseWirelessGetNetworkWirelessUsageHistory
networkId String
networkId path parameter. Network ID
apTag String
apTag query parameter. Filter results by AP tag; either :clientId or :deviceSerial must be jointly specified.
autoResolution Boolean
autoResolution query parameter. Automatically select a data resolution based on the given timespan; this overrides the value specified by the 'resolution' parameter. The default setting is false.
band String
band query parameter. Filter results by band (either '2.4', '5' or '6').
clientId String
clientId query parameter. Filter results by network client to return per-device AP usage over time inner joined by the queried client's connection history.
deviceSerial String
deviceSerial query parameter. Filter results by device. Requires :band.
resolution Number
resolution query parameter. The time resolution in seconds for returned data. The valid resolutions are: 300, 600, 1200, 3600, 14400, 86400. The default is 86400.
ssid Number
ssid query parameter. Filter results by SSID number.
t0 String
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
t1 String
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 31 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 31 days. The default is 7 days.

Supporting Types

GetWirelessUsageHistoryItem

EndTs This property is required. string
The end time of the query range
ReceivedKbps This property is required. int
Received kilobytes-per-second
SentKbps This property is required. int
Sent kilobytes-per-second
StartTs This property is required. string
The start time of the query range
TotalKbps This property is required. int
Total usage in kilobytes-per-second
EndTs This property is required. string
The end time of the query range
ReceivedKbps This property is required. int
Received kilobytes-per-second
SentKbps This property is required. int
Sent kilobytes-per-second
StartTs This property is required. string
The start time of the query range
TotalKbps This property is required. int
Total usage in kilobytes-per-second
endTs This property is required. String
The end time of the query range
receivedKbps This property is required. Integer
Received kilobytes-per-second
sentKbps This property is required. Integer
Sent kilobytes-per-second
startTs This property is required. String
The start time of the query range
totalKbps This property is required. Integer
Total usage in kilobytes-per-second
endTs This property is required. string
The end time of the query range
receivedKbps This property is required. number
Received kilobytes-per-second
sentKbps This property is required. number
Sent kilobytes-per-second
startTs This property is required. string
The start time of the query range
totalKbps This property is required. number
Total usage in kilobytes-per-second
end_ts This property is required. str
The end time of the query range
received_kbps This property is required. int
Received kilobytes-per-second
sent_kbps This property is required. int
Sent kilobytes-per-second
start_ts This property is required. str
The start time of the query range
total_kbps This property is required. int
Total usage in kilobytes-per-second
endTs This property is required. String
The end time of the query range
receivedKbps This property is required. Number
Received kilobytes-per-second
sentKbps This property is required. Number
Sent kilobytes-per-second
startTs This property is required. String
The start time of the query range
totalKbps This property is required. Number
Total usage in kilobytes-per-second

Package Details

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