-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: kpango <[email protected]>
- Loading branch information
Showing
61 changed files
with
2,288 additions
and
5,297 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"title": "Control", | ||
"$id": "Control.json", | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"description": "Control related messages.", | ||
"properties": { | ||
}, | ||
"definitions": { | ||
"Control_CreateIndexRequest": { | ||
"title": "CreateIndexRequest", | ||
"type": "object", | ||
"description": "Represent the create index request.", | ||
"properties": { | ||
"poolSize": { | ||
"title": "poolSize", | ||
"type": "integer", | ||
"description": "The pool size of the create index operation.", | ||
"format": "uint32" | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"title": "Discoverer", | ||
"$id": "Discoverer.json", | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"description": "Discoverer related messages.", | ||
"properties": { | ||
}, | ||
"definitions": { | ||
"Discoverer_Request": { | ||
"title": "Request", | ||
"type": "object", | ||
"description": "Represent the dicoverer request.", | ||
"properties": { | ||
"name": { | ||
"title": "name", | ||
"type": "string", | ||
"description": "The agent name to be discover." | ||
}, | ||
"namespace": { | ||
"title": "namespace", | ||
"type": "string", | ||
"description": "The namespace to be discover." | ||
}, | ||
"node": { | ||
"title": "node", | ||
"type": "string", | ||
"description": "The node to be discover." | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"title": "Empty", | ||
"$id": "Empty.json", | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"description": "Represent an empty message.", | ||
"properties": { | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
"title": "Filter", | ||
"$id": "Filter.json", | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"description": "Filter related messages.", | ||
"properties": { | ||
}, | ||
"definitions": { | ||
"Filter_Target": { | ||
"title": "Target", | ||
"type": "object", | ||
"description": "Represent the target filter server.", | ||
"properties": { | ||
"host": { | ||
"title": "host", | ||
"type": "string", | ||
"description": "The target hostname." | ||
}, | ||
"port": { | ||
"title": "port", | ||
"type": "integer", | ||
"description": "The target port.", | ||
"format": "uint32" | ||
} | ||
} | ||
}, | ||
"Filter_Config": { | ||
"title": "Config", | ||
"type": "object", | ||
"description": "Represent filter configuration.", | ||
"properties": { | ||
"targets": { | ||
"title": "targets", | ||
"type": "array", | ||
"items": { | ||
"$ref": "Filter_Target.json" | ||
}, | ||
"description": "Represent the filter target configuration." | ||
} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.