@pulumiverse/dynatrace
Version:
A Pulumi package for creating and managing Dynatrace cloud resources.
38 lines • 1.7 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.getAwsSupportedServicesOutput = exports.getAwsSupportedServices = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("./utilities");
/**
* The AWS supported service data source queries for a full list of all supported services.
*
* ## Example Usage
*
* For an example of this data source, please refer to the Resource Example Usage of the dynatrace.AwsService resource.
*/
function getAwsSupportedServices(args, opts) {
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("dynatrace:index/getAwsSupportedServices:getAwsSupportedServices", {
"excepts": args.excepts,
}, opts);
}
exports.getAwsSupportedServices = getAwsSupportedServices;
/**
* The AWS supported service data source queries for a full list of all supported services.
*
* ## Example Usage
*
* For an example of this data source, please refer to the Resource Example Usage of the dynatrace.AwsService resource.
*/
function getAwsSupportedServicesOutput(args, opts) {
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("dynatrace:index/getAwsSupportedServices:getAwsSupportedServices", {
"excepts": args.excepts,
}, opts);
}
exports.getAwsSupportedServicesOutput = getAwsSupportedServicesOutput;
//# sourceMappingURL=getAwsSupportedServices.js.map