UNPKG

@pulumi/meraki

Version:

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

64 lines 2.18 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.getClientsOverviewOutput = exports.getClientsOverview = 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.networks.getClientsOverview({ * networkId: "string", * resolution: 1, * t0: "string", * t1: "string", * timespan: 1, * }); * export const merakiNetworksClientsOverviewExample = example.then(example => example.item); * ``` */ function getClientsOverview(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("meraki:networks/getClientsOverview:getClientsOverview", { "networkId": args.networkId, "resolution": args.resolution, "t0": args.t0, "t1": args.t1, "timespan": args.timespan, }, opts); } exports.getClientsOverview = getClientsOverview; /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as meraki from "@pulumi/meraki"; * * const example = meraki.networks.getClientsOverview({ * networkId: "string", * resolution: 1, * t0: "string", * t1: "string", * timespan: 1, * }); * export const merakiNetworksClientsOverviewExample = example.then(example => example.item); * ``` */ function getClientsOverviewOutput(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("meraki:networks/getClientsOverview:getClientsOverview", { "networkId": args.networkId, "resolution": args.resolution, "t0": args.t0, "t1": args.t1, "timespan": args.timespan, }, opts); } exports.getClientsOverviewOutput = getClientsOverviewOutput; //# sourceMappingURL=getClientsOverview.js.map