Skip to content
Snippets Groups Projects
Commit 5ac61d19 authored by Walter Featherstone's avatar Walter Featherstone
Browse files

host and port are required for an EndPointInfo addresses array instance

parent f9172198
No related branches found
No related tags found
No related merge requests found
......@@ -1067,12 +1067,6 @@
"endpoint": {
"uris": [
"/meMp1/service/EntryPoint"
],
"addresses": [
{
"host": "192.0.2.0",
"port": 8080
}
]
},
"security": {
......@@ -1177,9 +1171,6 @@
"protocol": "HTTP",
"version": "2.0",
"endpoint": {
"uris": [
"/meMp1/service/EntryPoint"
],
"addresses": [
{
"host": "192.0.2.0",
......@@ -1283,9 +1274,6 @@
"protocol": "HTTP",
"version": "2.0",
"endpoint": {
"uris": [
"/meMp1/service/EntryPoint"
],
"addresses": [
{
"host": "192.0.2.0",
......@@ -1389,12 +1377,6 @@
"endpoint": {
"uris": [
"/meMp1/service/EntryPoint"
],
"addresses": [
{
"host": "192.0.2.0",
"port": 8080
}
]
},
"security": {
......@@ -1912,6 +1894,10 @@
"EndPointInfo.Address": {
"description": "A IP address and port pair",
"type": "object",
"required": [
"host",
"port"
],
"properties": {
"host": {
"$ref": "#/definitions/EndPointInfo.Address.Host"
......
......@@ -775,9 +775,6 @@ paths:
endpoint:
uris:
- '/meMp1/service/EntryPoint'
addresses:
- host: '192.0.2.0'
port: 8080
security:
oAuth2Info:
grantTypes: 'OAUTH2_CLIENT_CREDENTIALS'
......@@ -852,8 +849,6 @@ paths:
protocol: 'HTTP'
version: '2.0'
endpoint:
uris:
- '/meMp1/service/EntryPoint'
addresses:
- host: '192.0.2.0'
port: 8080
......@@ -926,8 +921,6 @@ paths:
protocol: 'HTTP'
version: '2.0'
endpoint:
uris:
- '/meMp1/service/EntryPoint'
addresses:
- host: '192.0.2.0'
port: 8080
......@@ -999,9 +992,6 @@ paths:
endpoint:
uris:
- '/meMp1/service/EntryPoint'
addresses:
- host: '192.0.2.0'
port: 8080
security:
oAuth2Info:
grantTypes: 'OAUTH2_CLIENT_CREDENTIALS'
......@@ -1388,6 +1378,9 @@ definitions:
EndPointInfo.Address:
description: A IP address and port pair
type: object
required:
- host
- port
properties:
host:
$ref: '#/definitions/EndPointInfo.Address.Host'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment