UNPKG

@pulumiverse/scaleway

Version:

A Pulumi package for creating and managing Scaleway cloud resources.

34 lines 1.36 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.getInvoicesOutput = exports.getInvoices = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Gets information about your Scaleway invoices. */ function getInvoices(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("scaleway:billing/getInvoices:getInvoices", { "invoiceType": args.invoiceType, "startedAfter": args.startedAfter, "startedBefore": args.startedBefore, }, opts); } exports.getInvoices = getInvoices; /** * Gets information about your Scaleway invoices. */ function getInvoicesOutput(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("scaleway:billing/getInvoices:getInvoices", { "invoiceType": args.invoiceType, "startedAfter": args.startedAfter, "startedBefore": args.startedBefore, }, opts); } exports.getInvoicesOutput = getInvoicesOutput; //# sourceMappingURL=getInvoices.js.map