vault_client_object {vaultr} | R Documentation |
Base object type
Description
Base object type
Base object type
Details
Base object used by vaultr for all objects
Methods
Public methods
Method new()
Construct an object
Usage
vault_client_object$new(description)
Arguments
description
Description for the object, will be printed
Method format()
Format method, overriding the R6 default
Usage
vault_client_object$format(brief = FALSE)
Arguments
brief
Logical, indicating if this is the full format or a brief (one line) format.
Method help()
Display help for this object
Usage
vault_client_object$help()
Examples
server <- vaultr::vault_test_server(if_disabled = message)
if (!is.null(server)) {
client <- vaultr::vault_client(addr = server$addr)
client$operator$format()
client$operator$format(TRUE)
}
[Package vaultr version 1.2.0 Index]