summaryrefslogtreecommitdiffstats
path: root/src/ceph/doc/rados/command/list-inconsistent-snap.json
diff options
context:
space:
mode:
authorQiaowei Ren <qiaowei.ren@intel.com>2018-03-01 14:38:11 +0800
committerQiaowei Ren <qiaowei.ren@intel.com>2018-03-01 14:38:11 +0800
commit7da45d65be36d36b880cc55c5036e96c24b53f00 (patch)
treed4f944eb4f8f8de50a9a7584ffa408dc3a3185b2 /src/ceph/doc/rados/command/list-inconsistent-snap.json
parent691462d09d0987b47e112d6ee8740375df3c51b2 (diff)
remove ceph code
This patch removes initial ceph code, due to license issue. Change-Id: I092d44f601cdf34aed92300fe13214925563081c Signed-off-by: Qiaowei Ren <qiaowei.ren@intel.com>
Diffstat (limited to 'src/ceph/doc/rados/command/list-inconsistent-snap.json')
-rw-r--r--src/ceph/doc/rados/command/list-inconsistent-snap.json87
1 files changed, 0 insertions, 87 deletions
diff --git a/src/ceph/doc/rados/command/list-inconsistent-snap.json b/src/ceph/doc/rados/command/list-inconsistent-snap.json
deleted file mode 100644
index 0da6b0f..0000000
--- a/src/ceph/doc/rados/command/list-inconsistent-snap.json
+++ /dev/null
@@ -1,87 +0,0 @@
-{
- "$schema": "http://json-schema.org/draft-04/schema#",
- "type": "object",
- "properties": {
- "epoch": {
- "description": "Scrub epoch",
- "type": "integer"
- },
- "inconsistents": {
- "type": "array",
- "items": {
- "type": "object",
- "properties": {
- "name": {
- "type": "string"
- },
- "nspace": {
- "type": "string"
- },
- "locator": {
- "type": "string"
- },
- "snap": {
- "oneOf": [
- {
- "type": "string",
- "enum": [
- "head",
- "snapdir"
- ]
- },
- {
- "type": "integer",
- "minimum": 0
- }
- ]
- },
- "errors": {
- "description": "Errors for this object's snap",
- "type": "array",
- "items": {
- "enum": [
- "ss_attr_missing",
- "ss_attr_corrupted",
- "oi_attr_missing",
- "oi_attr_corrupted",
- "snapset_mismatch",
- "head_mismatch",
- "headless",
- "size_mismatch",
- "extra_clones",
- "clone_missing"
- ]
- },
- "minItems": 1,
- "uniqueItems": true
- },
- "missing": {
- "description": "List of missing clones if clone_missing error set",
- "type": "array",
- "items": {
- "type": "integer"
- }
- },
- "extra_clones": {
- "description": "List of extra clones if extra_clones error set",
- "type": "array",
- "items": {
- "type": "integer"
- }
- }
- },
- "required": [
- "name",
- "nspace",
- "locator",
- "snap",
- "errors"
- ]
- }
- }
- },
- "required": [
- "epoch",
- "inconsistents"
- ]
-}