UNPKG

@pulumi/meraki

Version:

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

52 lines 1.99 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.getSmUsersDeviceProfilesOutput = exports.getSmUsersDeviceProfiles = 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.getSmUsersDeviceProfiles({ * networkId: "string", * userId: "string", * }); * export const merakiNetworksSmUsersDeviceProfilesExample = example.then(example => example.items); * ``` */ function getSmUsersDeviceProfiles(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("meraki:networks/getSmUsersDeviceProfiles:getSmUsersDeviceProfiles", { "networkId": args.networkId, "userId": args.userId, }, opts); } exports.getSmUsersDeviceProfiles = getSmUsersDeviceProfiles; /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as meraki from "@pulumi/meraki"; * * const example = meraki.networks.getSmUsersDeviceProfiles({ * networkId: "string", * userId: "string", * }); * export const merakiNetworksSmUsersDeviceProfilesExample = example.then(example => example.items); * ``` */ function getSmUsersDeviceProfilesOutput(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("meraki:networks/getSmUsersDeviceProfiles:getSmUsersDeviceProfiles", { "networkId": args.networkId, "userId": args.userId, }, opts); } exports.getSmUsersDeviceProfilesOutput = getSmUsersDeviceProfilesOutput; //# sourceMappingURL=getSmUsersDeviceProfiles.js.map