@lbrlabs/pulumi-scaleway
Version:
A Pulumi package for creating and managing scaleway cloud resources.
17 lines (16 loc) • 697 B
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
export declare function getBillingConsumptions(opts?: pulumi.InvokeOptions): Promise<GetBillingConsumptionsResult>;
/**
* A collection of values returned by getBillingConsumptions.
*/
export interface GetBillingConsumptionsResult {
readonly consumptions: outputs.GetBillingConsumptionsConsumption[];
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly organizationId: string;
readonly updatedAt: string;
}
export declare function getBillingConsumptionsOutput(opts?: pulumi.InvokeOptions): pulumi.Output<GetBillingConsumptionsResult>;