Andrew Geissler | 48edf9a | 2023-02-21 10:44:14 -0600 | [diff] [blame] | 1 | { |
| 2 | "$schema": "http://json-schema.org/draft-07/schema#", |
Patrick Williams | 7d6080d | 2024-09-04 12:54:45 -0400 | [diff] [blame] | 3 | "$defs": { |
Andrew Geissler | 48edf9a | 2023-02-21 10:44:14 -0600 | [diff] [blame] | 4 | "SatelliteController": { |
| 5 | "title": "satellite controller configuration", |
Andrew Jeffery | bb8aa37 | 2024-03-20 11:24:32 +1030 | [diff] [blame] | 6 | "description": "The configuration used to add remote BMCs to a system", |
Andrew Geissler | 48edf9a | 2023-02-21 10:44:14 -0600 | [diff] [blame] | 7 | "type": "object", |
| 8 | "properties": { |
| 9 | "Hostname": { |
Andrew Jeffery | bb8aa37 | 2024-03-20 11:24:32 +1030 | [diff] [blame] | 10 | "description": "Hostname or IP of satellite controller", |
Andrew Geissler | 48edf9a | 2023-02-21 10:44:14 -0600 | [diff] [blame] | 11 | "type": "string" |
| 12 | }, |
| 13 | "Port": { |
Andrew Jeffery | bb8aa37 | 2024-03-20 11:24:32 +1030 | [diff] [blame] | 14 | "description": "Network port to connect to satellite controller", |
Andrew Geissler | 48edf9a | 2023-02-21 10:44:14 -0600 | [diff] [blame] | 15 | "type": "number" |
| 16 | }, |
| 17 | "AuthType": { |
Andrew Jeffery | bb8aa37 | 2024-03-20 11:24:32 +1030 | [diff] [blame] | 18 | "description": "Type of authorization to use with satellite controller", |
Andrew Geissler | 48edf9a | 2023-02-21 10:44:14 -0600 | [diff] [blame] | 19 | "enum": ["None"] |
| 20 | }, |
| 21 | "Name": { |
Andrew Jeffery | bb8aa37 | 2024-03-20 11:24:32 +1030 | [diff] [blame] | 22 | "description": "The name of the object", |
Andrew Geissler | 48edf9a | 2023-02-21 10:44:14 -0600 | [diff] [blame] | 23 | "type": "string" |
| 24 | }, |
| 25 | "Type": { |
Andrew Jeffery | bb8aa37 | 2024-03-20 11:24:32 +1030 | [diff] [blame] | 26 | "description": "The type of satellite controller", |
Andrew Geissler | 48edf9a | 2023-02-21 10:44:14 -0600 | [diff] [blame] | 27 | "enum": ["SatelliteController"] |
| 28 | } |
| 29 | }, |
| 30 | "required": ["Hostname", "Port", "AuthType", "Name", "Type"] |
| 31 | } |
| 32 | } |
| 33 | } |