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 External Container Databases in Oracle Cloud Infrastructure Database service. * * Gets a list of the external container databases in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExternalContainerDatabases = oci.database.getExternalContainerDatabases({ * compartmentId: compartmentId, * displayName: externalContainerDatabaseDisplayName, * state: externalContainerDatabaseState, * }); * ``` */ export declare function getExternalContainerDatabases(args: GetExternalContainerDatabasesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getExternalContainerDatabases. */ export interface GetExternalContainerDatabasesArgs { /** * The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ 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.Database.GetExternalContainerDatabasesFilter[]; /** * A filter to return only resources that match the specified lifecycle state. */ state?: string; } /** * A collection of values returned by getExternalContainerDatabases. */ export interface GetExternalContainerDatabasesResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId: string; /** * The user-friendly name for the external database. The name does not have to be unique. */ readonly displayName?: string; /** * The list of external_container_databases. */ readonly externalContainerDatabases: outputs.Database.GetExternalContainerDatabasesExternalContainerDatabase[]; readonly filters?: outputs.Database.GetExternalContainerDatabasesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The current state of the Oracle Cloud Infrastructure external database resource. */ readonly state?: string; } /** * This data source provides the list of External Container Databases in Oracle Cloud Infrastructure Database service. * * Gets a list of the external container databases in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExternalContainerDatabases = oci.database.getExternalContainerDatabases({ * compartmentId: compartmentId, * displayName: externalContainerDatabaseDisplayName, * state: externalContainerDatabaseState, * }); * ``` */ export declare function getExternalContainerDatabasesOutput(args: GetExternalContainerDatabasesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getExternalContainerDatabases. */ export interface GetExternalContainerDatabasesOutputArgs { /** * The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ 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. */ state?: pulumi.Input; } //# sourceMappingURL=getExternalContainerDatabases.d.ts.map