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 Ekms Private Endpoints in Oracle Cloud Infrastructure Kms service. * * Returns a list of all the EKMS private endpoints in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testEkmsPrivateEndpoints = oci.kms.getEkmsPrivateEndpoints({ * compartmentId: compartmentId, * }); * ``` */ export declare function getEkmsPrivateEndpoints(args: GetEkmsPrivateEndpointsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getEkmsPrivateEndpoints. */ export interface GetEkmsPrivateEndpointsArgs { /** * The OCID of the compartment. */ compartmentId: string; filters?: inputs.Kms.GetEkmsPrivateEndpointsFilter[]; } /** * A collection of values returned by getEkmsPrivateEndpoints. */ export interface GetEkmsPrivateEndpointsResult { /** * Identifier of the compartment this EKMS private endpoint belongs to */ readonly compartmentId: string; /** * The list of ekms_private_endpoints. */ readonly ekmsPrivateEndpoints: outputs.Kms.GetEkmsPrivateEndpointsEkmsPrivateEndpoint[]; readonly filters?: outputs.Kms.GetEkmsPrivateEndpointsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * This data source provides the list of Ekms Private Endpoints in Oracle Cloud Infrastructure Kms service. * * Returns a list of all the EKMS private endpoints in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testEkmsPrivateEndpoints = oci.kms.getEkmsPrivateEndpoints({ * compartmentId: compartmentId, * }); * ``` */ export declare function getEkmsPrivateEndpointsOutput(args: GetEkmsPrivateEndpointsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getEkmsPrivateEndpoints. */ export interface GetEkmsPrivateEndpointsOutputArgs { /** * The OCID of the compartment. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getEkmsPrivateEndpoints.d.ts.map