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 Distributed Databases in Oracle Cloud Infrastructure Distributed Database service. * * List of Globally distributed databases. */ export declare function getDistributedDatabaseDistributedDatabases(args: GetDistributedDatabaseDistributedDatabasesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDistributedDatabaseDistributedDatabases. */ export interface GetDistributedDatabaseDistributedDatabasesArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: string; /** * A filter to return only resources their dbDeploymentType matches the given dbDeploymentType. */ dbDeploymentType?: string; /** * A filter to return only Globally distributed databases that match the entire name given. The match is not case sensitive. */ displayName?: string; filters?: inputs.oci.GetDistributedDatabaseDistributedDatabasesFilter[]; /** * Comma separated names of argument corresponding to which metadata need to be retrived. */ metadata?: string; /** * A filter to return only resources that are associated with the given privateEndpointId. */ privateEndpointId?: string; /** * A filter to return only resources their lifecycleState matches the given lifecycleState. */ state?: string; } /** * A collection of values returned by getDistributedDatabaseDistributedDatabases. */ export interface GetDistributedDatabaseDistributedDatabasesResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Globally distributed database compartment. */ readonly compartmentId: string; /** * The distributed database deployment type. */ readonly dbDeploymentType?: string; /** * The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique. */ readonly displayName?: string; /** * The list of distributed_database_collection. */ readonly distributedDatabaseCollections: outputs.oci.GetDistributedDatabaseDistributedDatabasesDistributedDatabaseCollection[]; readonly filters?: outputs.oci.GetDistributedDatabaseDistributedDatabasesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Additional metadata related to Globally distributed database resources. */ readonly metadata?: string; readonly privateEndpointId?: string; /** * Lifecycle states for the Globally distributed database. */ readonly state?: string; } /** * This data source provides the list of Distributed Databases in Oracle Cloud Infrastructure Distributed Database service. * * List of Globally distributed databases. */ export declare function getDistributedDatabaseDistributedDatabasesOutput(args: GetDistributedDatabaseDistributedDatabasesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDistributedDatabaseDistributedDatabases. */ export interface GetDistributedDatabaseDistributedDatabasesOutputArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: pulumi.Input; /** * A filter to return only resources their dbDeploymentType matches the given dbDeploymentType. */ dbDeploymentType?: pulumi.Input; /** * A filter to return only Globally distributed databases that match the entire name given. The match is not case sensitive. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * Comma separated names of argument corresponding to which metadata need to be retrived. */ metadata?: pulumi.Input; /** * A filter to return only resources that are associated with the given privateEndpointId. */ privateEndpointId?: pulumi.Input; /** * A filter to return only resources their lifecycleState matches the given lifecycleState. */ state?: pulumi.Input; } //# sourceMappingURL=getDistributedDatabaseDistributedDatabases.d.ts.map