11.. include :: /../bigquery/README.rst
22
33Using the Library
4- =================
4+ -----------------
55
66Projects
7- --------
7+ ~~~~~~~~
88
99A project is the top-level container in the ``BigQuery `` API: it is tied
1010closely to billing, and can provide default access control across all its
@@ -23,15 +23,15 @@ To override the project inferred from the environment, pass an explicit
2323
2424
2525 Project ACLs
26- ~~~~~~~~~~~~
26+ ^^^^^^^^^^^^
2727
2828Each project has an access control list granting reader / writer / owner
2929permission to one or more entities. This list cannot be queried or set
3030via the API; it must be managed using the Google Developer Console.
3131
3232
3333Datasets
34- --------
34+ ~~~~~~~~
3535
3636A dataset represents a collection of tables, and applies several default
3737policies to tables as they are created:
@@ -47,7 +47,7 @@ See BigQuery documentation for more information on
4747
4848
4949Dataset operations
50- ~~~~~~~~~~~~~~~~~~
50+ ^^^^^^^^^^^^^^^^^^
5151
5252List datasets for the client's project:
5353
@@ -99,13 +99,13 @@ Delete a dataset:
9999
100100
101101Tables
102- ------
102+ ~~~~~~
103103
104104Tables exist within datasets. See BigQuery documentation for more information
105105on `Tables <https://cloud.google.com/bigquery/docs/tables >`_.
106106
107107Table operations
108- ~~~~~~~~~~~~~~~~
108+ ^^^^^^^^^^^^^^^^
109109List tables for the dataset:
110110
111111.. literalinclude :: snippets.py
@@ -187,7 +187,7 @@ Upload table data from a file:
187187 :end-before: [END bigquery_load_from_file]
188188
189189Load table data from Google Cloud Storage
190- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
190+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
191191
192192See also: `Loading JSON data from Cloud Storage
193193<https://cloud.google.com/bigquery/docs/loading-data-cloud-storage-json> `_.
@@ -217,7 +217,7 @@ Load a Parquet file from Cloud Storage:
217217 :end-before: [END bigquery_load_table_gcs_parquet]
218218
219219Customer Managed Encryption Keys
220- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
220+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
221221
222222Table data is always encrypted at rest, but BigQuery also provides a way for
223223you to control what keys it uses to encrypt they data. See `Protecting data
@@ -270,11 +270,11 @@ Cloud KMS for the destination table.
270270 :end-before: [END bigquery_query_destination_table_cmek]
271271
272272Queries
273- -------
273+ ~~~~~~~
274274
275275
276276Querying data
277- ~~~~~~~~~~~~~
277+ ^^^^^^^^^^^^^
278278
279279Run a query and wait for it to finish:
280280
@@ -286,7 +286,7 @@ Run a query and wait for it to finish:
286286
287287
288288Run a dry run query
289- ~~~~~~~~~~~~~~~~~~~
289+ ^^^^^^^^^^^^^^^^^^^
290290
291291.. literalinclude :: snippets.py
292292 :language: python
@@ -296,7 +296,7 @@ Run a dry run query
296296
297297
298298Writing query results to a destination table
299- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
299+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
300300
301301See BigQuery documentation for more information on
302302`writing query results <https://cloud.google.com/bigquery/docs/writing-results >`_.
@@ -309,7 +309,7 @@ See BigQuery documentation for more information on
309309
310310
311311Run a query using a named query parameter
312- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
312+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
313313
314314See BigQuery documentation for more information on
315315`parameterized queries <https://cloud.google.com/bigquery/docs/parameterized-queries >`_.
@@ -322,10 +322,10 @@ See BigQuery documentation for more information on
322322
323323
324324Jobs
325- ----
325+ ~~~~
326326
327327List jobs for a project
328- ~~~~~~~~~~~~~~~~~~~~~~~
328+ ^^^^^^^^^^^^^^^^^^^^^^^
329329
330330Jobs describe actions performed on data in BigQuery tables:
331331
@@ -342,10 +342,10 @@ Jobs describe actions performed on data in BigQuery tables:
342342
343343
344344Using BigQuery with Pandas
345- --------------------------
345+ ~~~~~~~~~~~~~~~~~~~~~~~~~~
346346
347347Retrieve BigQuery data as a Pandas DataFrame
348- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
348+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
349349
350350As of version 0.29.0, you can use the
351351:func: `~google.cloud.bigquery.table.RowIterator.to_dataframe ` function to
@@ -381,7 +381,7 @@ To retrieve table rows as a :class:`pandas.DataFrame`:
381381 :end-before: [END bigquery_list_rows_dataframe]
382382
383383Load a Pandas DataFrame to a BigQuery Table
384- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
384+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
385385
386386As of version 1.3.0, you can use the
387387:func: `~google.cloud.bigquery.client.Client.load_table_from_dataframe ` function
@@ -405,7 +405,7 @@ and load it into a new table:
405405 :end-before: [END bigquery_load_table_dataframe]
406406
407407API Reference
408- =============
408+ -------------
409409
410410.. toctree ::
411411 :maxdepth: 2
@@ -414,7 +414,7 @@ API Reference
414414 dbapi
415415
416416Changelog
417- =========
417+ ---------
418418
419419For a list of all ``google-cloud-bigquery `` releases:
420420
0 commit comments