mirror of
https://github.com/int128/kubelogin.git
synced 2026-05-11 02:16:51 +00:00
14 lines
266 B
Go
14 lines
266 B
Go
package tokencache
|
|
|
|
// Key represents a key of a token cache.
|
|
type Key struct {
|
|
IssuerURL string
|
|
ClientID string
|
|
ClientSecret string
|
|
Username string
|
|
ExtraScopes []string
|
|
CACertFilename string
|
|
CACertData string
|
|
SkipTLSVerify bool
|
|
}
|