UNPKG

@pulumi/meraki

Version:

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

32 lines 1.23 kB
"use strict"; // *** WARNING: this file was generated by pulumi-language-nodejs. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** Object.defineProperty(exports, "__esModule", { value: true }); exports.getCameraRolesOutput = exports.getCameraRoles = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * ## Example Usage */ function getCameraRoles(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("meraki:organizations/getCameraRoles:getCameraRoles", { "organizationId": args.organizationId, "roleId": args.roleId, }, opts); } exports.getCameraRoles = getCameraRoles; /** * ## Example Usage */ function getCameraRolesOutput(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("meraki:organizations/getCameraRoles:getCameraRoles", { "organizationId": args.organizationId, "roleId": args.roleId, }, opts); } exports.getCameraRolesOutput = getCameraRolesOutput; //# sourceMappingURL=getCameraRoles.js.map