space_upload: Upload a directory to an existing Space

View source: R/spaces.R

space_uploadR Documentation

Upload a directory to an existing Space

Description

Upload a directory to an existing Space

Usage

space_upload(
  name,
  local = NULL,
  remote = NULL,
  spaces_region = NULL,
  spaces_key = NULL,
  spaces_secret = NULL,
  ...
)

Arguments

name

(character) The name of the existing Space

local

(character) The name of the local directory

remote

(character) The name of the remote directory

spaces_region

(character) String containing a spaces region. If missing, defaults to value stored in an environment variable DO_SPACES_REGION.

spaces_key

(character) String containing a spaces access key. If missing, defaults to value stored in an environment variable DO_SPACES_ACCESS_KEY.

spaces_secret

(character) String containing the secret associated with the spaces key. If missing, defaults to value stored in an environment variable DO_SPACES_SECRET_KEY.

...

Additional arguments to arrow::copy_files

Value

(character) Success/error message.

Examples

## Not run: 
# Upload to an existing Space
# (Check names within region)
space_upload("my_space", "my_subdir", "my_subdir", "nyc3",
 spaces_key = Sys.getenv("SPACES_KEY"),
 spaces_secret = Sys.getenv("SPACES_SECRET"))

## End(Not run)

sckott/analogsea documentation built on July 18, 2023, 3:31 p.m.