updateTensorboardRun method

  1. @override
Future<TensorboardRun> updateTensorboardRun(
  1. UpdateTensorboardRunRequest request
)
override

Updates a TensorboardRun.

Throws a http.ClientException if there were problems communicating with the API service. Throws a ServiceException if the API method failed for any reason.

Implementation

@override
Future<TensorboardRun> updateTensorboardRun(
  UpdateTensorboardRunRequest request,
) async {
  if (isClosed) throw StateError('Service is closed');

  if (_updateTensorboardRun case final updateTensorboardRun?) {
    return updateTensorboardRun(request);
  }
  throw UnsupportedError('updateTensorboardRun');
}