UNPKG

@pulumi/meraki

Version:

A Pulumi package for creating and managing Cisco Meraki resources. Based on terraform-provider-meraki: version v0.2.0

88 lines 3.27 kB
"use strict"; // *** WARNING: this file was generated by pulumi-language-nodejs. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** Object.defineProperty(exports, "__esModule", { value: true }); exports.getWirelessDevicesPacketLossByClientOutput = exports.getWirelessDevicesPacketLossByClient = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * ## 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); * ``` */ function getWirelessDevicesPacketLossByClient(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("meraki:organizations/getWirelessDevicesPacketLossByClient:getWirelessDevicesPacketLossByClient", { "bands": args.bands, "endingBefore": args.endingBefore, "macs": args.macs, "networkIds": args.networkIds, "organizationId": args.organizationId, "perPage": args.perPage, "ssids": args.ssids, "startingAfter": args.startingAfter, "t0": args.t0, "t1": args.t1, "timespan": args.timespan, }, opts); } exports.getWirelessDevicesPacketLossByClient = getWirelessDevicesPacketLossByClient; /** * ## 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); * ``` */ function getWirelessDevicesPacketLossByClientOutput(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("meraki:organizations/getWirelessDevicesPacketLossByClient:getWirelessDevicesPacketLossByClient", { "bands": args.bands, "endingBefore": args.endingBefore, "macs": args.macs, "networkIds": args.networkIds, "organizationId": args.organizationId, "perPage": args.perPage, "ssids": args.ssids, "startingAfter": args.startingAfter, "t0": args.t0, "t1": args.t1, "timespan": args.timespan, }, opts); } exports.getWirelessDevicesPacketLossByClientOutput = getWirelessDevicesPacketLossByClientOutput; //# sourceMappingURL=getWirelessDevicesPacketLossByClient.js.map