Skip to content

Commit

Permalink
fix reference links within swagger.
Browse files Browse the repository at this point in the history
  • Loading branch information
vivek-microsoft committed Nov 3, 2022
1 parent 6b67323 commit e4dde8e
Showing 1 changed file with 18 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,7 @@
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CassandraReaperClusterStatus"
"$ref": "#/definitions/CassandraReaperClusterStatus"
}
}
}
Expand Down Expand Up @@ -826,17 +826,17 @@
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CassandraClusterRepairPublicResource"
"$ref": "#/definitions/CassandraClusterRepairPublicResource"
}
},
"text/json": {
"schema": {
"$ref": "#/components/schemas/CassandraClusterRepairPublicResource"
"$ref": "#/definitions/CassandraClusterRepairPublicResource"
}
},
"application/*+json": {
"schema": {
"$ref": "#/components/schemas/CassandraClusterRepairPublicResource"
"$ref": "#/definitions/CassandraClusterRepairPublicResource"
}
}
}
Expand All @@ -847,7 +847,7 @@
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CassandraReaperRunStatus"
"$ref": "#/definitions/CassandraReaperRunStatus"
}
}
}
Expand Down Expand Up @@ -942,7 +942,7 @@
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CassandraReaperRunStatus"
"$ref": "#/definitions/CassandraReaperRunStatus"
}
}
}
Expand Down Expand Up @@ -1091,7 +1091,7 @@
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CassandraRepairSegmentResourceFeedResponse"
"$ref": "#/definitions/CassandraRepairSegmentResourceFeedResponse"
}
}
}
Expand Down Expand Up @@ -1145,7 +1145,7 @@
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CassandraReaperRunStatus"
"$ref": "#/definitions/CassandraReaperRunStatus"
}
}
}
Expand Down Expand Up @@ -1961,7 +1961,7 @@
"nullable": true
},
"properties": {
"$ref": "#/components/schemas/CassandraClusterRepairPublicProperties"
"$ref": "#/definitions/CassandraClusterRepairPublicProperties"
}
},
"additionalProperties": false
Expand Down Expand Up @@ -1990,19 +1990,19 @@
"repairRuns": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CassandraReaperRunStatus"
"$ref": "#/definitions/CassandraReaperRunStatus"
},
"nullable": true
},
"repairSchedules": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CassandraReaperScheduleStatus"
"$ref": "#/definitions/CassandraReaperScheduleStatus"
},
"nullable": true
},
"nodesStatus": {
"$ref": "#/components/schemas/CassandraReaperNodeStatus"
"$ref": "#/definitions/CassandraReaperNodeStatus"
}
},
"additionalProperties": false
Expand Down Expand Up @@ -2067,7 +2067,7 @@
"additionalProperties": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CassandraReaperEndpointState"
"$ref": "#/definitions/CassandraReaperEndpointState"
}
}
},
Expand All @@ -2093,7 +2093,7 @@
"endpointStates": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CassandraReaperGossipInfo"
"$ref": "#/definitions/CassandraReaperGossipInfo"
},
"nullable": true
}
Expand Down Expand Up @@ -2327,7 +2327,7 @@
"nullable": true
},
"tokenRange": {
"$ref": "#/components/schemas/CassandraRepairTokenRange"
"$ref": "#/definitions/CassandraRepairTokenRange"
},
"failCount": {
"type": "integer",
Expand Down Expand Up @@ -2365,7 +2365,7 @@
"value": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CassandraRepairSegment"
"$ref": "#/definitions/CassandraRepairSegment"
},
"nullable": true
}
Expand All @@ -2376,12 +2376,12 @@
"type": "object",
"properties": {
"baseRange": {
"$ref": "#/components/schemas/CassandraRepairRingRange"
"$ref": "#/definitions/CassandraRepairRingRange"
},
"tokenRanges": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CassandraRepairRingRange"
"$ref": "#/definitions/CassandraRepairRingRange"
},
"nullable": true
},
Expand Down

0 comments on commit e4dde8e

Please sign in to comment.