mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
ff2f875574
Signed-off-by: Akihiro Suda <suda.akihiro@lab.ntt.co.jp>
23 lines
674 B
Go
23 lines
674 B
Go
// Package internal supports the options and transport packages.
|
|
package internal
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"golang.org/x/oauth2"
|
|
"google.golang.org/grpc"
|
|
)
|
|
|
|
// DialSettings holds information needed to establish a connection with a
|
|
// Google API service.
|
|
type DialSettings struct {
|
|
Endpoint string
|
|
Scopes []string
|
|
ServiceAccountJSONFilename string // if set, TokenSource is ignored.
|
|
TokenSource oauth2.TokenSource
|
|
UserAgent string
|
|
APIKey string
|
|
HTTPClient *http.Client
|
|
GRPCDialOpts []grpc.DialOption
|
|
GRPCConn *grpc.ClientConn
|
|
}
|