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 Autonomous Databases in Oracle Cloud Infrastructure Distributed Database service. * * List of Globally distributed autonomous databases. * * ## Example Usage */ export declare function getDistributedDatabaseDistributedAutonomousDatabases(args: GetDistributedDatabaseDistributedAutonomousDatabasesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDistributedDatabaseDistributedAutonomousDatabases. */ export interface GetDistributedDatabaseDistributedAutonomousDatabasesArgs { /** * 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 autonomous databases that match the entire name given. The match is not case sensitive. */ displayName?: string; filters?: inputs.oci.GetDistributedDatabaseDistributedAutonomousDatabasesFilter[]; /** * 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 getDistributedDatabaseDistributedAutonomousDatabases. */ export interface GetDistributedDatabaseDistributedAutonomousDatabasesResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Globally distributed autonomous database compartment. */ readonly compartmentId: string; /** * The distributed autonomous database deployment type. */ readonly dbDeploymentType?: string; /** * The display name of the Globally distributed autonomous database. */ readonly displayName?: string; /** * The list of distributed_autonomous_database_collection. */ readonly distributedAutonomousDatabaseCollections: outputs.oci.GetDistributedDatabaseDistributedAutonomousDatabasesDistributedAutonomousDatabaseCollection[]; readonly filters?: outputs.oci.GetDistributedDatabaseDistributedAutonomousDatabasesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Additional metadata related to Globally distributed autonomous database resources. */ readonly metadatas: outputs.oci.GetDistributedDatabaseDistributedAutonomousDatabasesMetadata[]; readonly privateEndpointId?: string; /** * Lifecycle states for the Globally distributed autonomous database. */ readonly state?: string; } /** * This data source provides the list of Distributed Autonomous Databases in Oracle Cloud Infrastructure Distributed Database service. * * List of Globally distributed autonomous databases. * * ## Example Usage */ export declare function getDistributedDatabaseDistributedAutonomousDatabasesOutput(args: GetDistributedDatabaseDistributedAutonomousDatabasesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDistributedDatabaseDistributedAutonomousDatabases. */ export interface GetDistributedDatabaseDistributedAutonomousDatabasesOutputArgs { /** * 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 autonomous databases that match the entire name given. The match is not case sensitive. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * 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=getDistributedDatabaseDistributedAutonomousDatabases.d.ts.map