UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

52 lines 1.63 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.getNsQuotasOutput = exports.getNsQuotas = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Use this data source to query detailed information of cloudfs ns quotas * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@pulumi/volcengine"; * * const default = volcengine.cloudfs.getNsQuotas({ * fsNames: [ * "tffile", * "tftest2", * ], * }); * ``` */ function getNsQuotas(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("volcengine:cloudfs/getNsQuotas:getNsQuotas", { "fsNames": args.fsNames, "outputFile": args.outputFile, }, opts); } exports.getNsQuotas = getNsQuotas; /** * Use this data source to query detailed information of cloudfs ns quotas * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@pulumi/volcengine"; * * const default = volcengine.cloudfs.getNsQuotas({ * fsNames: [ * "tffile", * "tftest2", * ], * }); * ``` */ function getNsQuotasOutput(args, opts) { return pulumi.output(args).apply((a) => getNsQuotas(a, opts)); } exports.getNsQuotasOutput = getNsQuotasOutput; //# sourceMappingURL=getNsQuotas.js.map