1
0
mirror of https://github.com/rancher/types.git synced 2025-09-01 13:18:20 +00:00
Files
types/config/systemtokens/systemtokens.go

7 lines
201 B
Go
Raw Normal View History

2021-01-04 21:51:08 -07:00
package systemtokens
type Interface interface {
EnsureSystemToken(name, description, kind, username string, overrideTTL *int64, randomize bool) (string, error)
DeleteToken(tokenName string) error
}