- OS type and version: Mac OS Sierra
- Python version and virtual environment information
python --version: Python 2.7.13
- google-cloud-python version
pip show google-cloud, pip show google-<service> or pip freeze: google-cloud-bigquery==0.25.0 and google-cloud-core==0.25.0
Issue: Trying to monitor costs of queries on BigQuery by accessing the 'totalBytesBilled' field which is available through the HTTP API (jobs[].statistics.query.totalBytesBilled, https://cloud.google.com/bigquery/docs/reference/rest/v2/jobs/list). Is there a way to get this statistic through the Python Client? I've found you can access this through job._properties and was curious if there is a public API to access this.
Thank you!
python --version: Python 2.7.13pip show google-cloud,pip show google-<service>orpip freeze: google-cloud-bigquery==0.25.0 and google-cloud-core==0.25.0Issue: Trying to monitor costs of queries on BigQuery by accessing the 'totalBytesBilled' field which is available through the HTTP API (jobs[].statistics.query.totalBytesBilled, https://cloud.google.com/bigquery/docs/reference/rest/v2/jobs/list). Is there a way to get this statistic through the Python Client? I've found you can access this through job._properties and was curious if there is a public API to access this.
Thank you!