• This project
    • Loading...
  • Sign in

홍길동 / onos

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • onos
  • ..
  • definitions
  • ClusterNode.json
  • andrea's avatar
    [ONOS-3394] Json models for REST api · 1ce2bc80 ...
    1ce2bc80
    Change-Id: I69c396ae08d25e83dce31e4d2ec92cd9a28c54f5
    andrea authored 2015-11-19 18:13:08 -0800
ClusterNode.json 426 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
{
  "type": "object",
  "required": [
    "id",
    "ip",
    "tcpPort",
    "status"
  ],
  "properties": {
    "id": {
      "type": "string",
      "example": "127.0.0.1"
    },
    "ip": {
      "type": "string",
      "example": "127.0.0.1"
    },
    "tcpPort": {
      "type": "integer",
      "format": "int64",
      "example": 9876
    },
    "status": {
      "type": "string",
      "example": "ACTIVE"
    }
  }
}