Learn R Programming

vaultr (version 1.1.0)

vault_client_object: Base object type

Description

Base object type

Base object type

Arguments

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()

Details

Base object used by vaultr for all objects

Examples

Run this code

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)
}

Run the code above in your browser using DataLab