This commit is contained in:
hong-revo 2018-05-18 00:00:42 +10:00
Родитель bcf6334752
Коммит 013935b47e
5 изменённых файлов: 16 добавлений и 8 удалений

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

@ -19,8 +19,6 @@
#'
#' For `list_blob_containers`, a list of such objects.
#'
#' For `delete_blob_container`, NULL on successful deletion.
#'
#' @seealso [storage_endpoint], [az_storage]
#'
#' @rdname blob_endpoint

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

@ -17,8 +17,6 @@
#'
#' For `list_file_shares`, a list of such objects.
#'
#' For `delete_file_share`, NULL on successful deletion.
#'
#' @seealso [storage_endpoint], [az_storage]
#'
#' @rdname file_endpoint

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

@ -94,6 +94,22 @@ public=list(
get_file_endpoint=function(key=self$list_keys()[1])
{
storage_endpoint(self$properties$primaryEndpoints$file, key=key)
},
print=function(...)
{
cat("<Azure resource ", self$type, "/", self$name, ">\n", sep="")
endp <- self$properties$primaryEndpoints
endp <- paste0(" ", names(endp), ": ", endp, collapse="\n")
cat(" Account type:", self$kind, "\n")
cat(" Endpoints:\n")
cat(endp, "\n")
cat("---\n")
cat(format_public_fields(self, exclude=c("subscription", "resource_group", "type", "name", "kind")))
cat(format_public_methods(self))
invisible(NULL)
}
),

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

@ -69,8 +69,6 @@ delete_blob_container(endpoint, ...)
For \code{blob_container} and \code{create_blob_container}, an S3 object representing an existing or created container respectively.
For \code{list_blob_containers}, a list of such objects.
For \code{delete_blob_container}, NULL on successful deletion.
}
\description{
Get, list, create, or delete blob containers.

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

@ -63,8 +63,6 @@ delete_file_share(endpoint, ...)
For \code{file_share} and \code{create_file_share}, an S3 object representing an existing or created share respectively.
For \code{list_file_shares}, a list of such objects.
For \code{delete_file_share}, NULL on successful deletion.
}
\description{
Get, list, create, or delete file shares.