@Generated public interface ServingEndpointsService
You can use a serving endpoint to serve models from the Databricks Model Registry or from Unity Catalog. Endpoints expose the underlying models as scalable REST API endpoints using serverless compute. This means the endpoints and associated compute resources are fully managed by Databricks and will not appear in your cloud account. A serving endpoint can consist of one or more MLflow models from the Databricks Model Registry, called served models. A serving endpoint can have at most ten served models. You can configure traffic settings to define how requests should be routed to your served models behind an endpoint. Additionally, you can configure the scale of resources that should be applied to each served model.
This is the high-level interface, that contains generated methods.
Evolving: this interface is under development. Method signatures may change.
Modifier and Type | Method and Description |
---|---|
BuildLogsResponse |
buildLogs(BuildLogsRequest buildLogsRequest)
Retrieve the logs associated with building the model's environment for a given serving
endpoint's served model.
|
ServingEndpointDetailed |
create(CreateServingEndpoint createServingEndpoint)
Create a new serving endpoint.
|
void |
delete(DeleteServingEndpointRequest deleteServingEndpointRequest)
Delete a serving endpoint.
|
void |
exportMetrics(ExportMetricsRequest exportMetricsRequest)
Retrieve the metrics associated with a serving endpoint.
|
ServingEndpointDetailed |
get(GetServingEndpointRequest getServingEndpointRequest)
Get a single serving endpoint.
|
GetServingEndpointPermissionLevelsResponse |
getPermissionLevels(GetServingEndpointPermissionLevelsRequest getServingEndpointPermissionLevelsRequest)
Get serving endpoint permission levels.
|
ServingEndpointPermissions |
getPermissions(GetServingEndpointPermissionsRequest getServingEndpointPermissionsRequest)
Get serving endpoint permissions.
|
ListEndpointsResponse |
list()
Retrieve all serving endpoints.
|
ServerLogsResponse |
logs(LogsRequest logsRequest)
Retrieve the most recent log lines associated with a given serving endpoint's served model.
|
Collection<EndpointTag> |
patch(PatchServingEndpointTags patchServingEndpointTags)
Patch the tags of a serving endpoint.
|
QueryEndpointResponse |
query(QueryEndpointInput queryEndpointInput)
Query a serving endpoint with provided model input.
|
ServingEndpointPermissions |
setPermissions(ServingEndpointPermissionsRequest servingEndpointPermissionsRequest)
Set serving endpoint permissions.
|
ServingEndpointDetailed |
updateConfig(EndpointCoreConfigInput endpointCoreConfigInput)
Update a serving endpoint with a new config.
|
ServingEndpointPermissions |
updatePermissions(ServingEndpointPermissionsRequest servingEndpointPermissionsRequest)
Update serving endpoint permissions.
|
BuildLogsResponse buildLogs(BuildLogsRequest buildLogsRequest)
Retrieves the build logs associated with the provided served model.
ServingEndpointDetailed create(CreateServingEndpoint createServingEndpoint)
void delete(DeleteServingEndpointRequest deleteServingEndpointRequest)
void exportMetrics(ExportMetricsRequest exportMetricsRequest)
Retrieves the metrics associated with the provided serving endpoint in either Prometheus or OpenMetrics exposition format.
ServingEndpointDetailed get(GetServingEndpointRequest getServingEndpointRequest)
Retrieves the details for a single serving endpoint.
GetServingEndpointPermissionLevelsResponse getPermissionLevels(GetServingEndpointPermissionLevelsRequest getServingEndpointPermissionLevelsRequest)
Gets the permission levels that a user can have on an object.
ServingEndpointPermissions getPermissions(GetServingEndpointPermissionsRequest getServingEndpointPermissionsRequest)
Gets the permissions of a serving endpoint. Serving endpoints can inherit permissions from their root object.
ListEndpointsResponse list()
ServerLogsResponse logs(LogsRequest logsRequest)
Retrieves the service logs associated with the provided served model.
Collection<EndpointTag> patch(PatchServingEndpointTags patchServingEndpointTags)
Used to batch add and delete tags from a serving endpoint with a single API call.
QueryEndpointResponse query(QueryEndpointInput queryEndpointInput)
ServingEndpointPermissions setPermissions(ServingEndpointPermissionsRequest servingEndpointPermissionsRequest)
Sets permissions on a serving endpoint. Serving endpoints can inherit permissions from their root object.
ServingEndpointDetailed updateConfig(EndpointCoreConfigInput endpointCoreConfigInput)
Updates any combination of the serving endpoint's served models, the compute configuration of those served models, and the endpoint's traffic config. An endpoint that already has an update in progress can not be updated until the current update completes or fails.
ServingEndpointPermissions updatePermissions(ServingEndpointPermissionsRequest servingEndpointPermissionsRequest)
Updates the permissions on a serving endpoint. Serving endpoints can inherit permissions from their root object.
Copyright © 2023. All rights reserved.