15572: Updating dispatcher install
[arvados.git] / sdk / go / arvados / config.go
index 6f78073ac8df415287b5efbf80cec6d4c356e0a0..72128a9dcd385d5d7274567bde7c836417af09f3 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,13 @@ type Cluster struct {
                Repositories string
        }
        Login struct {
-               ProviderAppSecret string
-               ProviderAppID     string
+               GoogleClientID                string
+               GoogleClientSecret            string
+               GoogleAlternateEmailAddresses bool
+               ProviderAppID                 string
+               ProviderAppSecret             string
+               LoginCluster                  string
+               RemoteTokenRefresh            Duration
        }
        Mail struct {
                MailchimpAPIKey                string
@@ -164,6 +174,7 @@ type Cluster struct {
                NewUsersAreActive                     bool
                UserNotifierEmailFrom                 string
                UserProfileNotificationAddress        string
+               PreferDomainForUsername               string
        }
        Volumes   map[string]Volume
        Workbench struct {
@@ -200,6 +211,8 @@ type Cluster struct {
                }
                UserProfileFormMessage string
                VocabularyURL          string
+               WelcomePageHTML        string
+               InactivePageHTML       string
        }
 
        EnableBetaController14287 bool
@@ -295,9 +308,6 @@ func (su URL) String() string {
 }
 
 type ServiceInstance struct {
-       // Rendezvous is normally empty; when changing the URL of a
-       // Keepstore service, Rendezvous can be set to the old URL to
-       // preserve rendezvous ordering.
        Rendezvous string `json:",omitempty"`
 }