Maybe I'm missing something obvious, but I cannot see the option/method to set the maximum billing tier in the new (and recommended) JAVA client library.
QueryJobConfiguration queryConfig =
QueryJobConfiguration.newBuilder(sql)
.setUseLegacySql(false)
.setUseQueryCache(true)
.setAllowLargeResults(true)
.setPriority(QueryJobConfiguration.Priority.INTERACTIVE)
.setCreateDisposition(JobInfo.CreateDisposition.CREATE_IF_NEEDED)
.setWriteDisposition(writeDisposition)
.setDestinationTable(TableId.of(dataset, outputTable))
.build();
It used to be present in the old client library. I need this flag for a current project.
Has it been missed?
As a side note, I can see it in the Python SDK - https://github.com/GoogleCloudPlatform/google-cloud-python/blob/master/bigquery/google/cloud/bigquery/job.py#L898