Fixed missing object in swagger (#725)

Co-authored-by: Benjamin Perez <benjamin@bexsoft.net>
This commit is contained in:
Alex
2021-05-07 16:14:54 -05:00
committed by GitHub
parent 281f8d553a
commit cc02b21632
2 changed files with 33 additions and 6 deletions

View File

@@ -6398,6 +6398,17 @@ func init() {
}
}
},
"tenantResponseItem": {
"type": "object",
"properties": {
"access_key": {
"type": "string"
},
"secret_key": {
"type": "string"
}
}
},
"tenantUsage": {
"type": "object",
"properties": {
@@ -13639,6 +13650,17 @@ func init() {
}
}
},
"tenantResponseItem": {
"type": "object",
"properties": {
"access_key": {
"type": "string"
},
"secret_key": {
"type": "string"
}
}
},
"tenantUsage": {
"type": "object",
"properties": {

View File

@@ -3878,12 +3878,17 @@ definitions:
type: object
properties:
console:
type: object
properties:
access_key:
type: string
secret_key:
type: string
type: array
items:
$ref: "#/definitions/tenantResponseItem"
tenantResponseItem:
type: object
properties:
access_key:
type: string
secret_key:
type: string
tenantPod:
type: object