New Login Design (#1675)

Signed-off-by: Daniel Valdivia <18384552+dvaldivia@users.noreply.github.com>
This commit is contained in:
Daniel Valdivia
2022-03-07 17:56:42 -08:00
committed by GitHub
parent 5e42f96eaf
commit 8e21039ef1
34 changed files with 3018 additions and 175 deletions

View File

@@ -52,6 +52,30 @@ func init() {
},
"basePath": "/api/v1",
"paths": {
"/check-version": {
"get": {
"security": [],
"tags": [
"UserAPI"
],
"summary": "Checks the current Operator version against the latest",
"operationId": "CheckMinIOVersion”",
"responses": {
"200": {
"description": "A successful response.",
"schema": {
"$ref": "#/definitions/checkOperatorVersionResponse"
}
},
"default": {
"description": "Generic error response.",
"schema": {
"$ref": "#/definitions/error"
}
}
}
}
},
"/cluster/allocatable-resources": {
"get": {
"tags": [
@@ -1863,6 +1887,17 @@ func init() {
}
}
},
"checkOperatorVersionResponse": {
"type": "object",
"properties": {
"current_version": {
"type": "string"
},
"latest_version": {
"type": "string"
}
}
},
"configureTenantRequest": {
"type": "object",
"properties": {
@@ -3921,6 +3956,30 @@ func init() {
},
"basePath": "/api/v1",
"paths": {
"/check-version": {
"get": {
"security": [],
"tags": [
"UserAPI"
],
"summary": "Checks the current Operator version against the latest",
"operationId": "CheckMinIOVersion”",
"responses": {
"200": {
"description": "A successful response.",
"schema": {
"$ref": "#/definitions/checkOperatorVersionResponse"
}
},
"default": {
"description": "Generic error response.",
"schema": {
"$ref": "#/definitions/error"
}
}
}
}
},
"/cluster/allocatable-resources": {
"get": {
"tags": [
@@ -6583,6 +6642,17 @@ func init() {
}
}
},
"checkOperatorVersionResponse": {
"type": "object",
"properties": {
"current_version": {
"type": "string"
},
"latest_version": {
"type": "string"
}
}
},
"configureTenantRequest": {
"type": "object",
"properties": {