space_create {analogsea} | R Documentation |
Create a new Space
space_create(name, spaces_region = NULL, spaces_key = NULL, spaces_secret = NULL, ...)
name |
(character) The name of the new Space |
spaces_region |
(character) String containing a spaces region. If
missing, defaults to value stored in an environment variable
|
spaces_key |
(character) String containing a spaces access key. If
missing, defaults to value stored in an environment variable
|
spaces_secret |
(character) String containing the secret associated
with the spaces key. If missing, defaults to value stored in an environment
variable |
... |
Additional arguments to |
(character) The name of the created Space.
## Not run: # Create a new Space # (Names must be unique within region) space_create("new_space_name") ## End(Not run)