@pulumi/meraki
Version:
A Pulumi package for creating and managing Cisco Meraki resources. Based on terraform-provider-meraki: version v0.2.0
72 lines • 2.49 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.getPiiSmOwnersForKeyOutput = exports.getPiiSmOwnersForKey = 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.getPiiSmOwnersForKey({
* bluetoothMac: "string",
* email: "string",
* imei: "string",
* mac: "string",
* networkId: "string",
* serial: "string",
* username: "string",
* });
* export const merakiNetworksPiiSmOwnersForKeyExample = example.then(example => example.item);
* ```
*/
function getPiiSmOwnersForKey(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("meraki:networks/getPiiSmOwnersForKey:getPiiSmOwnersForKey", {
"bluetoothMac": args.bluetoothMac,
"email": args.email,
"imei": args.imei,
"mac": args.mac,
"networkId": args.networkId,
"serial": args.serial,
"username": args.username,
}, opts);
}
exports.getPiiSmOwnersForKey = getPiiSmOwnersForKey;
/**
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as meraki from "@pulumi/meraki";
*
* const example = meraki.networks.getPiiSmOwnersForKey({
* bluetoothMac: "string",
* email: "string",
* imei: "string",
* mac: "string",
* networkId: "string",
* serial: "string",
* username: "string",
* });
* export const merakiNetworksPiiSmOwnersForKeyExample = example.then(example => example.item);
* ```
*/
function getPiiSmOwnersForKeyOutput(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("meraki:networks/getPiiSmOwnersForKey:getPiiSmOwnersForKey", {
"bluetoothMac": args.bluetoothMac,
"email": args.email,
"imei": args.imei,
"mac": args.mac,
"networkId": args.networkId,
"serial": args.serial,
"username": args.username,
}, opts);
}
exports.getPiiSmOwnersForKeyOutput = getPiiSmOwnersForKeyOutput;
//# sourceMappingURL=getPiiSmOwnersForKey.js.map