import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Db Management Private Endpoint resource in Oracle Cloud Infrastructure Database Management service. * * Gets the details of a specific Database Management private endpoint. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDbManagementPrivateEndpoint = oci.databasemanagement.getDbManagementPrivateEndpoint({ * dbManagementPrivateEndpointId: testDbManagementPrivateEndpointOciDatabaseManagementDbManagementPrivateEndpoint.id, * }); * ``` */ export declare function getDbManagementPrivateEndpoint(args: GetDbManagementPrivateEndpointArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDbManagementPrivateEndpoint. */ export interface GetDbManagementPrivateEndpointArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database Management private endpoint. */ dbManagementPrivateEndpointId: string; } /** * A collection of values returned by getDbManagementPrivateEndpoint. */ export interface GetDbManagementPrivateEndpointResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId: string; readonly dbManagementPrivateEndpointId: string; /** * Defined 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). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * The description of the Database Management private endpoint. */ readonly description: string; /** * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database Management private endpoint. */ readonly id: string; /** * Specifies whether the Database Management private endpoint can be used for Oracle Databases in a cluster. */ readonly isCluster: boolean; /** * Specifies whether the Database Management private endpoint has DNS proxy server enabled to resolve private host name. */ readonly isDnsResolutionEnabled: boolean; /** * The display name of the Database Management private endpoint. */ readonly name: string; /** * The OCIDs of the Network Security Groups to which the Database Management private endpoint belongs. */ readonly nsgIds: string[]; /** * The IP addresses assigned to the Database Management private endpoint. */ readonly privateIp: string; /** * 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 lifecycle state of the Database Management private endpoint. */ readonly state: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet. */ 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 date and time the Database Managament private endpoint was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). */ readonly timeCreated: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VCN. */ readonly vcnId: string; } /** * This data source provides details about a specific Db Management Private Endpoint resource in Oracle Cloud Infrastructure Database Management service. * * Gets the details of a specific Database Management private endpoint. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDbManagementPrivateEndpoint = oci.databasemanagement.getDbManagementPrivateEndpoint({ * dbManagementPrivateEndpointId: testDbManagementPrivateEndpointOciDatabaseManagementDbManagementPrivateEndpoint.id, * }); * ``` */ export declare function getDbManagementPrivateEndpointOutput(args: GetDbManagementPrivateEndpointOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDbManagementPrivateEndpoint. */ export interface GetDbManagementPrivateEndpointOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database Management private endpoint. */ dbManagementPrivateEndpointId: pulumi.Input; } //# sourceMappingURL=getDbManagementPrivateEndpoint.d.ts.map