@pulumi/f5bigip
Version:
A Pulumi package for creating and managing F5 BigIP resources.
38 lines • 1.48 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.getNodeOutput = exports.getNode = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Use this data source (`f5bigip.ltm.Node`) to get the ltm node details available on BIG-IP
*/
function getNode(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("f5bigip:ltm/getNode:getNode", {
"address": args.address,
"description": args.description,
"fqdn": args.fqdn,
"fullPath": args.fullPath,
"name": args.name,
"partition": args.partition,
}, opts);
}
exports.getNode = getNode;
/**
* Use this data source (`f5bigip.ltm.Node`) to get the ltm node details available on BIG-IP
*/
function getNodeOutput(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("f5bigip:ltm/getNode:getNode", {
"address": args.address,
"description": args.description,
"fqdn": args.fqdn,
"fullPath": args.fullPath,
"name": args.name,
"partition": args.partition,
}, opts);
}
exports.getNodeOutput = getNodeOutput;
//# sourceMappingURL=getNode.js.map