@@ -105,14 +105,18 @@ def dataset(self, dataset_name):
105105 def load_table_from_storage (self , job_name , destination , * source_uris ):
106106 """Construct a job for loading data into a table from CloudStorage.
107107
108+ See:
109+ https://cloud.google.com/bigquery/docs/reference/v2/jobs#configuration.load
110+
108111 :type job_name: string
109112 :param job_name: Name of the job.
110113
111114 :type destination: :class:`gcloud.bigquery.table.Table`
112115 :param destination: Table into which data is to be loaded.
113116
114117 :type source_uris: sequence of string
115- :param source_uris: URIs of data files to be loaded.
118+ :param source_uris: URIs of data files to be loaded; in format
119+ ``gs://<bucket_name>/<object_name_or_glob>``.
116120
117121 :rtype: :class:`gcloud.bigquery.job.LoadTableFromStorageJob`
118122 :returns: a new ``LoadTableFromStorageJob`` instance
@@ -123,6 +127,9 @@ def load_table_from_storage(self, job_name, destination, *source_uris):
123127 def copy_table (self , job_name , destination , * sources ):
124128 """Construct a job for copying one or more tables into another table.
125129
130+ See:
131+ https://cloud.google.com/bigquery/docs/reference/v2/jobs#configuration.copy
132+
126133 :type job_name: string
127134 :param job_name: Name of the job.
128135
@@ -140,6 +147,9 @@ def copy_table(self, job_name, destination, *sources):
140147 def extract_table_to_storage (self , job_name , source , * destination_uris ):
141148 """Construct a job for extracting a table into Cloud Storage files.
142149
150+ See:
151+ https://cloud.google.com/bigquery/docs/reference/v2/jobs#configuration.extract
152+
143153 :type job_name: string
144154 :param job_name: Name of the job.
145155
@@ -148,7 +158,8 @@ def extract_table_to_storage(self, job_name, source, *destination_uris):
148158
149159 :type destination_uris: sequence of string
150160 :param destination_uris: URIs of CloudStorage file(s) into which
151- table data is to be extracted.
161+ table data is to be extracted; in format
162+ ``gs://<bucket_name>/<object_name_or_glob>``.
152163
153164 :rtype: :class:`gcloud.bigquery.job.ExtractTableToStorageJob`
154165 :returns: a new ``ExtractTableToStorageJob`` instance
@@ -159,6 +170,9 @@ def extract_table_to_storage(self, job_name, source, *destination_uris):
159170 def run_async_query (self , job_name , query ):
160171 """Construct a job for running a SQL query asynchronously.
161172
173+ See:
174+ https://cloud.google.com/bigquery/docs/reference/v2/jobs#configuration.query
175+
162176 :type job_name: string
163177 :param job_name: Name of the job.
164178
0 commit comments