An Azure machine learning service for building and deploying models.
UI in screenshot looks very different from my side. Probably because of lab environment.
You can delete via CLI/SDK/UI.
CLI (You have to locate Cloud shell icon in portal to use)
For real time
az login --identity
az ml online-endpoint delete --name my-online-endpoint --resource-group my-resource-group --workspace-name my-workspace
For Batch endpoint
az login --identity
az ml batch-endpoint delete --name <ENDPOINT_NAME> --yes
UI
Please click on the name of endpoint. It should show delete option to delete the endpoint as TP suggested.
SDK
For Real time
from azure.ai.ml import MLClient
from azure.identity import DefaultAzureCredential
# authenticate
credential = DefaultAzureCredential()
# Get a handle to the workspace
ml_client = MLClient(
credential=credential,
subscription_id="<SUBSCRIPTION_ID>",
resource_group_name="<RESOURCE_GROUP>",
workspace_name="<AML_WORKSPACE_NAME>",
)
ml_client.online_endpoints.begin_delete(name=online_endpoint_name).result()
For Batch endpoint
ml_client.batch_endpoints.begin_delete("<ENDPOINT_NAME>").result()
Please accept this answer if above pointers helps address the issue.
Thank you.