2020-08-10 17:43:49 +00:00
|
|
|
// Copyright 2018 Google LLC.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
2019-01-12 04:58:27 +00:00
|
|
|
|
2019-09-27 21:51:53 +00:00
|
|
|
// +build go1.9
|
|
|
|
|
|
|
|
package option
|
2019-01-12 04:58:27 +00:00
|
|
|
|
|
|
|
import (
|
2019-09-27 21:51:53 +00:00
|
|
|
"golang.org/x/oauth2/google"
|
|
|
|
"google.golang.org/api/internal"
|
2019-01-12 04:58:27 +00:00
|
|
|
)
|
|
|
|
|
2019-09-27 21:51:53 +00:00
|
|
|
type withCreds google.Credentials
|
2019-01-12 04:58:27 +00:00
|
|
|
|
2019-09-27 21:51:53 +00:00
|
|
|
func (w *withCreds) Apply(o *internal.DialSettings) {
|
|
|
|
o.Credentials = (*google.Credentials)(w)
|
2019-01-12 04:58:27 +00:00
|
|
|
}
|
|
|
|
|
2019-09-27 21:51:53 +00:00
|
|
|
// WithCredentials returns a ClientOption that authenticates API calls.
|
|
|
|
func WithCredentials(creds *google.Credentials) ClientOption {
|
|
|
|
return (*withCreds)(creds)
|
2019-01-12 04:58:27 +00:00
|
|
|
}
|