import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Generative Ai Private Endpoint resource in Oracle Cloud Infrastructure Generative AI service. * * Retrieves an Generative AI private endpoint using a `privateEndpointId`. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testGenerativeAiPrivateEndpoint = oci.generativeai.getGenerativeAiPrivateEndpoint({ * generativeAiPrivateEndpointId: testGenerativeAiPrivateEndpointOciGenerativeAiGenerativeAiPrivateEndpoint.id, * }); * ``` */ export declare function getGenerativeAiPrivateEndpoint(args: GetGenerativeAiPrivateEndpointArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getGenerativeAiPrivateEndpoint. */ export interface GetGenerativeAiPrivateEndpointArgs { /** * The unique id for a Generative AI private endpoint. */ generativeAiPrivateEndpointId: string; } /** * A collection of values returned by getGenerativeAiPrivateEndpoint. */ export interface GetGenerativeAiPrivateEndpointResult { /** * The OCID of the compartment that contains the private endpoint. */ readonly compartmentId: string; readonly definedTags: { [key: string]: string; }; /** * A description of this private endpoint. */ readonly description: string; /** * A user friendly name. It doesn't have to be unique. Avoid entering confidential information. */ readonly displayName: string; readonly dnsPrefix: string; /** * Fully qualified domain name the customer will use for access (for eg: xyz.oraclecloud.com) */ readonly fqdn: 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; }; readonly generativeAiPrivateEndpointId: string; /** * The OCID of a private endpoint. */ readonly id: string; readonly lifecycleDetails: string; /** * A list of the OCIDs of the network security groups that the private endpoint's VNIC belongs to. */ readonly nsgIds: string[]; readonly previousState: string; /** * The private IP address (in the customer's VCN) that represents the access point for the associated endpoint service. */ readonly privateEndpointIp: string; /** * The resource type that Generative AI private endpoint can be used for. */ readonly resourceType: string; /** * The current state of the Generative AI Private Endpoint. */ readonly state: string; /** * The OCID of the subnet that the private endpoint belongs to. */ 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 that the Generative AI 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 Generative AI 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 Generative Ai Private Endpoint resource in Oracle Cloud Infrastructure Generative AI service. * * Retrieves an Generative AI private endpoint using a `privateEndpointId`. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testGenerativeAiPrivateEndpoint = oci.generativeai.getGenerativeAiPrivateEndpoint({ * generativeAiPrivateEndpointId: testGenerativeAiPrivateEndpointOciGenerativeAiGenerativeAiPrivateEndpoint.id, * }); * ``` */ export declare function getGenerativeAiPrivateEndpointOutput(args: GetGenerativeAiPrivateEndpointOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getGenerativeAiPrivateEndpoint. */ export interface GetGenerativeAiPrivateEndpointOutputArgs { /** * The unique id for a Generative AI private endpoint. */ generativeAiPrivateEndpointId: pulumi.Input; } //# sourceMappingURL=getGenerativeAiPrivateEndpoint.d.ts.map