UNPKG

@pulumi/scm

Version:

A Pulumi package for managing resources on Strata Cloud Manager.. Based on terraform-provider-scm: version v0.2.1

36 lines 1.31 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.getLldpProfileOutput = exports.getLldpProfile = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("./utilities"); /** * LldpProfile data source */ function getLldpProfile(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("scm:index/getLldpProfile:getLldpProfile", { "device": args.device, "folder": args.folder, "id": args.id, "name": args.name, "snippet": args.snippet, }, opts); } exports.getLldpProfile = getLldpProfile; /** * LldpProfile data source */ function getLldpProfileOutput(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("scm:index/getLldpProfile:getLldpProfile", { "device": args.device, "folder": args.folder, "id": args.id, "name": args.name, "snippet": args.snippet, }, opts); } exports.getLldpProfileOutput = getLldpProfileOutput; //# sourceMappingURL=getLldpProfile.js.map