UNPKG

@pulumiverse/scaleway

Version:

A Pulumi package for creating and managing Scaleway cloud resources.

51 lines (50 loc) 1.51 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Gets information about your Consumptions. */ export declare function getConsumptions(args?: GetConsumptionsArgs, opts?: pulumi.InvokeOptions): Promise<GetConsumptionsResult>; /** * A collection of arguments for invoking getConsumptions. */ export interface GetConsumptionsArgs { /** * `projectId`) The ID of the project the consumption list is associated with. */ projectId?: string; } /** * A collection of values returned by getConsumptions. */ export interface GetConsumptionsResult { /** * List of found consumptions */ readonly consumptions: outputs.billing.GetConsumptionsConsumption[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly organizationId: string; /** * The project ID of the consumption. */ readonly projectId: string; /** * The last consumption update date. */ readonly updatedAt: string; } /** * Gets information about your Consumptions. */ export declare function getConsumptionsOutput(args?: GetConsumptionsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetConsumptionsResult>; /** * A collection of arguments for invoking getConsumptions. */ export interface GetConsumptionsOutputArgs { /** * `projectId`) The ID of the project the consumption list is associated with. */ projectId?: pulumi.Input<string>; }