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