oci_ai_language_endpoint
This resource provides the Endpoint resource in Oracle Cloud Infrastructure Ai Language service. Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/language/latest/Endpoint
Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/aiLanguage
Creates a new endpoint and deploy the trained model
Example Usage
resource "oci_ai_language_endpoint" "test_endpoint" {
	#Required
	compartment_id = var.compartment_id
	model_id = oci_ai_language_model.test_model.id
	#Optional
	alias = var.endpoint_alias
	defined_tags = {"foo-namespace.bar-key"= "value"}
	description = var.endpoint_description
	display_name = var.endpoint_display_name
	freeform_tags = {"bar-key"= "value"}
	inference_units = var.endpoint_inference_units
}
Argument Reference
The following arguments are supported:
- alias- (Optional) (Updatable) Unique name across user tenancy in a region to identify an endpoint to be used for inferencing.
- compartment_id- (Required) (Updatable) The OCID compartment identifier for the endpoint
- defined_tags- (Optional) (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:- {"foo-namespace.bar-key": "value"}
- description- (Optional) (Updatable) A short description of the an endpoint.
- display_name- (Optional) (Updatable) A user-friendly display name for the resource. It should be unique and can be modified. Avoid entering confidential information.
- freeform_tags- (Optional) (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:- {"bar-key": "value"}
- inference_units- (Optional) (Updatable) Number of replicas required for this endpoint. This will be optional parameter. Default will be 1.
- model_id- (Required) (Updatable) The OCID of the model to associate with the endpoint.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
Attributes Reference
The following attributes are exported:
- alias- Unique name across user tenancy in a region to identify an endpoint to be used for inferencing.
- compartment_id- The OCID for the endpoint compartment.
- defined_tags- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:- {"foo-namespace.bar-key": "value"}
- description- A short description of the endpoint.
- display_name- A user-friendly display name for the resource. It should be unique and can be modified. Avoid entering confidential information.
- freeform_tags- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:- {"bar-key": "value"}
- id- Unique identifier endpoint OCID of an endpoint that is immutable on creation.
- inference_units- Number of replicas required for this endpoint.
- lifecycle_details- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in failed state.
- model_id- The OCID of the model to associate with the endpoint.
- project_id- The OCID of the project to associate with the Endpoint.
- state- The state of the endpoint.
- system_tags- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:- {"orcl-cloud.free-tier-retained": "true"}
- time_created- The time the the endpoint was created. An RFC3339 formatted datetime string.
- time_updated- The time the endpoint was updated. An RFC3339 formatted datetime string.
Timeouts
The timeouts block allows you to specify timeouts for certain operations:
	* create - (Defaults to 20 minutes), when creating the Endpoint
	* update - (Defaults to 20 minutes), when updating the Endpoint
	* delete - (Defaults to 20 minutes), when destroying the Endpoint
Import
Endpoints can be imported using the id, e.g.
$ terraform import oci_ai_language_endpoint.test_endpoint "id"