diff --git a/DESCRIPTION b/DESCRIPTION index 20d174e..82612ea 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -18,7 +18,6 @@ License: MIT + file LICENSE Config/testthat/edition: 3 Encoding: UTF-8 Roxygen: list(markdown = TRUE) -RoxygenNote: 7.3.3 Depends: R (>= 4.5.0) Imports: arrow, @@ -38,3 +37,4 @@ Suggests: httpuv, readr, testthat (>= 3.0.0) +Config/roxygen2/version: 8.0.0 diff --git a/man/get_auth_token.Rd b/man/get_auth_token.Rd index bcff3d7..cadf4bc 100644 --- a/man/get_auth_token.Rd +++ b/man/get_auth_token.Rd @@ -49,7 +49,7 @@ cause an existing token to refresh itself, without obtaining a new token from Azure via online reauthentication} \item{...}{Optional arguments (eg \code{token_args} or \code{use_cache}) to be passed -on to \link[AzureAuth:get_azure_token]{AzureAuth::get_managed_token} or \link[AzureAuth:get_azure_token]{AzureAuth::get_azure_token}, for +on to \link[AzureAuth:get_managed_token]{AzureAuth::get_managed_token} or \link[AzureAuth:get_azure_token]{AzureAuth::get_azure_token}, for example to overwrite any opf their default values or to supply a \code{password}} \item{token}{An Azure authentication token} diff --git a/man/gregg.Rd b/man/gregg.Rd index d2a375a..7d9da59 100644 --- a/man/gregg.Rd +++ b/man/gregg.Rd @@ -9,7 +9,7 @@ gregg(x, rx, ..., g = parent.frame()) \arguments{ \item{x}{A character vector to check} -\item{rx}{A string that after processing by \code{\link[glue:glue]{glue::glue_data()}} will be used +\item{rx}{A string that after processing by \code{\link[glue:glue_data]{glue::glue_data()}} will be used as a regex pattern in \code{\link[=grepl]{grepl()}}} \item{...}{Arguments passed onto \code{\link[=grepl]{grepl()}}} diff --git a/man/read_azure_file.Rd b/man/read_azure_file.Rd index b61ce53..6313229 100644 --- a/man/read_azure_file.Rd +++ b/man/read_azure_file.Rd @@ -12,7 +12,7 @@ read_azure_file(container, file, ...) \item{file}{string The path to the file to be read.} \item{...}{optional arguments to be passed through to -\link[AzureStor:blob]{AzureStor::download_blob}} +\link[AzureStor:download_blob]{AzureStor::download_blob}} } \value{ A raw data stream diff --git a/man/read_azure_rds.Rd b/man/read_azure_rds.Rd index d74d13a..78a6889 100644 --- a/man/read_azure_rds.Rd +++ b/man/read_azure_rds.Rd @@ -12,10 +12,10 @@ read_azure_rds(container, file, ...) \item{file}{string The path to the file to be read.} \item{...}{optional arguments to be passed through to -\link[AzureStor:storage_save]{AzureStor::storage_load_rds}. For example, a compression type (one of +\link[AzureStor:storage_load_rds]{AzureStor::storage_load_rds}. For example, a compression type (one of c("unknown", "gzip", "bzip2", "xz", "zstd", "none")) can be provided using the argument \code{type}, which will be passed on to \link{memDecompress} via -\link[AzureStor:storage_save]{AzureStor::storage_load_rds}.} +\link[AzureStor:storage_load_rds]{AzureStor::storage_load_rds}.} } \value{ The data object that was stored in the rds file diff --git a/man/read_azure_table.Rd b/man/read_azure_table.Rd index c94ed27..5fae25d 100644 --- a/man/read_azure_table.Rd +++ b/man/read_azure_table.Rd @@ -7,7 +7,10 @@ read_azure_table( table_name, table_endpoint = Sys.getenv("AZ_TABLE_EP"), - token = get_auth_token() + token = get_auth_token(), + filter = NULL, + select = NULL, + top = NULL ) } \arguments{ @@ -17,6 +20,12 @@ read_azure_table( \item{token}{An Azure authentication token, or a function that returns one. Uses \link{get_auth_token} by default.} + +\item{filter}{An OData filter string to filter the results.} + +\item{select}{An OData select string to specify which properties to return.} + +\item{top}{An integer specifying the maximum number of records to return.} } \value{ A tibble