import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Operations Insights Private Endpoint resource in Oracle Cloud Infrastructure Opsi service. * * Gets the details of the specified private endpoint. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOperationsInsightsPrivateEndpoint = oci.opsi.getOperationsInsightsPrivateEndpoint({ * operationsInsightsPrivateEndpointId: testOperationsInsightsPrivateEndpointOciOpsiOperationsInsightsPrivateEndpoint.id, * }); * ``` */ export declare function getOperationsInsightsPrivateEndpoint(args: GetOperationsInsightsPrivateEndpointArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getOperationsInsightsPrivateEndpoint. */ export interface GetOperationsInsightsPrivateEndpointArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Operation Insights private endpoint. */ operationsInsightsPrivateEndpointId: string; } /** * A collection of values returned by getOperationsInsightsPrivateEndpoint. */ export interface GetOperationsInsightsPrivateEndpointResult { /** * The compartment OCID of the Private service accessed database. */ readonly compartmentId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ readonly definedTags: { [key: string]: string; }; /** * The description of the private endpoint. */ readonly description: string; /** * The display name of the private endpoint. */ readonly displayName: 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; }; /** * The OCID of the Private service accessed database. */ readonly id: string; /** * The flag is to identify if private endpoint is used for rac database or not. This flag is deprecated and no longer is used. */ readonly isUsedForRacDbs: boolean; /** * 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; /** * The OCIDs of the network security groups that the private endpoint belongs to. */ readonly nsgIds: string[]; readonly operationsInsightsPrivateEndpointId: string; /** * A message describing the status of the private endpoint connection of this resource. For example, it can be used to provide actionable information about the validity of the private endpoint connection. */ readonly privateEndpointStatusDetails: string; /** * The private IP addresses assigned to the private endpoint. All IP addresses will be concatenated if it is RAC DBs. */ 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 state of the private endpoint. */ readonly state: string; /** * The OCID of the subnet. */ readonly subnetId: string; /** * System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The date and time the private endpoint was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). */ readonly timeCreated: string; /** * The OCID of the VCN. */ readonly vcnId: string; } /** * This data source provides details about a specific Operations Insights Private Endpoint resource in Oracle Cloud Infrastructure Opsi service. * * Gets the details of the specified private endpoint. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOperationsInsightsPrivateEndpoint = oci.opsi.getOperationsInsightsPrivateEndpoint({ * operationsInsightsPrivateEndpointId: testOperationsInsightsPrivateEndpointOciOpsiOperationsInsightsPrivateEndpoint.id, * }); * ``` */ export declare function getOperationsInsightsPrivateEndpointOutput(args: GetOperationsInsightsPrivateEndpointOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getOperationsInsightsPrivateEndpoint. */ export interface GetOperationsInsightsPrivateEndpointOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Operation Insights private endpoint. */ operationsInsightsPrivateEndpointId: pulumi.Input; } //# sourceMappingURL=getOperationsInsightsPrivateEndpoint.d.ts.map