1*c6d7a45dSGunnar Mills{ 2*c6d7a45dSGunnar Mills "$id": "http://redfish.dmtf.org/schemas/v1/Manager.v1_22_0.json", 3*c6d7a45dSGunnar Mills "$ref": "#/definitions/Manager", 4*c6d7a45dSGunnar Mills "$schema": "http://redfish.dmtf.org/schemas/v1/redfish-schema-v1.json", 5*c6d7a45dSGunnar Mills "copyright": "Copyright 2014-2025 DMTF. For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright", 6*c6d7a45dSGunnar Mills "definitions": { 7*c6d7a45dSGunnar Mills "Actions": { 8*c6d7a45dSGunnar Mills "additionalProperties": false, 9*c6d7a45dSGunnar Mills "description": "The available actions for this resource.", 10*c6d7a45dSGunnar Mills "longDescription": "This type shall contain the available actions for this resource.", 11*c6d7a45dSGunnar Mills "patternProperties": { 12*c6d7a45dSGunnar Mills "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": { 13*c6d7a45dSGunnar Mills "description": "This property shall specify a valid odata or Redfish property.", 14*c6d7a45dSGunnar Mills "type": [ 15*c6d7a45dSGunnar Mills "array", 16*c6d7a45dSGunnar Mills "boolean", 17*c6d7a45dSGunnar Mills "integer", 18*c6d7a45dSGunnar Mills "number", 19*c6d7a45dSGunnar Mills "null", 20*c6d7a45dSGunnar Mills "object", 21*c6d7a45dSGunnar Mills "string" 22*c6d7a45dSGunnar Mills ] 23*c6d7a45dSGunnar Mills } 24*c6d7a45dSGunnar Mills }, 25*c6d7a45dSGunnar Mills "properties": { 26*c6d7a45dSGunnar Mills "#Manager.ForceFailover": { 27*c6d7a45dSGunnar Mills "$ref": "#/definitions/ForceFailover" 28*c6d7a45dSGunnar Mills }, 29*c6d7a45dSGunnar Mills "#Manager.ModifyRedundancySet": { 30*c6d7a45dSGunnar Mills "$ref": "#/definitions/ModifyRedundancySet" 31*c6d7a45dSGunnar Mills }, 32*c6d7a45dSGunnar Mills "#Manager.Reset": { 33*c6d7a45dSGunnar Mills "$ref": "#/definitions/Reset" 34*c6d7a45dSGunnar Mills }, 35*c6d7a45dSGunnar Mills "#Manager.ResetToDefaults": { 36*c6d7a45dSGunnar Mills "$ref": "#/definitions/ResetToDefaults" 37*c6d7a45dSGunnar Mills }, 38*c6d7a45dSGunnar Mills "#Manager.UpdateSecurityMode": { 39*c6d7a45dSGunnar Mills "$ref": "#/definitions/UpdateSecurityMode" 40*c6d7a45dSGunnar Mills }, 41*c6d7a45dSGunnar Mills "Oem": { 42*c6d7a45dSGunnar Mills "$ref": "#/definitions/OemActions", 43*c6d7a45dSGunnar Mills "description": "The available OEM-specific actions for this resource.", 44*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the available OEM-specific actions for this resource." 45*c6d7a45dSGunnar Mills } 46*c6d7a45dSGunnar Mills }, 47*c6d7a45dSGunnar Mills "type": "object" 48*c6d7a45dSGunnar Mills }, 49*c6d7a45dSGunnar Mills "CommandConnectTypesSupported": { 50*c6d7a45dSGunnar Mills "enum": [ 51*c6d7a45dSGunnar Mills "SSH", 52*c6d7a45dSGunnar Mills "Telnet", 53*c6d7a45dSGunnar Mills "IPMI", 54*c6d7a45dSGunnar Mills "Oem" 55*c6d7a45dSGunnar Mills ], 56*c6d7a45dSGunnar Mills "enumDescriptions": { 57*c6d7a45dSGunnar Mills "IPMI": "The controller supports a command shell connection through the IPMI Serial Over LAN (SOL) protocol.", 58*c6d7a45dSGunnar Mills "Oem": "The controller supports a command shell connection through an OEM-specific protocol.", 59*c6d7a45dSGunnar Mills "SSH": "The controller supports a command shell connection through the SSH protocol.", 60*c6d7a45dSGunnar Mills "Telnet": "The controller supports a command shell connection through the Telnet protocol." 61*c6d7a45dSGunnar Mills }, 62*c6d7a45dSGunnar Mills "type": "string" 63*c6d7a45dSGunnar Mills }, 64*c6d7a45dSGunnar Mills "CommandShell": { 65*c6d7a45dSGunnar Mills "additionalProperties": false, 66*c6d7a45dSGunnar Mills "description": "The information about a command shell service that this manager provides.", 67*c6d7a45dSGunnar Mills "longDescription": "This type shall describe a command shell service for a manager.", 68*c6d7a45dSGunnar Mills "patternProperties": { 69*c6d7a45dSGunnar Mills "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": { 70*c6d7a45dSGunnar Mills "description": "This property shall specify a valid odata or Redfish property.", 71*c6d7a45dSGunnar Mills "type": [ 72*c6d7a45dSGunnar Mills "array", 73*c6d7a45dSGunnar Mills "boolean", 74*c6d7a45dSGunnar Mills "integer", 75*c6d7a45dSGunnar Mills "number", 76*c6d7a45dSGunnar Mills "null", 77*c6d7a45dSGunnar Mills "object", 78*c6d7a45dSGunnar Mills "string" 79*c6d7a45dSGunnar Mills ] 80*c6d7a45dSGunnar Mills } 81*c6d7a45dSGunnar Mills }, 82*c6d7a45dSGunnar Mills "properties": { 83*c6d7a45dSGunnar Mills "ConnectTypesSupported": { 84*c6d7a45dSGunnar Mills "description": "This property enumerates the command shell connection types that the implementation allows.", 85*c6d7a45dSGunnar Mills "items": { 86*c6d7a45dSGunnar Mills "$ref": "#/definitions/CommandConnectTypesSupported" 87*c6d7a45dSGunnar Mills }, 88*c6d7a45dSGunnar Mills "longDescription": "This property shall contain an array of the enumerations. SSH shall be included if the Secure Shell (SSH) protocol is supported. Telnet shall be included if the Telnet protocol is supported. IPMI shall be included if the IPMI Serial Over LAN (SOL) protocol is supported.", 89*c6d7a45dSGunnar Mills "readonly": true, 90*c6d7a45dSGunnar Mills "type": "array" 91*c6d7a45dSGunnar Mills }, 92*c6d7a45dSGunnar Mills "MaxConcurrentSessions": { 93*c6d7a45dSGunnar Mills "description": "The maximum number of service sessions, regardless of protocol, that this manager can support.", 94*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the maximum number of concurrent service sessions that this implementation supports.", 95*c6d7a45dSGunnar Mills "minimum": 0, 96*c6d7a45dSGunnar Mills "readonly": true, 97*c6d7a45dSGunnar Mills "type": "integer" 98*c6d7a45dSGunnar Mills }, 99*c6d7a45dSGunnar Mills "ServiceEnabled": { 100*c6d7a45dSGunnar Mills "description": "An indication of whether the service is enabled for this manager.", 101*c6d7a45dSGunnar Mills "longDescription": "This property shall indicate whether the protocol for the service is enabled.", 102*c6d7a45dSGunnar Mills "readonly": false, 103*c6d7a45dSGunnar Mills "type": "boolean" 104*c6d7a45dSGunnar Mills } 105*c6d7a45dSGunnar Mills }, 106*c6d7a45dSGunnar Mills "type": "object" 107*c6d7a45dSGunnar Mills }, 108*c6d7a45dSGunnar Mills "DateTimeSource": { 109*c6d7a45dSGunnar Mills "enum": [ 110*c6d7a45dSGunnar Mills "RTC", 111*c6d7a45dSGunnar Mills "Firmware", 112*c6d7a45dSGunnar Mills "Host", 113*c6d7a45dSGunnar Mills "NTP", 114*c6d7a45dSGunnar Mills "PTP" 115*c6d7a45dSGunnar Mills ], 116*c6d7a45dSGunnar Mills "enumDescriptions": { 117*c6d7a45dSGunnar Mills "Firmware": "The date and time is set and held by firmware.", 118*c6d7a45dSGunnar Mills "Host": "The date and time is retrieved from the host.", 119*c6d7a45dSGunnar Mills "NTP": "The date and time source is a Network Time Protocol (NTP) server.", 120*c6d7a45dSGunnar Mills "PTP": "The date and time source is a Precision Time Protocol (PTP) server.", 121*c6d7a45dSGunnar Mills "RTC": "The date and time is retrieved from the manager's real time clock (RTC)." 122*c6d7a45dSGunnar Mills }, 123*c6d7a45dSGunnar Mills "type": "string" 124*c6d7a45dSGunnar Mills }, 125*c6d7a45dSGunnar Mills "DaylightSavingTime": { 126*c6d7a45dSGunnar Mills "additionalProperties": false, 127*c6d7a45dSGunnar Mills "description": "The daylight saving time settings for a manager.", 128*c6d7a45dSGunnar Mills "longDescription": "This type shall contain the daylight saving time settings for a manager.", 129*c6d7a45dSGunnar Mills "patternProperties": { 130*c6d7a45dSGunnar Mills "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": { 131*c6d7a45dSGunnar Mills "description": "This property shall specify a valid odata or Redfish property.", 132*c6d7a45dSGunnar Mills "type": [ 133*c6d7a45dSGunnar Mills "array", 134*c6d7a45dSGunnar Mills "boolean", 135*c6d7a45dSGunnar Mills "integer", 136*c6d7a45dSGunnar Mills "number", 137*c6d7a45dSGunnar Mills "null", 138*c6d7a45dSGunnar Mills "object", 139*c6d7a45dSGunnar Mills "string" 140*c6d7a45dSGunnar Mills ] 141*c6d7a45dSGunnar Mills } 142*c6d7a45dSGunnar Mills }, 143*c6d7a45dSGunnar Mills "properties": { 144*c6d7a45dSGunnar Mills "EndDateTime": { 145*c6d7a45dSGunnar Mills "description": "The end date and time with UTC offset of daylight saving time.", 146*c6d7a45dSGunnar Mills "format": "date-time", 147*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the end date and time with UTC offset of daylight saving time for this manager. If daylight saving time is permanent, specify a sufficiently distant end date and time. Services shall update the UTC offset based on changes made to `DateTimeLocalOffset`. This property shall be read-only if the service contains time zone databases.", 148*c6d7a45dSGunnar Mills "readonly": false, 149*c6d7a45dSGunnar Mills "type": "string", 150*c6d7a45dSGunnar Mills "versionAdded": "v1_19_0" 151*c6d7a45dSGunnar Mills }, 152*c6d7a45dSGunnar Mills "OffsetMinutes": { 153*c6d7a45dSGunnar Mills "description": "The daylight saving time offset in minutes.", 154*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the number of minutes added to the `DateTime` value when the `DateTime` value is between the values of StartDateTime and EndDateTime. This offset shall be applied only if AutoDSTEnabled is `true`. This property shall be read-only if the service contains time zone databases.", 155*c6d7a45dSGunnar Mills "readonly": false, 156*c6d7a45dSGunnar Mills "type": "integer", 157*c6d7a45dSGunnar Mills "versionAdded": "v1_19_0" 158*c6d7a45dSGunnar Mills }, 159*c6d7a45dSGunnar Mills "StartDateTime": { 160*c6d7a45dSGunnar Mills "description": "The start date and time with UTC offset of daylight saving time.", 161*c6d7a45dSGunnar Mills "format": "date-time", 162*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the start date and time with UTC offset of daylight saving time for this manager. Services shall update the UTC offset based on changes made to `DateTimeLocalOffset`. This property shall be read-only if the service contains time zone databases.", 163*c6d7a45dSGunnar Mills "readonly": false, 164*c6d7a45dSGunnar Mills "type": "string", 165*c6d7a45dSGunnar Mills "versionAdded": "v1_19_0" 166*c6d7a45dSGunnar Mills }, 167*c6d7a45dSGunnar Mills "TimeZoneName": { 168*c6d7a45dSGunnar Mills "description": "The time zone of the manager when daylight saving time is in effect.", 169*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the time zone of the manager when daylight saving time is in effect. When daylight saving time is in effect, the service shall update the `TimeZoneName` property in the root of the resource. When daylight saving time is no longer in effect, the service shall restore the original value of the `TimeZoneName` property in the root of the resource. The time zone shall be either the 'Name' or the 'Format' for the zone as defined in the IANA Time Zone Database. The value of this property is used for display purposes, especially to enhance the display of time. This property shall be read-only if the service contains time zone databases.", 170*c6d7a45dSGunnar Mills "readonly": false, 171*c6d7a45dSGunnar Mills "type": "string", 172*c6d7a45dSGunnar Mills "versionAdded": "v1_19_0" 173*c6d7a45dSGunnar Mills } 174*c6d7a45dSGunnar Mills }, 175*c6d7a45dSGunnar Mills "type": "object" 176*c6d7a45dSGunnar Mills }, 177*c6d7a45dSGunnar Mills "ForceFailover": { 178*c6d7a45dSGunnar Mills "additionalProperties": false, 179*c6d7a45dSGunnar Mills "description": "The `ForceFailover` action forces a failover of this manager to the manager used in the parameter.", 180*c6d7a45dSGunnar Mills "longDescription": "This action shall perform a forced failover of the manager's redundancy to the manager supplied as a parameter.", 181*c6d7a45dSGunnar Mills "parameters": { 182*c6d7a45dSGunnar Mills "NewManager": { 183*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/Manager.json#/definitions/Manager", 184*c6d7a45dSGunnar Mills "description": "The manager to which to fail over.", 185*c6d7a45dSGunnar Mills "longDescription": "This parameter shall contain the manager to which to fail over.", 186*c6d7a45dSGunnar Mills "requiredParameter": true 187*c6d7a45dSGunnar Mills } 188*c6d7a45dSGunnar Mills }, 189*c6d7a45dSGunnar Mills "patternProperties": { 190*c6d7a45dSGunnar Mills "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": { 191*c6d7a45dSGunnar Mills "description": "This property shall specify a valid odata or Redfish property.", 192*c6d7a45dSGunnar Mills "type": [ 193*c6d7a45dSGunnar Mills "array", 194*c6d7a45dSGunnar Mills "boolean", 195*c6d7a45dSGunnar Mills "integer", 196*c6d7a45dSGunnar Mills "number", 197*c6d7a45dSGunnar Mills "null", 198*c6d7a45dSGunnar Mills "object", 199*c6d7a45dSGunnar Mills "string" 200*c6d7a45dSGunnar Mills ] 201*c6d7a45dSGunnar Mills } 202*c6d7a45dSGunnar Mills }, 203*c6d7a45dSGunnar Mills "properties": { 204*c6d7a45dSGunnar Mills "target": { 205*c6d7a45dSGunnar Mills "description": "Link to invoke action", 206*c6d7a45dSGunnar Mills "format": "uri-reference", 207*c6d7a45dSGunnar Mills "type": "string" 208*c6d7a45dSGunnar Mills }, 209*c6d7a45dSGunnar Mills "title": { 210*c6d7a45dSGunnar Mills "description": "Friendly action name", 211*c6d7a45dSGunnar Mills "type": "string" 212*c6d7a45dSGunnar Mills } 213*c6d7a45dSGunnar Mills }, 214*c6d7a45dSGunnar Mills "type": "object" 215*c6d7a45dSGunnar Mills }, 216*c6d7a45dSGunnar Mills "GraphicalConnectTypesSupported": { 217*c6d7a45dSGunnar Mills "enum": [ 218*c6d7a45dSGunnar Mills "KVMIP", 219*c6d7a45dSGunnar Mills "Oem" 220*c6d7a45dSGunnar Mills ], 221*c6d7a45dSGunnar Mills "enumDescriptions": { 222*c6d7a45dSGunnar Mills "KVMIP": "The controller supports a graphical console connection through a KVM-IP (redirection of Keyboard, Video, Mouse over IP) protocol.", 223*c6d7a45dSGunnar Mills "Oem": "The controller supports a graphical console connection through an OEM-specific protocol." 224*c6d7a45dSGunnar Mills }, 225*c6d7a45dSGunnar Mills "type": "string" 226*c6d7a45dSGunnar Mills }, 227*c6d7a45dSGunnar Mills "GraphicalConsole": { 228*c6d7a45dSGunnar Mills "additionalProperties": false, 229*c6d7a45dSGunnar Mills "description": "The information about a graphical console service that this manager provides.", 230*c6d7a45dSGunnar Mills "longDescription": "This type shall describe a graphical console service for a manager.", 231*c6d7a45dSGunnar Mills "patternProperties": { 232*c6d7a45dSGunnar Mills "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": { 233*c6d7a45dSGunnar Mills "description": "This property shall specify a valid odata or Redfish property.", 234*c6d7a45dSGunnar Mills "type": [ 235*c6d7a45dSGunnar Mills "array", 236*c6d7a45dSGunnar Mills "boolean", 237*c6d7a45dSGunnar Mills "integer", 238*c6d7a45dSGunnar Mills "number", 239*c6d7a45dSGunnar Mills "null", 240*c6d7a45dSGunnar Mills "object", 241*c6d7a45dSGunnar Mills "string" 242*c6d7a45dSGunnar Mills ] 243*c6d7a45dSGunnar Mills } 244*c6d7a45dSGunnar Mills }, 245*c6d7a45dSGunnar Mills "properties": { 246*c6d7a45dSGunnar Mills "ConnectTypesSupported": { 247*c6d7a45dSGunnar Mills "description": "This property enumerates the graphical console connection types that the implementation allows.", 248*c6d7a45dSGunnar Mills "items": { 249*c6d7a45dSGunnar Mills "$ref": "#/definitions/GraphicalConnectTypesSupported" 250*c6d7a45dSGunnar Mills }, 251*c6d7a45dSGunnar Mills "longDescription": "This property shall contain an array of the enumerations. RDP shall be included if the Remote Desktop (RDP) protocol is supported. KVMIP shall be included if a vendor-defined KVM-IP protocol is supported.", 252*c6d7a45dSGunnar Mills "readonly": true, 253*c6d7a45dSGunnar Mills "type": "array" 254*c6d7a45dSGunnar Mills }, 255*c6d7a45dSGunnar Mills "MaxConcurrentSessions": { 256*c6d7a45dSGunnar Mills "description": "The maximum number of service sessions, regardless of protocol, that this manager can support.", 257*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the maximum number of concurrent service sessions that this implementation supports.", 258*c6d7a45dSGunnar Mills "minimum": 0, 259*c6d7a45dSGunnar Mills "readonly": true, 260*c6d7a45dSGunnar Mills "type": "integer" 261*c6d7a45dSGunnar Mills }, 262*c6d7a45dSGunnar Mills "ServiceEnabled": { 263*c6d7a45dSGunnar Mills "description": "An indication of whether the service is enabled for this manager.", 264*c6d7a45dSGunnar Mills "longDescription": "This property shall indicate whether the protocol for the service is enabled.", 265*c6d7a45dSGunnar Mills "readonly": false, 266*c6d7a45dSGunnar Mills "type": "boolean" 267*c6d7a45dSGunnar Mills } 268*c6d7a45dSGunnar Mills }, 269*c6d7a45dSGunnar Mills "type": "object" 270*c6d7a45dSGunnar Mills }, 271*c6d7a45dSGunnar Mills "Links": { 272*c6d7a45dSGunnar Mills "additionalProperties": false, 273*c6d7a45dSGunnar Mills "description": "The links to other resources that are related to this resource.", 274*c6d7a45dSGunnar Mills "longDescription": "This Redfish Specification-described type shall contain links to resources that are related to but are not contained by, or subordinate to, this resource.", 275*c6d7a45dSGunnar Mills "patternProperties": { 276*c6d7a45dSGunnar Mills "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": { 277*c6d7a45dSGunnar Mills "description": "This property shall specify a valid odata or Redfish property.", 278*c6d7a45dSGunnar Mills "type": [ 279*c6d7a45dSGunnar Mills "array", 280*c6d7a45dSGunnar Mills "boolean", 281*c6d7a45dSGunnar Mills "integer", 282*c6d7a45dSGunnar Mills "number", 283*c6d7a45dSGunnar Mills "null", 284*c6d7a45dSGunnar Mills "object", 285*c6d7a45dSGunnar Mills "string" 286*c6d7a45dSGunnar Mills ] 287*c6d7a45dSGunnar Mills } 288*c6d7a45dSGunnar Mills }, 289*c6d7a45dSGunnar Mills "properties": { 290*c6d7a45dSGunnar Mills "ActiveSoftwareImage": { 291*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/SoftwareInventory.json#/definitions/SoftwareInventory", 292*c6d7a45dSGunnar Mills "description": "The link to the software inventory resource that represents the active firmware image for this manager.", 293*c6d7a45dSGunnar Mills "longDescription": "This property shall contain a link to a resource of type `SoftwareInventory` that represents the active firmware image for this manager.", 294*c6d7a45dSGunnar Mills "readonly": false, 295*c6d7a45dSGunnar Mills "versionAdded": "v1_6_0" 296*c6d7a45dSGunnar Mills }, 297*c6d7a45dSGunnar Mills "ManagedBy": { 298*c6d7a45dSGunnar Mills "description": "The array of links to the managers responsible for managing this manager.", 299*c6d7a45dSGunnar Mills "items": { 300*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/Manager.json#/definitions/Manager" 301*c6d7a45dSGunnar Mills }, 302*c6d7a45dSGunnar Mills "longDescription": "This property shall contain an array of links to resources of type `Manager` that represent the managers for this manager.", 303*c6d7a45dSGunnar Mills "readonly": true, 304*c6d7a45dSGunnar Mills "type": "array", 305*c6d7a45dSGunnar Mills "versionAdded": "v1_9_0" 306*c6d7a45dSGunnar Mills }, 307*c6d7a45dSGunnar Mills "ManagedBy@odata.count": { 308*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count" 309*c6d7a45dSGunnar Mills }, 310*c6d7a45dSGunnar Mills "ManagerForChassis": { 311*c6d7a45dSGunnar Mills "description": "An array of links to the chassis this manager controls.", 312*c6d7a45dSGunnar Mills "items": { 313*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/Chassis.json#/definitions/Chassis" 314*c6d7a45dSGunnar Mills }, 315*c6d7a45dSGunnar Mills "longDescription": "This property shall contain an array of links to chassis over which this manager instance has control.", 316*c6d7a45dSGunnar Mills "readonly": true, 317*c6d7a45dSGunnar Mills "type": "array" 318*c6d7a45dSGunnar Mills }, 319*c6d7a45dSGunnar Mills "ManagerForChassis@odata.count": { 320*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count" 321*c6d7a45dSGunnar Mills }, 322*c6d7a45dSGunnar Mills "ManagerForFabrics": { 323*c6d7a45dSGunnar Mills "description": "An array of links to the fabrics that this manager controls.", 324*c6d7a45dSGunnar Mills "items": { 325*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/Fabric.json#/definitions/Fabric" 326*c6d7a45dSGunnar Mills }, 327*c6d7a45dSGunnar Mills "longDescription": "This property shall contain an array of links to resources of type `Fabric` that represent the fabrics that this manager controls.", 328*c6d7a45dSGunnar Mills "readonly": true, 329*c6d7a45dSGunnar Mills "type": "array", 330*c6d7a45dSGunnar Mills "versionAdded": "v1_22_0" 331*c6d7a45dSGunnar Mills }, 332*c6d7a45dSGunnar Mills "ManagerForFabrics@odata.count": { 333*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count" 334*c6d7a45dSGunnar Mills }, 335*c6d7a45dSGunnar Mills "ManagerForManagers": { 336*c6d7a45dSGunnar Mills "description": "An array of links to the managers that are managed by this manager.", 337*c6d7a45dSGunnar Mills "items": { 338*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/Manager.json#/definitions/Manager" 339*c6d7a45dSGunnar Mills }, 340*c6d7a45dSGunnar Mills "longDescription": "This property shall contain an array of links to resources of type `Manager` that represent the managers being managed by this manager.", 341*c6d7a45dSGunnar Mills "readonly": true, 342*c6d7a45dSGunnar Mills "type": "array", 343*c6d7a45dSGunnar Mills "versionAdded": "v1_9_0" 344*c6d7a45dSGunnar Mills }, 345*c6d7a45dSGunnar Mills "ManagerForManagers@odata.count": { 346*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count" 347*c6d7a45dSGunnar Mills }, 348*c6d7a45dSGunnar Mills "ManagerForServers": { 349*c6d7a45dSGunnar Mills "description": "An array of links to the systems that this manager controls.", 350*c6d7a45dSGunnar Mills "items": { 351*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/ComputerSystem.json#/definitions/ComputerSystem" 352*c6d7a45dSGunnar Mills }, 353*c6d7a45dSGunnar Mills "longDescription": "This property shall contain an array of links to computer systems over which this manager instance has control.", 354*c6d7a45dSGunnar Mills "readonly": true, 355*c6d7a45dSGunnar Mills "type": "array" 356*c6d7a45dSGunnar Mills }, 357*c6d7a45dSGunnar Mills "ManagerForServers@odata.count": { 358*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count" 359*c6d7a45dSGunnar Mills }, 360*c6d7a45dSGunnar Mills "ManagerForSwitches": { 361*c6d7a45dSGunnar Mills "description": "An array of links to the switches that this manager controls.", 362*c6d7a45dSGunnar Mills "items": { 363*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/Switch.json#/definitions/Switch" 364*c6d7a45dSGunnar Mills }, 365*c6d7a45dSGunnar Mills "longDescription": "This property shall contain an array of links to switches that this manager instance controls.", 366*c6d7a45dSGunnar Mills "readonly": true, 367*c6d7a45dSGunnar Mills "type": "array", 368*c6d7a45dSGunnar Mills "versionAdded": "v1_4_0" 369*c6d7a45dSGunnar Mills }, 370*c6d7a45dSGunnar Mills "ManagerForSwitches@odata.count": { 371*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count" 372*c6d7a45dSGunnar Mills }, 373*c6d7a45dSGunnar Mills "ManagerInChassis": { 374*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/Chassis.json#/definitions/Chassis", 375*c6d7a45dSGunnar Mills "description": "The link to the chassis where this manager is located.", 376*c6d7a45dSGunnar Mills "longDescription": "This property shall contain a link to the chassis where this manager is located.", 377*c6d7a45dSGunnar Mills "readonly": true, 378*c6d7a45dSGunnar Mills "versionAdded": "v1_1_0" 379*c6d7a45dSGunnar Mills }, 380*c6d7a45dSGunnar Mills "Oem": { 381*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem", 382*c6d7a45dSGunnar Mills "description": "The OEM extension property.", 383*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the OEM extensions. All values for properties contained in this object shall conform to the Redfish Specification-described requirements." 384*c6d7a45dSGunnar Mills }, 385*c6d7a45dSGunnar Mills "SelectedNetworkPort": { 386*c6d7a45dSGunnar Mills "anyOf": [ 387*c6d7a45dSGunnar Mills { 388*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/Port.json#/definitions/Port" 389*c6d7a45dSGunnar Mills }, 390*c6d7a45dSGunnar Mills { 391*c6d7a45dSGunnar Mills "type": "null" 392*c6d7a45dSGunnar Mills } 393*c6d7a45dSGunnar Mills ], 394*c6d7a45dSGunnar Mills "description": "The network port currently used by this manager. This allows selection of shared or dedicated ports for managers that support one or the other. For managers that always have their dedicated port enabled, this allows the selection of which shared port to use.", 395*c6d7a45dSGunnar Mills "longDescription": "This property shall contain a link to a resource of type `Port` that represents the current network port used by this manager.", 396*c6d7a45dSGunnar Mills "readonly": false, 397*c6d7a45dSGunnar Mills "versionAdded": "v1_18_0" 398*c6d7a45dSGunnar Mills }, 399*c6d7a45dSGunnar Mills "SoftwareImages": { 400*c6d7a45dSGunnar Mills "description": "The images that are associated with this manager.", 401*c6d7a45dSGunnar Mills "items": { 402*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/SoftwareInventory.json#/definitions/SoftwareInventory" 403*c6d7a45dSGunnar Mills }, 404*c6d7a45dSGunnar Mills "longDescription": "This property shall contain an array of links to resources of type `SoftwareInventory` that represent the firmware images that apply to this manager.", 405*c6d7a45dSGunnar Mills "readonly": true, 406*c6d7a45dSGunnar Mills "type": "array", 407*c6d7a45dSGunnar Mills "versionAdded": "v1_6_0" 408*c6d7a45dSGunnar Mills }, 409*c6d7a45dSGunnar Mills "SoftwareImages@odata.count": { 410*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count" 411*c6d7a45dSGunnar Mills } 412*c6d7a45dSGunnar Mills }, 413*c6d7a45dSGunnar Mills "type": "object" 414*c6d7a45dSGunnar Mills }, 415*c6d7a45dSGunnar Mills "Manager": { 416*c6d7a45dSGunnar Mills "additionalProperties": false, 417*c6d7a45dSGunnar Mills "description": "In Redfish, a manager is a systems management entity that can implement or provide access to a Redfish service. Examples of managers are BMCs (baseboard management controllers), enclosure managers, management controllers, and other subsystems that are assigned manageability functions. An implementation can have multiple managers, which might be directly accessible through a Redfish-defined interface.", 418*c6d7a45dSGunnar Mills "longDescription": "This resource shall represent a management subsystem for a Redfish implementation.", 419*c6d7a45dSGunnar Mills "patternProperties": { 420*c6d7a45dSGunnar Mills "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": { 421*c6d7a45dSGunnar Mills "description": "This property shall specify a valid odata or Redfish property.", 422*c6d7a45dSGunnar Mills "type": [ 423*c6d7a45dSGunnar Mills "array", 424*c6d7a45dSGunnar Mills "boolean", 425*c6d7a45dSGunnar Mills "integer", 426*c6d7a45dSGunnar Mills "number", 427*c6d7a45dSGunnar Mills "null", 428*c6d7a45dSGunnar Mills "object", 429*c6d7a45dSGunnar Mills "string" 430*c6d7a45dSGunnar Mills ] 431*c6d7a45dSGunnar Mills } 432*c6d7a45dSGunnar Mills }, 433*c6d7a45dSGunnar Mills "properties": { 434*c6d7a45dSGunnar Mills "@odata.context": { 435*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/context" 436*c6d7a45dSGunnar Mills }, 437*c6d7a45dSGunnar Mills "@odata.etag": { 438*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/etag" 439*c6d7a45dSGunnar Mills }, 440*c6d7a45dSGunnar Mills "@odata.id": { 441*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/id" 442*c6d7a45dSGunnar Mills }, 443*c6d7a45dSGunnar Mills "@odata.type": { 444*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/type" 445*c6d7a45dSGunnar Mills }, 446*c6d7a45dSGunnar Mills "Actions": { 447*c6d7a45dSGunnar Mills "$ref": "#/definitions/Actions", 448*c6d7a45dSGunnar Mills "description": "The available actions for this resource.", 449*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the available actions for this resource." 450*c6d7a45dSGunnar Mills }, 451*c6d7a45dSGunnar Mills "AdditionalFirmwareVersions": { 452*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/SoftwareInventory.json#/definitions/AdditionalVersions", 453*c6d7a45dSGunnar Mills "description": "The additional firmware versions of the manager.", 454*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the additional firmware versions of the manager.", 455*c6d7a45dSGunnar Mills "versionAdded": "v1_15_0" 456*c6d7a45dSGunnar Mills }, 457*c6d7a45dSGunnar Mills "AutoDSTEnabled": { 458*c6d7a45dSGunnar Mills "description": "An indication of whether the manager is configured for automatic Daylight Saving Time (DST) adjustment.", 459*c6d7a45dSGunnar Mills "longDescription": "This property shall indicate whether the manager is configured for automatic Daylight Saving Time (DST) adjustment.", 460*c6d7a45dSGunnar Mills "readonly": false, 461*c6d7a45dSGunnar Mills "type": "boolean", 462*c6d7a45dSGunnar Mills "versionAdded": "v1_4_0" 463*c6d7a45dSGunnar Mills }, 464*c6d7a45dSGunnar Mills "Certificates": { 465*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/CertificateCollection.json#/definitions/CertificateCollection", 466*c6d7a45dSGunnar Mills "description": "The link to a collection of certificates for device identity and attestation.", 467*c6d7a45dSGunnar Mills "longDescription": "This property shall contain a link to a resource collection of type `CertificateCollection` that contains certificates for device identity and attestation.", 468*c6d7a45dSGunnar Mills "readonly": true, 469*c6d7a45dSGunnar Mills "versionAdded": "v1_13_0" 470*c6d7a45dSGunnar Mills }, 471*c6d7a45dSGunnar Mills "CommandShell": { 472*c6d7a45dSGunnar Mills "$ref": "#/definitions/CommandShell", 473*c6d7a45dSGunnar Mills "description": "The manager's command line user interface or command shell service.", 474*c6d7a45dSGunnar Mills "longDescription": "This property shall describe a command line user interface or command shell service provided by this manager. The command shell refers to an interface used to interact with the manager itself, not a dedicated console session redirected from a host operating system. For redirected serial or host operating system consoles, see the `SerialConsole` property in the `ComputerSystem` resource." 475*c6d7a45dSGunnar Mills }, 476*c6d7a45dSGunnar Mills "DateTime": { 477*c6d7a45dSGunnar Mills "description": "The current date and time with UTC offset of the manager.", 478*c6d7a45dSGunnar Mills "format": "date-time", 479*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the current date and time with UTC offset of the manager.", 480*c6d7a45dSGunnar Mills "readonly": false, 481*c6d7a45dSGunnar Mills "type": [ 482*c6d7a45dSGunnar Mills "string", 483*c6d7a45dSGunnar Mills "null" 484*c6d7a45dSGunnar Mills ] 485*c6d7a45dSGunnar Mills }, 486*c6d7a45dSGunnar Mills "DateTimeLocalOffset": { 487*c6d7a45dSGunnar Mills "description": "The time offset from UTC that the `DateTime` property is in `+HH:MM` format.", 488*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the offset from UTC time that the `DateTime` property contains. If both `DateTime` and `DateTimeLocalOffset` are provided in modification requests, services shall apply `DateTimeLocalOffset` after `DateTime` is applied.", 489*c6d7a45dSGunnar Mills "pattern": "^([-+][0-1][0-9]:[0-5][0-9])$", 490*c6d7a45dSGunnar Mills "readonly": false, 491*c6d7a45dSGunnar Mills "type": [ 492*c6d7a45dSGunnar Mills "string", 493*c6d7a45dSGunnar Mills "null" 494*c6d7a45dSGunnar Mills ] 495*c6d7a45dSGunnar Mills }, 496*c6d7a45dSGunnar Mills "DateTimeSource": { 497*c6d7a45dSGunnar Mills "anyOf": [ 498*c6d7a45dSGunnar Mills { 499*c6d7a45dSGunnar Mills "$ref": "#/definitions/DateTimeSource" 500*c6d7a45dSGunnar Mills }, 501*c6d7a45dSGunnar Mills { 502*c6d7a45dSGunnar Mills "type": "null" 503*c6d7a45dSGunnar Mills } 504*c6d7a45dSGunnar Mills ], 505*c6d7a45dSGunnar Mills "description": "The source of the date and time of this manager, such as NTP, RTC, or firmware.", 506*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the source of the `DateTime` property of this manager. The service shall update this property if the source changes internally, for example if an NTP server is unavailable and the source falls back to the time stored by the RTC.", 507*c6d7a45dSGunnar Mills "readonly": false, 508*c6d7a45dSGunnar Mills "versionAdded": "v1_20_0" 509*c6d7a45dSGunnar Mills }, 510*c6d7a45dSGunnar Mills "DaylightSavingTime": { 511*c6d7a45dSGunnar Mills "$ref": "#/definitions/DaylightSavingTime", 512*c6d7a45dSGunnar Mills "description": "The daylight saving time settings for this manager.", 513*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the daylight saving time settings for this manager.", 514*c6d7a45dSGunnar Mills "versionAdded": "v1_19_0" 515*c6d7a45dSGunnar Mills }, 516*c6d7a45dSGunnar Mills "DedicatedNetworkPorts": { 517*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/PortCollection.json#/definitions/PortCollection", 518*c6d7a45dSGunnar Mills "description": "The dedicated network ports of the manager.", 519*c6d7a45dSGunnar Mills "longDescription": "This property shall contain a link to a resource collection of type `PortCollection` that represent the dedicated network ports of the manager.", 520*c6d7a45dSGunnar Mills "versionAdded": "v1_16_0" 521*c6d7a45dSGunnar Mills }, 522*c6d7a45dSGunnar Mills "Description": { 523*c6d7a45dSGunnar Mills "anyOf": [ 524*c6d7a45dSGunnar Mills { 525*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Description" 526*c6d7a45dSGunnar Mills }, 527*c6d7a45dSGunnar Mills { 528*c6d7a45dSGunnar Mills "type": "null" 529*c6d7a45dSGunnar Mills } 530*c6d7a45dSGunnar Mills ], 531*c6d7a45dSGunnar Mills "readonly": true 532*c6d7a45dSGunnar Mills }, 533*c6d7a45dSGunnar Mills "EthernetInterfaces": { 534*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/EthernetInterfaceCollection.json#/definitions/EthernetInterfaceCollection", 535*c6d7a45dSGunnar Mills "description": "The link to a collection of NICs that this manager uses for network communication.", 536*c6d7a45dSGunnar Mills "longDescription": "This property shall contain a link to a resource collection of type `EthernetInterfaceCollection`.", 537*c6d7a45dSGunnar Mills "readonly": true 538*c6d7a45dSGunnar Mills }, 539*c6d7a45dSGunnar Mills "FirmwareVersion": { 540*c6d7a45dSGunnar Mills "description": "The firmware version of this manager.", 541*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the firmware version as defined by the manufacturer for the associated manager.", 542*c6d7a45dSGunnar Mills "readonly": true, 543*c6d7a45dSGunnar Mills "type": [ 544*c6d7a45dSGunnar Mills "string", 545*c6d7a45dSGunnar Mills "null" 546*c6d7a45dSGunnar Mills ] 547*c6d7a45dSGunnar Mills }, 548*c6d7a45dSGunnar Mills "GraphicalConsole": { 549*c6d7a45dSGunnar Mills "$ref": "#/definitions/GraphicalConsole", 550*c6d7a45dSGunnar Mills "description": "The manager's graphical console service.", 551*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the information about the graphical console (KVM-IP) service of this manager. This property should be used to describe a service for the manager's console or operating system, not a service provided on behalf of a host operating system. Implementations representing host OS consoles, known generally as a KVM-IP feature, should use the `GraphicalConsole` property in the `ComputerSystem` resource." 552*c6d7a45dSGunnar Mills }, 553*c6d7a45dSGunnar Mills "HostInterfaces": { 554*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/HostInterfaceCollection.json#/definitions/HostInterfaceCollection", 555*c6d7a45dSGunnar Mills "description": "The link to a collection of host interfaces that this manager uses for local host communication. Clients can find host interface configuration options and settings in this navigation property.", 556*c6d7a45dSGunnar Mills "longDescription": "This property shall contain a link to a resource collection of type `HostInterfaceCollection`.", 557*c6d7a45dSGunnar Mills "readonly": true, 558*c6d7a45dSGunnar Mills "versionAdded": "v1_3_0" 559*c6d7a45dSGunnar Mills }, 560*c6d7a45dSGunnar Mills "Id": { 561*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Id", 562*c6d7a45dSGunnar Mills "readonly": true 563*c6d7a45dSGunnar Mills }, 564*c6d7a45dSGunnar Mills "LastResetTime": { 565*c6d7a45dSGunnar Mills "description": "The date and time when the manager was last reset or rebooted.", 566*c6d7a45dSGunnar Mills "format": "date-time", 567*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the date and time when the manager last came out of a reset or was rebooted.", 568*c6d7a45dSGunnar Mills "readonly": true, 569*c6d7a45dSGunnar Mills "type": "string", 570*c6d7a45dSGunnar Mills "versionAdded": "v1_9_0" 571*c6d7a45dSGunnar Mills }, 572*c6d7a45dSGunnar Mills "Links": { 573*c6d7a45dSGunnar Mills "$ref": "#/definitions/Links", 574*c6d7a45dSGunnar Mills "description": "The links to other resources that are related to this resource.", 575*c6d7a45dSGunnar Mills "longDescription": "This property shall contain links to resources that are related to but are not contained by, or subordinate to, this resource." 576*c6d7a45dSGunnar Mills }, 577*c6d7a45dSGunnar Mills "Location": { 578*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Location", 579*c6d7a45dSGunnar Mills "description": "The location of the manager.", 580*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the location information of the associated manager.", 581*c6d7a45dSGunnar Mills "versionAdded": "v1_11_0" 582*c6d7a45dSGunnar Mills }, 583*c6d7a45dSGunnar Mills "LocationIndicatorActive": { 584*c6d7a45dSGunnar Mills "description": "An indicator allowing an operator to physically locate this resource.", 585*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the state of the indicator used to physically identify or locate this resource. A write to this property shall update the value of `IndicatorLED` in this resource, if supported, to reflect the implementation of the locating function.", 586*c6d7a45dSGunnar Mills "readonly": false, 587*c6d7a45dSGunnar Mills "type": [ 588*c6d7a45dSGunnar Mills "boolean", 589*c6d7a45dSGunnar Mills "null" 590*c6d7a45dSGunnar Mills ], 591*c6d7a45dSGunnar Mills "versionAdded": "v1_11_0" 592*c6d7a45dSGunnar Mills }, 593*c6d7a45dSGunnar Mills "LogServices": { 594*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/LogServiceCollection.json#/definitions/LogServiceCollection", 595*c6d7a45dSGunnar Mills "description": "The link to a collection of logs that the manager uses.", 596*c6d7a45dSGunnar Mills "longDescription": "This property shall contain a link to a resource collection of type `LogServiceCollection` that this manager uses.", 597*c6d7a45dSGunnar Mills "readonly": true 598*c6d7a45dSGunnar Mills }, 599*c6d7a45dSGunnar Mills "ManagerDiagnosticData": { 600*c6d7a45dSGunnar Mills "anyOf": [ 601*c6d7a45dSGunnar Mills { 602*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/ManagerDiagnosticData.json#/definitions/ManagerDiagnosticData" 603*c6d7a45dSGunnar Mills }, 604*c6d7a45dSGunnar Mills { 605*c6d7a45dSGunnar Mills "type": "null" 606*c6d7a45dSGunnar Mills } 607*c6d7a45dSGunnar Mills ], 608*c6d7a45dSGunnar Mills "description": "The diagnostic data for this manager.", 609*c6d7a45dSGunnar Mills "longDescription": "This property shall contain a link to a resource of type `ManagerDiagnosticData` that represents the diagnostic data for this manager.", 610*c6d7a45dSGunnar Mills "readonly": true, 611*c6d7a45dSGunnar Mills "versionAdded": "v1_14_0" 612*c6d7a45dSGunnar Mills }, 613*c6d7a45dSGunnar Mills "ManagerType": { 614*c6d7a45dSGunnar Mills "$ref": "#/definitions/ManagerType", 615*c6d7a45dSGunnar Mills "description": "The type of manager that this resource represents.", 616*c6d7a45dSGunnar Mills "longDescription": "This property shall describe the function of this manager. The `ManagementController` value shall be used if none of the other enumerations apply.", 617*c6d7a45dSGunnar Mills "readonly": true 618*c6d7a45dSGunnar Mills }, 619*c6d7a45dSGunnar Mills "Manufacturer": { 620*c6d7a45dSGunnar Mills "description": "The manufacturer of this manager.", 621*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the name of the organization responsible for producing the manager. This organization may be the entity from whom the manager is purchased, but this is not necessarily true.", 622*c6d7a45dSGunnar Mills "readonly": true, 623*c6d7a45dSGunnar Mills "type": [ 624*c6d7a45dSGunnar Mills "string", 625*c6d7a45dSGunnar Mills "null" 626*c6d7a45dSGunnar Mills ], 627*c6d7a45dSGunnar Mills "versionAdded": "v1_7_0" 628*c6d7a45dSGunnar Mills }, 629*c6d7a45dSGunnar Mills "Measurements": { 630*c6d7a45dSGunnar Mills "deprecated": "This property has been deprecated in favor of the `ComponentIntegrity` resource.", 631*c6d7a45dSGunnar Mills "description": "An array of DSP0274-defined measurement blocks.", 632*c6d7a45dSGunnar Mills "items": { 633*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/SoftwareInventory.json#/definitions/MeasurementBlock" 634*c6d7a45dSGunnar Mills }, 635*c6d7a45dSGunnar Mills "longDescription": "This property shall contain an array of DSP0274-defined measurement blocks.", 636*c6d7a45dSGunnar Mills "type": "array", 637*c6d7a45dSGunnar Mills "versionAdded": "v1_13_0", 638*c6d7a45dSGunnar Mills "versionDeprecated": "v1_14_0" 639*c6d7a45dSGunnar Mills }, 640*c6d7a45dSGunnar Mills "Model": { 641*c6d7a45dSGunnar Mills "description": "The model information of this manager, as defined by the manufacturer.", 642*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the information about how the manufacturer refers to this manager.", 643*c6d7a45dSGunnar Mills "readonly": true, 644*c6d7a45dSGunnar Mills "type": [ 645*c6d7a45dSGunnar Mills "string", 646*c6d7a45dSGunnar Mills "null" 647*c6d7a45dSGunnar Mills ] 648*c6d7a45dSGunnar Mills }, 649*c6d7a45dSGunnar Mills "Name": { 650*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Name", 651*c6d7a45dSGunnar Mills "readonly": true 652*c6d7a45dSGunnar Mills }, 653*c6d7a45dSGunnar Mills "NetworkProtocol": { 654*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/ManagerNetworkProtocol.json#/definitions/ManagerNetworkProtocol", 655*c6d7a45dSGunnar Mills "description": "The link to the network services and their settings that the manager controls.", 656*c6d7a45dSGunnar Mills "longDescription": "This property shall contain a link to a resource of type `ManagerNetworkProtocol`, which represents the network services for this manager.", 657*c6d7a45dSGunnar Mills "readonly": true 658*c6d7a45dSGunnar Mills }, 659*c6d7a45dSGunnar Mills "OEMSecurityMode": { 660*c6d7a45dSGunnar Mills "description": "The OEM-specific security compliance mode(s) that the manager is currently configured to enforce.", 661*c6d7a45dSGunnar Mills "longDescription": "This property shall the OEM-specific security compliance mode(s) that the manager is currently configured to enforce. This property shall only be present if `SecurityMode` contains `OEM`.", 662*c6d7a45dSGunnar Mills "readonly": true, 663*c6d7a45dSGunnar Mills "type": [ 664*c6d7a45dSGunnar Mills "string", 665*c6d7a45dSGunnar Mills "null" 666*c6d7a45dSGunnar Mills ], 667*c6d7a45dSGunnar Mills "versionAdded": "v1_21_0" 668*c6d7a45dSGunnar Mills }, 669*c6d7a45dSGunnar Mills "Oem": { 670*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem", 671*c6d7a45dSGunnar Mills "description": "The OEM extension property.", 672*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the OEM extensions. All values for properties that this object contains shall conform to the Redfish Specification-described requirements." 673*c6d7a45dSGunnar Mills }, 674*c6d7a45dSGunnar Mills "PartNumber": { 675*c6d7a45dSGunnar Mills "description": "The part number of the manager.", 676*c6d7a45dSGunnar Mills "longDescription": "This property shall contain a part number assigned by the organization that is responsible for producing or manufacturing the manager.", 677*c6d7a45dSGunnar Mills "readonly": true, 678*c6d7a45dSGunnar Mills "type": [ 679*c6d7a45dSGunnar Mills "string", 680*c6d7a45dSGunnar Mills "null" 681*c6d7a45dSGunnar Mills ], 682*c6d7a45dSGunnar Mills "versionAdded": "v1_7_0" 683*c6d7a45dSGunnar Mills }, 684*c6d7a45dSGunnar Mills "PowerState": { 685*c6d7a45dSGunnar Mills "anyOf": [ 686*c6d7a45dSGunnar Mills { 687*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/PowerState" 688*c6d7a45dSGunnar Mills }, 689*c6d7a45dSGunnar Mills { 690*c6d7a45dSGunnar Mills "type": "null" 691*c6d7a45dSGunnar Mills } 692*c6d7a45dSGunnar Mills ], 693*c6d7a45dSGunnar Mills "description": "The current power state of the manager.", 694*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the power state of the manager.", 695*c6d7a45dSGunnar Mills "readonly": true, 696*c6d7a45dSGunnar Mills "versionAdded": "v1_2_0" 697*c6d7a45dSGunnar Mills }, 698*c6d7a45dSGunnar Mills "Redundancy": { 699*c6d7a45dSGunnar Mills "autoExpand": true, 700*c6d7a45dSGunnar Mills "description": "The redundancy information for the managers of this system.", 701*c6d7a45dSGunnar Mills "items": { 702*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/Redundancy.json#/definitions/Redundancy" 703*c6d7a45dSGunnar Mills }, 704*c6d7a45dSGunnar Mills "longDescription": "The properties in this array shall show how this manager is grouped with other managers for form redundancy sets.", 705*c6d7a45dSGunnar Mills "type": "array" 706*c6d7a45dSGunnar Mills }, 707*c6d7a45dSGunnar Mills "Redundancy@odata.count": { 708*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count" 709*c6d7a45dSGunnar Mills }, 710*c6d7a45dSGunnar Mills "RemoteAccountService": { 711*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/AccountService.json#/definitions/AccountService", 712*c6d7a45dSGunnar Mills "description": "The link to the account service resource for the remote manager that this resource represents.", 713*c6d7a45dSGunnar Mills "longDescription": "This property shall contain a link to the account service resource for the remote manager that this resource represents. This property shall only be present when providing aggregation of a remote manager.", 714*c6d7a45dSGunnar Mills "readonly": true, 715*c6d7a45dSGunnar Mills "versionAdded": "v1_5_0" 716*c6d7a45dSGunnar Mills }, 717*c6d7a45dSGunnar Mills "RemoteRedfishServiceUri": { 718*c6d7a45dSGunnar Mills "description": "The URI of the Redfish service root for the remote manager that this resource represents.", 719*c6d7a45dSGunnar Mills "format": "uri-reference", 720*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the URI of the Redfish service root for the remote manager that this resource represents. This property shall only be present when providing aggregation of Redfish services.", 721*c6d7a45dSGunnar Mills "readonly": true, 722*c6d7a45dSGunnar Mills "type": [ 723*c6d7a45dSGunnar Mills "string", 724*c6d7a45dSGunnar Mills "null" 725*c6d7a45dSGunnar Mills ], 726*c6d7a45dSGunnar Mills "versionAdded": "v1_5_0" 727*c6d7a45dSGunnar Mills }, 728*c6d7a45dSGunnar Mills "SecurityMode": { 729*c6d7a45dSGunnar Mills "$ref": "#/definitions/SecurityModeTypes", 730*c6d7a45dSGunnar Mills "description": "The security compliance mode that the manager is currently configured to enforce.", 731*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the security compliance mode that the manager is currently configured to enforce.", 732*c6d7a45dSGunnar Mills "readonly": true, 733*c6d7a45dSGunnar Mills "versionAdded": "v1_21_0" 734*c6d7a45dSGunnar Mills }, 735*c6d7a45dSGunnar Mills "SecurityPolicy": { 736*c6d7a45dSGunnar Mills "anyOf": [ 737*c6d7a45dSGunnar Mills { 738*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/SecurityPolicy.json#/definitions/SecurityPolicy" 739*c6d7a45dSGunnar Mills }, 740*c6d7a45dSGunnar Mills { 741*c6d7a45dSGunnar Mills "type": "null" 742*c6d7a45dSGunnar Mills } 743*c6d7a45dSGunnar Mills ], 744*c6d7a45dSGunnar Mills "description": "The security policy settings for this manager.", 745*c6d7a45dSGunnar Mills "longDescription": "This property shall contain a link to a resource of type `SecurityPolicy` that contains the security policy settings for this manager.", 746*c6d7a45dSGunnar Mills "readonly": true, 747*c6d7a45dSGunnar Mills "versionAdded": "v1_16_0" 748*c6d7a45dSGunnar Mills }, 749*c6d7a45dSGunnar Mills "SerialConsole": { 750*c6d7a45dSGunnar Mills "$ref": "#/definitions/SerialConsole", 751*c6d7a45dSGunnar Mills "deprecated": "This property has been deprecated in favor of the `SerialConsole` property in the `ComputerSystem` resource.", 752*c6d7a45dSGunnar Mills "description": "The serial console service that this manager provides.", 753*c6d7a45dSGunnar Mills "longDescription": "This property shall contain information about the serial console service of this manager.", 754*c6d7a45dSGunnar Mills "versionDeprecated": "v1_10_0" 755*c6d7a45dSGunnar Mills }, 756*c6d7a45dSGunnar Mills "SerialInterfaces": { 757*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/SerialInterfaceCollection.json#/definitions/SerialInterfaceCollection", 758*c6d7a45dSGunnar Mills "description": "The link to a collection of serial interfaces that this manager uses for serial and console communication.", 759*c6d7a45dSGunnar Mills "longDescription": "This property shall contain a link to a resource collection of type `SerialInterfaceCollection`, which this manager uses.", 760*c6d7a45dSGunnar Mills "readonly": true 761*c6d7a45dSGunnar Mills }, 762*c6d7a45dSGunnar Mills "SerialNumber": { 763*c6d7a45dSGunnar Mills "description": "The serial number of the manager.", 764*c6d7a45dSGunnar Mills "longDescription": "This property shall contain a manufacturer-allocated number that identifies the manager.", 765*c6d7a45dSGunnar Mills "readonly": true, 766*c6d7a45dSGunnar Mills "type": [ 767*c6d7a45dSGunnar Mills "string", 768*c6d7a45dSGunnar Mills "null" 769*c6d7a45dSGunnar Mills ], 770*c6d7a45dSGunnar Mills "versionAdded": "v1_7_0" 771*c6d7a45dSGunnar Mills }, 772*c6d7a45dSGunnar Mills "ServiceEntryPointUUID": { 773*c6d7a45dSGunnar Mills "anyOf": [ 774*c6d7a45dSGunnar Mills { 775*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/UUID" 776*c6d7a45dSGunnar Mills }, 777*c6d7a45dSGunnar Mills { 778*c6d7a45dSGunnar Mills "type": "null" 779*c6d7a45dSGunnar Mills } 780*c6d7a45dSGunnar Mills ], 781*c6d7a45dSGunnar Mills "description": "The UUID of the Redfish service that is hosted by this manager.", 782*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the UUID of the Redfish service that is hosted by this manager. Each manager providing an entry point to the same Redfish service shall report the same UUID value, even though the name of the property may imply otherwise. This property shall not be present if this manager does not provide a Redfish service entry point.", 783*c6d7a45dSGunnar Mills "readonly": true 784*c6d7a45dSGunnar Mills }, 785*c6d7a45dSGunnar Mills "ServiceIdentification": { 786*c6d7a45dSGunnar Mills "description": "A product instance identifier displayed in the Redfish service root.", 787*c6d7a45dSGunnar Mills "longDescription": "This property shall contain a vendor-provided or user-provided value that identifies and associates a discovered Redfish service with a particular product instance. If this manager provides the Redfish service, the `ServiceIdentification` property in the `ServiceRoot` resource shall contain the value of this property. This property shall only be present if the manager provides the Redfish service. The value of this property is used in conjunction with the `Product` and `Vendor` properties in `ServiceRoot` to match user credentials or other a priori product instance information necessary for initial deployment to the correct, matching Redfish service.", 788*c6d7a45dSGunnar Mills "readonly": false, 789*c6d7a45dSGunnar Mills "type": [ 790*c6d7a45dSGunnar Mills "string", 791*c6d7a45dSGunnar Mills "null" 792*c6d7a45dSGunnar Mills ], 793*c6d7a45dSGunnar Mills "versionAdded": "v1_15_0" 794*c6d7a45dSGunnar Mills }, 795*c6d7a45dSGunnar Mills "SharedNetworkPorts": { 796*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/PortCollection.json#/definitions/PortCollection", 797*c6d7a45dSGunnar Mills "description": "The shared network ports of the manager.", 798*c6d7a45dSGunnar Mills "longDescription": "This property shall contain a link to a resource collection of type `PortCollection` that represent the shared network ports of the manager. The members of this collection shall reference Port resources subordinate to NetworkAdapter resources.", 799*c6d7a45dSGunnar Mills "versionAdded": "v1_16_0" 800*c6d7a45dSGunnar Mills }, 801*c6d7a45dSGunnar Mills "SparePartNumber": { 802*c6d7a45dSGunnar Mills "description": "The spare part number of the manager.", 803*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the spare part number of the manager.", 804*c6d7a45dSGunnar Mills "readonly": true, 805*c6d7a45dSGunnar Mills "type": [ 806*c6d7a45dSGunnar Mills "string", 807*c6d7a45dSGunnar Mills "null" 808*c6d7a45dSGunnar Mills ], 809*c6d7a45dSGunnar Mills "versionAdded": "v1_11_0" 810*c6d7a45dSGunnar Mills }, 811*c6d7a45dSGunnar Mills "Status": { 812*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Status", 813*c6d7a45dSGunnar Mills "description": "The status and health of the resource and its subordinate or dependent resources.", 814*c6d7a45dSGunnar Mills "longDescription": "This property shall contain any status or health properties of the resource." 815*c6d7a45dSGunnar Mills }, 816*c6d7a45dSGunnar Mills "TimeZoneName": { 817*c6d7a45dSGunnar Mills "description": "The time zone of the manager.", 818*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the time zone of the manager. The time zone shall be either the 'Name' or the 'Format' for the zone as defined in the IANA Time Zone Database. The value of this property is used for display purposes, especially to enhance the display of time. A Redfish service may not be able to ensure accuracy and consistency between the `DateTimeOffset` property and this property. Therefore, to specify the correct time zone offset, see the `DateTimeOffset` property.", 819*c6d7a45dSGunnar Mills "readonly": false, 820*c6d7a45dSGunnar Mills "type": "string", 821*c6d7a45dSGunnar Mills "versionAdded": "v1_10_0" 822*c6d7a45dSGunnar Mills }, 823*c6d7a45dSGunnar Mills "USBPorts": { 824*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/PortCollection.json#/definitions/PortCollection", 825*c6d7a45dSGunnar Mills "description": "The USB ports of the manager.", 826*c6d7a45dSGunnar Mills "longDescription": "This property shall contain a link to a resource collection of type `PortCollection` that represent the USB ports of the manager.", 827*c6d7a45dSGunnar Mills "versionAdded": "v1_12_0" 828*c6d7a45dSGunnar Mills }, 829*c6d7a45dSGunnar Mills "UUID": { 830*c6d7a45dSGunnar Mills "anyOf": [ 831*c6d7a45dSGunnar Mills { 832*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/UUID" 833*c6d7a45dSGunnar Mills }, 834*c6d7a45dSGunnar Mills { 835*c6d7a45dSGunnar Mills "type": "null" 836*c6d7a45dSGunnar Mills } 837*c6d7a45dSGunnar Mills ], 838*c6d7a45dSGunnar Mills "description": "The UUID for this manager.", 839*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the UUID for the manager.", 840*c6d7a45dSGunnar Mills "readonly": true 841*c6d7a45dSGunnar Mills }, 842*c6d7a45dSGunnar Mills "Version": { 843*c6d7a45dSGunnar Mills "description": "The hardware version of this manager.", 844*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the hardware version of this manager as determined by the vendor or supplier.", 845*c6d7a45dSGunnar Mills "readonly": true, 846*c6d7a45dSGunnar Mills "type": [ 847*c6d7a45dSGunnar Mills "string", 848*c6d7a45dSGunnar Mills "null" 849*c6d7a45dSGunnar Mills ], 850*c6d7a45dSGunnar Mills "versionAdded": "v1_17_0" 851*c6d7a45dSGunnar Mills }, 852*c6d7a45dSGunnar Mills "VirtualMedia": { 853*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/VirtualMediaCollection.json#/definitions/VirtualMediaCollection", 854*c6d7a45dSGunnar Mills "deprecated": "This property has been deprecated in favor of the `VirtualMedia` property in the `ComputerSystem` resource.", 855*c6d7a45dSGunnar Mills "description": "The link to the virtual media services for this particular manager.", 856*c6d7a45dSGunnar Mills "longDescription": "This property shall contain a link to a resource collection of type `VirtualMediaCollection`, which this manager uses.", 857*c6d7a45dSGunnar Mills "readonly": true, 858*c6d7a45dSGunnar Mills "versionDeprecated": "v1_10_0" 859*c6d7a45dSGunnar Mills } 860*c6d7a45dSGunnar Mills }, 861*c6d7a45dSGunnar Mills "required": [ 862*c6d7a45dSGunnar Mills "@odata.id", 863*c6d7a45dSGunnar Mills "@odata.type", 864*c6d7a45dSGunnar Mills "Id", 865*c6d7a45dSGunnar Mills "Name" 866*c6d7a45dSGunnar Mills ], 867*c6d7a45dSGunnar Mills "type": "object" 868*c6d7a45dSGunnar Mills }, 869*c6d7a45dSGunnar Mills "ManagerService": { 870*c6d7a45dSGunnar Mills "additionalProperties": false, 871*c6d7a45dSGunnar Mills "description": "The manager services, such as serial console, command shell, or graphical console service.", 872*c6d7a45dSGunnar Mills "patternProperties": { 873*c6d7a45dSGunnar Mills "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": { 874*c6d7a45dSGunnar Mills "description": "This property shall specify a valid odata or Redfish property.", 875*c6d7a45dSGunnar Mills "type": [ 876*c6d7a45dSGunnar Mills "array", 877*c6d7a45dSGunnar Mills "boolean", 878*c6d7a45dSGunnar Mills "integer", 879*c6d7a45dSGunnar Mills "number", 880*c6d7a45dSGunnar Mills "null", 881*c6d7a45dSGunnar Mills "object", 882*c6d7a45dSGunnar Mills "string" 883*c6d7a45dSGunnar Mills ] 884*c6d7a45dSGunnar Mills } 885*c6d7a45dSGunnar Mills }, 886*c6d7a45dSGunnar Mills "properties": { 887*c6d7a45dSGunnar Mills "MaxConcurrentSessions": { 888*c6d7a45dSGunnar Mills "description": "The maximum number of service sessions, regardless of protocol, that this manager can support.", 889*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the maximum number of concurrent service sessions that this implementation supports.", 890*c6d7a45dSGunnar Mills "minimum": 0, 891*c6d7a45dSGunnar Mills "readonly": true, 892*c6d7a45dSGunnar Mills "type": "integer" 893*c6d7a45dSGunnar Mills }, 894*c6d7a45dSGunnar Mills "ServiceEnabled": { 895*c6d7a45dSGunnar Mills "description": "An indication of whether the service is enabled for this manager.", 896*c6d7a45dSGunnar Mills "longDescription": "This property shall indicate whether the protocol for the service is enabled.", 897*c6d7a45dSGunnar Mills "readonly": false, 898*c6d7a45dSGunnar Mills "type": "boolean" 899*c6d7a45dSGunnar Mills } 900*c6d7a45dSGunnar Mills }, 901*c6d7a45dSGunnar Mills "type": "object" 902*c6d7a45dSGunnar Mills }, 903*c6d7a45dSGunnar Mills "ManagerType": { 904*c6d7a45dSGunnar Mills "enum": [ 905*c6d7a45dSGunnar Mills "ManagementController", 906*c6d7a45dSGunnar Mills "EnclosureManager", 907*c6d7a45dSGunnar Mills "BMC", 908*c6d7a45dSGunnar Mills "RackManager", 909*c6d7a45dSGunnar Mills "AuxiliaryController", 910*c6d7a45dSGunnar Mills "Service", 911*c6d7a45dSGunnar Mills "FabricManager" 912*c6d7a45dSGunnar Mills ], 913*c6d7a45dSGunnar Mills "enumDescriptions": { 914*c6d7a45dSGunnar Mills "AuxiliaryController": "A controller that provides management functions for a particular subsystem or group of devices as part of a larger system.", 915*c6d7a45dSGunnar Mills "BMC": "A controller that provides management functions for one or more computer systems. Commonly known as a BMC (baseboard management controller). Examples of this include a BMC dedicated to one system or a multi-host manager providing BMC capabilities to multiple systems.", 916*c6d7a45dSGunnar Mills "EnclosureManager": "A controller that provides management functions for a chassis, group of devices, or group of systems with their own BMCs (baseboard management controllers). An example of this is a manager that aggregates and orchestrates management functions across multiple BMCs in an enclosure.", 917*c6d7a45dSGunnar Mills "FabricManager": "A controller that primarily monitors or manages the operation of a group of fabric attached nodes and switches.", 918*c6d7a45dSGunnar Mills "ManagementController": "A controller that primarily monitors or manages the operation of a device or system.", 919*c6d7a45dSGunnar Mills "RackManager": "A controller that provides management functions for a whole or part of a rack. An example of this is a manager that aggregates and orchestrates management functions across multiple managers, such as enclosure managers and BMCs (baseboard management controllers), in a rack.", 920*c6d7a45dSGunnar Mills "Service": "A software-based service that provides management functions." 921*c6d7a45dSGunnar Mills }, 922*c6d7a45dSGunnar Mills "enumVersionAdded": { 923*c6d7a45dSGunnar Mills "FabricManager": "v1_22_0", 924*c6d7a45dSGunnar Mills "Service": "v1_4_0" 925*c6d7a45dSGunnar Mills }, 926*c6d7a45dSGunnar Mills "type": "string" 927*c6d7a45dSGunnar Mills }, 928*c6d7a45dSGunnar Mills "ModifyRedundancySet": { 929*c6d7a45dSGunnar Mills "additionalProperties": false, 930*c6d7a45dSGunnar Mills "description": "The `ModifyRedundancySet` operation adds members to or removes members from a redundant group of managers.", 931*c6d7a45dSGunnar Mills "longDescription": "The `ModifyRedundancySet` operation shall add members to or remove members from a redundant group of managers.", 932*c6d7a45dSGunnar Mills "parameters": { 933*c6d7a45dSGunnar Mills "Add": { 934*c6d7a45dSGunnar Mills "description": "An array of managers to add to the redundancy set.", 935*c6d7a45dSGunnar Mills "items": { 936*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/Manager.json#/definitions/Manager" 937*c6d7a45dSGunnar Mills }, 938*c6d7a45dSGunnar Mills "longDescription": "This parameter shall contain an array of managers to add to the redundancy set.", 939*c6d7a45dSGunnar Mills "type": "array" 940*c6d7a45dSGunnar Mills }, 941*c6d7a45dSGunnar Mills "Remove": { 942*c6d7a45dSGunnar Mills "description": "An array of managers to remove from the redundancy set.", 943*c6d7a45dSGunnar Mills "items": { 944*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/Manager.json#/definitions/Manager" 945*c6d7a45dSGunnar Mills }, 946*c6d7a45dSGunnar Mills "longDescription": "This parameter shall contain an array of managers to remove from the redundancy set.", 947*c6d7a45dSGunnar Mills "type": "array" 948*c6d7a45dSGunnar Mills } 949*c6d7a45dSGunnar Mills }, 950*c6d7a45dSGunnar Mills "patternProperties": { 951*c6d7a45dSGunnar Mills "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": { 952*c6d7a45dSGunnar Mills "description": "This property shall specify a valid odata or Redfish property.", 953*c6d7a45dSGunnar Mills "type": [ 954*c6d7a45dSGunnar Mills "array", 955*c6d7a45dSGunnar Mills "boolean", 956*c6d7a45dSGunnar Mills "integer", 957*c6d7a45dSGunnar Mills "number", 958*c6d7a45dSGunnar Mills "null", 959*c6d7a45dSGunnar Mills "object", 960*c6d7a45dSGunnar Mills "string" 961*c6d7a45dSGunnar Mills ] 962*c6d7a45dSGunnar Mills } 963*c6d7a45dSGunnar Mills }, 964*c6d7a45dSGunnar Mills "properties": { 965*c6d7a45dSGunnar Mills "target": { 966*c6d7a45dSGunnar Mills "description": "Link to invoke action", 967*c6d7a45dSGunnar Mills "format": "uri-reference", 968*c6d7a45dSGunnar Mills "type": "string" 969*c6d7a45dSGunnar Mills }, 970*c6d7a45dSGunnar Mills "title": { 971*c6d7a45dSGunnar Mills "description": "Friendly action name", 972*c6d7a45dSGunnar Mills "type": "string" 973*c6d7a45dSGunnar Mills } 974*c6d7a45dSGunnar Mills }, 975*c6d7a45dSGunnar Mills "type": "object" 976*c6d7a45dSGunnar Mills }, 977*c6d7a45dSGunnar Mills "OemActions": { 978*c6d7a45dSGunnar Mills "additionalProperties": true, 979*c6d7a45dSGunnar Mills "description": "The available OEM-specific actions for this resource.", 980*c6d7a45dSGunnar Mills "longDescription": "This type shall contain the available OEM-specific actions for this resource.", 981*c6d7a45dSGunnar Mills "patternProperties": { 982*c6d7a45dSGunnar Mills "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": { 983*c6d7a45dSGunnar Mills "description": "This property shall specify a valid odata or Redfish property.", 984*c6d7a45dSGunnar Mills "type": [ 985*c6d7a45dSGunnar Mills "array", 986*c6d7a45dSGunnar Mills "boolean", 987*c6d7a45dSGunnar Mills "integer", 988*c6d7a45dSGunnar Mills "number", 989*c6d7a45dSGunnar Mills "null", 990*c6d7a45dSGunnar Mills "object", 991*c6d7a45dSGunnar Mills "string" 992*c6d7a45dSGunnar Mills ] 993*c6d7a45dSGunnar Mills } 994*c6d7a45dSGunnar Mills }, 995*c6d7a45dSGunnar Mills "properties": {}, 996*c6d7a45dSGunnar Mills "type": "object" 997*c6d7a45dSGunnar Mills }, 998*c6d7a45dSGunnar Mills "Reset": { 999*c6d7a45dSGunnar Mills "additionalProperties": false, 1000*c6d7a45dSGunnar Mills "description": "The reset action resets/reboots the manager.", 1001*c6d7a45dSGunnar Mills "longDescription": "This action shall reset the manager. If this manager provides the Redfish service, the service shall send the action response before resetting to prevent client timeouts.", 1002*c6d7a45dSGunnar Mills "parameters": { 1003*c6d7a45dSGunnar Mills "ResetType": { 1004*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/ResetType", 1005*c6d7a45dSGunnar Mills "description": "The type of reset.", 1006*c6d7a45dSGunnar Mills "longDescription": "This parameter shall contain the type of reset. The service can accept a request without the parameter and perform an implementation-specific default reset. Services should include the `@Redfish.AllowableValues` annotation for this parameter to ensure compatibility with clients, even when `ActionInfo` has been implemented." 1007*c6d7a45dSGunnar Mills } 1008*c6d7a45dSGunnar Mills }, 1009*c6d7a45dSGunnar Mills "patternProperties": { 1010*c6d7a45dSGunnar Mills "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": { 1011*c6d7a45dSGunnar Mills "description": "This property shall specify a valid odata or Redfish property.", 1012*c6d7a45dSGunnar Mills "type": [ 1013*c6d7a45dSGunnar Mills "array", 1014*c6d7a45dSGunnar Mills "boolean", 1015*c6d7a45dSGunnar Mills "integer", 1016*c6d7a45dSGunnar Mills "number", 1017*c6d7a45dSGunnar Mills "null", 1018*c6d7a45dSGunnar Mills "object", 1019*c6d7a45dSGunnar Mills "string" 1020*c6d7a45dSGunnar Mills ] 1021*c6d7a45dSGunnar Mills } 1022*c6d7a45dSGunnar Mills }, 1023*c6d7a45dSGunnar Mills "properties": { 1024*c6d7a45dSGunnar Mills "target": { 1025*c6d7a45dSGunnar Mills "description": "Link to invoke action", 1026*c6d7a45dSGunnar Mills "format": "uri-reference", 1027*c6d7a45dSGunnar Mills "type": "string" 1028*c6d7a45dSGunnar Mills }, 1029*c6d7a45dSGunnar Mills "title": { 1030*c6d7a45dSGunnar Mills "description": "Friendly action name", 1031*c6d7a45dSGunnar Mills "type": "string" 1032*c6d7a45dSGunnar Mills } 1033*c6d7a45dSGunnar Mills }, 1034*c6d7a45dSGunnar Mills "type": "object" 1035*c6d7a45dSGunnar Mills }, 1036*c6d7a45dSGunnar Mills "ResetToDefaults": { 1037*c6d7a45dSGunnar Mills "additionalProperties": false, 1038*c6d7a45dSGunnar Mills "description": "The reset action resets the manager settings to factory defaults. This can cause the manager to reset.", 1039*c6d7a45dSGunnar Mills "longDescription": "This action shall reset the manager settings. This action may impact other resources.", 1040*c6d7a45dSGunnar Mills "parameters": { 1041*c6d7a45dSGunnar Mills "ResetType": { 1042*c6d7a45dSGunnar Mills "$ref": "#/definitions/ResetToDefaultsType", 1043*c6d7a45dSGunnar Mills "description": "The type of reset to defaults.", 1044*c6d7a45dSGunnar Mills "longDescription": "This parameter shall contain the type of reset to defaults.", 1045*c6d7a45dSGunnar Mills "requiredParameter": true 1046*c6d7a45dSGunnar Mills } 1047*c6d7a45dSGunnar Mills }, 1048*c6d7a45dSGunnar Mills "patternProperties": { 1049*c6d7a45dSGunnar Mills "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": { 1050*c6d7a45dSGunnar Mills "description": "This property shall specify a valid odata or Redfish property.", 1051*c6d7a45dSGunnar Mills "type": [ 1052*c6d7a45dSGunnar Mills "array", 1053*c6d7a45dSGunnar Mills "boolean", 1054*c6d7a45dSGunnar Mills "integer", 1055*c6d7a45dSGunnar Mills "number", 1056*c6d7a45dSGunnar Mills "null", 1057*c6d7a45dSGunnar Mills "object", 1058*c6d7a45dSGunnar Mills "string" 1059*c6d7a45dSGunnar Mills ] 1060*c6d7a45dSGunnar Mills } 1061*c6d7a45dSGunnar Mills }, 1062*c6d7a45dSGunnar Mills "properties": { 1063*c6d7a45dSGunnar Mills "target": { 1064*c6d7a45dSGunnar Mills "description": "Link to invoke action", 1065*c6d7a45dSGunnar Mills "format": "uri-reference", 1066*c6d7a45dSGunnar Mills "type": "string" 1067*c6d7a45dSGunnar Mills }, 1068*c6d7a45dSGunnar Mills "title": { 1069*c6d7a45dSGunnar Mills "description": "Friendly action name", 1070*c6d7a45dSGunnar Mills "type": "string" 1071*c6d7a45dSGunnar Mills } 1072*c6d7a45dSGunnar Mills }, 1073*c6d7a45dSGunnar Mills "type": "object", 1074*c6d7a45dSGunnar Mills "versionAdded": "v1_8_0" 1075*c6d7a45dSGunnar Mills }, 1076*c6d7a45dSGunnar Mills "ResetToDefaultsType": { 1077*c6d7a45dSGunnar Mills "enum": [ 1078*c6d7a45dSGunnar Mills "ResetAll", 1079*c6d7a45dSGunnar Mills "PreserveNetworkAndUsers", 1080*c6d7a45dSGunnar Mills "PreserveNetwork" 1081*c6d7a45dSGunnar Mills ], 1082*c6d7a45dSGunnar Mills "enumDescriptions": { 1083*c6d7a45dSGunnar Mills "PreserveNetwork": "Reset all settings except network settings to factory defaults.", 1084*c6d7a45dSGunnar Mills "PreserveNetworkAndUsers": "Reset all settings except network and local usernames/passwords to factory defaults.", 1085*c6d7a45dSGunnar Mills "ResetAll": "Reset all settings to factory defaults." 1086*c6d7a45dSGunnar Mills }, 1087*c6d7a45dSGunnar Mills "type": "string" 1088*c6d7a45dSGunnar Mills }, 1089*c6d7a45dSGunnar Mills "SecurityModeTypes": { 1090*c6d7a45dSGunnar Mills "enum": [ 1091*c6d7a45dSGunnar Mills "FIPS_140_2", 1092*c6d7a45dSGunnar Mills "FIPS_140_3", 1093*c6d7a45dSGunnar Mills "CNSA_1_0", 1094*c6d7a45dSGunnar Mills "CNSA_2_0", 1095*c6d7a45dSGunnar Mills "SuiteB", 1096*c6d7a45dSGunnar Mills "OEM", 1097*c6d7a45dSGunnar Mills "Default" 1098*c6d7a45dSGunnar Mills ], 1099*c6d7a45dSGunnar Mills "enumDescriptions": { 1100*c6d7a45dSGunnar Mills "CNSA_1_0": "This security mode indicates the implementation meets NSA Commercial National Security Algorithm Suite 1.0 requirements. This mode requires FIPS 140-2 compliance.", 1101*c6d7a45dSGunnar Mills "CNSA_2_0": "This security mode indicates the implementation meets NSA Commercial National Security Algorithm Suite 2.0 requirements. This mode requires FIPS 140-3 compliance.", 1102*c6d7a45dSGunnar Mills "Default": "This security mode indicates the implementation is in a vendor-specific default security state that does not match any other value.", 1103*c6d7a45dSGunnar Mills "FIPS_140_2": "This security mode indicates the implementation complies with FIPS 140-2.", 1104*c6d7a45dSGunnar Mills "FIPS_140_3": "This security mode indicates the implementation complies with FIPS 140-3.", 1105*c6d7a45dSGunnar Mills "OEM": "This security mode indicates the implementation is in an OEM-specific security state.", 1106*c6d7a45dSGunnar Mills "SuiteB": "This security mode indicates the implementation meets NSA Suite B cryptographic standards for Top Secret installations. This mode requires FIPS 140-2 compliance." 1107*c6d7a45dSGunnar Mills }, 1108*c6d7a45dSGunnar Mills "enumLongDescriptions": { 1109*c6d7a45dSGunnar Mills "CNSA_1_0": "This value shall indicate that the implementation meets NSA Commercial National Security Algorithm Suite 1.0 requirements and FIPS 140-2 compliance.", 1110*c6d7a45dSGunnar Mills "CNSA_2_0": "This value shall indicate that the implementation meets NSA Commercial National Security Algorithm Suite 2.0 requirements and FIPS 140-3 compliance.", 1111*c6d7a45dSGunnar Mills "Default": "This value shall indicate that the implementation is in a vendor-specific default security state that does not match any other value.", 1112*c6d7a45dSGunnar Mills "FIPS_140_2": "This value shall indicate that the implementation complies with FIPS 140-2.", 1113*c6d7a45dSGunnar Mills "FIPS_140_3": "This value shall indicate that the implementation complies with FIPS 140-3.", 1114*c6d7a45dSGunnar Mills "OEM": "This value shall indicate that the implementation is in an OEM-specific security state.", 1115*c6d7a45dSGunnar Mills "SuiteB": "This value shall indicate that the implementation meets NSA Suite B cryptographic standards for Top Secret installations and FIPS 140-2 compliance." 1116*c6d7a45dSGunnar Mills }, 1117*c6d7a45dSGunnar Mills "type": "string" 1118*c6d7a45dSGunnar Mills }, 1119*c6d7a45dSGunnar Mills "SerialConnectTypesSupported": { 1120*c6d7a45dSGunnar Mills "enum": [ 1121*c6d7a45dSGunnar Mills "SSH", 1122*c6d7a45dSGunnar Mills "Telnet", 1123*c6d7a45dSGunnar Mills "IPMI", 1124*c6d7a45dSGunnar Mills "Oem" 1125*c6d7a45dSGunnar Mills ], 1126*c6d7a45dSGunnar Mills "enumDescriptions": { 1127*c6d7a45dSGunnar Mills "IPMI": "The controller supports a serial console connection through the IPMI Serial Over LAN (SOL) protocol.", 1128*c6d7a45dSGunnar Mills "Oem": "The controller supports a serial console connection through an OEM-specific protocol.", 1129*c6d7a45dSGunnar Mills "SSH": "The controller supports a serial console connection through the SSH protocol.", 1130*c6d7a45dSGunnar Mills "Telnet": "The controller supports a serial console connection through the Telnet protocol." 1131*c6d7a45dSGunnar Mills }, 1132*c6d7a45dSGunnar Mills "type": "string" 1133*c6d7a45dSGunnar Mills }, 1134*c6d7a45dSGunnar Mills "SerialConsole": { 1135*c6d7a45dSGunnar Mills "additionalProperties": false, 1136*c6d7a45dSGunnar Mills "description": "The information about a serial console service that this manager provides.", 1137*c6d7a45dSGunnar Mills "longDescription": "This type shall describe a serial console service for a manager.", 1138*c6d7a45dSGunnar Mills "patternProperties": { 1139*c6d7a45dSGunnar Mills "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": { 1140*c6d7a45dSGunnar Mills "description": "This property shall specify a valid odata or Redfish property.", 1141*c6d7a45dSGunnar Mills "type": [ 1142*c6d7a45dSGunnar Mills "array", 1143*c6d7a45dSGunnar Mills "boolean", 1144*c6d7a45dSGunnar Mills "integer", 1145*c6d7a45dSGunnar Mills "number", 1146*c6d7a45dSGunnar Mills "null", 1147*c6d7a45dSGunnar Mills "object", 1148*c6d7a45dSGunnar Mills "string" 1149*c6d7a45dSGunnar Mills ] 1150*c6d7a45dSGunnar Mills } 1151*c6d7a45dSGunnar Mills }, 1152*c6d7a45dSGunnar Mills "properties": { 1153*c6d7a45dSGunnar Mills "ConnectTypesSupported": { 1154*c6d7a45dSGunnar Mills "description": "This property enumerates the serial console connection types that the implementation allows.", 1155*c6d7a45dSGunnar Mills "items": { 1156*c6d7a45dSGunnar Mills "$ref": "#/definitions/SerialConnectTypesSupported" 1157*c6d7a45dSGunnar Mills }, 1158*c6d7a45dSGunnar Mills "longDescription": "This property shall contain an array of the enumerations. SSH shall be included if the Secure Shell (SSH) protocol is supported. Telnet shall be included if the Telnet protocol is supported. IPMI shall be included if the IPMI Serial Over LAN (SOL) protocol is supported.", 1159*c6d7a45dSGunnar Mills "readonly": true, 1160*c6d7a45dSGunnar Mills "type": "array" 1161*c6d7a45dSGunnar Mills }, 1162*c6d7a45dSGunnar Mills "MaxConcurrentSessions": { 1163*c6d7a45dSGunnar Mills "description": "The maximum number of service sessions, regardless of protocol, that this manager can support.", 1164*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the maximum number of concurrent service sessions that this implementation supports.", 1165*c6d7a45dSGunnar Mills "minimum": 0, 1166*c6d7a45dSGunnar Mills "readonly": true, 1167*c6d7a45dSGunnar Mills "type": "integer" 1168*c6d7a45dSGunnar Mills }, 1169*c6d7a45dSGunnar Mills "ServiceEnabled": { 1170*c6d7a45dSGunnar Mills "description": "An indication of whether the service is enabled for this manager.", 1171*c6d7a45dSGunnar Mills "longDescription": "This property shall indicate whether the protocol for the service is enabled.", 1172*c6d7a45dSGunnar Mills "readonly": false, 1173*c6d7a45dSGunnar Mills "type": "boolean" 1174*c6d7a45dSGunnar Mills } 1175*c6d7a45dSGunnar Mills }, 1176*c6d7a45dSGunnar Mills "type": "object" 1177*c6d7a45dSGunnar Mills }, 1178*c6d7a45dSGunnar Mills "UpdateSecurityMode": { 1179*c6d7a45dSGunnar Mills "additionalProperties": false, 1180*c6d7a45dSGunnar Mills "description": "The update security mode action updates the security mode for the manager. This can cause the manager to reset and reset other settings to factory defaults. Services might require the `ResetToDefaults` action to clear the security mode.", 1181*c6d7a45dSGunnar Mills "longDescription": "This action shall update the security mode for the manager. Services may reset other settings to factory defaults. Services may require the `ResetToDefaults` action to clear security settings. This action may impact other resources.", 1182*c6d7a45dSGunnar Mills "parameters": { 1183*c6d7a45dSGunnar Mills "OEMSecurityMode": { 1184*c6d7a45dSGunnar Mills "description": "The OEM-specific security mode to apply to the manager.", 1185*c6d7a45dSGunnar Mills "longDescription": "This parameter shall contain the OEM-specific security mode to apply to the manager. This parameter shall be required if `SecurityMode` is `OEM`.", 1186*c6d7a45dSGunnar Mills "type": "string" 1187*c6d7a45dSGunnar Mills }, 1188*c6d7a45dSGunnar Mills "SecurityMode": { 1189*c6d7a45dSGunnar Mills "$ref": "#/definitions/SecurityModeTypes", 1190*c6d7a45dSGunnar Mills "description": "The security mode to apply to the manager.", 1191*c6d7a45dSGunnar Mills "longDescription": "This parameter shall contain the security mode to apply to the manager.", 1192*c6d7a45dSGunnar Mills "requiredParameter": true 1193*c6d7a45dSGunnar Mills } 1194*c6d7a45dSGunnar Mills }, 1195*c6d7a45dSGunnar Mills "patternProperties": { 1196*c6d7a45dSGunnar Mills "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": { 1197*c6d7a45dSGunnar Mills "description": "This property shall specify a valid odata or Redfish property.", 1198*c6d7a45dSGunnar Mills "type": [ 1199*c6d7a45dSGunnar Mills "array", 1200*c6d7a45dSGunnar Mills "boolean", 1201*c6d7a45dSGunnar Mills "integer", 1202*c6d7a45dSGunnar Mills "number", 1203*c6d7a45dSGunnar Mills "null", 1204*c6d7a45dSGunnar Mills "object", 1205*c6d7a45dSGunnar Mills "string" 1206*c6d7a45dSGunnar Mills ] 1207*c6d7a45dSGunnar Mills } 1208*c6d7a45dSGunnar Mills }, 1209*c6d7a45dSGunnar Mills "properties": { 1210*c6d7a45dSGunnar Mills "target": { 1211*c6d7a45dSGunnar Mills "description": "Link to invoke action", 1212*c6d7a45dSGunnar Mills "format": "uri-reference", 1213*c6d7a45dSGunnar Mills "type": "string" 1214*c6d7a45dSGunnar Mills }, 1215*c6d7a45dSGunnar Mills "title": { 1216*c6d7a45dSGunnar Mills "description": "Friendly action name", 1217*c6d7a45dSGunnar Mills "type": "string" 1218*c6d7a45dSGunnar Mills } 1219*c6d7a45dSGunnar Mills }, 1220*c6d7a45dSGunnar Mills "type": "object", 1221*c6d7a45dSGunnar Mills "versionAdded": "v1_21_0" 1222*c6d7a45dSGunnar Mills } 1223*c6d7a45dSGunnar Mills }, 1224*c6d7a45dSGunnar Mills "language": "en", 1225*c6d7a45dSGunnar Mills "owningEntity": "DMTF", 1226*c6d7a45dSGunnar Mills "release": "2025.2", 1227*c6d7a45dSGunnar Mills "title": "#Manager.v1_22_0.Manager" 1228*c6d7a45dSGunnar Mills}