Exemplo n.º 1
0
 /// <summary>
 /// Creates a job to extract data from this table to Google Cloud Storage.
 /// This method just creates a <see cref="TableReference"/> and delegates to <see cref="BigQueryClient.CreateExtractJob(TableReference, String, CreateExtractJobOptions)"/>.
 /// See [the BigQuery documentation](https://cloud.google.com/bigquery/docs/exporting-data) for more information on extract jobs.
 /// </summary>
 /// <param name="destinationUri">The Google Cloud Storage URI (possibly including a wildcard) to extract the data to. Must not be null.</param>
 /// <param name="options">The options for the operation. May be null, in which case defaults will be supplied.</param>
 /// <returns>The job created for the extract operation.</returns>
 public BigQueryJob CreateExtractJob(string destinationUri, CreateExtractJobOptions options = null) =>
 _client.CreateExtractJob(Reference, destinationUri, options);