import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Endpoint resource in Oracle Cloud Infrastructure Ai Language service. * * Gets an endpoint by identifier * * ## Example Usage */ export declare function getEndpoint(args: GetEndpointArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getEndpoint. */ export interface GetEndpointArgs { /** * Unique identifier endpoint OCID of an endpoint that is immutable on creation. */ id: string; } /** * A collection of values returned by getEndpoint. */ export interface GetEndpointResult { /** * Unique name across user tenancy in a region to identify an endpoint to be used for inferencing. */ readonly alias: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the endpoint compartment. */ 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; }; /** * A short description of the endpoint. */ readonly description: string; /** * A user-friendly display name for the resource. It should be unique and can be modified. Avoid entering confidential information. */ 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; }; /** * Unique identifier endpoint OCID of an endpoint that is immutable on creation. */ readonly id: string; /** * Number of replicas required for this endpoint. */ readonly inferenceUnits: number; /** * 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 [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the model to associate with the endpoint. */ readonly modelId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate with the Endpoint. */ readonly projectId: string; /** * The state of the endpoint. */ readonly state: 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 time the the endpoint was created. An RFC3339 formatted datetime string. */ readonly timeCreated: string; /** * The time the endpoint was updated. An RFC3339 formatted datetime string. */ readonly timeUpdated: string; } /** * This data source provides details about a specific Endpoint resource in Oracle Cloud Infrastructure Ai Language service. * * Gets an endpoint by identifier * * ## Example Usage */ export declare function getEndpointOutput(args: GetEndpointOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getEndpoint. */ export interface GetEndpointOutputArgs { /** * Unique identifier endpoint OCID of an endpoint that is immutable on creation. */ id: pulumi.Input; } //# sourceMappingURL=getEndpoint.d.ts.map