2021-04-18 15:41:13 -04:00
// Copyright (c) 2015-2021 MinIO, Inc.
//
// This file is part of MinIO Object Storage stack
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
2020-04-14 15:46:37 -04:00
package api
2021-06-01 17:59:40 -04:00
import "github.com/minio/minio/internal/config"
2020-04-14 15:46:37 -04:00
// Help template for storageclass feature.
var (
2022-04-26 23:11:37 -04:00
defaultHelpPostfix = func ( key string ) string {
return config . DefaultHelpPostfix ( DefaultKVS , key )
}
2020-04-14 15:46:37 -04:00
Help = config . HelpKVS {
config . HelpKV {
Key : apiRequestsMax ,
2022-04-26 23:11:37 -04:00
Description : ` set the maximum number of concurrent requests ` + defaultHelpPostfix ( apiRequestsMax ) ,
2020-04-14 15:46:37 -04:00
Optional : true ,
Type : "number" ,
} ,
config . HelpKV {
Key : apiRequestsDeadline ,
2022-04-26 23:11:37 -04:00
Description : ` set the deadline for API requests waiting to be processed ` + defaultHelpPostfix ( apiRequestsDeadline ) ,
2020-04-14 15:46:37 -04:00
Optional : true ,
Type : "duration" ,
} ,
2021-10-10 12:52:21 -04:00
config . HelpKV {
Key : apiClusterDeadline ,
2022-04-26 23:11:37 -04:00
Description : ` set the deadline for cluster readiness check ` + defaultHelpPostfix ( apiClusterDeadline ) ,
2021-10-10 12:52:21 -04:00
Optional : true ,
Type : "duration" ,
} ,
2020-06-04 17:58:34 -04:00
config . HelpKV {
Key : apiCorsAllowOrigin ,
2022-04-26 23:11:37 -04:00
Description : ` set comma separated list of origins allowed for CORS requests ` + defaultHelpPostfix ( apiCorsAllowOrigin ) ,
2020-06-04 17:58:34 -04:00
Optional : true ,
Type : "csv" ,
} ,
2020-09-12 02:03:08 -04:00
config . HelpKV {
Key : apiRemoteTransportDeadline ,
2022-04-26 23:11:37 -04:00
Description : ` set the deadline for API requests on remote transports while proxying between federated instances e.g. "2h" ` + defaultHelpPostfix ( apiRemoteTransportDeadline ) ,
2020-09-12 02:03:08 -04:00
Optional : true ,
Type : "duration" ,
} ,
2021-10-10 12:52:21 -04:00
config . HelpKV {
Key : apiListQuorum ,
2022-04-26 23:11:37 -04:00
Description : ` set the acceptable quorum expected for list operations e.g. "optimal", "reduced", "disk", "strict" ` + defaultHelpPostfix ( apiListQuorum ) ,
2021-10-10 12:52:21 -04:00
Optional : true ,
Type : "string" ,
} ,
2021-02-02 06:15:06 -05:00
config . HelpKV {
2022-09-24 19:20:28 -04:00
Key : apiReplicationPriority ,
Description : ` set replication priority ` + defaultHelpPostfix ( apiReplicationPriority ) ,
2021-02-02 06:15:06 -05:00
Optional : true ,
2022-09-24 19:20:28 -04:00
Type : "string" ,
2021-04-24 00:58:45 -04:00
} ,
2021-08-12 01:23:56 -04:00
config . HelpKV {
Key : apiTransitionWorkers ,
2022-04-26 23:11:37 -04:00
Description : ` set the number of transition workers ` + defaultHelpPostfix ( apiTransitionWorkers ) ,
2021-08-12 01:23:56 -04:00
Optional : true ,
Type : "number" ,
} ,
2021-10-04 13:52:28 -04:00
config . HelpKV {
Key : apiStaleUploadsExpiry ,
2022-04-26 23:11:37 -04:00
Description : ` set to expire stale multipart uploads older than this values ` + defaultHelpPostfix ( apiStaleUploadsExpiry ) ,
2021-10-04 13:52:28 -04:00
Optional : true ,
Type : "duration" ,
} ,
config . HelpKV {
Key : apiStaleUploadsCleanupInterval ,
2022-04-26 23:11:37 -04:00
Description : ` set to change intervals when stale multipart uploads are expired ` + defaultHelpPostfix ( apiStaleUploadsCleanupInterval ) ,
2021-10-04 13:52:28 -04:00
Optional : true ,
Type : "duration" ,
} ,
config . HelpKV {
Key : apiDeleteCleanupInterval ,
2022-04-26 23:11:37 -04:00
Description : ` set to change intervals when deleted objects are permanently deleted from ".trash" folder ` + defaultHelpPostfix ( apiDeleteCleanupInterval ) ,
2021-10-04 13:52:28 -04:00
Optional : true ,
Type : "duration" ,
} ,
2022-01-17 11:34:14 -05:00
config . HelpKV {
Key : apiDisableODirect ,
2022-04-26 23:11:37 -04:00
Description : "set to disable O_DIRECT for reads under special conditions. NOTE: it is not recommended to disable O_DIRECT without prior testing." + defaultHelpPostfix ( apiDisableODirect ) ,
2022-01-17 11:34:14 -05:00
Optional : true ,
Type : "boolean" ,
} ,
2020-04-14 15:46:37 -04:00
}
)