@pulumiverse/fortios
Version:
A Pulumi package for creating and managing Fortios resources. Based on terraform-provider-fortios: version v1.16.0
26 lines • 1.11 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.getIpv6ehfilterOutput = exports.getIpv6ehfilter = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Use this data source to get information on fortios firewall ipv6ehfilter
*/
function getIpv6ehfilter(args, opts) {
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("fortios:firewall/getIpv6ehfilter:getIpv6ehfilter", {
"vdomparam": args.vdomparam,
}, opts);
}
exports.getIpv6ehfilter = getIpv6ehfilter;
/**
* Use this data source to get information on fortios firewall ipv6ehfilter
*/
function getIpv6ehfilterOutput(args, opts) {
return pulumi.output(args).apply((a) => getIpv6ehfilter(a, opts));
}
exports.getIpv6ehfilterOutput = getIpv6ehfilterOutput;
//# sourceMappingURL=getIpv6ehfilter.js.map
;