@pulumi/meraki
Version:
A Pulumi package for creating and managing Cisco Meraki resources. Based on terraform-provider-meraki: version v0.2.0
84 lines • 2.84 kB
JavaScript
;
// *** 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.getWirelessFailedConnectionsOutput = exports.getWirelessFailedConnections = 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.getWirelessFailedConnections({
* apTag: "string",
* band: "string",
* clientId: "string",
* networkId: "string",
* serial: "string",
* ssid: 1,
* t0: "string",
* t1: "string",
* timespan: 1,
* vlan: 1,
* });
* export const merakiNetworksWirelessFailedConnectionsExample = example.then(example => example.items);
* ```
*/
function getWirelessFailedConnections(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("meraki:networks/getWirelessFailedConnections:getWirelessFailedConnections", {
"apTag": args.apTag,
"band": args.band,
"clientId": args.clientId,
"networkId": args.networkId,
"serial": args.serial,
"ssid": args.ssid,
"t0": args.t0,
"t1": args.t1,
"timespan": args.timespan,
"vlan": args.vlan,
}, opts);
}
exports.getWirelessFailedConnections = getWirelessFailedConnections;
/**
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as meraki from "@pulumi/meraki";
*
* const example = meraki.networks.getWirelessFailedConnections({
* apTag: "string",
* band: "string",
* clientId: "string",
* networkId: "string",
* serial: "string",
* ssid: 1,
* t0: "string",
* t1: "string",
* timespan: 1,
* vlan: 1,
* });
* export const merakiNetworksWirelessFailedConnectionsExample = example.then(example => example.items);
* ```
*/
function getWirelessFailedConnectionsOutput(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("meraki:networks/getWirelessFailedConnections:getWirelessFailedConnections", {
"apTag": args.apTag,
"band": args.band,
"clientId": args.clientId,
"networkId": args.networkId,
"serial": args.serial,
"ssid": args.ssid,
"t0": args.t0,
"t1": args.t1,
"timespan": args.timespan,
"vlan": args.vlan,
}, opts);
}
exports.getWirelessFailedConnectionsOutput = getWirelessFailedConnectionsOutput;
//# sourceMappingURL=getWirelessFailedConnections.js.map