@pulumiverse/scaleway
Version:
A Pulumi package for creating and managing Scaleway cloud resources.
55 lines • 1.61 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Gets information about your Consumptions.
*
* ## Example Usage
*/
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.
*
* ## Example Usage
*/
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 | undefined>;
}
//# sourceMappingURL=getConsumptions.d.ts.map