ExVault v0.1.0-beta.1 ExVault.KV2.GetData View Source

Response struct for the data returned by the kv version 2 secrets engine.

Link to this section Summary

Types

t()

Struct containing the data and metadata for a path in the secrets engine

Link to this section Types

Link to this type

t() View Source
t() :: %ExVault.KV2.GetData{
  data: %{optional(String.t()) => String.t()},
  metadata: %{optional(String.t()) => any()},
  resp: ExVault.Response.Success.t()
}

Struct containing the data and metadata for a path in the secrets engine.

See the Vault documentation for the kv version 2 API.

  • :resp: The original response received from Vault.
  • :data: The key/value pairs for the path.
  • :metadata: The metadata associated with the data.