mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-11-04 07:49:35 +00:00 
			
		
		
		
	Steps: ./hack/pin-dependency.sh google.golang.org/api v0.15.1 ./hack/update-vendor.sh ./hack/verify-vendor.sh ./hack/pin-dependency.sh github.com/googleapis/gax-go/v2 v2.0.5 ./hack/update-vendor.sh ./hack/verify-vendor.sh ./hack/lint-dependencies.sh
		
			
				
	
	
		
			24 lines
		
	
	
		
			543 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			543 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2018 Google LLC.
 | 
						|
// Use of this source code is governed by a BSD-style
 | 
						|
// license that can be found in the LICENSE file.
 | 
						|
 | 
						|
// +build go1.9
 | 
						|
 | 
						|
package option
 | 
						|
 | 
						|
import (
 | 
						|
	"golang.org/x/oauth2/google"
 | 
						|
	"google.golang.org/api/internal"
 | 
						|
)
 | 
						|
 | 
						|
type withCreds google.Credentials
 | 
						|
 | 
						|
func (w *withCreds) Apply(o *internal.DialSettings) {
 | 
						|
	o.Credentials = (*google.Credentials)(w)
 | 
						|
}
 | 
						|
 | 
						|
// WithCredentials returns a ClientOption that authenticates API calls.
 | 
						|
func WithCredentials(creds *google.Credentials) ClientOption {
 | 
						|
	return (*withCreds)(creds)
 | 
						|
}
 |