type golang.org/x/oauth2/google.Credentials

17 uses

	golang.org/x/oauth2/google (current package)
		default.go#L24: type Credentials struct {
		default.go#L38: type DefaultCredentials = Credentials
		default.go#L76: func FindDefaultCredentials(ctx context.Context, scopes ...string) (*Credentials, error) {
		default.go#L124: func CredentialsFromJSON(ctx context.Context, jsonData []byte, scopes ...string) (*Credentials, error) {

	google.golang.org/api/internal
		creds.go#L21: func Creds(ctx context.Context, ds *DialSettings) (*google.Credentials, error) {
		creds.go#L32: func baseCreds(ctx context.Context, ds *DialSettings) (*google.Credentials, error) {
		creds.go#L47: 		return &google.Credentials{TokenSource: ds.TokenSource}, nil
		creds.go#L69: func credentialsFromJSON(ctx context.Context, data []byte, endpoint string, scopes []string, audiences []string) (*google.Credentials, error) {
		creds.go#L109: func QuotaProjectFromCreds(cred *google.Credentials) string {
		creds.go#L119: func impersonateCredentials(ctx context.Context, creds *google.Credentials, ds *DialSettings) (*google.Credentials, error) {
		creds.go#L127: 	return &google.Credentials{
		settings.go#L27: 	Credentials         *google.Credentials

	google.golang.org/api/option
		credentials_go19.go#L14: type withCreds google.Credentials
		credentials_go19.go#L17: 	o.Credentials = (*google.Credentials)(w)
		credentials_go19.go#L21: func WithCredentials(creds *google.Credentials) ClientOption {

	google.golang.org/api/transport
		go19.go#L19: func Creds(ctx context.Context, opts ...option.ClientOption) (*google.Credentials, error) {