@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.28 kB
JavaScript
;
// *** 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.getSmVppAccountsOutput = exports.getSmVppAccounts = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* ## Example Usage
*/
function getSmVppAccounts(args, opts) {
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("meraki:organizations/getSmVppAccounts:getSmVppAccounts", {
"organizationId": args.organizationId,
"vppAccountId": args.vppAccountId,
}, opts);
}
exports.getSmVppAccounts = getSmVppAccounts;
/**
* ## Example Usage
*/
function getSmVppAccountsOutput(args, opts) {
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("meraki:organizations/getSmVppAccounts:getSmVppAccounts", {
"organizationId": args.organizationId,
"vppAccountId": args.vppAccountId,
}, opts);
}
exports.getSmVppAccountsOutput = getSmVppAccountsOutput;
//# sourceMappingURL=getSmVppAccounts.js.map