import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Catalog Private Endpoint resource in Oracle Cloud Infrastructure Data Catalog service. * * Gets a specific private reverse connection by identifier. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCatalogPrivateEndpoint = oci.datacatalog.getCatalogPrivateEndpoint({ * catalogPrivateEndpointId: testCatalogPrivateEndpointOciDatacatalogCatalogPrivateEndpoint.id, * }); * ``` */ export declare function getCatalogPrivateEndpoint(args: GetCatalogPrivateEndpointArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCatalogPrivateEndpoint. */ export interface GetCatalogPrivateEndpointArgs { /** * Unique private reverse connection identifier. */ catalogPrivateEndpointId: string; } /** * A collection of values returned by getCatalogPrivateEndpoint. */ export interface GetCatalogPrivateEndpointResult { /** * The list of catalogs using the private reverse connection endpoint */ readonly attachedCatalogs: string[]; readonly catalogPrivateEndpointId: string; /** * Identifier of the compartment this private endpoint belongs to */ readonly compartmentId: string; /** * Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{"foo-namespace.bar-key": "value"}` */ readonly definedTags: { [key: string]: string; }; /** * Mutable name of the Private Reverse Connection Endpoint */ readonly displayName: string; /** * List of DNS zones to be used by the data assets to be harvested. Example: custpvtsubnet.oraclevcn.com for data asset: db.custpvtsubnet.oraclevcn.com */ readonly dnsZones: string[]; /** * Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}` */ readonly freeformTags: { [key: string]: string; }; /** * Unique identifier that is immutable */ readonly id: string; /** * A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'Failed' state. */ readonly lifecycleDetails: string; /** * Locks associated with this resource. */ readonly locks: outputs.DataCatalog.GetCatalogPrivateEndpointLock[]; /** * Security attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "enforce"}}}` */ readonly securityAttributes: { [key: string]: string; }; /** * The current state of the private endpoint resource. */ readonly state: string; /** * Subnet Identifier */ readonly subnetId: string; /** * System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The time the private endpoint was created. An [RFC3339](https://tools.ietf.org/html/rfc3339) formatted datetime string. */ readonly timeCreated: string; /** * The time the private endpoint was updated. An [RFC3339](https://tools.ietf.org/html/rfc3339) formatted datetime string. */ readonly timeUpdated: string; } /** * This data source provides details about a specific Catalog Private Endpoint resource in Oracle Cloud Infrastructure Data Catalog service. * * Gets a specific private reverse connection by identifier. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCatalogPrivateEndpoint = oci.datacatalog.getCatalogPrivateEndpoint({ * catalogPrivateEndpointId: testCatalogPrivateEndpointOciDatacatalogCatalogPrivateEndpoint.id, * }); * ``` */ export declare function getCatalogPrivateEndpointOutput(args: GetCatalogPrivateEndpointOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCatalogPrivateEndpoint. */ export interface GetCatalogPrivateEndpointOutputArgs { /** * Unique private reverse connection identifier. */ catalogPrivateEndpointId: pulumi.Input; } //# sourceMappingURL=getCatalogPrivateEndpoint.d.ts.map