endOwnership

@DELETE(value = "api/v2/depots/{depot}/owners/{owner}")
abstract fun endOwnership(@Path(value = "depot") depotString: String, @Path(value = "owner") owner: String, @Header(value = "dataos-correlation-id") correlationId: String = UUID.randomUUID().toString()): Call<Void>

Ends ownership of the specified depot for the specified owner.

Return

A Call object representing the API call.

Parameters

depotString

The name of the depot.

owner

The name of the owner.

correlationId

A unique identifier for correlating logs and metrics.