Merge branch '15107-google-login'
[arvados.git] / sdk / go / arvados / config.go
index c51f609f8387e913df4902121962d2f7cad87c84..6ec8f345d75f430ecd4fe8ffab4bfa665f569770 100644 (file)
@@ -82,7 +82,7 @@ type Cluster struct {
                MaxIndexDatabaseRead           int
                MaxItemsPerResponse            int
                MaxConcurrentRequests          int
-               MaxKeepBlockBuffers            int
+               MaxKeepBlobBuffers             int
                MaxRequestAmplification        int
                MaxRequestSize                 int
                RailsSessionSecretToken        string
@@ -119,6 +119,11 @@ type Cluster struct {
                TrashSweepInterval    Duration
                TrustAllContent       bool
 
+               BlobMissingReport        string
+               BalancePeriod            Duration
+               BalanceCollectionBatch   int
+               BalanceCollectionBuffers int
+
                WebDAVCache WebDAVCacheConfig
        }
        Git struct {
@@ -127,8 +132,12 @@ type Cluster struct {
                Repositories string
        }
        Login struct {
-               ProviderAppSecret string
-               ProviderAppID     string
+               GoogleClientID     string
+               GoogleClientSecret string
+               ProviderAppID      string
+               ProviderAppSecret  string
+               LoginCluster       string
+               RemoteTokenRefresh Duration
        }
        Mail struct {
                MailchimpAPIKey                string
@@ -200,6 +209,8 @@ type Cluster struct {
                }
                UserProfileFormMessage string
                VocabularyURL          string
+               WelcomePageHTML        string
+               InactivePageHTML       string
        }
 
        EnableBetaController14287 bool
@@ -294,7 +305,9 @@ func (su URL) String() string {
        return (*url.URL)(&su).String()
 }
 
-type ServiceInstance struct{}
+type ServiceInstance struct {
+       Rendezvous string `json:",omitempty"`
+}
 
 type PostgreSQL struct {
        Connection     PostgreSQLConnection