From 1d1aa37f9f4f9629d4291ae652469b843fdb9f81 Mon Sep 17 00:00:00 2001 From: Kenji Fukasawa <2205422+kenji-fukasawa@users.noreply.github.com> Date: Wed, 14 Nov 2018 10:27:21 -0600 Subject: [PATCH] Added mount accessor to Auth response type --- lib/vault/api/sys/auth.rb | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/vault/api/sys/auth.rb b/lib/vault/api/sys/auth.rb index ad827cac..6030f77a 100644 --- a/lib/vault/api/sys/auth.rb +++ b/lib/vault/api/sys/auth.rb @@ -11,6 +11,11 @@ class Auth < Response # Name of the auth backend. # @return [String] field :type + + # @!attribute [r] accessor + # Mount accessor for auth backend. + # @return [String] + field :accessor end class AuthConfig < Response