UNPKG

@pulumiverse/fortios

Version:

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

26 lines 1.24 kB
"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.getInternetservicecustomOutput = exports.getInternetservicecustom = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Use this data source to get information on an fortios firewall internetservicecustom */ function getInternetservicecustom(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("fortios:firewall/getInternetservicecustom:getInternetservicecustom", { "name": args.name, "vdomparam": args.vdomparam, }, opts); } exports.getInternetservicecustom = getInternetservicecustom; /** * Use this data source to get information on an fortios firewall internetservicecustom */ function getInternetservicecustomOutput(args, opts) { return pulumi.output(args).apply((a) => getInternetservicecustom(a, opts)); } exports.getInternetservicecustomOutput = getInternetservicecustomOutput; //# sourceMappingURL=getInternetservicecustom.js.map