Models DeleteModel RPC
Requests the deletion of an inference model from the model repository.
rpc DeleteModel(ModelsDeleteModelRequest) returns (ModelsDeleteModelResponse);
Messages
ModelsDeleteModelRequest
ModelsDeleteModelResponse
message ModelsDeleteModelRequest {
RequestHeader header = 1;
Identifier model_id = 2;
}
Properties
header
type: message
Standard RPC request header.
See RequestHeader for details.
model_id
type: message
Unique identifier of the model to delete.
Required. If the identifier value is omitted from the request or does not match any known model identifier, Clara Deploy SDK will be unable to fulfill the request.
See Identifier for details.
ModelsDeleteModelResponse
message ModelsDeleteModelResponse {
ResponseHeader header = 1;
}
Clara Deploy SDK Models service will respond to any delete request with a ModelsDownloadModelResponse message. Requestors can use the response header to determine the result of their request.
Properties
header
type: message
Standard RPC response header.
See ResponseHeader for details.