blob: 2d3eb87e6a76743578624554b5110304600be6e4 [file] [log] [blame]
Ed Tanous118b1c72018-09-13 13:45:51 -07001{
Gunnar Mills262d7d42021-01-20 16:28:41 -06002 "$id": "http://redfish.dmtf.org/schemas/v1/UpdateService.v1_8_3.json",
Ed Tanous118b1c72018-09-13 13:45:51 -07003 "$ref": "#/definitions/UpdateService",
Ed Tanous530520e2019-01-02 13:41:37 -08004 "$schema": "http://redfish.dmtf.org/schemas/v1/redfish-schema-v1.json",
Gunnar Mills844b4152020-06-22 12:44:09 -05005 "copyright": "Copyright 2014-2020 DMTF. For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright",
Ed Tanous118b1c72018-09-13 13:45:51 -07006 "definitions": {
7 "Actions": {
8 "additionalProperties": false,
Gunnar Mills844b4152020-06-22 12:44:09 -05009 "description": "The available actions for this resource.",
10 "longDescription": "This type shall contain the available actions for this resource.",
Ed Tanous118b1c72018-09-13 13:45:51 -070011 "patternProperties": {
Ed Tanouscb103132019-10-08 11:34:22 -070012 "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
Ed Tanous118b1c72018-09-13 13:45:51 -070013 "description": "This property shall specify a valid odata or Redfish property.",
14 "type": [
15 "array",
16 "boolean",
Ed Tanous530520e2019-01-02 13:41:37 -080017 "integer",
Ed Tanous118b1c72018-09-13 13:45:51 -070018 "number",
19 "null",
20 "object",
21 "string"
22 ]
23 }
24 },
25 "properties": {
26 "#UpdateService.SimpleUpdate": {
27 "$ref": "#/definitions/SimpleUpdate"
28 },
Gunnar Mills6f44b752020-02-06 16:50:51 -060029 "#UpdateService.StartUpdate": {
30 "$ref": "#/definitions/StartUpdate"
31 },
Ed Tanous118b1c72018-09-13 13:45:51 -070032 "Oem": {
Ed Tanous530520e2019-01-02 13:41:37 -080033 "$ref": "#/definitions/OemActions",
Gunnar Mills844b4152020-06-22 12:44:09 -050034 "description": "The available OEM-specific actions for this resource.",
35 "longDescription": "This property shall contain the available OEM-specific actions for this resource."
Ed Tanous118b1c72018-09-13 13:45:51 -070036 }
37 },
38 "type": "object"
39 },
Marri Devender Raod45d2d02019-01-21 10:11:34 -060040 "ApplyTime": {
41 "enum": [
42 "Immediate",
43 "OnReset",
44 "AtMaintenanceWindowStart",
45 "InMaintenanceWindowOnReset"
46 ],
47 "enumDescriptions": {
Ed Tanouscb103132019-10-08 11:34:22 -070048 "AtMaintenanceWindowStart": "Apply during an administrator-specified maintenance window.",
Marri Devender Raod45d2d02019-01-21 10:11:34 -060049 "Immediate": "Apply immediately.",
Ed Tanouscb103132019-10-08 11:34:22 -070050 "InMaintenanceWindowOnReset": "Apply after a reset but within an administrator-specified maintenance window.",
Marri Devender Raod45d2d02019-01-21 10:11:34 -060051 "OnReset": "Apply on a reset."
52 },
53 "enumLongDescriptions": {
Gunnar Mills844b4152020-06-22 12:44:09 -050054 "AtMaintenanceWindowStart": "This value shall indicate the HttpPushUri-provided software is applied during the maintenance window specified by the MaintenanceWindowStartTime and MaintenanceWindowDurationInSeconds properties. A service might perform resets during this maintenance window.",
Ed Tanouscb103132019-10-08 11:34:22 -070055 "Immediate": "This value shall indicate the HttpPushUri-provided software is applied immediately.",
56 "InMaintenanceWindowOnReset": "This value shall indicate the HttpPushUri-provided software is applied during the maintenance window specified by the MaintenanceWindowStartTime and MaintenanceWindowDurationInSeconds properties, and if a reset occurs within the maintenance window.",
Gunnar Mills844b4152020-06-22 12:44:09 -050057 "OnReset": "This value shall indicate the HttpPushUri-provided software is applied when the system or service is reset."
Marri Devender Raod45d2d02019-01-21 10:11:34 -060058 },
59 "type": "string"
60 },
61 "HttpPushUriApplyTime": {
62 "additionalProperties": false,
Ed Tanouscb103132019-10-08 11:34:22 -070063 "description": "The settings for when to apply HttpPushUri-provided software.",
64 "longDescription": "The properties in this object shall contain settings for when to apply HttpPushUri-provided software.",
Marri Devender Raod45d2d02019-01-21 10:11:34 -060065 "patternProperties": {
Ed Tanouscb103132019-10-08 11:34:22 -070066 "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
Marri Devender Raod45d2d02019-01-21 10:11:34 -060067 "description": "This property shall specify a valid odata or Redfish property.",
68 "type": [
69 "array",
70 "boolean",
71 "integer",
72 "number",
73 "null",
74 "object",
75 "string"
76 ]
77 }
78 },
79 "properties": {
80 "ApplyTime": {
81 "$ref": "#/definitions/ApplyTime",
Ed Tanouscb103132019-10-08 11:34:22 -070082 "description": "The time when to apply the HttpPushUri-provided software update.",
83 "longDescription": "This property shall indicate the time when to apply the HttpPushUri-provided software update.",
Marri Devender Raod45d2d02019-01-21 10:11:34 -060084 "readonly": false,
85 "versionAdded": "v1_4_0"
86 },
87 "MaintenanceWindowDurationInSeconds": {
Ed Tanouscb103132019-10-08 11:34:22 -070088 "description": "The expiry time, in seconds, of the maintenance window.",
Gunnar Mills262d7d42021-01-20 16:28:41 -060089 "longDescription": "This property shall indicate the end of the maintenance window as the number of seconds after the time specified by the MaintenanceWindowStartTime property. This property shall be required if the HttpPushUriApplyTime property value is `AtMaintenanceWindowStart` or `InMaintenanceWindowOnReset`.",
Marri Devender Raod45d2d02019-01-21 10:11:34 -060090 "minimum": 0,
91 "readonly": false,
92 "type": "integer",
93 "units": "s",
94 "versionAdded": "v1_4_0"
95 },
96 "MaintenanceWindowStartTime": {
Ed Tanouscb103132019-10-08 11:34:22 -070097 "description": "The start time of a maintenance window.",
Marri Devender Raod45d2d02019-01-21 10:11:34 -060098 "format": "date-time",
Gunnar Mills262d7d42021-01-20 16:28:41 -060099 "longDescription": "This property shall indicate the date and time when the service can start to apply the HttpPushUri-provided software as part of a maintenance window. This property shall be required if the HttpPushUriApplyTime property value is `AtMaintenanceWindowStart` or `InMaintenanceWindowOnReset`.",
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600100 "readonly": false,
101 "type": "string",
102 "versionAdded": "v1_4_0"
103 }
104 },
105 "type": "object"
106 },
107 "HttpPushUriOptions": {
108 "additionalProperties": false,
Ed Tanouscb103132019-10-08 11:34:22 -0700109 "description": "The settings for HttpPushUri-provided software updates.",
Gunnar Mills844b4152020-06-22 12:44:09 -0500110 "longDescription": "The properties in this object shall contain settings and requirements of the service for HttpPushUri-provided software updates.",
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600111 "patternProperties": {
Ed Tanouscb103132019-10-08 11:34:22 -0700112 "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600113 "description": "This property shall specify a valid odata or Redfish property.",
114 "type": [
115 "array",
116 "boolean",
117 "integer",
118 "number",
119 "null",
120 "object",
121 "string"
122 ]
123 }
124 },
125 "properties": {
126 "HttpPushUriApplyTime": {
127 "$ref": "#/definitions/HttpPushUriApplyTime",
Ed Tanouscb103132019-10-08 11:34:22 -0700128 "description": "The settings for when to apply HttpPushUri-provided firmware.",
129 "longDescription": "This property shall contain settings for when to apply HttpPushUri-provided firmware.",
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600130 "versionAdded": "v1_4_0"
131 }
132 },
133 "type": "object"
134 },
Ed Tanous118b1c72018-09-13 13:45:51 -0700135 "OemActions": {
136 "additionalProperties": true,
Gunnar Mills844b4152020-06-22 12:44:09 -0500137 "description": "The available OEM-specific actions for this resource.",
138 "longDescription": "This type shall contain the available OEM-specific actions for this resource.",
Ed Tanous118b1c72018-09-13 13:45:51 -0700139 "patternProperties": {
Ed Tanouscb103132019-10-08 11:34:22 -0700140 "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
Ed Tanous118b1c72018-09-13 13:45:51 -0700141 "description": "This property shall specify a valid odata or Redfish property.",
142 "type": [
143 "array",
144 "boolean",
Ed Tanous530520e2019-01-02 13:41:37 -0800145 "integer",
Ed Tanous118b1c72018-09-13 13:45:51 -0700146 "number",
147 "null",
148 "object",
149 "string"
150 ]
151 }
152 },
153 "properties": {},
154 "type": "object"
155 },
156 "SimpleUpdate": {
157 "additionalProperties": false,
Ed Tanouscb103132019-10-08 11:34:22 -0700158 "description": "This action updates software components.",
159 "longDescription": "This action shall update installed software components in a software image file located at an ImageURI parameter-specified URI.",
Ed Tanous118b1c72018-09-13 13:45:51 -0700160 "parameters": {
161 "ImageURI": {
Ed Tanouscb103132019-10-08 11:34:22 -0700162 "description": "The URI of the software image to install.",
Gunnar Mills844b4152020-06-22 12:44:09 -0500163 "longDescription": "This parameter shall contain an RFC3986-defined URI that links to a software image that the update service retrieves to install software in that image. This URI should contain a scheme that describes the transfer protocol. If the TransferProtocol parameter is absent or not supported, and a transfer protocol is not specified by a scheme contained within this URI, the service shall use HTTP to get the image.",
Ed Tanous118b1c72018-09-13 13:45:51 -0700164 "requiredParameter": true,
165 "type": "string"
166 },
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600167 "Password": {
Ed Tanouscb103132019-10-08 11:34:22 -0700168 "description": "The password to access the URI specified by the ImageURI parameter.",
169 "longDescription": "This parameter shall represent the password to access the URI specified by the ImageURI parameter.",
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600170 "type": "string",
171 "versionAdded": "v1_4_0"
172 },
Ed Tanous118b1c72018-09-13 13:45:51 -0700173 "Targets": {
Ed Tanouscb103132019-10-08 11:34:22 -0700174 "description": "An array of URIs that indicate where to apply the update image.",
175 "format": "uri-reference",
Ed Tanous118b1c72018-09-13 13:45:51 -0700176 "items": {
177 "type": "string"
178 },
Gunnar Mills844b4152020-06-22 12:44:09 -0500179 "longDescription": "This array property shall contain zero or more URIs that indicate where to apply the update image. These targets should correspond to software inventory instances or their related items. If this parameter is not present or contains no targets, the service shall apply the software image to all applicable targets, as determined by the service.",
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600180 "type": "array",
181 "versionAdded": "v1_2_0"
Ed Tanous118b1c72018-09-13 13:45:51 -0700182 },
183 "TransferProtocol": {
184 "$ref": "#/definitions/TransferProtocolType",
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500185 "description": "The network protocol that the update service uses to retrieve the software image file located at the URI provided in ImageURI. This parameter is ignored if the URI provided in ImageURI contains a scheme.",
Gunnar Mills262d7d42021-01-20 16:28:41 -0600186 "longDescription": "This parameter shall contain the network protocol that the update service shall use to retrieve the software image located at the ImageURI. Services should ignore this parameter if the URI provided in ImageURI contains a scheme. If this parameter is not provided (or supported), and a transfer protocol is not specified by a scheme contained within this URI, the service shall use HTTP to retrieve the image."
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600187 },
188 "Username": {
Ed Tanouscb103132019-10-08 11:34:22 -0700189 "description": "The user name to access the URI specified by the ImageURI parameter.",
190 "longDescription": "This parameter shall represent the user name to access the URI specified by the ImageURI parameter.",
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600191 "type": "string",
192 "versionAdded": "v1_4_0"
Ed Tanous118b1c72018-09-13 13:45:51 -0700193 }
194 },
195 "patternProperties": {
Ed Tanouscb103132019-10-08 11:34:22 -0700196 "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
Ed Tanous118b1c72018-09-13 13:45:51 -0700197 "description": "This property shall specify a valid odata or Redfish property.",
198 "type": [
199 "array",
200 "boolean",
Ed Tanous530520e2019-01-02 13:41:37 -0800201 "integer",
Ed Tanous118b1c72018-09-13 13:45:51 -0700202 "number",
203 "null",
204 "object",
205 "string"
206 ]
207 }
208 },
209 "properties": {
210 "target": {
211 "description": "Link to invoke action",
Ed Tanouscb103132019-10-08 11:34:22 -0700212 "format": "uri-reference",
Ed Tanous118b1c72018-09-13 13:45:51 -0700213 "type": "string"
214 },
215 "title": {
216 "description": "Friendly action name",
217 "type": "string"
218 }
219 },
220 "type": "object"
221 },
Gunnar Mills6f44b752020-02-06 16:50:51 -0600222 "StartUpdate": {
223 "additionalProperties": false,
224 "description": "This action starts an update of software components.",
225 "longDescription": "This action shall start an update of software component that have been scheduled with the OperationApplyTime value of `OnStartUpdateRequest`.",
226 "parameters": {},
227 "patternProperties": {
228 "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
229 "description": "This property shall specify a valid odata or Redfish property.",
230 "type": [
231 "array",
232 "boolean",
233 "integer",
234 "number",
235 "null",
236 "object",
237 "string"
238 ]
239 }
240 },
241 "properties": {
242 "target": {
243 "description": "Link to invoke action",
244 "format": "uri-reference",
245 "type": "string"
246 },
247 "title": {
248 "description": "Friendly action name",
249 "type": "string"
250 }
251 },
252 "type": "object",
253 "versionAdded": "v1_7_0"
254 },
Ed Tanous118b1c72018-09-13 13:45:51 -0700255 "TransferProtocolType": {
256 "enum": [
257 "CIFS",
258 "FTP",
259 "SFTP",
260 "HTTP",
261 "HTTPS",
262 "NSF",
263 "SCP",
264 "TFTP",
Ed Tanous530520e2019-01-02 13:41:37 -0800265 "OEM",
266 "NFS"
Ed Tanous118b1c72018-09-13 13:45:51 -0700267 ],
Ed Tanous530520e2019-01-02 13:41:37 -0800268 "enumDeprecated": {
Ed Tanouscb103132019-10-08 11:34:22 -0700269 "NSF": "This value has been deprecated in favor of NFS."
Ed Tanous530520e2019-01-02 13:41:37 -0800270 },
Ed Tanous118b1c72018-09-13 13:45:51 -0700271 "enumDescriptions": {
Ed Tanouscb103132019-10-08 11:34:22 -0700272 "CIFS": "Common Internet File System (CIFS).",
273 "FTP": "File Transfer Protocol (FTP).",
274 "HTTP": "Hypertext Transfer Protocol (HTTP).",
275 "HTTPS": "Hypertext Transfer Protocol Secure (HTTPS).",
276 "NFS": "Network File System (NFS).",
277 "NSF": "Network File System (NFS).",
278 "OEM": "A manufacturer-defined protocol.",
279 "SCP": "Secure Copy Protocol (SCP).",
280 "SFTP": "Secure File Transfer Protocol (SFTP).",
281 "TFTP": "Trivial File Transfer Protocol (TFTP)."
Ed Tanous118b1c72018-09-13 13:45:51 -0700282 },
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600283 "enumVersionAdded": {
284 "NFS": "v1_3_0",
285 "SFTP": "v1_1_0"
286 },
287 "enumVersionDeprecated": {
288 "NSF": "v1_3_0"
289 },
Ed Tanous118b1c72018-09-13 13:45:51 -0700290 "type": "string"
291 },
Ed Tanouscb103132019-10-08 11:34:22 -0700292 "UpdateParameters": {
293 "additionalProperties": false,
294 "description": "The update parameters used with MultipartHttpPushUri software update.",
295 "longDescription": "This type shall contain the update parameters when passing the update image when using the URI specified by the MultipartHttpPushUri property to push a software image.",
296 "patternProperties": {
297 "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
298 "description": "This property shall specify a valid odata or Redfish property.",
299 "type": [
300 "array",
301 "boolean",
302 "integer",
303 "number",
304 "null",
305 "object",
306 "string"
307 ]
308 }
309 },
310 "properties": {
Gunnar Mills09b9d452020-02-11 13:27:39 -0600311 "Oem": {
312 "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem",
313 "description": "The OEM extension property.",
314 "longDescription": "This property shall contain the OEM extensions. All values for properties contained in this object shall conform to the Redfish Specification-described requirements.",
315 "versionAdded": "v1_8_0"
316 },
Ed Tanouscb103132019-10-08 11:34:22 -0700317 "Targets": {
318 "description": "An array of URIs that indicate where to apply the update image.",
319 "format": "uri-reference",
320 "items": {
321 "type": [
322 "string",
323 "null"
324 ]
325 },
Gunnar Mills844b4152020-06-22 12:44:09 -0500326 "longDescription": "This property shall contain zero or more URIs that indicate where to apply the update image when using the URI specified by the MultipartHttpPushUri property to push a software image. These targets should correspond to software inventory instances or their related items. If this property is not present or contains no targets, the service shall apply the software image to all applicable targets, as determined by the service.",
Ed Tanouscb103132019-10-08 11:34:22 -0700327 "readonly": true,
328 "type": "array",
329 "versionAdded": "v1_6_0"
330 }
331 },
332 "type": "object"
333 },
Ed Tanous118b1c72018-09-13 13:45:51 -0700334 "UpdateService": {
335 "additionalProperties": false,
Gunnar Mills844b4152020-06-22 12:44:09 -0500336 "description": "The UpdateService schema describes the update service and the properties for the service itself with links to collections of firmware and software inventory. The update service also provides methods for updating software and firmware of the resources in a Redfish service.",
337 "longDescription": "This resource shall represent an update service and the properties that affect the service itself for a Redfish implementation.",
Ed Tanous118b1c72018-09-13 13:45:51 -0700338 "patternProperties": {
Ed Tanouscb103132019-10-08 11:34:22 -0700339 "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
Ed Tanous118b1c72018-09-13 13:45:51 -0700340 "description": "This property shall specify a valid odata or Redfish property.",
341 "type": [
342 "array",
343 "boolean",
Ed Tanous530520e2019-01-02 13:41:37 -0800344 "integer",
Ed Tanous118b1c72018-09-13 13:45:51 -0700345 "number",
346 "null",
347 "object",
348 "string"
349 ]
350 }
351 },
352 "properties": {
353 "@odata.context": {
Ed Tanouscb103132019-10-08 11:34:22 -0700354 "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/context"
Ed Tanous118b1c72018-09-13 13:45:51 -0700355 },
356 "@odata.etag": {
Ed Tanouscb103132019-10-08 11:34:22 -0700357 "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/etag"
Ed Tanous118b1c72018-09-13 13:45:51 -0700358 },
359 "@odata.id": {
Ed Tanouscb103132019-10-08 11:34:22 -0700360 "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/id"
Ed Tanous118b1c72018-09-13 13:45:51 -0700361 },
362 "@odata.type": {
Ed Tanouscb103132019-10-08 11:34:22 -0700363 "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/type"
Ed Tanous118b1c72018-09-13 13:45:51 -0700364 },
365 "Actions": {
366 "$ref": "#/definitions/Actions",
Gunnar Mills844b4152020-06-22 12:44:09 -0500367 "description": "The available actions for this resource.",
368 "longDescription": "This property shall contain the available actions for this resource."
Ed Tanous118b1c72018-09-13 13:45:51 -0700369 },
370 "Description": {
371 "anyOf": [
372 {
373 "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Description"
374 },
375 {
376 "type": "null"
377 }
378 ],
379 "readonly": true
380 },
381 "FirmwareInventory": {
Ed Tanouscb103132019-10-08 11:34:22 -0700382 "$ref": "http://redfish.dmtf.org/schemas/v1/SoftwareInventoryCollection.json#/definitions/SoftwareInventoryCollection",
Ed Tanous118b1c72018-09-13 13:45:51 -0700383 "description": "An inventory of firmware.",
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500384 "longDescription": "This property shall contain a link to a resource collection of type SoftwareInventoryCollection. The resource collection should contain the set of software components generally referred to as platform firmware or that does not execute within a host operating system. Software in this collection is generally updated using platform-specific methods or utilities.",
Ed Tanous118b1c72018-09-13 13:45:51 -0700385 "readonly": true
386 },
387 "HttpPushUri": {
Gunnar Mills844b4152020-06-22 12:44:09 -0500388 "description": "The URI used to perform an HTTP or HTTPS push update to the update service. The format of the message is vendor-specific.",
Ed Tanouscb103132019-10-08 11:34:22 -0700389 "format": "uri-reference",
Gunnar Mills844b4152020-06-22 12:44:09 -0500390 "longDescription": "This property shall contain a URI at which the update service supports an HTTP or HTTPS POST of a software image for the purpose of installing software contained within the image. Access to this URI shall require the same privilege as access to the update service. If the service requires the `Content-Length` header for POST requests to this URI, the service should return HTTP 411 if the client does not include this header in the POST request.",
Ed Tanous118b1c72018-09-13 13:45:51 -0700391 "readonly": true,
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600392 "type": "string",
393 "versionAdded": "v1_1_0"
394 },
395 "HttpPushUriOptions": {
396 "$ref": "#/definitions/HttpPushUriOptions",
Ed Tanouscb103132019-10-08 11:34:22 -0700397 "description": "The options for HttpPushUri-provided software updates.",
Gunnar Mills844b4152020-06-22 12:44:09 -0500398 "longDescription": "This property shall contain options and requirements of the service for HttpPushUri-provided software updates.",
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600399 "versionAdded": "v1_4_0"
400 },
401 "HttpPushUriOptionsBusy": {
Ed Tanouscb103132019-10-08 11:34:22 -0700402 "description": "An indication of whether a client has reserved the HttpPushUriOptions properties for software updates.",
Gunnar Mills844b4152020-06-22 12:44:09 -0500403 "longDescription": "This property shall indicate whether a client uses the HttpPushUriOptions properties for software updates. When a client uses any HttpPushUriOptions properties for software updates, it should set this property to `true`. When a client no longer uses HttpPushUriOptions properties for software updates, it should set this property to `false`. This property can provide multiple clients a way to negotiate ownership of HttpPushUriOptions properties. Clients can use this property to determine whether another client uses HttpPushUriOptions properties for software updates. This property has no functional requirements for the service.",
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600404 "readonly": false,
405 "type": [
406 "boolean",
407 "null"
408 ],
409 "versionAdded": "v1_4_0"
Ed Tanous118b1c72018-09-13 13:45:51 -0700410 },
411 "HttpPushUriTargets": {
Ed Tanouscb103132019-10-08 11:34:22 -0700412 "description": "An array of URIs that indicate where to apply the update image.",
413 "format": "uri-reference",
Ed Tanous118b1c72018-09-13 13:45:51 -0700414 "items": {
415 "type": [
416 "string",
417 "null"
418 ]
419 },
Gunnar Mills844b4152020-06-22 12:44:09 -0500420 "longDescription": "This property shall contain zero or more URIs that indicate where to apply the update image when using the URI specified by the HttpPushUri property to push a software image. These targets should correspond to SoftwareInventory instances or their related items. If this property is not present or contains no targets, the service shall apply the software image to all applicable targets, as determined by the service.",
Ed Tanous118b1c72018-09-13 13:45:51 -0700421 "readonly": false,
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600422 "type": "array",
423 "versionAdded": "v1_2_0"
Ed Tanous118b1c72018-09-13 13:45:51 -0700424 },
425 "HttpPushUriTargetsBusy": {
Ed Tanouscb103132019-10-08 11:34:22 -0700426 "description": "An indication of whether any client has reserved the HttpPushUriTargets property.",
Gunnar Mills844b4152020-06-22 12:44:09 -0500427 "longDescription": "This property shall indicate whether any client has reserved the HttpPushUriTargets property for firmware updates. A client should set this property to `true` when it uses HttpPushUriTargets for firmware updates. A client should set it to `false` when it is no longer uses HttpPushUriTargets for updates. The property can provide multiple clients a way to negotiate ownership of HttpPushUriTargets and helps clients determine whether another client is using HttpPushUriTargets to make firmware updates. This property has no functional requirements for the service.",
Ed Tanous118b1c72018-09-13 13:45:51 -0700428 "readonly": false,
429 "type": [
430 "boolean",
431 "null"
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600432 ],
433 "versionAdded": "v1_2_0"
Ed Tanous118b1c72018-09-13 13:45:51 -0700434 },
435 "Id": {
436 "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Id",
437 "readonly": true
438 },
Ed Tanouscb103132019-10-08 11:34:22 -0700439 "MaxImageSizeBytes": {
Gunnar Mills844b4152020-06-22 12:44:09 -0500440 "description": "The maximum size in bytes of the software update image that this service supports.",
441 "longDescription": "This property shall indicate the maximum size of the software update image that clients can send to this update service.",
Ed Tanouscb103132019-10-08 11:34:22 -0700442 "readonly": true,
443 "type": [
444 "integer",
445 "null"
446 ],
447 "units": "By",
448 "versionAdded": "v1_5_0"
449 },
450 "MultipartHttpPushUri": {
Gunnar Mills844b4152020-06-22 12:44:09 -0500451 "description": "The URI used to perform a Redfish Specification-defined Multipart HTTP or HTTPS push update to the update service.",
Ed Tanouscb103132019-10-08 11:34:22 -0700452 "format": "uri-reference",
453 "longDescription": "This property shall contain a URI used to perform a Redfish Specification-defined Multipart HTTP or HTTPS POST of a software image for the purpose of installing software contained within the image.",
454 "readonly": true,
455 "type": "string",
456 "versionAdded": "v1_6_0"
457 },
Ed Tanous118b1c72018-09-13 13:45:51 -0700458 "Name": {
459 "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Name",
460 "readonly": true
461 },
462 "Oem": {
463 "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem",
Ed Tanouscb103132019-10-08 11:34:22 -0700464 "description": "The OEM extension property.",
465 "longDescription": "This property shall contain the OEM extensions. All values for properties that this object contains shall conform to the Redfish Specification-described requirements."
Ed Tanous118b1c72018-09-13 13:45:51 -0700466 },
467 "ServiceEnabled": {
Ed Tanouscb103132019-10-08 11:34:22 -0700468 "description": "An indication of whether this service is enabled.",
469 "longDescription": "This property shall indicate whether this service is enabled.",
Ed Tanous118b1c72018-09-13 13:45:51 -0700470 "readonly": false,
471 "type": [
472 "boolean",
473 "null"
474 ]
475 },
476 "SoftwareInventory": {
Ed Tanouscb103132019-10-08 11:34:22 -0700477 "$ref": "http://redfish.dmtf.org/schemas/v1/SoftwareInventoryCollection.json#/definitions/SoftwareInventoryCollection",
Ed Tanous118b1c72018-09-13 13:45:51 -0700478 "description": "An inventory of software.",
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500479 "longDescription": "This property shall contain a link to a resource collection of type SoftwareInventoryCollection. The resource collection should contain the set of software components executed in the context of a host operating system. This can include device drivers, applications, or offload workloads. Software in this collection is generally updated using operating system-centric methods.",
Ed Tanous118b1c72018-09-13 13:45:51 -0700480 "readonly": true
481 },
482 "Status": {
Ed Tanous530520e2019-01-02 13:41:37 -0800483 "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Status",
Gunnar Mills844b4152020-06-22 12:44:09 -0500484 "description": "The status and health of the resource and its subordinate or dependent resources.",
485 "longDescription": "This property shall contain any status or health properties of the resource."
Ed Tanous118b1c72018-09-13 13:45:51 -0700486 }
487 },
488 "required": [
Ed Tanous530520e2019-01-02 13:41:37 -0800489 "@odata.id",
490 "@odata.type",
Ed Tanous118b1c72018-09-13 13:45:51 -0700491 "Id",
492 "Name"
493 ],
494 "type": "object"
495 }
496 },
497 "owningEntity": "DMTF",
Gunnar Mills09b9d452020-02-11 13:27:39 -0600498 "release": "2019.4",
Gunnar Mills262d7d42021-01-20 16:28:41 -0600499 "title": "#UpdateService.v1_8_3.UpdateService"
Ed Tanous118b1c72018-09-13 13:45:51 -0700500}