identities -> 'environments'

This commit is contained in:
Michael Quigley
2022-08-03 11:54:11 -04:00
parent 1a4bb269e8
commit 46b00ab9f0
25 changed files with 583 additions and 479 deletions

View File

@ -105,7 +105,7 @@ func init() {
}
}
},
"/listIdentities": {
"/listEnvironments": {
"get": {
"security": [
{
@ -115,12 +115,12 @@ func init() {
"tags": [
"metadata"
],
"operationId": "listIdentities",
"operationId": "listEnvironments",
"responses": {
"200": {
"description": "success",
"schema": {
"$ref": "#/definitions/identities"
"$ref": "#/definitions/environments"
}
},
"500": {
@ -289,16 +289,7 @@ func init() {
}
}
},
"errorMessage": {
"type": "string"
},
"identities": {
"type": "array",
"items": {
"$ref": "#/definitions/identity"
}
},
"identity": {
"environment": {
"type": "object",
"properties": {
"active": {
@ -315,6 +306,15 @@ func init() {
}
}
},
"environments": {
"type": "array",
"items": {
"$ref": "#/definitions/environment"
}
},
"errorMessage": {
"type": "string"
},
"loginRequest": {
"type": "object",
"properties": {
@ -470,7 +470,7 @@ func init() {
}
}
},
"/listIdentities": {
"/listEnvironments": {
"get": {
"security": [
{
@ -480,12 +480,12 @@ func init() {
"tags": [
"metadata"
],
"operationId": "listIdentities",
"operationId": "listEnvironments",
"responses": {
"200": {
"description": "success",
"schema": {
"$ref": "#/definitions/identities"
"$ref": "#/definitions/environments"
}
},
"500": {
@ -654,16 +654,7 @@ func init() {
}
}
},
"errorMessage": {
"type": "string"
},
"identities": {
"type": "array",
"items": {
"$ref": "#/definitions/identity"
}
},
"identity": {
"environment": {
"type": "object",
"properties": {
"active": {
@ -680,6 +671,15 @@ func init() {
}
}
},
"environments": {
"type": "array",
"items": {
"$ref": "#/definitions/environment"
}
},
"errorMessage": {
"type": "string"
},
"loginRequest": {
"type": "object",
"properties": {