UNPKG

@pulumi/meraki

Version:

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

84 lines 3.34 kB
"use strict"; // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** Object.defineProperty(exports, "__esModule", { value: true }); exports.getWirelessDevicesChannelUtilizationByDeviceOutput = exports.getWirelessDevicesChannelUtilizationByDevice = 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.getWirelessDevicesChannelUtilizationByDevice({ * endingBefore: "string", * interval: 1, * networkIds: ["string"], * organizationId: "string", * perPage: 1, * serials: ["string"], * startingAfter: "string", * t0: "string", * t1: "string", * timespan: 1, * }); * export const merakiOrganizationsWirelessDevicesChannelUtilizationByDeviceExample = example.then(example => example.items); * ``` */ function getWirelessDevicesChannelUtilizationByDevice(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("meraki:organizations/getWirelessDevicesChannelUtilizationByDevice:getWirelessDevicesChannelUtilizationByDevice", { "endingBefore": args.endingBefore, "interval": args.interval, "networkIds": args.networkIds, "organizationId": args.organizationId, "perPage": args.perPage, "serials": args.serials, "startingAfter": args.startingAfter, "t0": args.t0, "t1": args.t1, "timespan": args.timespan, }, opts); } exports.getWirelessDevicesChannelUtilizationByDevice = getWirelessDevicesChannelUtilizationByDevice; /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as meraki from "@pulumi/meraki"; * * const example = meraki.organizations.getWirelessDevicesChannelUtilizationByDevice({ * endingBefore: "string", * interval: 1, * networkIds: ["string"], * organizationId: "string", * perPage: 1, * serials: ["string"], * startingAfter: "string", * t0: "string", * t1: "string", * timespan: 1, * }); * export const merakiOrganizationsWirelessDevicesChannelUtilizationByDeviceExample = example.then(example => example.items); * ``` */ function getWirelessDevicesChannelUtilizationByDeviceOutput(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("meraki:organizations/getWirelessDevicesChannelUtilizationByDevice:getWirelessDevicesChannelUtilizationByDevice", { "endingBefore": args.endingBefore, "interval": args.interval, "networkIds": args.networkIds, "organizationId": args.organizationId, "perPage": args.perPage, "serials": args.serials, "startingAfter": args.startingAfter, "t0": args.t0, "t1": args.t1, "timespan": args.timespan, }, opts); } exports.getWirelessDevicesChannelUtilizationByDeviceOutput = getWirelessDevicesChannelUtilizationByDeviceOutput; //# sourceMappingURL=getWirelessDevicesChannelUtilizationByDevice.js.map