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 Tables in Oracle Cloud Infrastructure NoSQL Database service. * * Get a list of tables in a compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testTables = oci.nosql.getTables({ * compartmentId: compartmentId, * name: tableName, * state: tableState, * }); * ``` */ export declare function getTables(args: GetTablesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getTables. */ export interface GetTablesArgs { /** * The ID of a table's compartment. */ compartmentId: string; filters?: inputs.Nosql.GetTablesFilter[]; /** * A shell-globbing-style (*?[]) filter for names. */ name?: string; /** * Filter list by the lifecycle state of the item. */ state?: string; } /** * A collection of values returned by getTables. */ export interface GetTablesResult { /** * Compartment Identifier. */ readonly compartmentId: string; readonly filters?: outputs.Nosql.GetTablesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Human-friendly table name, immutable. */ readonly name?: string; /** * The state of a table. */ readonly state?: string; /** * The list of table_collection. */ readonly tableCollections: outputs.Nosql.GetTablesTableCollection[]; } /** * This data source provides the list of Tables in Oracle Cloud Infrastructure NoSQL Database service. * * Get a list of tables in a compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testTables = oci.nosql.getTables({ * compartmentId: compartmentId, * name: tableName, * state: tableState, * }); * ``` */ export declare function getTablesOutput(args: GetTablesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getTables. */ export interface GetTablesOutputArgs { /** * The ID of a table's compartment. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A shell-globbing-style (*?[]) filter for names. */ name?: pulumi.Input; /** * Filter list by the lifecycle state of the item. */ state?: pulumi.Input; } //# sourceMappingURL=getTables.d.ts.map