google.golang.org/api/internal.DialSettings.Scopes (field)

11 uses

	google.golang.org/api/internal (current package)
		creds.go#L37: 		return credentialsFromJSON(ctx, ds.CredentialsJSON, ds.Endpoint, ds.Scopes, ds.Audiences)
		creds.go#L44: 		return credentialsFromJSON(ctx, data, ds.Endpoint, ds.Scopes, ds.Audiences)
		creds.go#L49: 	cred, err := google.FindDefaultCredentials(ctx, ds.Scopes...)
		creds.go#L54: 		return credentialsFromJSON(ctx, cred.JSON, ds.Endpoint, ds.Scopes, ds.Audiences)
		creds.go#L121: 		ds.ImpersonationConfig.Scopes = ds.Scopes
		settings.go#L25: 	Scopes              []string
		settings.go#L79: 	if len(ds.Scopes) > 0 && len(ds.Audiences) > 0 {
		settings.go#L110: 	if ds.ImpersonationConfig != nil && len(ds.ImpersonationConfig.Scopes) == 0 && len(ds.Scopes) == 0 {

	google.golang.org/api/idtoken
		idtoken.go#L107: 	cfg, err := google.JWTConfigFromJSON(data, ds.Scopes...)

	google.golang.org/api/option
		option.go#L91: 	o.Scopes = make([]string, len(w))
		option.go#L92: 	copy(o.Scopes, w)