forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.go
46 lines (35 loc) · 1.6 KB
/
config.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package uaa
import "time"
//go:generate go run github.com/maxbrunsfeld/counterfeiter/v6 . Config
// Config allows the Client to be configured
type Config interface {
// BinaryName is the name of the application/process using the client.
BinaryName() string
// BinaryVersion is the version of the application/process using the client.
BinaryVersion() string
// DialTimeout is the DNS lookup timeout for the client. If not set, it is
// infinite.
DialTimeout() time.Duration
// SetUAAEndpoint sets the UAA endpoint that is obtained from hitting
// <AuthorizationEndpoint>/login.
SetUAAEndpoint(uaaEndpoint string)
// SkipSSLValidation controls whether a client verifies the server's
// certificate chain and host name. If SkipSSLValidation is true, TLS accepts
// any certificate presented by the server and any host name in that
// certificate for *all* client requests going forward.
//
// In this mode, TLS is susceptible to man-in-the-middle attacks. This should
// be used only for testing.
SkipSSLValidation() bool
// UAADisableKeepAlives controls whether the UAA client will reuse TCP connections
// for multiple requests. If true, the client will always use a new TCP request
// and set Connection: close in the request header. If false, the client
// will reuse the TCP connection.
UAADisableKeepAlives() bool
// UAAGrantType returns the grant type of the supplied UAA credentials.
UAAGrantType() string
// UAAOAuthClient is the UAA client ID the client will use.
UAAOAuthClient() string
// UAAOAuthClientSecret is the UAA client secret the client will use.
UAAOAuthClientSecret() string
}