This document is a reference to the types, properties, and attributes in the RESTFul API for Moonshot Chassis Manager 1.51.
HPE Part Number: 802725-003 |
Published: July 2016 |
Edition: 1 |
© Copyright 2016 Hewlett Packard Enterprise Development LP
Confidential computer software. Valid license from Hewlett Packard Enterprise required for possession, use, or copying. Consistent with FAR 12.211 and 12.212, Commercial Computer Software, Computer Software Documentation, and Technical Data for Commercial Items are licensed to the U.S. Government under vendor's standard commercial license.
The information contained herein is subject to change without notice. The only warranties for Hewlett Packard Enterprise products and services are set forth in the express warranty statements accompanying such products and services. Nothing herein should be construed as constituting an additional warranty. Hewlett Packard Enterprise shall not be liable for technical or editorial errors or omissions contained herein.
Microsoft®, Windows®, Windows® XP, Windows NT®, and Google Chrome® are U.S. registered trademarks of Microsoft Corporation.
Java and Oracle are registered trademarks of Oracle and/or its affiliates.
UNIX® is a registered trademark of The Open Group.
This paper assumes the reader is familiar with HTTP operations and RESTful web service APIs. The reader should be familiar with JSON and UTF-8 encoding as well as HTTP operations and headers.
This paper is a reference and is intended to be used in conjunction with the paper entitled "Managing HPE Servers Using the RESTful API." This other document is an introduction to using the RESTful API, while this document provides detail on individual properties and messages.
HPE Moonshot running Chassis Manager 1.30 or later features a new management interface called the “RESTful API.” The RESTful API is a RESTful Web Service API served by iLO’s web server. If you are familiar with RESTful APIs, this should tell you much about how the API works. In short, a RESTful API is an application programming interface using the basic HTTP operations GET, PUT, POST, DELETE, and PATCH. Each HTTP operation either submits or returns a “resource” in the form of UTF-8 encoded JSON. Just as a Web application returns HTML to your browser, a REST interface returns data (in the form of JSON) to your client over the same transport (HTTPS).
All modern scripting languages make it very easy to write simple REST clients for web services. Most, like Python can transform JSON into internal data structures like dictionaries, allowing for easily access to data. This enables you to write custom code directly to the API instead of using intermediate tools.
If you are not familiar with RESTful APIs, you should pause and do internet research on the subject. This tutorial is intended to point out the things you must consider when creating a proper client to interact with the RESTful API.
This RESTful API will become the main management API for Moonshot. Using this API you can take full inventory of the Moonshot enclosure, control power and reset, configure settings, fetch event logs as well as many other things.
This API follows the trend of the Internet in moving to a common pattern for new software interfaces. Many web services in a variety of industries use REST APIs because they are easily to implement, easy to consume, and offer scalability advantages over previous technologies. HPE OneView, OpenStack, and many other server management APIs are now REST APIs. Most HPE Management software offerings as well as the entire Software Defined Data Center architecture is built upon REST APIs.
The RESTful API for iLO is available on Moonshot servers running iLO Chassis Manager and does not require a license.
This document has three main sections.
The Resource Map documents the resources in the data model including the URIs and types of the resources as well as the relationships between resources. Not all implementations of the API will contain all the resources in this table and the model may expand in future versions of firmware.
The Data Model Type Reference contains a chapter for each resource type and a section for each property in each resource type.
The Message Reference documents the MessageID values that may be returned in ExtendedError responses to HTTP operations.
This section documents the resource map. Not all resources will be present in all implementations and the resource model may expand in future versions of the firmware. The root resource is /rest/v1.
/rest/v1 | ServiceRoot | HTTP Allow: GET | |
Links to other resources | to resource URI | to resource Type | |
/Oem/Hp/links/DirectoryService | /rest/v1/DirectoryService | DirectoryService | |
/Oem/Hp/links/Systems[] | /rest/v1/SystemsSummary | SystemsSummary | |
/links/AccountService | /rest/v1/AccountService | AccountService | |
/links/Chassis | /rest/v1/Chassis | Collection | |
/links/Managers | /rest/v1/Managers | Collection | |
/links/Registries | /rest/v1/Registries | Collection | |
/links/Schemas | /rest/v1/Schemas | Collection | |
/links/Sessions | /rest/v1/Sessions | Collection | |
/links/Systems | /rest/v1/Systems | Collection | |
/rest/v1/AccountService | AccountService | HTTP Allow: GET, PATCH | |
Links to other resources | to resource URI | to resource Type | |
/links/Accounts | /rest/v1/AccountService/Accounts | Collection | |
/rest/v1/AccountService/Accounts | Collection | HTTP Allow: GET, POST | |
Links to other resources | to resource URI | to resource Type | |
/links/Member[] | /rest/v1/AccountService/Accounts/{item} | ManagerAccount | |
/rest/v1/AccountService/Accounts/{item} | ManagerAccount | HTTP Allow: GET, PATCH, POST, DELETE | |
Links to other resources | to resource URI | to resource Type | |
/rest/v1/Chassis | Collection | HTTP Allow: GET | |
Links to other resources | to resource URI | to resource Type | |
/links/Member[] | /rest/v1/Chassis/{item} | Chassis | |
/rest/v1/Chassis/{item} | Chassis | HTTP Allow: GET, PATCH, POST | |
Links to other resources | to resource URI | to resource Type | |
/Oem/Hp/links/CartridgeLinks | /rest/v1/Chassis/{item}/CartridgeLinks | HpMoonshotCartridgeLinkService | |
/Oem/Hp/links/Cartridges | /rest/v1/Chassis/{item}/Cartridges | Collection | |
/Oem/Hp/links/ChassisFirmwareSummary | /rest/v1/Chassis/{item}/ChassisFirmwareSummary | ChassisFirmwareSummary | |
/Oem/Hp/links/ChassisSummary | /rest/v1/Chassis/{item}/ChassisSummary | ChassisSummary | |
/Oem/Hp/links/Switches | /rest/v1/Chassis/{item}/Switches | Collection | |
/links/LogService | /rest/v1/Chassis/{item}/Logs/IML | HpMoonshotLogService | |
/links/ManagedBy[] | /rest/v1/Managers/{item} | Manager | |
/links/PowerMetrics | /rest/v1/Chassis/{item}/PowerMetrics | MoonshotPowerMetrics | |
/links/ThermalMetrics | /rest/v1/Chassis/{item}/ThermalMetrics | ThermalMetrics | |
/rest/v1/Chassis/{item}/CartridgeLinks | HpMoonshotCartridgeLinkService | HTTP Allow: GET, POST | |
Links to other resources | to resource URI | to resource Type | |
/links/Entries | /rest/v1/Chassis/{item}/CartridgeLinks/Entries | Collection | |
/rest/v1/Chassis/{item}/CartridgeLinks/Entries | Collection | HTTP Allow: GET, POST | |
Links to other resources | to resource URI | to resource Type | |
/links/Member[] | /rest/v1/Chassis/{item}/CartridgeLinks/Entries/{item} | CartridgeLinkEntry | |
/rest/v1/Chassis/{item}/CartridgeLinks/Entries/{item} | CartridgeLinkEntry | HTTP Allow: GET, PATCH, POST | |
Links to other resources | to resource URI | to resource Type | |
/rest/v1/Chassis/{item}/Cartridges | Collection | HTTP Allow: GET | |
Links to other resources | to resource URI | to resource Type | |
/links/Member[] | /rest/v1/Chassis/{item}/Cartridges/{item} | HpMoonshotCartridge | |
/rest/v1/Chassis/{item}/Cartridges/{item} | HpMoonshotCartridge | HTTP Allow: GET, PATCH, POST | |
Links to other resources | to resource URI | to resource Type | |
/links/ComputerSystems[] | /rest/v1/Systems/{item} | ComputerSystem | |
/links/LogService | /rest/v1/Chassis/{item}/Cartridges/{item}/Logs/IML | HpMoonshotLogService | |
/links/ManagedBy[] | /rest/v1/Managers/{item} | Manager | |
/links/PowerMetrics | /rest/v1/Chassis/{item}/Cartridges/{item}/PowerMetrics | MoonshotPowerMetrics | |
/links/ThermalMetrics | /rest/v1/Chassis/{item}/Cartridges/{item}/ThermalMetrics | ThermalMetrics | |
/rest/v1/Chassis/{item}/Cartridges/{item}/Logs/IML | HpMoonshotLogService | HTTP Allow: GET, PATCH, POST | |
Links to other resources | to resource URI | to resource Type | |
/rest/v1/Chassis/{item}/Cartridges/{item}/PowerMetrics | MoonshotPowerMetrics | HTTP Allow: GET, PATCH | |
Links to other resources | to resource URI | to resource Type | |
/rest/v1/Chassis/{item}/Cartridges/{item}/ThermalMetrics | ThermalMetrics | HTTP Allow: GET | |
Links to other resources | to resource URI | to resource Type | |
/rest/v1/Chassis/{item}/ChassisFirmwareSummary | ChassisFirmwareSummary | HTTP Allow: GET | |
Links to other resources | to resource URI | to resource Type | |
/rest/v1/Chassis/{item}/ChassisSummary | ChassisSummary | HTTP Allow: GET | |
Links to other resources | to resource URI | to resource Type | |
/rest/v1/Chassis/{item}/Logs/IML | HpMoonshotLogService | HTTP Allow: GET, PATCH, POST | |
Links to other resources | to resource URI | to resource Type | |
/rest/v1/Chassis/{item}/PowerMetrics | MoonshotPowerMetrics | HTTP Allow: GET, PATCH | |
Links to other resources | to resource URI | to resource Type | |
/rest/v1/Chassis/{item}/Switches | Collection | HTTP Allow: GET | |
Links to other resources | to resource URI | to resource Type | |
/links/Member[] | /rest/v1/Chassis/{item}/Switches/{item} | HpMoonshotSwitch | |
/rest/v1/Chassis/{item}/Switches/{item} | HpMoonshotSwitch | HTTP Allow: GET, PATCH, POST | |
Links to other resources | to resource URI | to resource Type | |
/links/LogService | /rest/v1/Chassis/{item}/Switches/{item}/Logs/IML | HpMoonshotLogService | |
/links/ManagedBy[] | /rest/v1/Managers/{item} | Manager | |
/links/PowerMetrics | /rest/v1/Chassis/{item}/Switches/{item}/PowerMetrics | MoonshotPowerMetrics | |
/links/ThermalMetrics | /rest/v1/Chassis/{item}/Switches/{item}/ThermalMetrics | ThermalMetrics | |
/rest/v1/Chassis/{item}/Switches/{item}/Logs/IML | HpMoonshotLogService | HTTP Allow: GET, PATCH, POST | |
Links to other resources | to resource URI | to resource Type | |
/rest/v1/Chassis/{item}/Switches/{item}/PowerMetrics | MoonshotPowerMetrics | HTTP Allow: GET, PATCH | |
Links to other resources | to resource URI | to resource Type | |
/rest/v1/Chassis/{item}/Switches/{item}/ThermalMetrics | ThermalMetrics | HTTP Allow: GET | |
Links to other resources | to resource URI | to resource Type | |
/rest/v1/Chassis/{item}/ThermalMetrics | ThermalMetrics | HTTP Allow: GET | |
Links to other resources | to resource URI | to resource Type | |
/rest/v1/DirectoryService | DirectoryService | HTTP Allow: GET, PATCH, POST | |
Links to other resources | to resource URI | to resource Type | |
/links/Groups | /rest/v1/DirectoryService/Groups | Collection | |
/rest/v1/DirectoryService/Groups | Collection | HTTP Allow: GET, POST | |
Links to other resources | to resource URI | to resource Type | |
/links/Member[] | /rest/v1/DirectoryService/Groups/{item} | ManagerGroup | |
/rest/v1/DirectoryService/Groups/{item} | ManagerGroup | HTTP Allow: GET, PATCH, POST, DELETE | |
Links to other resources | to resource URI | to resource Type | |
/rest/v1/Managers | Collection | HTTP Allow: GET | |
Links to other resources | to resource URI | to resource Type | |
/links/Member[] | /rest/v1/Managers/{item} | Manager | |
/rest/v1/Managers/{item} | Manager | HTTP Allow: GET, POST | |
Links to other resources | to resource URI | to resource Type | |
/Oem/Hp/links/DateTime | /rest/v1/Managers/{item}/DateTime | HpiLODateTime | |
/Oem/Hp/links/LicenseService | /rest/v1/Managers/{item}/LicenseService | Collection | |
/Oem/Hp/links/LogService[] | /rest/v1/Managers/{item}/Logs/IML | HpMoonshotLogService | |
/Oem/Hp/links/RepositoryService | /rest/v1/Managers/{item}/RepositoryService | ManagerRepositoryService | |
/Oem/Hp/links/SecurityService | /rest/v1/Managers/{item}/SecurityService | HpSecurityService | |
/Oem/Hp/links/SerialService | /rest/v1/Managers/{item}/SerialService | ManagerSerial | |
/Oem/Hp/links/UpdateService | /rest/v1/Managers/{item}/UpdateService | ManagerUpdateService | |
/links/EthernetNICs | /rest/v1/Managers/{item}/NICs | Collection | |
/links/NetworkService | /rest/v1/Managers/{item}/NetworkService | ManagerNetworkService | |
/rest/v1/Managers/{item}/DateTime | HpiLODateTime | HTTP Allow: GET, PATCH | |
Links to other resources | to resource URI | to resource Type | |
/links/EthernetNICs | /rest/v1/Managers/{item}/NICs | Collection | |
/rest/v1/Managers/{item}/LicenseService | Collection | HTTP Allow: GET, POST | |
Links to other resources | to resource URI | to resource Type | |
/links/Member[] | /rest/v1/Managers/{item}/LicenseService/{item} | HpiLOLicense | |
/rest/v1/Managers/{item}/LicenseService/{item} | HpiLOLicense | HTTP Allow: GET, DELETE | |
Links to other resources | to resource URI | to resource Type | |
/rest/v1/Managers/{item}/Logs/IML | HpMoonshotLogService | HTTP Allow: GET, PATCH, POST | |
Links to other resources | to resource URI | to resource Type | |
/rest/v1/Managers/{item}/NICs | Collection | HTTP Allow: GET | |
Links to other resources | to resource URI | to resource Type | |
/links/Member[] | /rest/v1/Managers/{item}/NICs/{item} | EthernetNetworkInterface | |
/rest/v1/Managers/{item}/NICs/{item} | EthernetNetworkInterface | HTTP Allow: GET, PATCH | |
Links to other resources | to resource URI | to resource Type | |
/links/NetworkServices[] | /rest/v1/Managers/{item}/NetworkService | ManagerNetworkService | |
/rest/v1/Managers/{item}/NetworkService | ManagerNetworkService | HTTP Allow: GET, PATCH, POST | |
Links to other resources | to resource URI | to resource Type | |
/Oem/Hp/links/EthernetNICs | /rest/v1/Managers/{item}/NICs | Collection | |
/links/SNMPService | /rest/v1/Managers/{item}/SnmpService | SnmpService | |
/rest/v1/Managers/{item}/RepositoryService | ManagerRepositoryService | HTTP Allow: GET, PATCH, POST | |
Links to other resources | to resource URI | to resource Type | |
/rest/v1/Managers/{item}/SecurityService | HpSecurityService | HTTP Allow: GET, PATCH | |
Links to other resources | to resource URI | to resource Type | |
/links/HttpsCert | /rest/v1/Managers/{item}/SecurityService/HTTPSCert | HpHttpsCert | |
/links/SecurityBanner | /rest/v1/Managers/{item}/SecurityService/SecurityBanner | SecurityBanner | |
/rest/v1/Managers/{item}/SecurityService/HTTPSCert | HpHttpsCert | HTTP Allow: GET, PATCH, POST | |
Links to other resources | to resource URI | to resource Type | |
/rest/v1/Managers/{item}/SecurityService/SecurityBanner | SecurityBanner | HTTP Allow: GET, PATCH | |
Links to other resources | to resource URI | to resource Type | |
/rest/v1/Managers/{item}/SerialService | ManagerSerial | HTTP Allow: GET, PATCH | |
Links to other resources | to resource URI | to resource Type | |
/rest/v1/Managers/{item}/SnmpService | SnmpService | HTTP Allow: GET, PATCH, POST | |
Links to other resources | to resource URI | to resource Type | |
/rest/v1/Managers/{item}/UpdateService | ManagerUpdateService | HTTP Allow: GET, PATCH, POST | |
Links to other resources | to resource URI | to resource Type | |
/rest/v1/Registries | Collection | HTTP Allow: GET | |
Links to other resources | to resource URI | to resource Type | |
/links/Member[] | /rest/v1/Registries/{item} | SchemaFile | |
/rest/v1/Registries/{item} | SchemaFile | HTTP Allow: GET | |
Links to other resources | to resource URI | to resource Type | |
/rest/v1/Schemas | Collection | HTTP Allow: GET | |
Links to other resources | to resource URI | to resource Type | |
/links/Member[] | /rest/v1/Schemas/{item} | SchemaFile | |
/rest/v1/Schemas/{item} | SchemaFile | HTTP Allow: GET | |
Links to other resources | to resource URI | to resource Type | |
/rest/v1/Sessions | Collection | HTTP Allow: GET, POST | |
Links to other resources | to resource URI | to resource Type | |
/Oem/Hp/links/MySession | /rest/v1/Sessions/{item} | Session | |
/links/Member[] | /rest/v1/Sessions/{item} | Session | |
/rest/v1/Sessions/{item} | Session | HTTP Allow: GET, DELETE | |
Links to other resources | to resource URI | to resource Type | |
/rest/v1/Systems | Collection | HTTP Allow: GET | |
Links to other resources | to resource URI | to resource Type | |
/links/Member[] | /rest/v1/Systems/{item} | ComputerSystem | |
/rest/v1/Systems/{item} | ComputerSystem | HTTP Allow: GET, PATCH, POST | |
Links to other resources | to resource URI | to resource Type | |
/links/Chassis[] | /rest/v1/Chassis/{item} | Chassis | |
/links/LogService | /rest/v1/Systems/{item}/Logs/IML | HpMoonshotLogService | |
/links/ManagedBy[] | /rest/v1/Managers/{item} | Manager | |
/rest/v1/Systems/{item}/Logs/IML | HpMoonshotLogService | HTTP Allow: GET, PATCH, POST | |
Links to other resources | to resource URI | to resource Type | |
/rest/v1/SystemsSummary | SystemsSummary | HTTP Allow: GET | |
Links to other resources | to resource URI | to resource Type | |
This section documents each type of resource. Note that more than one resource may be of the same type. Not all resource instances implement every property specified in the definition.
See Resource Map for more details.
This is the schema definition for the Account service. It represents the properties for this service and has links to the list of accounts.
"AccountService" defines the following properties:
This property is a member of AccountService
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of AccountService
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/MinPasswordLength" on resource type AccountService may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
/rest/v1/Chassis/{item}/CartridgeLinks/Entries/{item}
See Resource Map for more details.
"CartridgeLinkEntry" defines the following properties:
This property is a member of CartridgeLinkEntry
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of CartridgeLinkEntry
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of CartridgeLinkEntry
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of CartridgeLinkEntry
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of CartridgeLinkEntry
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of CartridgeLinkEntry
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of CartridgeLinkEntry
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of CartridgeLinkEntry
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of CartridgeLinkEntry
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of CartridgeLinkEntry
GET | Rendered if supported by the implementation or omitted if not. |
See Resource Map for more details.
The schema definition for the Chassis resource represents the properties for physical components for any system. This object represents racks, rack mount servers, blades, standalone, modular systems, enclosures, and all other containers. The non-CPU/device-centric parts of the schema are accessed either directly or indirectly through this resource.
"Chassis" defines the following properties:
This property is a member of Chassis
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "AssetTag" on resource type Chassis may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of Chassis
"Rack" | |
"Blade" | |
"Enclosure" | |
"StandAlone" | |
"RackMount" | |
"Card" | |
"Cartridge" | |
"Row" | |
"Pod" | |
"Expansion" | |
"Sidecar" | |
"Zone" | |
"Sled" | |
"Shelf" | |
"Other" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Chassis
"Unknown" | |
"Lit" | |
"Blinking" | |
"Off" |
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "IndicatorLED" on resource type Chassis may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of Chassis
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of Chassis
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of Chassis
"On" | |
"Off" |
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/AutoPowerOn" on resource type Chassis may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of Chassis
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Chassis
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Chassis
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Chassis
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Chassis
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Chassis
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Chassis
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Chassis
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Chassis
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Chassis
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Chassis
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Chassis
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Chassis
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Chassis
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Chassis
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Chassis
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Chassis
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Chassis
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Chassis
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Chassis
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Chassis
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Chassis
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Chassis
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Chassis
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Chassis
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/Prompt" on resource type Chassis may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of Chassis
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of Chassis
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "SKU" on resource type Chassis may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of Chassis
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "SerialNumber" on resource type Chassis may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of Chassis
"OK" | |
"Warning" | |
"Critical" | |
"Error" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Chassis
"OK" | |
"Warning" | |
"Critical" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Chassis
"Critical" | |
"Enabled" | |
"Disabled" | |
"Offline" | |
"InTest" | |
"Starting" | |
"Absent" | |
"Uninitialized" | |
"OK" | |
"Not Installed" | |
"Failed" | |
"Degraded" | |
"Removed" | |
"Redundant" | |
"Not Redundant" | |
"Insufficient to Operate" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Chassis
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
"Target" must be one of the following value(s):
"/Oem/Hp" |
"AssetTag" must be one of the following value(s):
HTTP POST to resource with request JSON:
"Target" must be one of the following value(s):
"/Oem/Hp" |
"ControlType" must be one of the following value(s):
"On" |
"Off" |
HTTP POST to resource with request JSON:
"Target" must be one of the following value(s):
"/Oem/Hp" |
"ChassisName" must be one of the following value(s):
HTTP POST to resource with request JSON:
"ControlType" must be one of the following value(s):
"Lit" |
"Off" |
"Target" must be one of the following value(s):
"/Oem/Hp" |
HTTP POST to resource with request JSON:
/rest/v1/Chassis/{item}/ChassisFirmwareSummary
See Resource Map for more details.
"ChassisFirmwareSummary" defines the following properties:
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisFirmwareSummary
"OK" | |
"Warning" | |
"Critical" | |
"Error" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisFirmwareSummary
"OK" | |
"Warning" | |
"Critical" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisFirmwareSummary
"Critical" | |
"Enabled" | |
"Disabled" | |
"Offline" | |
"InTest" | |
"Starting" | |
"Absent" | |
"Uninitialized" | |
"OK" | |
"Not Installed" | |
"Failed" | |
"Degraded" | |
"Removed" | |
"Redundant" | |
"Not Redundant" | |
"Insufficient to Operate" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisFirmwareSummary
GET | Rendered if supported by the implementation or omitted if not. |
/rest/v1/Chassis/{item}/ChassisSummary
See Resource Map for more details.
"ChassisSummary" defines the following properties:
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
"On" | |
"Off" |
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "AutoPowerOn" on resource type ChassisSummary may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
"CART_TYPE_RESERVED" | |
"Compute" | |
"Storage" | |
"Graphic" | |
"Switch (network)" | |
"Display (video) cartridge" | |
"Expansion" | |
"Network" | |
"FPGA" | |
"Management" | |
"CART_TYPE_UNKNOWN" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
"Off" | |
"Red" | |
"Amber" | |
"Green" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
"Unknown" | |
"Lit" | |
"Blinking" | |
"Off" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
"Yes" | |
"No" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
"On" | |
"Off" |
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Cartridges[]/Power" on resource type ChassisSummary may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
"OK" | |
"Warning" | |
"Critical" | |
"Error" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
"OK" | |
"Warning" | |
"Critical" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
"Critical" | |
"Enabled" | |
"Disabled" | |
"Offline" | |
"InTest" | |
"Starting" | |
"Absent" | |
"Uninitialized" | |
"OK" | |
"Not Installed" | |
"Failed" | |
"Degraded" | |
"Removed" | |
"Redundant" | |
"Not Redundant" | |
"Insufficient to Operate" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
"System" | |
"System Board" | |
"I/O Board" | |
"CPU" | |
"Memory" | |
"Storage" | |
"Removable Media" | |
"Power Supply" | |
"Ambient" | |
"Chassis" | |
"Bridge Board" | |
"Exhaust" | |
"Processor Bay" | |
"IO Bay" | |
"Blade Slot" | |
"Virtual" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
"OK" | |
"Warning" | |
"Critical" | |
"Error" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
"OK" | |
"Warning" | |
"Critical" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
"Critical" | |
"Enabled" | |
"Disabled" | |
"Offline" | |
"InTest" | |
"Starting" | |
"Absent" | |
"Uninitialized" | |
"OK" | |
"Not Installed" | |
"Failed" | |
"Degraded" | |
"Removed" | |
"Redundant" | |
"Not Redundant" | |
"Insufficient to Operate" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ChassisSummary
"Unknown" | |
"Red" | |
"Amber" | |
"Green" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
"Unknown" | |
"Lit" | |
"Blinking" | |
"Off" |
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "IndicatorLED" on resource type ChassisSummary may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
"Unknown" | |
"Red" | |
"Amber" | |
"Green" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
"Failed" | |
"OK" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
"ACLowLine" | |
"ACMidLine" | |
"ACHighLine" | |
"DCNeg48V" | |
"DC480V" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
"AC" | |
"DC" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
"OK" | |
"Warning" | |
"Critical" | |
"Error" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
"OK" | |
"Warning" | |
"Critical" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
"Critical" | |
"Enabled" | |
"Disabled" | |
"Offline" | |
"InTest" | |
"Starting" | |
"Absent" | |
"Uninitialized" | |
"OK" | |
"Not Installed" | |
"Failed" | |
"Degraded" | |
"Removed" | |
"Redundant" | |
"Not Redundant" | |
"Insufficient to Operate" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
"OK" | |
"Warning" | |
"Critical" | |
"Error" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
"OK" | |
"Warning" | |
"Critical" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
"Critical" | |
"Enabled" | |
"Disabled" | |
"Offline" | |
"InTest" | |
"Starting" | |
"Absent" | |
"Uninitialized" | |
"OK" | |
"Not Installed" | |
"Failed" | |
"Degraded" | |
"Removed" | |
"Redundant" | |
"Not Redundant" | |
"Insufficient to Operate" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
"Off" | |
"Red" | |
"Amber" | |
"Green" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
"Unknown" | |
"Lit" | |
"Blinking" | |
"Off" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
"On" | |
"Off" |
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Switches[]/Power" on resource type ChassisSummary may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
"OK" | |
"Warning" | |
"Critical" | |
"Error" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
"OK" | |
"Warning" | |
"Critical" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
"Critical" | |
"Enabled" | |
"Disabled" | |
"Offline" | |
"InTest" | |
"Starting" | |
"Absent" | |
"Uninitialized" | |
"OK" | |
"Not Installed" | |
"Failed" | |
"Degraded" | |
"Removed" | |
"Redundant" | |
"Not Redundant" | |
"Insufficient to Operate" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ChassisSummary
GET | Rendered if supported by the implementation or omitted if not. |
See Resource Map for more details.
The schema definition of a computer system and its properties. A computer system represents a physical or virtual machine and the local resources, such as memory, CPU, and other devices that can be accessed from that machine.
"ComputerSystem" defines the following properties:
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "AssetTag" on resource type ComputerSystem may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ComputerSystem
"Disabled" | |
"Once" | |
"Continuous" |
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Boot/BootSourceOverrideEnabled" on resource type ComputerSystem may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ComputerSystem
"None" | |
"PXE" | |
"Floppy" | |
"CD" | |
"USB" | |
"HDD" | |
"BiosSetup" | |
"Utilities" | |
"Diags" | |
"UefiShell" | |
"UefiTarget" | |
"M.2" | |
"iSCSI" |
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Boot/BootSourceOverrideTarget" on resource type ComputerSystem may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ComputerSystem
"Unknown" | |
"Lit" | |
"Blinking" | |
"Off" |
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "IndicatorLED" on resource type ComputerSystem may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ComputerSystem
"OK" | |
"Warning" | |
"Critical" | |
"Error" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ComputerSystem
"OK" | |
"Warning" | |
"Critical" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ComputerSystem
"Critical" | |
"Enabled" | |
"Disabled" | |
"Offline" | |
"InTest" | |
"Starting" | |
"Absent" | |
"Uninitialized" | |
"OK" | |
"Not Installed" | |
"Failed" | |
"Degraded" | |
"Removed" | |
"Redundant" | |
"Not Redundant" | |
"Insufficient to Operate" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ComputerSystem
"REC_MEM_FF_RESERVED" | |
"REC_MEM_FF_MASK" | |
"SODIMM" | |
"DIMM" | |
"Embedded" | |
"DODIMM" | |
"Unknown" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ComputerSystem
"DDR" | |
"DDR2" | |
"DDR3" | |
"FBD2" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ComputerSystem
"OK" | |
"Warning" | |
"Critical" | |
"Error" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ComputerSystem
"OK" | |
"Warning" | |
"Critical" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ComputerSystem
"Critical" | |
"Enabled" | |
"Disabled" | |
"Offline" | |
"InTest" | |
"Starting" | |
"Absent" | |
"Uninitialized" | |
"OK" | |
"Not Installed" | |
"Failed" | |
"Degraded" | |
"Removed" | |
"Redundant" | |
"Not Redundant" | |
"Insufficient to Operate" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/NodeOptions" on resource type ComputerSystem may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ComputerSystem
"enabled" | |
"disabled" | |
"DISABLE" | |
"ENABLE" |
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/Options/BSC" on resource type ComputerSystem may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ComputerSystem
"None" | |
"HDD" | |
"PXE" | |
"iSCSI" | |
"M.2" |
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/Options/BootOnce" on resource type ComputerSystem may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ComputerSystem
"None" | |
"HDD" | |
"PXE" | |
"iSCSI" | |
"M.2" |
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/Options/BootOrder" on resource type ComputerSystem may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/Options/CPU/ClockRate/CurrentFrequency" on resource type ComputerSystem may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ComputerSystem
"enabled" | |
"disabled" | |
"DISABLE" | |
"ENABLE" |
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/Options/CPU/HyperThreading" on resource type ComputerSystem may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/Options/WOL" on resource type ComputerSystem may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ComputerSystem
"Minimum" | |
"15Sec" | |
"30Sec" | |
"45Sec" | |
"60Sec" | |
"RandomUpTo120Sec" |
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/PowerOnDelay" on resource type ComputerSystem may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ComputerSystem
"NotPresent" | |
"Present" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ComputerSystem
"Unspecified" | |
"TPM1.2" | |
"TPM2.0" | |
"TM1.0" | |
"Unknown" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ComputerSystem
"NotPresent" | |
"PresentEnabled" | |
"PresentDisabled" | |
"Unknown" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ComputerSystem
"On" | |
"Off" | |
"Unknown" | |
"Reset" |
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ComputerSystem
"OK" | |
"Warning" | |
"Critical" | |
"Error" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ComputerSystem
"Physical" | |
"Virtual" | |
"OS" | |
"PhysicallyPartitioned" | |
"VirtuallyPartitioned" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ComputerSystem
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
"ResetType" must be one of the following value(s):
"On" |
"Off" |
"Reset" |
"ColdReset" |
"Nmi" |
"GracefulShutdown" |
HTTP POST to resource with request JSON:
"PushType" must be one of the following value(s):
"Press" |
"PressAndHold" |
HTTP POST to resource with request JSON:
See Resource Map for more details.
This is the schema definition for the Directory service. It represents the properties for this service and has links to the list of groups.
"DirectoryService" defines the following properties:
This property is a member of DirectoryService
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/DirectoryServerAddress" on resource type DirectoryService may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of DirectoryService
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/DirectoryServerLDAPPort" on resource type DirectoryService may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of DirectoryService
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/KerberosEnabled" on resource type DirectoryService may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of DirectoryService
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/KerberosKDCServerAddress" on resource type DirectoryService may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of DirectoryService
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/KerberosKDCServerPort" on resource type DirectoryService may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of DirectoryService
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of DirectoryService
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/KerberosRealm" on resource type DirectoryService may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of DirectoryService
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of DirectoryService
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of DirectoryService
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/LDAPDirectoryAuthenticationEnabled" on resource type DirectoryService may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of DirectoryService
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of DirectoryService
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of DirectoryService
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of DirectoryService
"NotRunning" | |
"InProgress" | |
"Complete" | |
"Aborting" | |
"Aborted" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of DirectoryService
GET | Rendered if supported by the implementation or omitted if not. |
"Target" must be one of the following value(s):
"/Oem/Hp" |
"UserName" must be one of the following value(s):
"UserPassword" must be one of the following value(s):
"AdminName" must be one of the following value(s):
"AdminPassword" must be one of the following value(s):
HTTP POST to resource with request JSON:
"Target" must be one of the following value(s):
"/Oem/Hp" |
HTTP POST to resource with request JSON:
/rest/v1/Managers/{item}/NICs/{item}
See Resource Map for more details.
The schema definition of a simple Ethernet NIC resource.
"EthernetNetworkInterface" defines the following properties:
This property is a member of EthernetNetworkInterface
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Autosense" on resource type EthernetNetworkInterface may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of EthernetNetworkInterface
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of EthernetNetworkInterface
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of EthernetNetworkInterface
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "FullDuplex" on resource type EthernetNetworkInterface may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of EthernetNetworkInterface
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "IPv4Addresses[]/Address" on resource type EthernetNetworkInterface may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of EthernetNetworkInterface
"DHCP" | |
"Static" |
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of EthernetNetworkInterface
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "IPv4Addresses[]/Gateway" on resource type EthernetNetworkInterface may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of EthernetNetworkInterface
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "IPv4Addresses[]/SubnetMask" on resource type EthernetNetworkInterface may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of EthernetNetworkInterface
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of EthernetNetworkInterface
"Current" | |
"SomePendingReset" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of EthernetNetworkInterface
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/DHCPv4/Enabled" on resource type EthernetNetworkInterface may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of EthernetNetworkInterface
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/DHCPv4/UseDNSServers" on resource type EthernetNetworkInterface may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of EthernetNetworkInterface
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/DHCPv4/UseDomainName" on resource type EthernetNetworkInterface may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of EthernetNetworkInterface
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/DHCPv4/UseGateway" on resource type EthernetNetworkInterface may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of EthernetNetworkInterface
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/DHCPv4/UseNTPServers" on resource type EthernetNetworkInterface may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of EthernetNetworkInterface
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/DHCPv4/UseStaticRoutes" on resource type EthernetNetworkInterface may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of EthernetNetworkInterface
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/DHCPv4/UseWINSServers" on resource type EthernetNetworkInterface may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of EthernetNetworkInterface
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/DaisyChainEnabled" on resource type EthernetNetworkInterface may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of EthernetNetworkInterface
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/DomainName" on resource type EthernetNetworkInterface may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of EthernetNetworkInterface
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/HostName" on resource type EthernetNetworkInterface may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of EthernetNetworkInterface
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/IPv4/DDNSRegistration" on resource type EthernetNetworkInterface may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of EthernetNetworkInterface
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/IPv4/StaticRoutes[]/Address" on resource type EthernetNetworkInterface may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of EthernetNetworkInterface
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/IPv4/StaticRoutes[]/Destination" on resource type EthernetNetworkInterface may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of EthernetNetworkInterface
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/IPv4/StaticRoutes[]/Gateway" on resource type EthernetNetworkInterface may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of EthernetNetworkInterface
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/IPv4/StaticRoutes[]/SubnetMask" on resource type EthernetNetworkInterface may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of EthernetNetworkInterface
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/IPv4/WINSRegistration" on resource type EthernetNetworkInterface may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of EthernetNetworkInterface
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of EthernetNetworkInterface
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/PingGatewayOnStartup" on resource type EthernetNetworkInterface may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of EthernetNetworkInterface
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "SpeedMbps" on resource type EthernetNetworkInterface may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of EthernetNetworkInterface
"OK" | |
"Warning" | |
"Critical" | |
"Error" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of EthernetNetworkInterface
"OK" | |
"Warning" | |
"Critical" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of EthernetNetworkInterface
"Critical" | |
"Enabled" | |
"Disabled" | |
"Offline" | |
"InTest" | |
"Starting" | |
"Absent" | |
"Uninitialized" | |
"OK" | |
"Not Installed" | |
"Failed" | |
"Degraded" | |
"Removed" | |
"Redundant" | |
"Not Redundant" | |
"Insufficient to Operate" |
GET | Rendered if supported by the implementation or omitted if not. |
/rest/v1/Managers/{item}/SecurityService/HTTPSCert
See Resource Map for more details.
This is the schema definition for the X509 Certificate.
"HpHttpsCert" defines the following properties:
This property is a member of HpHttpsCert
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of HpHttpsCert
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpHttpsCert
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpHttpsCert
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpHttpsCert
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpHttpsCert
GET | Rendered if supported by the implementation or omitted if not. |
"Country" must be one of the following value(s):
"<string>" |
"State" must be one of the following value(s):
"<string>" |
"City" must be one of the following value(s):
"<string>" |
"OrgName" must be one of the following value(s):
"<string>" |
"EmailAddress" must be one of the following value(s):
"<string>" |
"OrgUnit" must be one of the following value(s):
"<string>" |
"CommonName" must be one of the following value(s):
"<string>" |
HTTP POST to resource with request JSON:
"Certificate" must be one of the following value(s):
"<text>" |
HTTP POST to resource with request JSON:
/rest/v1/Chassis/{item}/Cartridges/{item}
See Resource Map for more details.
"HpMoonshotCartridge" defines the following properties:
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "CartridgeInfo/AssetTag" on resource type HpMoonshotCartridge may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
"CART_TYPE_RESERVED" | |
"Compute" | |
"Storage" | |
"Graphic" | |
"Switch (network)" | |
"DSP" | |
"Expansion" | |
"Network" | |
"FPGA" | |
"Management" | |
"CART_TYPE_UNKNOWN" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
"Yes" | |
"No" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
"Rack" | |
"Blade" | |
"Enclosure" | |
"StandAlone" | |
"RackMount" | |
"Card" | |
"Cartridge" | |
"Row" | |
"Pod" | |
"Expansion" | |
"Sidecar" | |
"Other" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
"Unknown" | |
"Lit" | |
"Blinking" | |
"Off" |
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "IndicatorLED" on resource type HpMoonshotCartridge may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
"Off" | |
"On" | |
"Press" | |
"PressAndHold" |
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Power" on resource type HpMoonshotCartridge may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "SKU" on resource type HpMoonshotCartridge may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of HpMoonshotCartridge
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "SerialNumber" on resource type HpMoonshotCartridge may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of HpMoonshotCartridge
"OK" | |
"Warning" | |
"Critical" | |
"Error" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
"OK" | |
"Warning" | |
"Critical" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridge
"Critical" | |
"Enabled" | |
"Disabled" | |
"Offline" | |
"InTest" | |
"Starting" | |
"Absent" | |
"Uninitialized" | |
"OK" | |
"Not Installed" | |
"Failed" | |
"Degraded" | |
"Removed" | |
"Redundant" | |
"Not Redundant" | |
"Insufficient to Operate" |
GET | Rendered if supported by the implementation or omitted if not. |
"ControlType" must be one of the following value(s):
"On" |
"Off" |
"LinkedCartridge" must be one of the following value(s):
"<string>" |
HTTP POST to resource with request JSON:
"ControlType" must be one of the following value(s):
"Lit" |
"Off" |
HTTP POST to resource with request JSON:
"UserName" must be one of the following value(s):
"<string>" |
"Type" must be one of the following value(s):
"Create" |
"Delete" |
HTTP POST to resource with request JSON:
/rest/v1/Chassis/{item}/CartridgeLinks
See Resource Map for more details.
"HpMoonshotCartridgeLinkService" defines the following properties:
This property is a member of HpMoonshotCartridgeLinkService
"OK" | |
"Warning" | |
"Critical" | |
"Error" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridgeLinkService
"OK" | |
"Warning" | |
"Critical" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotCartridgeLinkService
"Critical" | |
"Enabled" | |
"Disabled" | |
"Offline" | |
"InTest" | |
"Starting" | |
"Absent" | |
"Uninitialized" | |
"OK" | |
"Not Installed" | |
"Failed" | |
"Degraded" | |
"Removed" | |
"Redundant" | |
"Not Redundant" | |
"Insufficient to Operate" |
GET | Rendered if supported by the implementation or omitted if not. |
"LinkEnabled" must be one of the following value(s):
"On" |
"Off" |
"LinkTargets" must be one of the following value(s):
"<string>" |
HTTP POST to resource with request JSON:
/rest/v1/Chassis/{item}/Cartridges/{item}/Logs/IML
/rest/v1/Chassis/{item}/Logs/IML
/rest/v1/Chassis/{item}/Switches/{item}/Logs/IML
/rest/v1/Managers/{item}/Logs/IML
/rest/v1/Systems/{item}/Logs/IML
See Resource Map for more details.
This resource represents the log service for the resource or service to which it is associated.
"HpMoonshotLogService" defines the following properties:
This property is a member of HpMoonshotLogService
"Empty" | |
"Environment" | |
"Main Memory" | |
"Cache" | |
"CPU" | |
"Host Bus" | |
"EISA Bus" | |
"PCI Bus" | |
"EXp. Slot" | |
"POST Message" | |
"Power" | |
"ASR" | |
"OS" | |
"Network" | |
"SCSI" | |
"Drive Array" | |
"System Error" | |
"Maintenance" | |
"Rack Infrastructure" | |
"iLO Chassis Manager" | |
"System Revision" | |
"XNC" | |
"Smart Carrier" | |
"Power Cap" | |
"Error Report" | |
"Unknown" | |
"Reserved" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotLogService
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotLogService
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotLogService
"Oem" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotLogService
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotLogService
"Hp-IML" | |
"Hp-iLOEventLog" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotLogService
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotLogService
"Informational" | |
"Repaired" | |
"Caution" | |
"Critical" | |
"Unknown" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotLogService
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotLogService
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotLogService
"Unknown" | |
"WrapsWhenFull" | |
"NeverOverwrites" |
GET | Rendered if supported by the implementation or omitted if not. |
HTTP POST to resource with request JSON:
"RecordId" must be one of the following value(s):
An array of integer values |
HTTP POST to resource with request JSON:
"Message" must be one of the following value(s):
"<string>" |
HTTP POST to resource with request JSON:
/rest/v1/Chassis/{item}/Switches/{item}
See Resource Map for more details.
"HpMoonshotSwitch" defines the following properties:
This property is a member of HpMoonshotSwitch
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotSwitch
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotSwitch
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotSwitch
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotSwitch
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotSwitch
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotSwitch
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotSwitch
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotSwitch
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotSwitch
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotSwitch
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotSwitch
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotSwitch
"Unknown" | |
"Lit" | |
"Blinking" | |
"Off" |
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "IndicatorLED" on resource type HpMoonshotSwitch may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of HpMoonshotSwitch
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotSwitch
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotSwitch
"On" | |
"Off" |
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Power" on resource type HpMoonshotSwitch may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of HpMoonshotSwitch
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotSwitch
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotSwitch
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotSwitch
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "SKU" on resource type HpMoonshotSwitch may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of HpMoonshotSwitch
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "SerialNumber" on resource type HpMoonshotSwitch may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of HpMoonshotSwitch
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotSwitch
"OK" | |
"Warning" | |
"Critical" | |
"Error" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotSwitch
"OK" | |
"Warning" | |
"Critical" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotSwitch
"Critical" | |
"Enabled" | |
"Disabled" | |
"Offline" | |
"InTest" | |
"Starting" | |
"Absent" | |
"Uninitialized" | |
"OK" | |
"Not Installed" | |
"Failed" | |
"Degraded" | |
"Removed" | |
"Redundant" | |
"Not Redundant" | |
"Insufficient to Operate" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotSwitch
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotSwitch
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotSwitch
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotSwitch
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotSwitch
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotSwitch
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotSwitch
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotSwitch
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotSwitch
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotSwitch
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotSwitch
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotSwitch
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotSwitch
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotSwitch
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotSwitch
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpMoonshotSwitch
GET | Rendered if supported by the implementation or omitted if not. |
"ControlType" must be one of the following value(s):
"Lit" |
"Off" |
HTTP POST to resource with request JSON:
"ControlType" must be one of the following value(s):
"On" |
"Off" |
HTTP POST to resource with request JSON:
/rest/v1/Managers/{item}/SecurityService
See Resource Map for more details.
"HpSecurityService" defines the following properties:
/rest/v1/Managers/{item}/DateTime
See Resource Map for more details.
The management processor date and time.
"HpiLODateTime" defines the following properties:
This property is a member of HpiLODateTime
"Current" | |
"SomePendingReset" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpiLODateTime
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpiLODateTime
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpiLODateTime
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "NTPPollingPeriodSeconds" on resource type HpiLODateTime may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of HpiLODateTime
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "TimeZone/Index" on resource type HpiLODateTime may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of HpiLODateTime
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpiLODateTime
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpiLODateTime
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpiLODateTime
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "UpdateDateTime" on resource type HpiLODateTime may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of HpiLODateTime
GET | Rendered if supported by the implementation or omitted if not. |
/rest/v1/Managers/{item}/LicenseService/{item}
See Resource Map for more details.
"HpiLOLicense" defines the following properties:
This property is a member of HpiLOLicense
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpiLOLicense
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of HpiLOLicense
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "LicenseKey" on resource type HpiLOLicense may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of HpiLOLicense
"Unlicensed" | |
"Evaluation" | |
"Perpetual" | |
"Subscription" | |
"Internal" | |
"Duration" | |
"Expired" |
GET | Rendered if supported by the implementation or omitted if not. |
See Resource Map for more details.
This is the schema definition for a manager. Examples of managers are BMCs, Enclosure Managers, Management Controllers and other subsystems assigned manageability functions.
"Manager" defines the following properties:
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Manager
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
HTTP POST to resource with request JSON:
HTTP POST to resource with request JSON:
/rest/v1/AccountService/Accounts/{item}
See Resource Map for more details.
"ManagerAccount" defines the following properties:
This property is a member of ManagerAccount
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/LoginName" on resource type ManagerAccount may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerAccount
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/Privileges/CartridgeAccessPriv" on resource type ManagerAccount may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerAccount
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/Privileges/ChassisAccessPriv" on resource type ManagerAccount may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerAccount
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/Privileges/LoginPriv" on resource type ManagerAccount may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerAccount
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/Privileges/RemoteConsolePriv" on resource type ManagerAccount may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerAccount
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/Privileges/SwitchAccessPriv" on resource type ManagerAccount may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerAccount
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/Privileges/UserConfigPriv" on resource type ManagerAccount may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerAccount
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/Privileges/VirtualMediaPriv" on resource type ManagerAccount may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerAccount
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/Privileges/VirtualPowerAndResetPriv" on resource type ManagerAccount may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerAccount
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/Privileges/iLOConfigPriv" on resource type ManagerAccount may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerAccount
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ManagerAccount
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ManagerAccount
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/UserEnabled" on resource type ManagerAccount may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerAccount
"Administrator" | |
"User" | |
"Operator" | |
"None" |
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/UserPrivilege" on resource type ManagerAccount may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerAccount
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Password" on resource type ManagerAccount may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerAccount
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "UserName" on resource type ManagerAccount may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
"KeyData" must be one of the following value(s):
"Target" must be one of the following value(s):
"/Oem/Hp" |
HTTP POST to resource with request JSON:
"Target" must be one of the following value(s):
"/Oem/Hp" |
HTTP POST to resource with request JSON:
/rest/v1/DirectoryService/Groups/{item}
See Resource Map for more details.
"ManagerGroup" defines the following properties:
This property is a member of ManagerGroup
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/GroupName" on resource type ManagerGroup may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerGroup
"Administrator" | |
"User" | |
"Operator" | |
"None" |
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/GroupPrivilege" on resource type ManagerGroup may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerGroup
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/Privileges/CartridgeAccessPriv" on resource type ManagerGroup may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerGroup
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/Privileges/ChassisAccessPriv" on resource type ManagerGroup may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerGroup
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/Privileges/SwitchAccessPriv" on resource type ManagerGroup may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerGroup
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/SID" on resource type ManagerGroup may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
/rest/v1/Managers/{item}/NetworkService
See Resource Map for more details.
This resource is used to obtain or modify the network services managed by this manager.
"ManagerNetworkService" defines the following properties:
This property is a member of ManagerNetworkService
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ManagerNetworkService
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ManagerNetworkService
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "HTTP/Port" on resource type ManagerNetworkService may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerNetworkService
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ManagerNetworkService
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "HTTPS/Port" on resource type ManagerNetworkService may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerNetworkService
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "HostName" on resource type ManagerNetworkService may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerNetworkService
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "IPMI/Enabled" on resource type ManagerNetworkService may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerNetworkService
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ManagerNetworkService
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/AlertMailEmail" on resource type ManagerNetworkService may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerNetworkService
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/AlertMailEnabled" on resource type ManagerNetworkService may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerNetworkService
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/AlertMailSMTPPort" on resource type ManagerNetworkService may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerNetworkService
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/AlertMailSMTPServer" on resource type ManagerNetworkService may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerNetworkService
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/AlertMailSenderDomain" on resource type ManagerNetworkService may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerNetworkService
"Current" | |
"SomePendingReset" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ManagerNetworkService
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/FederationEnabled" on resource type ManagerNetworkService may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerNetworkService
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ManagerNetworkService
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/HPSystemManagementHomepageAddress" on resource type ManagerNetworkService may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerNetworkService
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/RemoteSyslogEnabled" on resource type ManagerNetworkService may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerNetworkService
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/RemoteSyslogPort" on resource type ManagerNetworkService may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerNetworkService
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/RemoteSyslogServer" on resource type ManagerNetworkService may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerNetworkService
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/SNMPTrapPort" on resource type ManagerNetworkService may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerNetworkService
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/SerialOverLanLogging" on resource type ManagerNetworkService may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerNetworkService
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/TFTPServerEnabled" on resource type ManagerNetworkService may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerNetworkService
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/XMLResponseEnabled" on resource type ManagerNetworkService may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerNetworkService
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "SSDP/Enabled" on resource type ManagerNetworkService may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerNetworkService
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "SSDP/NotifyMulticastIntervalSeconds" on resource type ManagerNetworkService may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerNetworkService
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "SSDP/NotifyTTL" on resource type ManagerNetworkService may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerNetworkService
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ManagerNetworkService
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "SSH/Enabled" on resource type ManagerNetworkService may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerNetworkService
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "SSH/Port" on resource type ManagerNetworkService may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerNetworkService
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "SessionTimeoutMinutes" on resource type ManagerNetworkService may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerNetworkService
"OK" | |
"Warning" | |
"Critical" | |
"Error" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ManagerNetworkService
"OK" | |
"Warning" | |
"Critical" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ManagerNetworkService
"Critical" | |
"Enabled" | |
"Disabled" | |
"Offline" | |
"InTest" | |
"Starting" | |
"Absent" | |
"Uninitialized" | |
"OK" | |
"Not Installed" | |
"Failed" | |
"Degraded" | |
"Removed" | |
"Redundant" | |
"Not Redundant" | |
"Insufficient to Operate" |
GET | Rendered if supported by the implementation or omitted if not. |
"Target" must be one of the following value(s):
"/Oem/Hp" |
HTTP POST to resource with request JSON:
"Target" must be one of the following value(s):
"/Oem/Hp" |
HTTP POST to resource with request JSON:
/rest/v1/Managers/{item}/RepositoryService
See Resource Map for more details.
"ManagerRepositoryService" defines the following properties:
This property is a member of ManagerRepositoryService
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ManagerRepositoryService
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ManagerRepositoryService
GET | Rendered if supported by the implementation or omitted if not. |
"FirmwareURI" must be one of the following value(s):
"Target" must be one of the following value(s):
"/Oem/Hp" |
HTTP POST to resource with request JSON:
"FirmwareFileName" must be one of the following value(s):
"Target" must be one of the following value(s):
"/Oem/Hp" |
HTTP POST to resource with request JSON:
"ScriptURI" must be one of the following value(s):
"Target" must be one of the following value(s):
"/Oem/Hp" |
HTTP POST to resource with request JSON:
"ScriptFileName" must be one of the following value(s):
"Target" must be one of the following value(s):
"/Oem/Hp" |
HTTP POST to resource with request JSON:
/rest/v1/Managers/{item}/SerialService
See Resource Map for more details.
"ManagerSerial" defines the following properties:
This property is a member of ManagerSerial
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ManagerSerial
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "DataBits" on resource type ManagerSerial may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerSerial
"None" | |
"Even" | |
"Odd" | |
"Space" | |
"Mark" | |
"Unknown" |
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Parity" on resource type ManagerSerial may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of ManagerSerial
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ManagerSerial
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "StopBits" on resource type ManagerSerial may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
/rest/v1/Managers/{item}/UpdateService
See Resource Map for more details.
"ManagerUpdateService" defines the following properties:
This property is a member of ManagerUpdateService
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ManagerUpdateService
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ManagerUpdateService
"NONE" | |
"RESET_ILO" | |
"REQUEST_SYSTEM_COLD_BOOT" | |
"REQUEST_SYSTEM_WARM_BOOT" | |
"DEFERRED_AUX_PWR_CYCLE" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ManagerUpdateService
"NO_DEVICE" | |
"ILO_DEVICE" | |
"ILO_DEVICE_FIRMWARE" | |
"ILO_DEVICE_LANGPK" | |
"ILO_DEVICE_DEBUGGER" | |
"BIOS_DEVICE" | |
"SCD_DEVICE" | |
"CPLD_DEVICE" | |
"CARB_DEVICE" | |
"PM_DEVICE" | |
"UNKNOWN" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ManagerUpdateService
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ManagerUpdateService
"IDLE" | |
"UPLOADING" | |
"PROGRESSING" | |
"COMPLETED" | |
"ERROR" | |
"NOT AUTHORIZED" | |
"NO ACTION" | |
"PENDING" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ManagerUpdateService
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ManagerUpdateService
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ManagerUpdateService
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ManagerUpdateService
"IDLE" | |
"UPLOADING" | |
"PROGRESSING" | |
"COMPLETED" | |
"ERROR" | |
"NOT SELECTED FOR UPDATE" | |
"EMPTY SLOT" | |
"NOT AUTHORIZED" | |
"NO ACTION" | |
"PENDING" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ManagerUpdateService
GET | Rendered if supported by the implementation or omitted if not. |
"Target" must be one of the following value(s):
"/Oem/Hp" |
HTTP POST to resource with request JSON:
"FirmwareURI" must be one of the following value(s):
"UpdateTargets" must be one of the following value(s):
"ForceUpdate" must be one of the following value(s):
"Target" must be one of the following value(s):
"/Oem/Hp" |
HTTP POST to resource with request JSON:
"FirmwareFileName" must be one of the following value(s):
"UpdateTargets" must be one of the following value(s):
"Target" must be one of the following value(s):
"/Oem/Hp" |
HTTP POST to resource with request JSON:
"FirmwareFileName" must be one of the following value(s):
"UpdateTargets" must be one of the following value(s):
"ForceUpdate" must be one of the following value(s):
"Target" must be one of the following value(s):
"/Oem/Hp" |
HTTP POST to resource with request JSON:
/rest/v1/Chassis/{item}/Cartridges/{item}/PowerMetrics
/rest/v1/Chassis/{item}/PowerMetrics
/rest/v1/Chassis/{item}/Switches/{item}/PowerMetrics
See Resource Map for more details.
"MoonshotPowerMetrics" defines the following properties:
This property is a member of MoonshotPowerMetrics
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of MoonshotPowerMetrics
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of MoonshotPowerMetrics
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of MoonshotPowerMetrics
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Oem/Hp/PowercapMode" on resource type MoonshotPowerMetrics may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of MoonshotPowerMetrics
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of MoonshotPowerMetrics
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of MoonshotPowerMetrics
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of MoonshotPowerMetrics
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of MoonshotPowerMetrics
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of MoonshotPowerMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of MoonshotPowerMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of MoonshotPowerMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of MoonshotPowerMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of MoonshotPowerMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of MoonshotPowerMetrics
"NoAction" | |
"HardPowerOff" | |
"LogEventOnly" | |
"Oem" |
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "PowerLimit/LimitException" on resource type MoonshotPowerMetrics may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of MoonshotPowerMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "PowerLimit/LimitInWatts" on resource type MoonshotPowerMetrics may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of MoonshotPowerMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of MoonshotPowerMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of MoonshotPowerMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of MoonshotPowerMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of MoonshotPowerMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of MoonshotPowerMetrics
"Failed" | |
"OK" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of MoonshotPowerMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of MoonshotPowerMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of MoonshotPowerMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of MoonshotPowerMetrics
"Unknown" | |
"ACLowLine" | |
"ACMidLine" | |
"ACHighLine" | |
"DCNeg48V" | |
"DC480V" |
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of MoonshotPowerMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of MoonshotPowerMetrics
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of MoonshotPowerMetrics
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of MoonshotPowerMetrics
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of MoonshotPowerMetrics
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of MoonshotPowerMetrics
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of MoonshotPowerMetrics
"Unknown" | |
"OK" | |
"Degraded" | |
"Failed" | |
"OverVoltage" | |
"OverCurrent" | |
"OverTemperature" | |
"ACPowerLost" | |
"FanFailure" | |
"WarningHighInputVoltage" | |
"WarningLowInputVoltage" | |
"WarningHighOutputVoltage" | |
"WarningLowOutputVoltage" | |
"WarningInletTemperature" | |
"WarningInternalTemperature" | |
"WarningHighAuxiliaryVoltage" | |
"WarningLowAuxiliaryVoltage" | |
"PowerSupplyMismatch" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of MoonshotPowerMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of MoonshotPowerMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of MoonshotPowerMetrics
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of MoonshotPowerMetrics
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of MoonshotPowerMetrics
"Unknown" | |
"OK" | |
"Degraded" | |
"Failed" | |
"OverVoltage" | |
"OverCurrent" | |
"OverTemperature" | |
"ACPowerLost" | |
"FanFailure" | |
"WarningHighInputVoltage" | |
"WarningLowInputVoltage" | |
"WarningHighOutputVoltage" | |
"WarningLowOutputVoltage" | |
"WarningInletTemperature" | |
"WarningInternalTemperature" | |
"WarningHighAuxiliaryVoltage" | |
"WarningLowAuxiliaryVoltage" | |
"PowerSupplyMismatch" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of MoonshotPowerMetrics
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of MoonshotPowerMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of MoonshotPowerMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of MoonshotPowerMetrics
"Unknown" | |
"AC" | |
"DC" |
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of MoonshotPowerMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of MoonshotPowerMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of MoonshotPowerMetrics
"OK" | |
"Warning" | |
"Critical" | |
"Error" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of MoonshotPowerMetrics
"OK" | |
"Warning" | |
"Critical" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of MoonshotPowerMetrics
"Critical" | |
"Enabled" | |
"Disabled" | |
"Offline" | |
"InTest" | |
"Starting" | |
"Absent" | |
"Uninitialized" | |
"OK" | |
"Not Installed" | |
"Failed" | |
"Degraded" | |
"Removed" | |
"Redundant" | |
"Not Redundant" | |
"Insufficient to Operate" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of MoonshotPowerMetrics
"OK" | |
"Warning" | |
"Critical" | |
"Error" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of MoonshotPowerMetrics
"OK" | |
"Warning" | |
"Critical" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of MoonshotPowerMetrics
"Critical" | |
"Enabled" | |
"Disabled" | |
"Offline" | |
"InTest" | |
"Starting" | |
"Absent" | |
"Uninitialized" | |
"OK" | |
"Not Installed" | |
"Failed" | |
"Degraded" | |
"Removed" | |
"Redundant" | |
"Not Redundant" | |
"Insufficient to Operate" |
GET | Rendered if supported by the implementation or omitted if not. |
/rest/v1/Managers/{item}/SecurityService/SecurityBanner
See Resource Map for more details.
"SecurityBanner" defines the following properties:
This property is a member of SecurityBanner
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "LoginSecurityBannerEnabled" on resource type SecurityBanner may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of SecurityBanner
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "SecurityMessage" on resource type SecurityBanner may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
See Resource Map for more details.
This object represents the HP RESTful API root service.
"ServiceRoot" defines the following properties:
This property is a member of ServiceRoot
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ServiceRoot
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ServiceRoot
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ServiceRoot
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ServiceRoot
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ServiceRoot
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ServiceRoot
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ServiceRoot
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ServiceRoot
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ServiceRoot
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ServiceRoot
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ServiceRoot
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ServiceRoot
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ServiceRoot
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ServiceRoot
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ServiceRoot
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ServiceRoot
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ServiceRoot
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ServiceRoot
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ServiceRoot
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ServiceRoot
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ServiceRoot
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ServiceRoot
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ServiceRoot
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ServiceRoot
"0.9.5" | |
"0.91.0" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ServiceRoot
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ServiceRoot
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
See Resource Map for more details.
"Session" defines the following properties:
This property is a member of Session
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Session
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Session
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Session
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Session
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Session
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Session
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Session
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Session
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Session
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Session
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Session
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Session
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Session
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Session
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Session
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Session
"Web UI" | |
"RBSU" | |
"Remote Console" | |
"SSH" | |
"IPMI/RMCP" | |
"SM-CLP" | |
"RIBCL" | |
"Unknown" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Session
"Local" | |
"Directory" | |
"Single Sign On" | |
"Kerberos" | |
"Trusted Key" | |
"Security Override" | |
"System" | |
"Federation" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of Session
GET | Rendered if supported by the implementation or omitted if not. |
/rest/v1/Managers/{item}/SnmpService
See Resource Map for more details.
"SnmpService" defines the following properties:
This property is a member of SnmpService
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "AlertCommunityString" on resource type SnmpService may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of SnmpService
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "AlertsEnabled" on resource type SnmpService may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of SnmpService
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Contact" on resource type SnmpService may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of SnmpService
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Location" on resource type SnmpService may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of SnmpService
"Agentless" | |
"Passthru" |
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Mode" on resource type SnmpService may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of SnmpService
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "Role" on resource type SnmpService may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of SnmpService
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "RoleDetail" on resource type SnmpService may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of SnmpService
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "SNMPv1Traps" on resource type SnmpService may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of SnmpService
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "SNMPv3EngineID" on resource type SnmpService may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
This property is a member of SnmpService
"Manager" | |
"System" |
GET | Rendered if supported by the implementation or omitted if not. |
PATCH | This property may be PATCHed if the resource instance of this type supports PATCH in the HTTP Allow headers. |
HTTP PATCH to resource with request JSON:
The property "TrapSourceHostname" on resource type SnmpService may not support PATCH of all values and may result in an HTTP 400 error with response of Type ExtendedError. Multiple properties may be included in a single HTTP PATCH operation as long as the request is properly formatted JSON. To address an array entry other than the first, insert nulls as placeholders on skipped array entries.
HTTP POST to resource with request JSON:
See Resource Map for more details.
"SystemsSummary" defines the following properties:
This property is a member of SystemsSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of SystemsSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of SystemsSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of SystemsSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of SystemsSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of SystemsSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of SystemsSummary
"enabled" | |
"disabled" | |
"DISABLE" | |
"ENABLE" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of SystemsSummary
"None" | |
"HDD" | |
"PXE" | |
"iSCSI" | |
"M.2" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of SystemsSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of SystemsSummary
"enabled" | |
"disabled" | |
"DISABLE" | |
"ENABLE" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of SystemsSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of SystemsSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of SystemsSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of SystemsSummary
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of SystemsSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of SystemsSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of SystemsSummary
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
/rest/v1/Chassis/{item}/Cartridges/{item}/ThermalMetrics
/rest/v1/Chassis/{item}/Switches/{item}/ThermalMetrics
/rest/v1/Chassis/{item}/ThermalMetrics
See Resource Map for more details.
The schema definition for the Thermal Metrics. It represents the properties for temperature and cooling.
"ThermalMetrics" defines the following properties:
This property is a member of ThermalMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ThermalMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ThermalMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ThermalMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ThermalMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ThermalMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ThermalMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ThermalMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ThermalMetrics
"System" | |
"System Board" | |
"I/O Board" | |
"CPU" | |
"Memory" | |
"Storage" | |
"Removable Media" | |
"Power Supply" | |
"Ambient" | |
"Chassis" | |
"Bridge Board" | |
"Exhaust" | |
"Processor Bay" | |
"IO Bay" | |
"Blade Slot" | |
"Virtual" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ThermalMetrics
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ThermalMetrics
"OK" | |
"Warning" | |
"Critical" | |
"Error" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ThermalMetrics
"OK" | |
"Warning" | |
"Critical" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ThermalMetrics
"Critical" | |
"Enabled" | |
"Disabled" | |
"Offline" | |
"InTest" | |
"Starting" | |
"Absent" | |
"Uninitialized" | |
"OK" | |
"Not Installed" | |
"Failed" | |
"Degraded" | |
"Removed" | |
"Redundant" | |
"Not Redundant" | |
"Insufficient to Operate" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ThermalMetrics
"RPM" | |
"Percent" |
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ThermalMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ThermalMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ThermalMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ThermalMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ThermalMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ThermalMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ThermalMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ThermalMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ThermalMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ThermalMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ThermalMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ThermalMetrics
"OK" | |
"Warning" | |
"Critical" | |
"Error" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ThermalMetrics
"OK" | |
"Warning" | |
"Critical" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ThermalMetrics
"Critical" | |
"Enabled" | |
"Disabled" | |
"Offline" | |
"InTest" | |
"Starting" | |
"Absent" | |
"Uninitialized" | |
"OK" | |
"Not Installed" | |
"Failed" | |
"Degraded" | |
"Removed" | |
"Redundant" | |
"Not Redundant" | |
"Insufficient to Operate" |
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ThermalMetrics
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ThermalMetrics
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ThermalMetrics
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ThermalMetrics
GET | Rendered if supported by the implementation or omitted if not. |
This property is a member of ThermalMetrics
"Celsius" | |
"Fahrenheit" |
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ThermalMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ThermalMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This property is a member of ThermalMetrics
GET | Rendered if supported by the implementation or omitted if not. The value of this property may also be null if it is unavailable at the time of the request. |
This section documents the MessageID values that may be returned in ExtendedError responses to HTTP operations.
While attempting to access, connect to, or transfer to/from another resource, the service was denied access.
Severity: Critical
Resolution: Verify that the URI is correct and that the service has the appropriate credentials.
The account for current session is removed and the current session is also removed.
Severity: OK
Resolution: Attempt to connect using a valid account.
The account was modified successfully.
Severity: OK
Resolution: None.
The request was unable to modify the account.
Severity: Warning
Resolution: If the operation did not complete, check the authorization or the request body for issues and resubmit the request.
The account was removed successfully.
Severity: OK
Resolution: None.
The action supplied in the POST operation is not supported by the resource.
Severity: Critical
Resolution: The action was invalid or the wrong resource was the target. See the implementation documentation for assistance.
The action was submitted with a duplicate parameter in the request body.
Severity: Warning
Resolution: Resubmit the action with only one instance of the parameter in the request body.
The requested action is missing a parameter that is required to process the action.
Severity: Critical
Resolution: Resubmit the action with the required parameter in the request body.
The action parameter is not supported on the target resource.
Severity: Warning
Resolution: If the operation did not complete, remove the parameter and resubmit the request.
An action was submitted, but a supplied parameter did not match any of the known parameters.
Severity: Warning
Resolution: If the operation did not complete, correct the invalid parameter and resubmit the request.
The value type is correct, but the format is not supported or the size/length is exceeded
Severity: Warning
Resolution: If the operation did not complete, correct the parameter value in the request body and resubmit the request.
The parameter contains an incorrect value type. For example, a number value for a string parameter type.
Severity: Warning
Resolution: If the operation did not complete, correct the parameter value in the request body and resubmit the request.
An attempt to access the resource, image, or file at the URI was unsuccessful because a session could not be established.
Severity: Critical
Resolution: Verify that the URI contains a valid and reachable node name, protocol information, and other URI components.
A create operation was attempted on a resource, but a required property was missing from the request.
Severity: Critical
Resolution: If the operation did not complete, include the required property with a valid value in the request body and resubmit the request.
No more resources can be created.
Severity: Critical
Resolution: If the operation did not complete, delete resources and resubmit the request.
The resource has been created successfully.
Severity: OK
Resolution: None
The event subscription establishment has been requested, but the operation did not complete because the number of simultaneous subscriptions exceeded the maximum number allowed by the implementation.
Severity: Critical
Resolution: Before attempting to establish the event subscription, reduce the number of subscriptions or increase the maximum number of simultaneous subscriptions allowed (if supported).
The group for current session is removed and the current session is also removed.
Severity: OK
Resolution: Attempt to connect using a valid group.
The group was modified successfully.
Severity: OK
Resolution: None.
The request was unable to modify the group.
Severity: Warning
Resolution: If the operation did not complete, check the authorization or the request body for issues and resubmit the request.
The group was removed successfully.
Severity: OK
Resolution: None.
The account or credentials associated with the current session are not authorized to perform the requested operation.
Severity: Critical
Resolution: Retry the operation with an authorized account or credentials.
The request did not complete due to an unknown internal error, but the service is still operational.
Severity: Critical
Resolution: Resubmit the request. If the problem persists, consider resetting the service.
The object is not valid.
Severity: Critical
Resolution: If the operation did not complete, the object is malformed or the URI is incorrect. Make the appropriate corrections and resubmit the request.
The request body contains malformed JSON.
Severity: Critical
Resolution: Verify that the request body is valid JSON and resubmit the request.
The operation did not complete because a valid session is required in order to access resources.
Severity: Critical
Resolution: Establish a session before attempting any operations.
A duplicate property is in the request body.
Severity: Warning
Resolution: If the operation did not complete, remove the duplicate property from the request body and resubmit the request.
The request does not include a required property.
Severity: Warning
Resolution: If the operation did not complete, verify the property is in the request body and has a valid value.
The request included a value for a read-only property.
Severity: Warning
Resolution: If the operation did not complete, remove the property from the request body and resubmit the request.
An unknown property is in the request body.
Severity: Warning
Resolution: If the operation did not complete, remove the unknown property from the request body and resubmit the request.
The value type is correct, but the format is not supported or the size/length is exceeded.
Severity: Warning
Resolution: If the operation did not complete, correct the property value in the request body and resubmit the request.
The value type is correct, but the value is not supported.
Severity: Warning
Resolution: If the operation did not complete, choose a value from the enumeration list and resubmit your request.
The property value contains an incorrect property type. For example, a number value for a string property type.
Severity: Warning
Resolution: If the operation did not complete, correct the property value in the request body and resubmit the request.
The query is not supported by the implementation.
Severity: Warning
Resolution: If the operation did not complete, remove the query parameter and resubmit the request.
The query is not supported on the resource. For example, a start/count query is attempted on a resource that is not a collection.
Severity: Warning
Resolution: If the operation did not complete, remove the query parameters and resubmit the request.
The query parameter value is out of range for the resource. For example, a page is requested that is outside the valid page range.
Severity: Warning
Resolution: Specify a query parameter value that is within range. For example, a page that is within the valid range of pages.
The value type is correct, but the format is not supported or the size/length was exceeded.
Severity: Warning
Resolution: If the operation did not complete, correct the value for the query parameter in the request body and resubmit the request.
The query parameter contains an incorrect value type. For example, a number supplied for a query parameter that requires a string.
Severity: Warning
Resolution: If the operation did not complete, correct the value for the query parameter in the request body and resubmit the request.
The create resource operation did not complete because the resource already exists.
Severity: Critical
Resolution: Do not attempt the create operation because the resource already exists.
The URI is valid, but the resource or image at that URI is in a format that is not supported by the service.
Severity: Critical
Resolution: Place a resource, image, or file that is supported by the service at the URI.
An attempt to access the resource, image, or file at the URI is unauthorized.
Severity: Critical
Resolution: Verify that the appropriate access is provided for the service to access the URI.
A delete operation was attempted on a resource that cannot be deleted.
Severity: Critical
Resolution: Do not attempt to delete a resource that does not support the REST API DELETE operation.
The request to change the resource was rejected because the resource was in use or in transition.
Severity: Warning
Resolution: If the operation did not complete, wait until the resource is free and resubmit the request.
The operation expected an image or resource at the provided URI, but found none.
Severity: Critical
Resolution: Place a valid resource at the URI or correct the URI and resubmit the request.
The operation did not complete because the service is in an unknown state and cannot take incoming requests.
Severity: Critical
Resolution: If the operation did not complete, restart the service and resubmit the request.
The operation did not complete because the service is shutting down.
Severity: Critical
Resolution: If the operation did not complete, resubmit the request when the service is available.
The service is temporarily unavailable.
Severity: Critical
Resolution: Wait for the indicated retry duration and retry the operation.
Session establishment has been requested, but the operation did not complete because the number of simultaneous sessions exceeded the maximum number allowed by the implementation.
Severity: Critical
Resolution: Before attempting to establish the session, reduce the number of sessions or increase the maximum number of simultaneous sessions allowed (if supported).
While attempting to access, connect to, or transfer from another location, the other end of the connection did not support the specified protocol.
Severity: Critical
Resolution: Change protocols or URIs.
The operation completed successfully.
Severity: OK
Resolution: None
The service detected a request body with malformed JSON.
Severity: Warning
Resolution: If the operation did not complete, correct the request body and resubmit the request.
The items in the array exceed the maximum number supported.
Severity: Warning
Resolution: Retry the operation using the correct number of items for the array.
A property value was successfully changed but the change may be reverted upon system reset.
Severity: Warning
Resolution: Check the "SettingsResult" messages after the system has reset for errors referring to the corresponding property.
The operation was not successful due to an internal service error (shown), but the service is still operational.
Severity: Critical
Resolution: Retry the operation. If the problem persists, consider resetting the service.
The specified configuration is not valid.
Severity: Warning
Resolution: Correct the configuration, and then retry the operation.
The value for the property exceeds the maximum length.
Severity: Warning
Resolution: Correct the value for the property in the request body, and then retry the operation.
The value for the property is the correct type, but this value is incompatible with the current value of another property.
Severity: Warning
Resolution: Correct the value for the property in the request body, and then retry the operation.
The value for the property is out of range.
Severity: Warning
Resolution: Correct the value for the property in the request body, and then retry the operation.
A device or service reset is in progress.
Severity: Warning
Resolution: Wait for device or service reset to complete, and then retry the operation.
One or more properties were changed, but these changes will not take effect until the device or service is reset.
Severity: Warning
Resolution: To enable the changed properties, reset the device or service.
The resource is present but is not ready to perform operations due to an internal condition such as initialization or reset.
Severity: Warning
Resolution: Retry the operation when the resource is ready.
The operation completed successfully
Severity: OK
Resolution: None
A task was created in response to the operation.
Severity: OK
Resolution: Perform an HTTP GET request on the supplied URI for task status.
A previously requested property value change was reverted because the current hardware configuration does not support it.
Severity: Warning
Resolution: Ensure that the system's hardware configuration supports the property value.
Modifying AHS properties is not possible with AHS disabled.
Severity: Warning
Resolution: Enable AHS, and then modify the AHS properties.
Indicates that one or more properties were correctly changed, but may not be in effect yet.
Severity: OK
Resolution: None
Indicates that the correct value type was supplied for the action parameter, but the value is not supported. (The value is not in the enumeration list.)
Severity: Warning
Resolution: Choose a value from the enumeration list and resubmit the request if the operation failed.
Modifying AlertMail properties is not possible with AlertMail disabled.
Severity: Warning
Resolution: Enable AlertMail, and then modify the AlertMail properties.
The AlertMail Test Alert did not send successfully.
Severity: Warning
Resolution: Verify the test alert content and retry.
The number of items in the array exceeds the maximum number supported.
Severity: Warning
Resolution: Retry the operation using the correct number of items for the array.
Cannot remove iLO Standard/iLO Standard for BladeSystem license.
Severity: Warning
Resolution: None.
A demo license was previously installed.
Severity: Warning
Resolution: None.
Indicates that one or more properties were correctly changed, but will not take effect until device is reset.
Severity: Warning
Resolution: Reset the device for the settings to take effect.
A diagnostics self test is already running.
Severity: Warning
Resolution: Stop the running test and try again.
Enterprise Secure Key Manager Servers are not configured.
Severity: OK
Resolution: None.
The supplied ETag is too long. The maximum supported ETag length is 63 bytes.
Severity: Warning
Resolution: Retry the operation using an ETag with a length of 63 bytes or less.
DNS name is empty.
Severity: Warning
Resolution: Retry the request with a valid DNS name.
Failed to initialize ESKM.
Severity: Warning
Resolution: Check if Account Group, Local CA Certificate Name, Login Name and Password are correct and try again.
Event log cleared successfully.
Severity: OK
Resolution: None.
The event subscription was modified successfully.
Severity: OK
Resolution: None.
The event subscription was removed successfully.
Severity: OK
Resolution: None.
The operation failed to complete successfully
Severity: Critical
Resolution: None
A firmware upgrade operation is already in progress.
Severity: Warning
Resolution: Wait for the current firmware flash to complete, and then retry the operation.
Generating the X509 Certificate.
Severity: OK
Resolution: None.
ICRU feature or function is not supported on the system.
Severity: Warning
Resolution: None.
The specified IPv6 configuration caused an error.
Severity: Warning
Resolution: Resolve the indicated error in the configuration data.
Failed importing Certificate.
Severity: Warning
Resolution: Retry the operation with proper Certificate information.
Not a valid parameter.
Severity: Warning
Resolution: Retry the request with valid parameters.
Not a valid Uri to import SSO certificate.
Severity: Warning
Resolution: Retry the request with valid URI.
The request to change the state of the Indicator LED cannot be granted because the current state is either Blinking or is Unknown.
Severity: Warning
Resolution: Please wait until the server has completed its reserved state.
The operation was not successful due to an internal service error (shown), but the service is still operational.
Severity: Critical
Resolution: Retry the operation. If the problem persists, consider resetting the service.
The specified configuration is not valid.
Severity: Warning
Resolution: Correct the configuration, and then retry the operation.
iLO Federation Management cannot be supported in the current configuration.
Severity: Warning
Resolution: Review the iLO network settings or Onboard Administrator settings and refer to the iLO User Guide.
EngineID should be a hexadecimal number starting with 0x (for example, 0x0102030405abcdef). The string length should be an even number, greater than or equal to 6 characters (excluding the "0x"), and less than or equal to 32 characters.
Severity: Warning
Resolution: Retry the operation using an EngineID within the specified parameters.
The Index is not valid.
Severity: Warning
Resolution: Adhere to the indexes supported in the self links.
The license key is not valid.
Severity: Warning
Resolution: Retry the operation using a valid license key.
The operation was not successful due to the current power state (for example, attempting to turn the power off when it is already off).
Severity: Warning
Resolution: Verify that the system is in the correct power state, and then retry the operation.
The passphrase must contain 8 to 49 characters.
Severity: Warning
Resolution: Correct the passphrase, and then retry the operation.
The password length is not valid.
Severity: Critical
Resolution: Retry the operation using a corrected password.
The power state is not valid.
Severity: Critical
Resolution: Retry the operation after correcting the power state.
The use of a license key is not supported on this system.
Severity: Warning
Resolution: None.
An iLO license key is required to use this operation or feature.
Severity: Warning
Resolution: Install a license key (Advanced or Scale Out) to use this feature.
The login was not successful, so the service enforces a delay before another login is allowed.
Severity: Warning
Resolution: Wait for the delay time to expire, and then retry the login.
The login was not successful, so the service enforces a delay before another login is allowed.
Severity: Warning
Resolution: None.
The maximum number of providers are already registered.
Severity: Warning
Resolution: None.
No more Virtual Media connections are available, because the maximum number of connections are already established.
Severity: Warning
Resolution: Close an established Virtual Media connection, and then retry creating or opening another connection.
Membist variables are not supported on the system.
Severity: Warning
Resolution: None.
No SNMP alert destinations are configured.
Severity: Warning
Resolution: Disable SNMP pass-thru, modify the property, and then re-enable SNMP pass-thru.
No power history samples are available.
Severity: OK
Resolution: To accumulate power history samples, power on the server, and then wait at least 5 minutes.
No space to store DNS name.
Severity: Warning
Resolution: Make sure SSO database has enough space to store DNS name.
No Virtual Media connections exist to perform the operation.
Severity: Warning
Resolution: Create or open a Virtual Media connection, and then retry the operation.
This property is not supported by the indicated network port.
Severity: Warning
Resolution: Do not specify this property on the indicated network port.
The value for the property is not a valid IPv4/v6 address or DNS name.
Severity: Warning
Resolution: Correct the IPv4/v6 address or DNS name, and then retry the operation.
The value for the property is not a valid IP address.
Severity: Warning
Resolution: Use a valid IP address.
The value for the property is not a valid subnet mask.
Severity: Warning
Resolution: Use a valid subnet mask.
The enclosure Onboard Administrator is currently managing the power cap.
Severity: Warning
Resolution: Use Onboard Administrator to Manage the PowerCap
The power cap value is not valid.
Severity: Warning
Resolution: Retry the operation using a corrected value.
The request to set the power cap failed. Invalid power cap calibration data. The Power Cap feature is currently unavailable.
Severity: Warning
Resolution: Restart the server to retrieve calibration data from initial POST.
Power caps set for less than 50% of the difference between maximum and minimum power may become unreachable due to changes in the server. Power caps set for less than 20% are not recommended.
Severity: Warning
Resolution: Please provide an optimal value in integer considering the power cap range.
Advanced power capping is not currently available due to the system configuration or state.
Severity: Warning
Resolution: Change the system configuration or wait for the system to become fully initialized, and then retry the operation.
Advanced power capping is not supported on this system.
Severity: Warning
Resolution: None.
Only the primary ESKM server is accessible.
Severity: OK
Resolution: None.
Primary and secondary ESKM server addresses resolve to the same server.
Severity: OK
Resolution: None.
Both primary and secondary ESKM servers are accessible.
Severity: OK
Resolution: None.
The property value is not valid.
Severity: Warning
Resolution: Retry the operation using a corrected value.
The value for the property exceeds the maximum length.
Severity: Warning
Resolution: Correct the value for the property in the request body, and then retry the operation.
The value for the property is the correct type, but this value is incompatible with the current value of another property.
Severity: Warning
Resolution: Correct the value for the property in the request body, and then retry the operation.
The value for the property is out of range.
Severity: Warning
Resolution: Correct the value for the property in the request body, and then retry the operation.
Indicates that a property was required but not specified.
Severity: Warning
Resolution: Include the required property in the request body and then retry the operation.
IML event with this severity is not supported to be repaired. IML events with Critical or Warning severities can marked as repaired.
Severity: Warning
Resolution: Please do not try to repair IML events with severity other than Critical or Warning.
Indicates that a required property is not specified.
Severity: Warning
Resolution: Include the required property in the request body and then retry the operation.
An iLO reset is in progress.
Severity: Warning
Resolution: Wait for iLO reset to complete, and then retry the operation.
One or more properties were changed, but these changes will not take effect until the iLO is reset.
Severity: Warning
Resolution: To enable the changed properties, reset the iLO.
The change to the requested resource failed because the resource is being flashed.
Severity: Warning
Resolution: Retry the operation when the firmware upgrade has completed.
The change could not be made because the resource was in use or in a transitioning state.
Severity: Warning
Resolution: Retry the request.
The resource is temporarily unavailable because the firmware is being flashed.
Severity: Warning
Resolution: Retry the operation when the firmware upgrade has completed.
The SMBIOS record type is not found or is not supported on the system.
Severity: Warning
Resolution: Reset the system to update the SMBIOS records. If the problem persists then the SMBIOS record type is not supported.
Modifying SNMP properties is not possible while SNMP is configured in Agentless mode.
Severity: Warning
Resolution: Disable Agentless mode, modify the properties, and then re-enable Agentless mode.
The operation could not be completed because SNMP alerts are disabled.
Severity: Warning
Resolution: Enable SNMP alerts and retry the operation.
Modifying SNMP properties is not possible with SNMP disabled.
Severity: Warning
Resolution: Enable SNMP, and then modify the SNMP properties.
Modifying SNMP properties is not possible while SNMP is configured in pass-thru mode.
Severity: Warning
Resolution: Configure SNMP 'Agentless' mode, modify the property, and then re-configure SNMP for 'Passthru' mode.
The SNMP Test Alert did not send successfully.
Severity: Warning
Resolution: Verify the test alert content and retry.
SSO Certificate is Empty.
Severity: Warning
Resolution: None.
SSO Certificate Read Error.
Severity: Warning
Resolution: Retry the request with valid SSO certificate.
No space to store SSO certificate.
Severity: Warning
Resolution: Make sure SSO database has enough space to store SSO certificate.
SSO Record Not Found.
Severity: Warning
Resolution: None.
Only the secondary ESKM server is accessible.
Severity: OK
Resolution: None.
The operation completed successfully.
Severity: OK
Resolution: None
Modifying Syslog properties is not possible with Syslog disabled.
Severity: Warning
Resolution: Enable Syslog, and then modify the Syslog properties.
Remote Syslog feature is disabled.
Severity: Warning
Resolution: Enable remote syslog feature to send test syslog message.
The Syslog feature is not configured correctly.
Severity: Warning
Resolution: Verify the syslog configuration and retry.
The Syslog Test Alert did not send successfully.
Severity: Warning
Resolution: Verify the test alert content and retry.
The system properties were correctly changed, but will not take effect until the system is reset.
Severity: Warning
Resolution: Reset system for the settings to take effect.
Proper 'X-HPRESTFULAPI-AuthToken' authorization token not provided.
Severity: Critical
Resolution: Create proper 'X-HPRESTFULAPI-AuthToken' authorization token. Send token in using the proper HTTP header.
Unable to modify user rights.
Severity: Warning
Resolution: None.
The value for the property cannot be changed because a related hardware component is not installed.
Severity: Warning
Resolution: Install the hardware component and retry the operation.
The value for the property cannot be changed while the computer system BIOS is in POST.
Severity: Warning
Resolution: After the computer system is either fully booted or powered off, retry the operation.
The login was not successful, because the supplied credentials could not be authorized.
Severity: Warning
Resolution: Log in with authorized user name and password credentials.
This operation is not supported by RIS for the current system.
Severity: Warning
Resolution: None.
This operation is not supported when the system Boot Mode is set to Legacy BIOS.
Severity: Warning
Resolution: Change the Boot Mode to UEFI and retry the operation.
This operation is not supported by the current version of the system BIOS.
Severity: Warning
Resolution: None.
The user or login user name already exists.
Severity: Warning
Resolution: Try a different user or login user name.
Duplicate SNMPv3 User.
Severity: Warning
Resolution: Enter a different name and try again.