This commit is contained in:
Hong Ooi 2019-11-16 04:12:17 +11:00
Родитель dd97dbba0c
Коммит d16f860c9f
3 изменённых файлов: 19 добавлений и 3 удалений

Просмотреть файл

@ -72,7 +72,9 @@ adls_filesystem.adls_endpoint <- function(endpoint, name, ...)
print.adls_filesystem <- function(x, ...)
{
cat("Azure Data Lake Storage Gen2 filesystem '", x$name, "'\n", sep="")
cat(sprintf("URL: %s\n", paste0(x$endpoint$url, x$name)))
url <- httr::parse_url(x$endpoint$url)
url$path <- x$name
cat(sprintf("URL: %s\n", httr::build_url(url)))
if(!is_empty(x$endpoint$key))
cat("Access key: <hidden>\n")

Просмотреть файл

@ -81,7 +81,9 @@ blob_container.blob_endpoint <- function(endpoint, name, ...)
print.blob_container <- function(x, ...)
{
cat("Azure blob container '", x$name, "'\n", sep="")
cat(sprintf("URL: %s\n", paste0(x$endpoint$url, x$name)))
url <- httr::parse_url(x$endpoint$url)
url$path <- x$name
cat(sprintf("URL: %s\n", httr::build_url(url)))
if(!is_empty(x$endpoint$key))
cat("Access key: <hidden>\n")

Просмотреть файл

@ -70,13 +70,25 @@ file_share.file_endpoint <- function(endpoint, name, ...)
print.file_share <- function(x, ...)
{
cat("Azure file share '", x$name, "'\n", sep="")
cat(sprintf("URL: %s\n", paste0(x$endpoint$url, x$name)))
url <- httr::parse_url(x$endpoint$url)
url$path <- x$name
cat(sprintf("URL: %s\n", httr::build_url(url)))
if(!is_empty(x$endpoint$key))
cat("Access key: <hidden>\n")
else cat("Access key: <none supplied>\n")
if(!is_empty(x$endpoint$token))
{
cat("Azure Active Directory token:\n")
print(x$endpoint$token)
}
else cat("Azure Active Directory token: <none supplied>\n")
if(!is_empty(x$endpoint$sas))
cat("Account shared access signature: <hidden>\n")
else cat("Account shared access signature: <none supplied>\n")
cat(sprintf("Storage API version: %s\n", x$endpoint$api_version))
invisible(x)
}