import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Data Science Private Endpoint resource in Oracle Cloud Infrastructure Data Science service. * * Retrieves an private endpoint using a `privateEndpointId`. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDataSciencePrivateEndpoint = oci.datascience.getPrivateEndpoint({ * dataSciencePrivateEndpointId: testDataSciencePrivateEndpointOciDatasciencePrivateEndpoint.id, * }); * ``` */ export declare function getPrivateEndpoint(args: GetPrivateEndpointArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getPrivateEndpoint. */ export interface GetPrivateEndpointArgs { /** * The unique ID for a Data Science private endpoint. */ dataSciencePrivateEndpointId: string; } /** * A collection of values returned by getPrivateEndpoint. */ export interface GetPrivateEndpointResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment where you want to create private endpoint. */ readonly compartmentId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the user that created the private endpoint. */ readonly createdBy: string; readonly dataSciencePrivateEndpointId: string; /** * Data Science resource type. */ readonly dataScienceResourceType: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * A user friendly description. Avoid entering confidential information. */ readonly description: string; /** * A user friendly name. It doesn't have to be unique. Avoid entering confidential information. */ readonly displayName: string; /** * Accesing the Data Science resource using FQDN. */ readonly fqdn: string; /** * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The OCID of a private endpoint. */ readonly id: string; /** * Details of the state of Data Science private endpoint. */ readonly lifecycleDetails: string; /** * An array of network security group OCIDs. */ readonly nsgIds: string[]; /** * State of the Data Science private endpoint. */ readonly state: string; readonly subDomain: string; /** * The OCID of a subnet. */ readonly subnetId: string; /** * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The date and time that the Data Science private endpoint was created, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2018-04-03T21:10:29.600Z` */ readonly timeCreated: string; /** * The date and time that the Data Science private endpoint was updated expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2018-04-03T21:10:29.600Z` */ readonly timeUpdated: string; } /** * This data source provides details about a specific Data Science Private Endpoint resource in Oracle Cloud Infrastructure Data Science service. * * Retrieves an private endpoint using a `privateEndpointId`. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDataSciencePrivateEndpoint = oci.datascience.getPrivateEndpoint({ * dataSciencePrivateEndpointId: testDataSciencePrivateEndpointOciDatasciencePrivateEndpoint.id, * }); * ``` */ export declare function getPrivateEndpointOutput(args: GetPrivateEndpointOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getPrivateEndpoint. */ export interface GetPrivateEndpointOutputArgs { /** * The unique ID for a Data Science private endpoint. */ dataSciencePrivateEndpointId: pulumi.Input; } //# sourceMappingURL=getPrivateEndpoint.d.ts.map