Basically I want to specify BigQuery dataset/table's name on the batch prediction result of AutoML.
But looking at the following documentation, the dataset and the table's name are automatically generated. And a new dataset will be created for each batch prediction executed.
https://cloud.google.com/automl-tables/docs/predict-batch#bq-results
Looking at the following documentation, only projectId can be specified on the BigQuery destination:
https://cloud.google.com/automl/docs/reference/rest/v1beta1/BigQueryDestination
I plan to do the batch prediction automatically on a weekly basis. To make the prediction results "cleaner", I want to group all the prediction results into one dataset, instead of having a separate dataset for each batch prediction.
Is there any way to get it done via the provided API?