@pulumi/meraki
Version:
A Pulumi package for creating and managing Cisco Meraki resources. Based on terraform-provider-meraki: version v0.2.0
48 lines • 1.85 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.getLicensesOverviewOutput = exports.getLicensesOverview = 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.organizations.getLicensesOverview({
* organizationId: "string",
* });
* export const merakiOrganizationsLicensesOverviewExample = example.then(example => example.item);
* ```
*/
function getLicensesOverview(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("meraki:organizations/getLicensesOverview:getLicensesOverview", {
"organizationId": args.organizationId,
}, opts);
}
exports.getLicensesOverview = getLicensesOverview;
/**
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as meraki from "@pulumi/meraki";
*
* const example = meraki.organizations.getLicensesOverview({
* organizationId: "string",
* });
* export const merakiOrganizationsLicensesOverviewExample = example.then(example => example.item);
* ```
*/
function getLicensesOverviewOutput(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("meraki:organizations/getLicensesOverview:getLicensesOverview", {
"organizationId": args.organizationId,
}, opts);
}
exports.getLicensesOverviewOutput = getLicensesOverviewOutput;
//# sourceMappingURL=getLicensesOverview.js.map