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 Database Private Endpoints in Oracle Cloud Infrastructure Distributed Database service. * * List of DistributedDatabasePrivateEndpoints. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDistributedDatabasePrivateEndpoints = oci.oci.getDistributedDatabaseDistributedDatabasePrivateEndpoints({ * compartmentId: compartmentId, * displayName: distributedDatabasePrivateEndpointDisplayName, * state: distributedDatabasePrivateEndpointState, * }); * ``` */ export declare function getDistributedDatabaseDistributedDatabasePrivateEndpoints(args: GetDistributedDatabaseDistributedDatabasePrivateEndpointsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDistributedDatabaseDistributedDatabasePrivateEndpoints. */ export interface GetDistributedDatabaseDistributedDatabasePrivateEndpointsArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: string; /** * A filter to return only private endpoint that match the entire name given. The match is not case sensitive. */ displayName?: string; filters?: inputs.oci.GetDistributedDatabaseDistributedDatabasePrivateEndpointsFilter[]; /** * A filter to return only resources their lifecycleState matches the given lifecycleState. */ state?: string; } /** * A collection of values returned by getDistributedDatabaseDistributedDatabasePrivateEndpoints. */ export interface GetDistributedDatabaseDistributedDatabasePrivateEndpointsResult { /** * Identifier of the compartment in which private endpoint exists. */ readonly compartmentId: string; /** * DistributedDatabasePrivateEndpoint display name. */ readonly displayName?: string; /** * The list of distributed_database_private_endpoint_collection. */ readonly distributedDatabasePrivateEndpointCollections: outputs.oci.GetDistributedDatabaseDistributedDatabasePrivateEndpointsDistributedDatabasePrivateEndpointCollection[]; readonly filters?: outputs.oci.GetDistributedDatabaseDistributedDatabasePrivateEndpointsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Lifecycle states for private endpoint. */ readonly state?: string; } /** * This data source provides the list of Distributed Database Private Endpoints in Oracle Cloud Infrastructure Distributed Database service. * * List of DistributedDatabasePrivateEndpoints. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDistributedDatabasePrivateEndpoints = oci.oci.getDistributedDatabaseDistributedDatabasePrivateEndpoints({ * compartmentId: compartmentId, * displayName: distributedDatabasePrivateEndpointDisplayName, * state: distributedDatabasePrivateEndpointState, * }); * ``` */ export declare function getDistributedDatabaseDistributedDatabasePrivateEndpointsOutput(args: GetDistributedDatabaseDistributedDatabasePrivateEndpointsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDistributedDatabaseDistributedDatabasePrivateEndpoints. */ export interface GetDistributedDatabaseDistributedDatabasePrivateEndpointsOutputArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: pulumi.Input; /** * A filter to return only private endpoint 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 their lifecycleState matches the given lifecycleState. */ state?: pulumi.Input; } //# sourceMappingURL=getDistributedDatabaseDistributedDatabasePrivateEndpoints.d.ts.map