dp_list | R Documentation |
List all available data products and their details from a remote
pin board. You must connect to the remote pin board using dp_connect
first. Details include data product name, version hashes, branch names,
sha1 hashes for the stored data objects, deployment time, and Git commit
details like author, commit message, and commit hash. The details returned
are read from the dpboard-log
pin on the remote pin board.
dp_list(board_object)
board_object |
A |
A tibble with one row per version per data product from the remote pin board. Each row contains metadata for the given version of the given data product.
## Not run:
aws_creds <- creds_set_aws(
key = Sys.getenv("AWS_KEY"),
secret = Sys.getenv("AWS_SECRET")
)
board_params <- board_params_set_s3(
bucket_name = "bucket_name",
region = "us-east-1"
)
board_object <- dp_connect(board_params, aws_creds)
dp_list(board_object)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.