@pulumi/meraki
Version:
A Pulumi package for creating and managing Cisco Meraki resources. Based on terraform-provider-meraki: version v0.2.0
175 lines (174 loc) • 5.85 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as meraki from "@pulumi/meraki";
*
* const example = meraki.networks.getWirelessClientsConnectionStats({
* apTag: "string",
* band: "string",
* clientId: "string",
* networkId: "string",
* ssid: 1,
* t0: "string",
* t1: "string",
* timespan: 1,
* vlan: 1,
* });
* export const merakiNetworksWirelessClientsConnectionStatsExample = example.then(example => example.item);
* ```
*/
export declare function getWirelessClientsConnectionStats(args: GetWirelessClientsConnectionStatsArgs, opts?: pulumi.InvokeOptions): Promise<GetWirelessClientsConnectionStatsResult>;
/**
* A collection of arguments for invoking getWirelessClientsConnectionStats.
*/
export interface GetWirelessClientsConnectionStatsArgs {
/**
* apTag query parameter. Filter results by AP Tag
*/
apTag?: 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.
*/
band?: string;
/**
* clientId path parameter. Client ID
*/
clientId: string;
/**
* networkId path parameter. Network ID
*/
networkId: string;
/**
* ssid query parameter. Filter results by SSID
*/
ssid?: number;
/**
* t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 180 days from today.
*/
t0?: string;
/**
* t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 7 days after t0.
*/
t1?: string;
/**
* 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.
*/
timespan?: number;
/**
* vlan query parameter. Filter results by VLAN
*/
vlan?: number;
}
/**
* A collection of values returned by getWirelessClientsConnectionStats.
*/
export interface GetWirelessClientsConnectionStatsResult {
/**
* apTag query parameter. Filter results by AP Tag
*/
readonly apTag?: 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.
*/
readonly band?: string;
/**
* clientId path parameter. Client ID
*/
readonly clientId: string;
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly item: outputs.networks.GetWirelessClientsConnectionStatsItem;
/**
* networkId path parameter. Network ID
*/
readonly networkId: string;
/**
* ssid query parameter. Filter results by SSID
*/
readonly ssid?: number;
/**
* t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 180 days from today.
*/
readonly t0?: string;
/**
* t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 7 days after t0.
*/
readonly t1?: string;
/**
* 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.
*/
readonly timespan?: number;
/**
* vlan query parameter. Filter results by VLAN
*/
readonly vlan?: number;
}
/**
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as meraki from "@pulumi/meraki";
*
* const example = meraki.networks.getWirelessClientsConnectionStats({
* apTag: "string",
* band: "string",
* clientId: "string",
* networkId: "string",
* ssid: 1,
* t0: "string",
* t1: "string",
* timespan: 1,
* vlan: 1,
* });
* export const merakiNetworksWirelessClientsConnectionStatsExample = example.then(example => example.item);
* ```
*/
export declare function getWirelessClientsConnectionStatsOutput(args: GetWirelessClientsConnectionStatsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetWirelessClientsConnectionStatsResult>;
/**
* A collection of arguments for invoking getWirelessClientsConnectionStats.
*/
export interface GetWirelessClientsConnectionStatsOutputArgs {
/**
* apTag query parameter. Filter results by AP Tag
*/
apTag?: pulumi.Input<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.
*/
band?: pulumi.Input<string>;
/**
* clientId path parameter. Client ID
*/
clientId: pulumi.Input<string>;
/**
* networkId path parameter. Network ID
*/
networkId: pulumi.Input<string>;
/**
* ssid query parameter. Filter results by SSID
*/
ssid?: pulumi.Input<number>;
/**
* t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 180 days from today.
*/
t0?: pulumi.Input<string>;
/**
* t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 7 days after t0.
*/
t1?: pulumi.Input<string>;
/**
* 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.
*/
timespan?: pulumi.Input<number>;
/**
* vlan query parameter. Filter results by VLAN
*/
vlan?: pulumi.Input<number>;
}