@pulumi/linode
Version:
A Pulumi package for creating and managing linode cloud resources.
38 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.getNetworkTransferPricesOutput = exports.getNetworkTransferPrices = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("./utilities");
/**
* Provides information about Linode Network Transfer Prices that match a set of filters.
* For more information, see the [Linode APIv4 docs](https://techdocs.akamai.com/linode-api/reference/get-network-transfer-prices).
*/
function getNetworkTransferPrices(args, opts) {
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("linode:index/getNetworkTransferPrices:getNetworkTransferPrices", {
"filters": args.filters,
"order": args.order,
"orderBy": args.orderBy,
"types": args.types,
}, opts);
}
exports.getNetworkTransferPrices = getNetworkTransferPrices;
/**
* Provides information about Linode Network Transfer Prices that match a set of filters.
* For more information, see the [Linode APIv4 docs](https://techdocs.akamai.com/linode-api/reference/get-network-transfer-prices).
*/
function getNetworkTransferPricesOutput(args, opts) {
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("linode:index/getNetworkTransferPrices:getNetworkTransferPrices", {
"filters": args.filters,
"order": args.order,
"orderBy": args.orderBy,
"types": args.types,
}, opts);
}
exports.getNetworkTransferPricesOutput = getNetworkTransferPricesOutput;
//# sourceMappingURL=getNetworkTransferPrices.js.map
;