UNPKG

@pulumiverse/dynatrace

Version:

A Pulumi package for creating and managing Dynatrace cloud resources.

42 lines 1.78 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.getSyntheticLocationOutput = exports.getSyntheticLocation = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("./utilities"); /** * The synthetic location data source allows the location ID to be retrieved based off of provided parameters. */ function getSyntheticLocation(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("dynatrace:index/getSyntheticLocation:getSyntheticLocation", { "cloudPlatform": args.cloudPlatform, "entityId": args.entityId, "ips": args.ips, "name": args.name, "stage": args.stage, "status": args.status, "type": args.type, }, opts); } exports.getSyntheticLocation = getSyntheticLocation; /** * The synthetic location data source allows the location ID to be retrieved based off of provided parameters. */ function getSyntheticLocationOutput(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("dynatrace:index/getSyntheticLocation:getSyntheticLocation", { "cloudPlatform": args.cloudPlatform, "entityId": args.entityId, "ips": args.ips, "name": args.name, "stage": args.stage, "status": args.status, "type": args.type, }, opts); } exports.getSyntheticLocationOutput = getSyntheticLocationOutput; //# sourceMappingURL=getSyntheticLocation.js.map