@lbrlabs/pulumi-dynatrace
Version:
A Pulumi package for creating and managing Dynatrace cloud resources.
28 lines • 1.3 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.getSyntheticLocationsOutput = exports.getSyntheticLocations = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("./utilities");
/**
* The synthetic locations data source allows the location IDs to be retrieved based off of provided parameters.
*/
function getSyntheticLocations(args, opts) {
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("dynatrace:index/getSyntheticLocations:getSyntheticLocations", {
"id": args.id,
"locations": args.locations,
"name": args.name,
}, opts);
}
exports.getSyntheticLocations = getSyntheticLocations;
/**
* The synthetic locations data source allows the location IDs to be retrieved based off of provided parameters.
*/
function getSyntheticLocationsOutput(args, opts) {
return pulumi.output(args).apply((a) => getSyntheticLocations(a, opts));
}
exports.getSyntheticLocationsOutput = getSyntheticLocationsOutput;
//# sourceMappingURL=getSyntheticLocations.js.map