@pulumi/sumologic
Version:
A Pulumi package for creating and managing sumologic cloud resources.
40 lines • 1.85 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.getAdminRecommendedFolderOutput = exports.getAdminRecommendedFolder = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("./utilities");
/**
* Provides an easy way to retrieve the Admin Recommended Folder.
*
* In order to use the Admin Recommended Folder, you should configure the provider to run in admin mode.
* Please refer to the Example Usage section below for more details.
*/
function getAdminRecommendedFolder(args, opts) {
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("sumologic:index/getAdminRecommendedFolder:getAdminRecommendedFolder", {
"description": args.description,
"id": args.id,
"name": args.name,
}, opts);
}
exports.getAdminRecommendedFolder = getAdminRecommendedFolder;
/**
* Provides an easy way to retrieve the Admin Recommended Folder.
*
* In order to use the Admin Recommended Folder, you should configure the provider to run in admin mode.
* Please refer to the Example Usage section below for more details.
*/
function getAdminRecommendedFolderOutput(args, opts) {
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("sumologic:index/getAdminRecommendedFolder:getAdminRecommendedFolder", {
"description": args.description,
"id": args.id,
"name": args.name,
}, opts);
}
exports.getAdminRecommendedFolderOutput = getAdminRecommendedFolderOutput;
//# sourceMappingURL=getAdminRecommendedFolder.js.map