Skip to content

Update bq_perform_extract documentation #618

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 10 additions & 6 deletions R/bq-perform.R
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,16 @@ NULL
#' up to 1 Gb of data per file. Use a wild card URI (e.g.
#' `gs://[YOUR_BUCKET]/file-name-*.json`) to automatically create any
#' number of files.
#' @param destination_format The exported file format. Possible values
#' include "CSV", "NEWLINE_DELIMITED_JSON" and "AVRO". Tables with nested or
#' repeated fields cannot be exported as CSV.
#' @param compression The compression type to use for exported files. Possible
#' values include "GZIP", "DEFLATE", "SNAPPY", and "NONE". "DEFLATE" and
#' "SNAPPY" are only supported for Avro.
#' @param destination_format The exported file format:
#' * For CSV files, specify "CSV" (Nested and repeated data is not supported).
#' * For newline-delimited JSON, specify "NEWLINE_DELIMITED_JSON".
#' * For Avro, specify "AVRO".
#' * For parquet, specify "PARQUET".
#' @param compression The compression type to use for exported files:
#' * For CSV files: "GZIP" or "NONE".
#' * For newline-delimited JSON: "GZIP" or "NONE".
#' * For Avro: "DEFLATE", "SNAPPY" or "NONE".
#' * For parquet: "SNAPPY", "GZIP", "ZSTD" or "NONE".
#' @param ... Additional arguments passed on to the underlying API call.
#' snake_case names are automatically converted to camelCase.
#' @param print_header Whether to print out a header row in the results.
Expand Down
20 changes: 14 additions & 6 deletions man/api-perform.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading