Fixed missing object in swagger (#725)
Co-authored-by: Benjamin Perez <benjamin@bexsoft.net>
This commit is contained in:
@@ -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": {
|
||||
|
||||
17
swagger.yml
17
swagger.yml
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user