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.organizations.getWirelessDevicesPacketLossByClient({
 *     bands: ["string"],
 *     endingBefore: "string",
 *     macs: ["string"],
 *     networkIds: ["string"],
 *     organizationId: "string",
 *     perPage: 1,
 *     ssids: ["string"],
 *     startingAfter: "string",
 *     t0: "string",
 *     t1: "string",
 *     timespan: 1,
 * });
 * export const merakiOrganizationsWirelessDevicesPacketLossByClientExample = example.then(example => example.items);
 * ```
 */
export declare function getWirelessDevicesPacketLossByClient(args: GetWirelessDevicesPacketLossByClientArgs, opts?: pulumi.InvokeOptions): Promise<GetWirelessDevicesPacketLossByClientResult>;
/**
 * A collection of arguments for invoking getWirelessDevicesPacketLossByClient.
 */
export interface GetWirelessDevicesPacketLossByClientArgs {
    /**
     * bands query parameter. Filter results by band. Valid bands are: 2.4, 5, and 6.
     */
    bands?: string[];
    /**
     * endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
     */
    endingBefore?: string;
    /**
     * macs query parameter. Filter results by client mac address(es).
     */
    macs?: string[];
    /**
     * networkIds query parameter. Filter results by network.
     */
    networkIds?: string[];
    /**
     * organizationId path parameter. Organization ID
     */
    organizationId: string;
    /**
     * perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
     */
    perPage?: number;
    /**
     * ssids query parameter. Filter results by SSID number.
     */
    ssids?: string[];
    /**
     * startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
     */
    startingAfter?: string;
    /**
     * t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 90 days from today.
     */
    t0?: string;
    /**
     * t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 90 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 greater than or equal to 5 minutes and be less than or equal to 90 days. The default is 7 days.
     */
    timespan?: number;
}
/**
 * A collection of values returned by getWirelessDevicesPacketLossByClient.
 */
export interface GetWirelessDevicesPacketLossByClientResult {
    /**
     * bands query parameter. Filter results by band. Valid bands are: 2.4, 5, and 6.
     */
    readonly bands?: string[];
    /**
     * endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
     */
    readonly endingBefore?: string;
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    /**
     * Array of ResponseWirelessGetOrganizationWirelessDevicesPacketLossByClient
     */
    readonly items: outputs.organizations.GetWirelessDevicesPacketLossByClientItem[];
    /**
     * macs query parameter. Filter results by client mac address(es).
     */
    readonly macs?: string[];
    /**
     * networkIds query parameter. Filter results by network.
     */
    readonly networkIds?: string[];
    /**
     * organizationId path parameter. Organization ID
     */
    readonly organizationId: string;
    /**
     * perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
     */
    readonly perPage?: number;
    /**
     * ssids query parameter. Filter results by SSID number.
     */
    readonly ssids?: string[];
    /**
     * startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
     */
    readonly startingAfter?: string;
    /**
     * t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 90 days from today.
     */
    readonly t0?: string;
    /**
     * t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 90 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 greater than or equal to 5 minutes and be less than or equal to 90 days. The default is 7 days.
     */
    readonly timespan?: number;
}
/**
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as meraki from "@pulumi/meraki";
 *
 * const example = meraki.organizations.getWirelessDevicesPacketLossByClient({
 *     bands: ["string"],
 *     endingBefore: "string",
 *     macs: ["string"],
 *     networkIds: ["string"],
 *     organizationId: "string",
 *     perPage: 1,
 *     ssids: ["string"],
 *     startingAfter: "string",
 *     t0: "string",
 *     t1: "string",
 *     timespan: 1,
 * });
 * export const merakiOrganizationsWirelessDevicesPacketLossByClientExample = example.then(example => example.items);
 * ```
 */
export declare function getWirelessDevicesPacketLossByClientOutput(args: GetWirelessDevicesPacketLossByClientOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetWirelessDevicesPacketLossByClientResult>;
/**
 * A collection of arguments for invoking getWirelessDevicesPacketLossByClient.
 */
export interface GetWirelessDevicesPacketLossByClientOutputArgs {
    /**
     * bands query parameter. Filter results by band. Valid bands are: 2.4, 5, and 6.
     */
    bands?: pulumi.Input<pulumi.Input<string>[] | undefined>;
    /**
     * endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
     */
    endingBefore?: pulumi.Input<string | undefined>;
    /**
     * macs query parameter. Filter results by client mac address(es).
     */
    macs?: pulumi.Input<pulumi.Input<string>[] | undefined>;
    /**
     * networkIds query parameter. Filter results by network.
     */
    networkIds?: pulumi.Input<pulumi.Input<string>[] | undefined>;
    /**
     * organizationId path parameter. Organization ID
     */
    organizationId: pulumi.Input<string>;
    /**
     * perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
     */
    perPage?: pulumi.Input<number | undefined>;
    /**
     * ssids query parameter. Filter results by SSID number.
     */
    ssids?: pulumi.Input<pulumi.Input<string>[] | undefined>;
    /**
     * startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
     */
    startingAfter?: pulumi.Input<string | undefined>;
    /**
     * t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 90 days from today.
     */
    t0?: pulumi.Input<string | undefined>;
    /**
     * t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 90 days after t0.
     */
    t1?: pulumi.Input<string | undefined>;
    /**
     * 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 greater than or equal to 5 minutes and be less than or equal to 90 days. The default is 7 days.
     */
    timespan?: pulumi.Input<number | undefined>;
}
//# sourceMappingURL=getWirelessDevicesPacketLossByClient.d.ts.map