 Documentation
      ¶
      Documentation
      ¶
    
    
  
    
  
    Index ¶
Constants ¶
      View Source
      
  
const (
	TokenSourceTypeDefault = "default"
)
    Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type TokenSourceFactory ¶
type TokenSourceFactory interface {
	GetTokenSource(ctx context.Context, identity Identity) (oauth2.TokenSource, error)
}
    func NewDefaultTokenSourceFactory ¶
func NewDefaultTokenSourceFactory() (TokenSourceFactory, error)
func NewTokenSourceFactory ¶
func NewTokenSourceFactory(config TokenSourceFactoryConfig) (TokenSourceFactory, error)
type TokenSourceFactoryConfig ¶
type TokenSourceFactoryConfig struct {
	// Type is type of TokenSourceFactory, possible values are 'default' or 'gke'.
	// - 'default' uses default credentials, see https://cloud.google.com/iam/docs/service-accounts#default
	Type TokenSourceFactoryType `json:"type" pflag:",Defines type of TokenSourceFactory, possible values are 'default'"`
}
    func GetDefaultConfig ¶
func GetDefaultConfig() TokenSourceFactoryConfig
type TokenSourceFactoryType ¶
type TokenSourceFactoryType = string
 Click to show internal directories. 
   Click to hide internal directories.