UNPKG

@pulumiverse/fortios

Version:

A Pulumi package for creating and managing Fortios resources. Based on terraform-provider-fortios: version v1.16.0

26 lines 974 B
"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.getBfdOutput = exports.getBfd = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Use this data source to get information on fortios router bfd */ function getBfd(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("fortios:router/getBfd:getBfd", { "vdomparam": args.vdomparam, }, opts); } exports.getBfd = getBfd; /** * Use this data source to get information on fortios router bfd */ function getBfdOutput(args, opts) { return pulumi.output(args).apply((a) => getBfd(a, opts)); } exports.getBfdOutput = getBfdOutput; //# sourceMappingURL=getBfd.js.map