type Config struct {
SessionID string// unique identifier for this set of tokens in the database Data map[string]string `json:",omitempty"` // random data for testing// contains filtered or unexported fields
}
ValidateLogin takes raw user-provided auth method metadata and ensures it is
sane, provably correct, and currently valid. Relevant identifying data is
extracted and returned for immediate use by the role binding process.
Depending upon the method, it may make sense to use these calls to continue
to extend the life of the underlying token.
Returns auth method specific metadata suitable for the Role Binding process.