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 Catalogs in Oracle Cloud Infrastructure Data Catalog service. * * Returns a list of all the data catalogs in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCatalogs = oci.datacatalog.getCatalogs({ * compartmentId: compartmentId, * displayName: catalogDisplayName, * state: catalogState, * }); * ``` */ export declare function getCatalogs(args: GetCatalogsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCatalogs. */ export interface GetCatalogsArgs { /** * The OCID of the compartment where you want to list resources. */ compartmentId: string; /** * A filter to return only resources that match the entire display name given. The match is not case sensitive. */ displayName?: string; filters?: inputs.DataCatalog.GetCatalogsFilter[]; /** * A filter to return only resources that match the specified lifecycle state. The value is case insensitive. */ state?: string; } /** * A collection of values returned by getCatalogs. */ export interface GetCatalogsResult { /** * The list of catalogs. */ readonly catalogs: outputs.DataCatalog.GetCatalogsCatalog[]; /** * Compartment identifier. */ readonly compartmentId: string; /** * Data catalog identifier, which can be renamed. */ readonly displayName?: string; readonly filters?: outputs.DataCatalog.GetCatalogsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The current state of the data catalog resource. */ readonly state?: string; } /** * This data source provides the list of Catalogs in Oracle Cloud Infrastructure Data Catalog service. * * Returns a list of all the data catalogs in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCatalogs = oci.datacatalog.getCatalogs({ * compartmentId: compartmentId, * displayName: catalogDisplayName, * state: catalogState, * }); * ``` */ export declare function getCatalogsOutput(args: GetCatalogsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCatalogs. */ export interface GetCatalogsOutputArgs { /** * The OCID of the compartment where you want to list resources. */ compartmentId: pulumi.Input; /** * A filter to return only resources that match the entire display name given. The match is not case sensitive. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return only resources that match the specified lifecycle state. The value is case insensitive. */ state?: pulumi.Input; } //# sourceMappingURL=getCatalogs.d.ts.map