2022-06-27 06:59:41 -04:00
|
|
|
// Copyright (c) 2015-2022 MinIO, Inc.
|
2021-04-18 15:41:13 -04:00
|
|
|
//
|
|
|
|
// 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/>.
|
2018-10-04 20:44:06 -04:00
|
|
|
|
|
|
|
package cmd
|
|
|
|
|
2019-10-01 16:12:15 -04:00
|
|
|
const (
|
2023-07-31 18:20:48 -04:00
|
|
|
storageRESTVersion = "v50" // Added DiskInfo metrics query
|
2019-12-12 09:02:37 -05:00
|
|
|
storageRESTVersionPrefix = SlashSeparator + storageRESTVersion
|
2019-11-04 12:30:59 -05:00
|
|
|
storageRESTPrefix = minioReservedBucketPath + "/storage"
|
2019-10-01 16:12:15 -04:00
|
|
|
)
|
2018-10-04 20:44:06 -04:00
|
|
|
|
|
|
|
const (
|
2021-02-26 18:11:42 -05:00
|
|
|
storageRESTMethodHealth = "/health"
|
|
|
|
storageRESTMethodDiskInfo = "/diskinfo"
|
|
|
|
storageRESTMethodNSScanner = "/nsscanner"
|
|
|
|
storageRESTMethodMakeVol = "/makevol"
|
|
|
|
storageRESTMethodMakeVolBulk = "/makevolbulk"
|
|
|
|
storageRESTMethodStatVol = "/statvol"
|
|
|
|
storageRESTMethodDeleteVol = "/deletevol"
|
|
|
|
storageRESTMethodListVols = "/listvols"
|
2018-10-04 20:44:06 -04:00
|
|
|
|
2019-11-04 12:30:59 -05:00
|
|
|
storageRESTMethodAppendFile = "/appendfile"
|
|
|
|
storageRESTMethodCreateFile = "/createfile"
|
|
|
|
storageRESTMethodWriteAll = "/writeall"
|
2020-06-12 23:04:01 -04:00
|
|
|
storageRESTMethodWriteMetadata = "/writemetadata"
|
2021-04-04 16:32:31 -04:00
|
|
|
storageRESTMethodUpdateMetadata = "/updatemetadata"
|
2020-06-12 23:04:01 -04:00
|
|
|
storageRESTMethodDeleteVersion = "/deleteversion"
|
|
|
|
storageRESTMethodReadVersion = "/readversion"
|
2022-04-20 15:49:05 -04:00
|
|
|
storageRESTMethodReadXL = "/readxl"
|
2020-06-12 23:04:01 -04:00
|
|
|
storageRESTMethodRenameData = "/renamedata"
|
|
|
|
storageRESTMethodCheckParts = "/checkparts"
|
2019-11-04 12:30:59 -05:00
|
|
|
storageRESTMethodReadAll = "/readall"
|
|
|
|
storageRESTMethodReadFile = "/readfile"
|
|
|
|
storageRESTMethodReadFileStream = "/readfilestream"
|
|
|
|
storageRESTMethodListDir = "/listdir"
|
|
|
|
storageRESTMethodDeleteFile = "/deletefile"
|
2020-06-12 23:04:01 -04:00
|
|
|
storageRESTMethodDeleteVersions = "/deleteverions"
|
2019-11-04 12:30:59 -05:00
|
|
|
storageRESTMethodRenameFile = "/renamefile"
|
|
|
|
storageRESTMethodVerifyFile = "/verifyfile"
|
2020-10-28 12:18:35 -04:00
|
|
|
storageRESTMethodWalkDir = "/walkdir"
|
2021-07-09 14:29:16 -04:00
|
|
|
storageRESTMethodStatInfoFile = "/statfile"
|
2022-07-19 11:35:29 -04:00
|
|
|
storageRESTMethodReadMultiple = "/readmultiple"
|
2022-11-28 13:20:55 -05:00
|
|
|
storageRESTMethodCleanAbandoned = "/cleanabandoned"
|
2018-10-04 20:44:06 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2020-12-28 13:31:00 -05:00
|
|
|
storageRESTVolume = "volume"
|
|
|
|
storageRESTVolumes = "volumes"
|
|
|
|
storageRESTDirPath = "dir-path"
|
|
|
|
storageRESTFilePath = "file-path"
|
2021-02-03 13:33:43 -05:00
|
|
|
storageRESTForceDelMarker = "force-delete-marker"
|
2020-12-28 13:31:00 -05:00
|
|
|
storageRESTVersionID = "version-id"
|
2021-01-07 22:27:31 -05:00
|
|
|
storageRESTReadData = "read-data"
|
2020-12-28 13:31:00 -05:00
|
|
|
storageRESTTotalVersions = "total-versions"
|
|
|
|
storageRESTSrcVolume = "source-volume"
|
|
|
|
storageRESTSrcPath = "source-path"
|
|
|
|
storageRESTDstVolume = "destination-volume"
|
|
|
|
storageRESTDstPath = "destination-path"
|
|
|
|
storageRESTOffset = "offset"
|
|
|
|
storageRESTLength = "length"
|
|
|
|
storageRESTCount = "count"
|
|
|
|
storageRESTPrefixFilter = "prefix"
|
2021-02-18 14:06:54 -05:00
|
|
|
storageRESTForwardFilter = "forward"
|
2020-12-28 13:31:00 -05:00
|
|
|
storageRESTRecursive = "recursive"
|
|
|
|
storageRESTReportNotFound = "report-notfound"
|
|
|
|
storageRESTBitrotAlgo = "bitrot-algo"
|
|
|
|
storageRESTBitrotHash = "bitrot-hash"
|
|
|
|
storageRESTDiskID = "disk-id"
|
|
|
|
storageRESTForceDelete = "force-delete"
|
2021-10-01 14:50:00 -04:00
|
|
|
storageRESTGlob = "glob"
|
2022-04-07 11:10:40 -04:00
|
|
|
storageRESTScanMode = "scan-mode"
|
2023-07-31 18:20:48 -04:00
|
|
|
storageRESTMetrics = "metrics"
|
2023-08-25 10:58:11 -04:00
|
|
|
storageRESTNoPersistence = "no-persistence"
|
2018-10-04 20:44:06 -04:00
|
|
|
)
|