I noticed in BigQuery Jobs API for the Copy task:
https://developers.google.com/bigquery/docs/reference/v2/jobs#resource
there exists a input for "sourceTables":
"copy": {
"sourceTables": [
{
"projectId": string,
"datasetId": string,
"tableId": string
}
],
However we can only define a singular "destinationTable" rather than "destinationTables":
"destinationTable": {
"projectId": string,
"datasetId": string,
"tableId": string
},
Is there a way I can use the above API to copy multiple source tables from one Dataset into another Dataset?