deleteConsumableResource
inline suspend fun BatchClient.deleteConsumableResource(crossinline block: DeleteConsumableResourceRequest.Builder.() -> Unit): DeleteConsumableResourceResponse
Deletes the specified consumable resource.
Samples
fun main() {
//sampleStart
// Deletes the specified consumable resource.
val resp = batchClient.deleteConsumableResource {
consumableResource = "myConsumableResource"
}
//sampleEnd
}