UNPKG

@pulumiverse/scaleway

Version:

A Pulumi package for creating and managing Scaleway cloud resources.

38 lines 2.1 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.getBillingInvoicesOutput = exports.getBillingInvoices = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("./utilities"); /** * Gets information about your Scaleway invoices. */ /** @deprecated scaleway.index/getbillinginvoices.getBillingInvoices has been deprecated in favor of scaleway.billing/getinvoices.getInvoices */ function getBillingInvoices(args, opts) { pulumi.log.warn("getBillingInvoices is deprecated: scaleway.index/getbillinginvoices.getBillingInvoices has been deprecated in favor of scaleway.billing/getinvoices.getInvoices"); args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("scaleway:index/getBillingInvoices:getBillingInvoices", { "invoiceType": args.invoiceType, "startedAfter": args.startedAfter, "startedBefore": args.startedBefore, }, opts); } exports.getBillingInvoices = getBillingInvoices; /** * Gets information about your Scaleway invoices. */ /** @deprecated scaleway.index/getbillinginvoices.getBillingInvoices has been deprecated in favor of scaleway.billing/getinvoices.getInvoices */ function getBillingInvoicesOutput(args, opts) { pulumi.log.warn("getBillingInvoices is deprecated: scaleway.index/getbillinginvoices.getBillingInvoices has been deprecated in favor of scaleway.billing/getinvoices.getInvoices"); args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("scaleway:index/getBillingInvoices:getBillingInvoices", { "invoiceType": args.invoiceType, "startedAfter": args.startedAfter, "startedBefore": args.startedBefore, }, opts); } exports.getBillingInvoicesOutput = getBillingInvoicesOutput; //# sourceMappingURL=getBillingInvoices.js.map