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 Catalog Private Endpoints in Oracle Cloud Infrastructure Data Catalog service. * * Returns a list of all the catalog private endpoints in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCatalogPrivateEndpoints = oci.datacatalog.getCatalogPrivateEndpoints({ * compartmentId: compartmentId, * displayName: catalogPrivateEndpointDisplayName, * state: catalogPrivateEndpointState, * }); * ``` */ export declare function getCatalogPrivateEndpoints(args: GetCatalogPrivateEndpointsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCatalogPrivateEndpoints. */ export interface GetCatalogPrivateEndpointsArgs { /** * The OCID of the compartment where you want to list resources. */ 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.DataCatalog.GetCatalogPrivateEndpointsFilter[]; /** * A filter to return only resources that match the specified lifecycle state. The value is case insensitive. */ state?: string; } /** * A collection of values returned by getCatalogPrivateEndpoints. */ export interface GetCatalogPrivateEndpointsResult { /** * The list of catalog_private_endpoints. */ readonly catalogPrivateEndpoints: outputs.DataCatalog.GetCatalogPrivateEndpointsCatalogPrivateEndpoint[]; /** * Identifier of the compartment this private endpoint belongs to */ readonly compartmentId: string; /** * Mutable name of the Private Reverse Connection Endpoint */ readonly displayName?: string; readonly filters?: outputs.DataCatalog.GetCatalogPrivateEndpointsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The current state of the private endpoint resource. */ readonly state?: string; } /** * This data source provides the list of Catalog Private Endpoints in Oracle Cloud Infrastructure Data Catalog service. * * Returns a list of all the catalog private endpoints in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCatalogPrivateEndpoints = oci.datacatalog.getCatalogPrivateEndpoints({ * compartmentId: compartmentId, * displayName: catalogPrivateEndpointDisplayName, * state: catalogPrivateEndpointState, * }); * ``` */ export declare function getCatalogPrivateEndpointsOutput(args: GetCatalogPrivateEndpointsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCatalogPrivateEndpoints. */ export interface GetCatalogPrivateEndpointsOutputArgs { /** * The OCID of the compartment where you want to list resources. */ 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. The value is case insensitive. */ state?: pulumi.Input; } //# sourceMappingURL=getCatalogPrivateEndpoints.d.ts.map