The DROP_AI_MODEL_ENDPOINT procedure is used to delete the endpoint of an AI model object.
Syntax
PROCEDURE drop_ai_model_endpoint(
IN name VARCHAR(128));
Parameters
| Parameter | Description | Type | Value range | Nullable |
|---|---|---|---|---|
| name | The name of the endpoint of the AI model object. | VARCHAR(128) | No |
Examples
Delete the endpoint of an AI model object.
CALL DBMS_AI_SERVICE.DROP_AI_MODEL_ENDPOINT ('my_model_endpoint1');