UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

52 lines 1.87 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.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 * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@pulumi/volcengine"; * * const foo = volcengine.ebs.getMaxExtraPerformances({ * size: 60, * volumeType: "TSSD_TL0", * }); * ``` */ 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 * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@pulumi/volcengine"; * * const foo = volcengine.ebs.getMaxExtraPerformances({ * size: 60, * volumeType: "TSSD_TL0", * }); * ``` */ function getMaxExtraPerformancesOutput(args, opts) { return pulumi.output(args).apply((a) => getMaxExtraPerformances(a, opts)); } exports.getMaxExtraPerformancesOutput = getMaxExtraPerformancesOutput; //# sourceMappingURL=getMaxExtraPerformances.js.map