2015-03-30 21:23:32 +00:00
|
|
|
package logical
|
|
|
|
|
2015-04-09 19:14:04 +00:00
|
|
|
import "fmt"
|
2015-04-01 22:08:43 +00:00
|
|
|
|
2015-03-30 21:23:32 +00:00
|
|
|
// Auth is the resulting authentication information that is part of
|
|
|
|
// Response for credential backends.
|
|
|
|
type Auth struct {
|
2015-04-09 19:14:04 +00:00
|
|
|
LeaseOptions
|
2015-03-31 03:26:39 +00:00
|
|
|
|
2015-03-30 21:23:32 +00:00
|
|
|
// Policies is the list of policies that the authenticated user
|
|
|
|
// is associated with.
|
|
|
|
Policies []string
|
|
|
|
|
|
|
|
// Metadata is used to attach arbitrary string-type metadata to
|
|
|
|
// an authenticated user. This metadata will be outputted into the
|
|
|
|
// audit log.
|
|
|
|
Metadata map[string]string
|
2015-04-03 00:25:22 +00:00
|
|
|
|
2015-04-09 19:14:04 +00:00
|
|
|
// ClientToken is the token that is generated for the authentication.
|
|
|
|
// This will be filled in by Vault core when an auth structure is
|
|
|
|
// returned. Setting this manually will have no effect.
|
|
|
|
ClientToken string
|
2015-03-30 21:23:32 +00:00
|
|
|
}
|
2015-04-01 22:08:43 +00:00
|
|
|
|
|
|
|
func (a *Auth) GoString() string {
|
|
|
|
return fmt.Sprintf("*%#v", *a)
|
|
|
|
}
|