UNPKG

@pulumi/f5bigip

Version:

A Pulumi package for creating and managing F5 BigIP resources.

76 lines 2.98 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.getGceServiceDiscoveryOutput = exports.getGceServiceDiscovery = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Use this data source (`f5bigip.fast.getGceServiceDiscovery`) to get the GCE Service discovery config to be used for `http`/`https` app deployment in FAST. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as f5bigip from "@pulumi/f5bigip"; * * const TC3 = f5bigip.fast.getGceServiceDiscovery({ * tagKey: "testgcetag", * tagValue: "testgcevalue", * region: "testgceregion", * }); * ``` */ function getGceServiceDiscovery(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("f5bigip:fast/getGceServiceDiscovery:getGceServiceDiscovery", { "addressRealm": args.addressRealm, "credentialUpdate": args.credentialUpdate, "encodedCredentials": args.encodedCredentials, "minimumMonitors": args.minimumMonitors, "port": args.port, "projectId": args.projectId, "region": args.region, "tagKey": args.tagKey, "tagValue": args.tagValue, "type": args.type, "undetectableAction": args.undetectableAction, "updateInterval": args.updateInterval, }, opts); } exports.getGceServiceDiscovery = getGceServiceDiscovery; /** * Use this data source (`f5bigip.fast.getGceServiceDiscovery`) to get the GCE Service discovery config to be used for `http`/`https` app deployment in FAST. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as f5bigip from "@pulumi/f5bigip"; * * const TC3 = f5bigip.fast.getGceServiceDiscovery({ * tagKey: "testgcetag", * tagValue: "testgcevalue", * region: "testgceregion", * }); * ``` */ function getGceServiceDiscoveryOutput(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("f5bigip:fast/getGceServiceDiscovery:getGceServiceDiscovery", { "addressRealm": args.addressRealm, "credentialUpdate": args.credentialUpdate, "encodedCredentials": args.encodedCredentials, "minimumMonitors": args.minimumMonitors, "port": args.port, "projectId": args.projectId, "region": args.region, "tagKey": args.tagKey, "tagValue": args.tagValue, "type": args.type, "undetectableAction": args.undetectableAction, "updateInterval": args.updateInterval, }, opts); } exports.getGceServiceDiscoveryOutput = getGceServiceDiscoveryOutput; //# sourceMappingURL=getGceServiceDiscovery.js.map