import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Custom Tables in Oracle Cloud Infrastructure Metering Computation service. * * Returns the saved custom table list. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCustomTables = oci.meteringcomputation.getCustomTables({ * compartmentId: compartmentId, * savedReportId: testSavedReport.id, * }); * ``` */ export declare function getCustomTables(args: GetCustomTablesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCustomTables. */ export interface GetCustomTablesArgs { /** * The compartment ID in which to list resources. */ compartmentId: string; filters?: inputs.MeteringComputation.GetCustomTablesFilter[]; /** * The saved report ID in which to list resources. */ savedReportId: string; } /** * A collection of values returned by getCustomTables. */ export interface GetCustomTablesResult { /** * The custom table compartment OCID. */ readonly compartmentId: string; /** * The list of custom_table_collection. */ readonly customTableCollections: outputs.MeteringComputation.GetCustomTablesCustomTableCollection[]; readonly filters?: outputs.MeteringComputation.GetCustomTablesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The custom table associated saved report OCID. */ readonly savedReportId: string; } /** * This data source provides the list of Custom Tables in Oracle Cloud Infrastructure Metering Computation service. * * Returns the saved custom table list. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCustomTables = oci.meteringcomputation.getCustomTables({ * compartmentId: compartmentId, * savedReportId: testSavedReport.id, * }); * ``` */ export declare function getCustomTablesOutput(args: GetCustomTablesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCustomTables. */ export interface GetCustomTablesOutputArgs { /** * The compartment ID in which to list resources. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The saved report ID in which to list resources. */ savedReportId: pulumi.Input; } //# sourceMappingURL=getCustomTables.d.ts.map