UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

33 lines 1.74 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.maxExtraPerformancesOutput = exports.maxExtraPerformances = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Use this data source to query detailed information of ebs max extra performances */ /** @deprecated volcengine.ebs.MaxExtraPerformances has been deprecated in favor of volcengine.ebs.getMaxExtraPerformances */ function maxExtraPerformances(args, opts) { pulumi.log.warn("maxExtraPerformances is deprecated: volcengine.ebs.MaxExtraPerformances has been deprecated in favor of volcengine.ebs.getMaxExtraPerformances"); args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("volcengine:ebs/maxExtraPerformances:MaxExtraPerformances", { "nameRegex": args.nameRegex, "outputFile": args.outputFile, "size": args.size, "volumeId": args.volumeId, "volumeType": args.volumeType, }, opts); } exports.maxExtraPerformances = maxExtraPerformances; /** * Use this data source to query detailed information of ebs max extra performances */ /** @deprecated volcengine.ebs.MaxExtraPerformances has been deprecated in favor of volcengine.ebs.getMaxExtraPerformances */ function maxExtraPerformancesOutput(args, opts) { return pulumi.output(args).apply((a) => maxExtraPerformances(a, opts)); } exports.maxExtraPerformancesOutput = maxExtraPerformancesOutput; //# sourceMappingURL=maxExtraPerformances.js.map