/detail/environmment; environment detail api backend (#107)

This commit is contained in:
Michael Quigley
2022-12-22 13:51:29 -05:00
parent 988ef9bec3
commit a0fd3a9c63
15 changed files with 1141 additions and 2 deletions

View File

@@ -74,6 +74,49 @@ func init() {
}
}
},
"/detail/environment": {
"get": {
"security": [
{
"key": []
}
],
"tags": [
"metadata"
],
"operationId": "getEnvironmentDetail",
"parameters": [
{
"name": "body",
"in": "body",
"schema": {
"properties": {
"envZId": {
"type": "string"
}
}
}
}
],
"responses": {
"200": {
"description": "ok",
"schema": {
"$ref": "#/definitions/environmentServices"
}
},
"401": {
"description": "unauthorized"
},
"404": {
"description": "not found"
},
"500": {
"description": "internal server error"
}
}
}
},
"/disable": {
"post": {
"security": [
@@ -1166,6 +1209,49 @@ func init() {
}
}
},
"/detail/environment": {
"get": {
"security": [
{
"key": []
}
],
"tags": [
"metadata"
],
"operationId": "getEnvironmentDetail",
"parameters": [
{
"name": "body",
"in": "body",
"schema": {
"properties": {
"envZId": {
"type": "string"
}
}
}
}
],
"responses": {
"200": {
"description": "ok",
"schema": {
"$ref": "#/definitions/environmentServices"
}
},
"401": {
"description": "unauthorized"
},
"404": {
"description": "not found"
},
"500": {
"description": "internal server error"
}
}
}
},
"/disable": {
"post": {
"security": [