Commit 89000f3a authored by Walter Featherstone's avatar Walter Featherstone
Browse files

host and port are required for an EndPointInfo addresses array instance

parent ee5786b0
Loading
Loading
Loading
Loading
+4 −21
Original line number Diff line number Diff line
@@ -1313,12 +1313,6 @@
                    "endpoint": {
                      "uris": [
                        "/meMp1/service/EntryPoint"
                      ],
                      "addresses": [
                        {
                          "host": "192.0.2.0",
                          "port": 8080
                        }
                      ]
                    },
                    "security": {
@@ -1417,12 +1411,6 @@
                    "endpoint": {
                      "uris": [
                        "/meMp1/service/EntryPoint"
                      ],
                      "addresses": [
                        {
                          "host": "192.0.2.0",
                          "port": 8080
                        }
                      ]
                    },
                    "security": {
@@ -1553,12 +1541,6 @@
                      "endpoint": {
                        "uris": [
                          "/meMp1/service/EntryPoint"
                        ],
                        "addresses": [
                          {
                            "host": "192.0.2.0",
                            "port": 8080
                          }
                        ]
                      },
                      "security": {
@@ -1661,9 +1643,6 @@
                    "protocol": "HTTP",
                    "version": "2.0",
                    "endpoint": {
                      "uris": [
                        "/meMp1/service/EntryPoint"
                      ],
                      "addresses": [
                        {
                          "host": "192.0.2.0",
@@ -2168,6 +2147,10 @@
    "EndPointInfo.Address": {
      "description": "A IP address and port pair",
      "type": "object",
      "required": [
        "host",
        "port"
      ],
      "properties": {
        "host": {
          "$ref": "#/definitions/EndPointInfo.Address.Host"
+3 −11
Original line number Diff line number Diff line
@@ -879,9 +879,6 @@ paths:
                  endpoint:
                    uris:
                      - '/meMp1/service/EntryPoint'
                    addresses:
                      - host: '192.0.2.0'
                        port: 8080
                  security:
                    oAuth2Info:
                      grantTypes: 'OAUTH2_CLIENT_CREDENTIALS'
@@ -948,9 +945,6 @@ paths:
                  endpoint:
                    uris:
                      - '/meMp1/service/EntryPoint'
                    addresses:
                      - host: '192.0.2.0'
                        port: 8080
                  security:
                    oAuth2Info:
                      grantTypes: 'OAUTH2_CLIENT_CREDENTIALS'
@@ -1032,9 +1026,6 @@ paths:
                    endpoint:
                      uris:
                        - '/meMp1/service/EntryPoint'
                      addresses:
                        - host: '192.0.2.0'
                          port: 8080
                    security:
                      oAuth2Info:
                        grantTypes: 'OAUTH2_CLIENT_CREDENTIALS'
@@ -1103,8 +1094,6 @@ paths:
                  protocol: 'HTTP'
                  version: '2.0'
                  endpoint:
                    uris:
                      - '/meMp1/service/EntryPoint'
                    addresses:
                      - host: '192.0.2.0'
                        port: 8080
@@ -1451,6 +1440,9 @@ definitions:
  EndPointInfo.Address:
    description: A IP address and port pair
    type: object
    required:
      - host
      - port
    properties:
      host:
        $ref: '#/definitions/EndPointInfo.Address.Host'