@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
30 lines • 1.36 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.getMaxExtraPerformancesOutput = exports.getMaxExtraPerformances = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Use this data source to query detailed information of ebs max extra performances
*/
function getMaxExtraPerformances(args, opts) {
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("volcengine:ebs/getMaxExtraPerformances:getMaxExtraPerformances", {
"nameRegex": args.nameRegex,
"outputFile": args.outputFile,
"size": args.size,
"volumeId": args.volumeId,
"volumeType": args.volumeType,
}, opts);
}
exports.getMaxExtraPerformances = getMaxExtraPerformances;
/**
* Use this data source to query detailed information of ebs max extra performances
*/
function getMaxExtraPerformancesOutput(args, opts) {
return pulumi.output(args).apply((a) => getMaxExtraPerformances(a, opts));
}
exports.getMaxExtraPerformancesOutput = getMaxExtraPerformancesOutput;
//# sourceMappingURL=getMaxExtraPerformances.js.map