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 Non Container Databases in Oracle Cloud Infrastructure Database service. * * Gets a list of the ExternalNonContainerDatabases in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExternalNonContainerDatabases = oci.database.getExternalNonContainerDatabases({ * compartmentId: compartmentId, * displayName: externalNonContainerDatabaseDisplayName, * state: externalNonContainerDatabaseState, * }); * ``` */ export declare function getExternalNonContainerDatabases(args: GetExternalNonContainerDatabasesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getExternalNonContainerDatabases. */ export interface GetExternalNonContainerDatabasesArgs { /** * 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.GetExternalNonContainerDatabasesFilter[]; /** * A filter to return only resources that match the specified lifecycle state. */ state?: string; } /** * A collection of values returned by getExternalNonContainerDatabases. */ export interface GetExternalNonContainerDatabasesResult { /** * 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_non_container_databases. */ readonly externalNonContainerDatabases: outputs.Database.GetExternalNonContainerDatabasesExternalNonContainerDatabase[]; readonly filters?: outputs.Database.GetExternalNonContainerDatabasesFilter[]; /** * 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 Non Container Databases in Oracle Cloud Infrastructure Database service. * * Gets a list of the ExternalNonContainerDatabases in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExternalNonContainerDatabases = oci.database.getExternalNonContainerDatabases({ * compartmentId: compartmentId, * displayName: externalNonContainerDatabaseDisplayName, * state: externalNonContainerDatabaseState, * }); * ``` */ export declare function getExternalNonContainerDatabasesOutput(args: GetExternalNonContainerDatabasesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getExternalNonContainerDatabases. */ export interface GetExternalNonContainerDatabasesOutputArgs { /** * 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=getExternalNonContainerDatabases.d.ts.map