xclarity_client 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +1 -1
- data/Gemfile +2 -0
- data/README.md +57 -4
- data/bin/mock_server.ru +1 -1
- data/docs/apib/cabinet.apib +63 -0
- data/docs/apib/canister.apib +69 -0
- data/docs/apib/chassis.apib +65 -1428
- data/docs/apib/cmm.apib +1102 -0
- data/docs/apib/fan.apib +383 -0
- data/docs/apib/fan_mux.apib +13 -0
- data/docs/apib/fan_muxes.apib +245 -0
- data/docs/apib/node.apib +8989 -869
- data/docs/apib/power_supply.apib +519 -0
- data/docs/apib/scalable_complex.apib +91 -0
- data/docs/apib/squisher.rb +26 -0
- data/docs/apib/switches.apib +1596 -0
- data/example/simple.rb +12 -5
- data/lib/xclarity_client.rb +20 -0
- data/lib/xclarity_client/cabinet.rb +14 -0
- data/lib/xclarity_client/cabinet_management.rb +59 -0
- data/lib/xclarity_client/canister.rb +20 -0
- data/lib/xclarity_client/canister_management.rb +60 -0
- data/lib/xclarity_client/chassi.rb +24 -0
- data/lib/xclarity_client/chassi_management.rb +64 -0
- data/lib/xclarity_client/client.rb +77 -1
- data/lib/xclarity_client/cmm.rb +18 -0
- data/lib/xclarity_client/cmm_management.rb +61 -0
- data/lib/xclarity_client/configuration.rb +13 -3
- data/lib/xclarity_client/fan.rb +20 -0
- data/lib/xclarity_client/fan_management.rb +83 -0
- data/lib/xclarity_client/fan_mux.rb +18 -0
- data/lib/xclarity_client/fan_mux_management.rb +82 -0
- data/lib/xclarity_client/node.rb +15 -94
- data/lib/xclarity_client/node_management.rb +62 -0
- data/lib/xclarity_client/power_supply.rb +18 -0
- data/lib/xclarity_client/power_supply_management.rb +89 -0
- data/lib/xclarity_client/scalable_complex.rb +16 -0
- data/lib/xclarity_client/scalable_complex_management.rb +83 -0
- data/lib/xclarity_client/switch.rb +19 -0
- data/lib/xclarity_client/switch_management.rb +59 -0
- data/lib/xclarity_client/version.rb +1 -1
- data/lib/xclarity_client/xclarity_base.rb +26 -1
- data/lib/xclarity_client/xclarity_resource.rb +20 -0
- data/xclarity_client.gemspec +1 -2
- metadata +34 -5
- data/lib/xclarity_client/chassis.rb +0 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ee83c8bcb8e95e30c98af57e902d17b0b9e22a41
|
4
|
+
data.tar.gz: c0f77e8780674602eb5b92d7d3b15e3f443ddc13
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e1247f5485ff4d22692699bdb26e9acfd432939154ee0d479558a1a04f78977efcd17302900bce3874c5853d0e7e96a323412e3b98afa9f5079ce0eced93a0f2
|
7
|
+
data.tar.gz: 1e748e5990f5987dda28e25bae02123132f94968d5e3d06bb45cabc60a14c9069486a90840dd6b2bdb59d1ddda0c26aaa0980e4891416bb12f85a43378cc9e96
|
data/.travis.yml
CHANGED
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -6,6 +6,53 @@ Welcome to your new gem! In this directory, you'll find the files you need to be
|
|
6
6
|
|
7
7
|
TODO: Delete this and the text above, and describe your gem
|
8
8
|
|
9
|
+
## Pre Configuration for Connection with LXCA
|
10
|
+
|
11
|
+
|
12
|
+
Get up and running mongo database
|
13
|
+
|
14
|
+
Execute rails console:
|
15
|
+
|
16
|
+
```ruby
|
17
|
+
$ bundle exec rails console
|
18
|
+
```
|
19
|
+
|
20
|
+
Add resources to your database:
|
21
|
+
|
22
|
+
Nodes:
|
23
|
+
|
24
|
+
```ruby
|
25
|
+
$ FactoryGirl.create(:node)
|
26
|
+
```
|
27
|
+
Switches:
|
28
|
+
|
29
|
+
```ruby
|
30
|
+
$ FactoryGirl.create(:switch)
|
31
|
+
```
|
32
|
+
Scalable Complexes:
|
33
|
+
|
34
|
+
```ruby
|
35
|
+
$ FactoryGirl.create(:scalable_complex)
|
36
|
+
```
|
37
|
+
|
38
|
+
Power Supplies:
|
39
|
+
|
40
|
+
```ruby
|
41
|
+
$ FactoryGirl.create(:power_supply)
|
42
|
+
```
|
43
|
+
|
44
|
+
Chassis:
|
45
|
+
|
46
|
+
```ruby
|
47
|
+
$ FactoryGirl.create(:chassi)
|
48
|
+
```
|
49
|
+
|
50
|
+
Get up LXCA-Mock server:
|
51
|
+
|
52
|
+
```ruby
|
53
|
+
$ bundle exec rails s
|
54
|
+
```
|
55
|
+
|
9
56
|
## Installation
|
10
57
|
|
11
58
|
Add this line to your application's Gemfile:
|
@@ -16,7 +63,7 @@ gem 'xclarity_client'
|
|
16
63
|
|
17
64
|
And then execute:
|
18
65
|
|
19
|
-
$ bundle
|
66
|
+
$ bundle install
|
20
67
|
|
21
68
|
Or install it yourself as:
|
22
69
|
|
@@ -30,15 +77,21 @@ To get basic information from the virtual appliance
|
|
30
77
|
require 'xclarity_client'
|
31
78
|
|
32
79
|
conf = XClarityClient::Configuration.new(
|
33
|
-
:username
|
34
|
-
:password
|
35
|
-
:host
|
80
|
+
:username => 'admin',
|
81
|
+
:password => 'pass',
|
82
|
+
:host => 'http://example.com'
|
83
|
+
:auth_type => 'token'
|
36
84
|
)
|
37
85
|
|
38
86
|
virtual_appliance = XClarityClient::VirtualApplianceManagement.new(conf)
|
39
87
|
|
40
88
|
puts virtual_appliance.configuration_settings
|
89
|
+
|
90
|
+
client = XClarityClient::Client.new(conf)
|
91
|
+
|
92
|
+
puts client.discover_nodes
|
41
93
|
```
|
94
|
+
NOTE: `auth_type` variable must have 'token' or 'basic_auth' as value.
|
42
95
|
|
43
96
|
## Development
|
44
97
|
|
data/bin/mock_server.ru
CHANGED
@@ -0,0 +1,63 @@
|
|
1
|
+
FORMAT: 1A
|
2
|
+
|
3
|
+
# XClarity Nodes
|
4
|
+
|
5
|
+
# GET /cabinet
|
6
|
+
|
7
|
+
+ Response 200
|
8
|
+
{"cabinetList":[{"storageList":[],"cabinetName":"Scale REWE RSL 1","height":42,"complexList":[],"chassisList":[{"itemParentUUID":null,"itemName":"SN#Y030BG168057","itemLowerUnit":17,"itemType":"CHASSIS","itemLocationRack":"Scale REWE RSL 1","itemSubType":"BladeCenter-X","itemUUID":"7891C3B5CE754E489810B0D3BA41DA02","itemInventory":{"accessState":"Online","powerSupplySlots":6,"manufacturerId":"20301","location":{"lowestRackUnit":17,"location":"","rack":"Scale REWE RSL 1","room":""},"serialNumber":"100086A","type":"Chassis","fanSlots":10,"passThroughModules":[],"height":10,"switchSlots":4,"leds":[{"color":"Blue","location":"FrontPanel","name":"Location","state":"Off"}],"description":"IBM Flex System Chassis","errorFields":[],"mgmtProcIPaddress":"10.240.75.92","activationKeys":[],"status":{"message":"MANAGED","name":"MANAGED"},"hostname":"MM5CF3FC25D74D","parent":{"uuid":"A18C32CF-851B-44C4-B177-9A2A1C481142","uri":"cabinet/A18C32CF-851B-44C4-B177-9A2A1C481142"},"powerSupplies":[{"model":"","manufacturerId":"20301","serialNumber":"","inputVoltageIsAC":true,"inputVoltageMin":200,"type":"PowerSupply","dataHandle":0,"cmmDisplayName":"Power Supply 01","leds":[{"color":"Green","location":"Planar","name":"IN","state":"On"}],"description":"Power Supply","name":"Power Supply 01","cmmHealthState":"Normal","userDescription":"","manufactureDate":"2111","partNumber":"69Y5802","firmware":[{"status":"","name":"Power Supply Firmware","role":"","date":"","type":"Power Supply Firmware","build":"","version":"4"}],"machineType":"","hardwareRevision":"69.54","parent":{"uuid":"7891C3B5CE754E489810B0D3BA41DA02","uri":"chassis/7891C3B5CE754E489810B0D3BA41DA02"},"FRU":"69Y5806","uri":"powerSupply/362A016053D94A29A0A8A107374BC9E6","productId":"304","powerAllocation":{"totalInputPower":2505,"totalOutputPower":343},"powerState":"Unknown","posID":"128","slots":[1],"manufacturer":"IBM","vpdID":"61","uuid":"362A016053D94A29A0A8A107374BC9E6","productName":"IBM 2500 W Power Supply","fruSerialNumber":"ZK118115V005","inputVoltageMax":208}],"uri":"chassis/7891C3B5CE754E489810B0D3BA41DA02","powerAllocation":{"midPlaneCardMaximumAllocatedPower":38,"remainingOutputPower":10900,"totalInputPower":16336,"allocatedOutputPower":4130,"totalOutputPower":15030,"midPlaneCardMinimumAllocatedPower":38},"manufacturer":"IBM","fanMuxes":[{"model":"","manufacturerId":"20301","machineType":"","status":"Normal","hardwareRevision":"5.3","parent":{"uuid":"7891C3B5CE754E489810B0D3BA41DA02","uri":"chassis/7891C3B5CE754E489810B0D3BA41DA02"},"serialNumber":"","FRU":"94Y5805","type":"FanMux","uri":"fanMux/055396F531DA11E3A2B7C30D30C2FA73","productId":"338","dataHandle":0,"cmmDisplayName":"Fan Logic 01","leds":[{"color":"Amber","location":"FrontPanel","name":"FAULT","state":"Off"}],"manufacturer":"IBM","slots":[1],"description":"fan logic card","name":"Fan Logic 01","uuid":"055396F531DA11E3A2B7C30D30C2FA73","cmmHealthState":"Normal","manufactureDate":"4311","productName":"IBM Flex System Enterprise Chassis Fan Logic Card","fruSerialNumber":"Y031BG16P0FA","partNumber":"49Y3276"}],"vpdID":"14","isConnectionTrusted":"true","uuid":"7891C3B5CE754E489810B0D3BA41DA02","activeAlerts":[{"id":"IBM:CMM01:Y030BG168057:01:57662:272057","corrIDs":"","location":"01010201","msgID":"CMM0488","severity":"WARNING","msg":"The CMM J40 jumper is installed in bay 1."}],"tlsVersion":{"possibleValues":["SSL_30"],"currentValue":"SSL_30"},"encapsulation":{"encapsulationMode":"notSupported"},"complex":[],"model":"92X","energyPolicies":{"powerRedundancyMode":3,"powerCappingPolicy":{"cappingPolicy":"OFF","maxPowerCap":15030,"currentPowerCap":0,"minPowerCap":4130},"acousticAttenuationMode":"Off","hotAirRecirculation":{"chassisBay":[{"sensorValue":25.0,"isExceeded":"Y","subSlot":-1,"slot":0,"sensorName":"Chassis Ambient"}],"maxVariation":5.0,"isEnabled":true}},"fans":[{"model":"","manufacturerId":"20301","serialNumber":"","type":"Fan","dataHandle":0,"cmmDisplayName":"Fan 01","leds":[{"color":"Amber","location":"FrontPanel","name":"FAULT","state":"Off"}],"description":"Fan Module","name":"Fan 01","errorFields":[],"cmmHealthState":"Normal","userDescription":"","manufactureDate":"2911","partNumber":"88Y6671","firmware":[{"status":"","name":"Fan Controller","role":"","date":"","type":"Fan Controller","build":"","version":"226"}],"machineType":"","hardwareRevision":"4.0","parent":{"uuid":"7891C3B5CE754E489810B0D3BA41DA02","uri":"chassis/7891C3B5CE754E489810B0D3BA41DA02"},"FRU":"81Y2910","uri":"fan/89AF1FCA120A4A1E9565AC33F7E44FAB","productId":"341","powerAllocation":{"maximumAllocatedPower":75,"minimumAllocatedPower":75},"powerState":"Unknown","posID":"373","slots":[1],"manufacturer":"IBM","vpdID":"10","uuid":"89AF1FCA120A4A1E9565AC33F7E44FAB","productName":"","fruSerialNumber":"YK10GM17E124"}],"bladeSlots":14,"contact":"No Contact Configured","dataHandle":1475710685851,"switches":[{"accessState":"Online","model":"","manufacturerId":"20301","serialNumber":"","type":"Switch","dataHandle":1475710610479,"ipv4Addresses":["10.240.75.93"],"cmmDisplayName":"IO Module 01","backedBy":"real","leds":[{"color":"Blue","location":"FrontPanel","name":"Enclosure Identify","state":"Off"}],"description":"SI4093 10Gb Interconnect Module","name":"IO Module 01","errorFields":[{"IOCompatibilityData":"FETCH_FAILED"}],"stackMode":"N/A","attachedNodes":[],"cmmHealthState":"Normal","userDescription":"","partNumber":"95Y3315","ipInterfaces":[{"IPv4enabled":true,"IPv4DHCPmode":"STATIC_ONLY","IPv6enabled":true,"IPv6DHCPenabled":true,"IPv4assignments":[{"id":2,"subnet":"255.255.252.0","gateway":"10.240.72.1","address":"10.240.75.93","type":"INUSE"}],"IPv6assignments":[{"id":1,"scope":"LinkLocal","gateway":"0:0:0:0:0:0:0:0","source":"Other","address":"fe80:0:0:0:aa97:dcff:fe5f:4fef","prefix":64,"type":"INUSE"}],"name":"ioe0","IPv6statelessEnabled":true,"label":"","IPv6staticEnabled":false}],"excludedHealthState":"Normal","firmware":[{"status":"Active","name":"Boot ROM","date":"2016-08-03T04:00:00Z","type":"Boot ROM","build":"","version":"7.8.14.5"}],"machineType":"","parent":{"uuid":"7891C3B5CE754E489810B0D3BA41DA02","uri":"chassis/7891C3B5CE754E489810B0D3BA41DA02"},"hostname":"","FRU":"95Y3314","macAddresses":["A8:97:DC:5F:4F:EF"],"uri":"switch/1B33D6C82893D0214567A897DC5F4F00","productId":"502","powerAllocation":{"maximumAllocatedPower":100,"minimumAllocatedPower":100},"powerState":"On","ipv6Addresses":["fe80:0:0:0:aa97:dcff:fe5f:4fef"],"posID":"36","overallHealthState":"Normal","protectedMode":"False","manufacturer":"IBM","slots":[1],"vpdID":"304","uuid":"1B33D6C82893D0214567A897DC5F4F00","productName":"IBM Flex System Fabric SI4093 System Interconnect Module","dnsHostnames":["SW-Y011CM3AB229.labs.lenovo.com"],"fruSerialNumber":"Y011CM3AB229"}],"fanMuxSlots":2,"backedBy":"real","cmmDisplayName":"SN#Y030BG168057","name":"SN#Y030BG168057","ledCardSlots":1,"SecurityPolicy":{"cmmPolicyState":"PENDING","cmmPolicyLevel":"LEGACY"},"cmmHealthState":"Critical","userDescription":"","partNumber":"88Y6660","excludedHealthState":"Critical","machineType":"7893","cmms":[{"accessState":"Online","model":"","manufacturerId":"20301","serialNumber":"","type":"CMM","dataHandle":1475710356939,"ipv4Addresses":["10.240.75.92"],"backedBy":"real","cmmDisplayName":"SN#Y030BG168057","hostConfig":[{"DDNSenabled":false,"terIPv6userDNSserver":"0:0:0:0:0:0:0:0","DNSenabled":false,"IPversionPriority":"IPv6ThenIPv4","secIPv4userDNSserver":"10.240.0.11","terIPv4userDNSserver":"0.0.0.0","priIPv6userDNSserver":"0:0:0:0:0:0:0:0","secIPv6userDNSserver":"0:0:0:0:0:0:0:0","priIPv4userDNSserver":"10.240.0.10"}],"leds":[{"color":"Amber","location":"FrontPanel","name":"FAULT","state":"Off"}],"description":"CMM","name":"SN#Y030BG168057","mgmtProcIPaddress":"10.240.75.92","errorFields":[],"role":"primary","cmmHealthState":"Non-Critical","userDescription":"","partNumber":"68Y7054","ipInterfaces":[{"IPv4enabled":true,"IPv4DHCPmode":"STATIC_ONLY","IPv6enabled":true,"IPv6DHCPenabled":true,"IPv4assignments":[{"id":2,"subnet":"255.255.252.0","gateway":"10.240.72.1","address":"10.240.75.92","type":"INUSE"}],"IPv6assignments":[{"id":1,"scope":"LinkLocal","gateway":"0:0:0:0:0:0:0:0","source":"Other","address":"fe80:0:0:0:5ef3:fcff:fe25:d74d","prefix":64,"type":"INUSE"}],"name":"eth0","IPv6statelessEnabled":true,"label":"External","IPv6staticEnabled":false}],"excludedHealthState":"Warning","firmware":[{"status":"","name":"CMM firmware","role":"","date":"2016-07-29T04:00:00Z","type":"CMM firmware","build":"2PET33B","version":"2.5.7"}],"machineType":"","parent":{"uuid":"7891C3B5CE754E489810B0D3BA41DA02","uri":"chassis/7891C3B5CE754E489810B0D3BA41DA02"},"hostname":"MM5CF3FC25D74D","domainName":"","FRU":"68Y7032","macAddresses":["5C:F3:FC:25:D7:4D"],"uri":"cmm/4CCEE929981C11E0A61DB70AC0D67616","productId":"65","powerAllocation":{"maximumAllocatedPower":20,"minimumAllocatedPower":20},"ipv6Addresses":["fe80:0:0:0:5ef3:fcff:fe25:d74d"],"overallHealthState":"Warning","slots":[1],"manufacturer":"IBM","uuid":"4CCEE929981C11E0A61DB70AC0D67616","dnsHostnames":["Chassis115.labs.lenovo.com"],"fruSerialNumber":"Y030BG168057"}],"mmSlots":2,"managerName":"UNKNOWN","domainName":"","managerUuid":"UNKNOWN","productId":"336","nist":{"possibleValues":["Compatibility"],"currentValue":"Compatibility"},"posID":"336","overallHealthState":"Critical","nodes":[{"accessState":"Online","arch":"x86","manufacturerId":"20301","location":{"lowestRackUnit":17,"location":"","rack":"Scale REWE RSL 1","room":""},"addinCardSlots":0,"serialNumber":"06MAPZ6","driveBays":8,"macAddress":"34:40:B5:BF:C7:2D,34:40:B5:BF:C7:2E","type":"ITE","lanOverUsb":"enabled","onboardPciDevices":[{"pciSubID":"405","fodUniqueID":"","pciRevision":"0","isAgentless":false,"pciBusNumber":"4","pciSubVendorID":"1014","isAddOnCard":false,"pciDeviceNumber":"0","posID":"534","pciFunctionNumber":"0","portInfo":{},"name":"","vpdID":"102b"}],"leds":[{"color":"Yellow","location":"FrontPanel","name":"Fault","state":"Off"}],"description":"IBM Flex System x240 with 10Gb","mgmtProcIPaddress":"10.240.75.97","expansionCards":[{"pciSubID":"24","firmware":[{"revision":"0","classifications":[13],"status":"Active","name":"QLogic Adapter Software Bundle","role":"Primary","softwareID":"16570024","type":"Software Bundle","build":"0","date":"2013-09-05T00:00:00Z","version":"3.2.5.5"}],"slotSupportsHotPlug":"false","isAgentless":true,"pciRevision":"1","pciBusNumber":"22","pciSubVendorID":"1657","FRU":"88Y6373","pciDeviceNumber":"0","slotNumber":"2","posID":"22","pciFunctionNumber":"0","bay":2,"manufacturer":"BRCD","name":"Brocade 16Gb Fibre Channel Adapter for IBM BladeCenter","vpdID":"1657","uuid":"A317C9D1198911E1AED88C7CFF1529FF","productName":"Brocade 16Gb Fibre Channel Adapter for IBM BladeCenter","partNumber":"88Y6372","fruSerialNumber":"Y050UZ1RB00A","slotName":"SlotDesig4_Mezzanine 2 Card"}],"errorFields":[{"IOCompatibilityData":"FETCH_FAILED"}],"ipInterfaces":[{"IPv4enabled":true,"IPv4DHCPmode":"STATIC_ONLY","IPv6enabled":true,"IPv6DHCPenabled":true,"IPv4assignments":[{"id":0,"subnet":"255.255.252.0","gateway":"0.0.0.0","address":"10.240.75.97","type":"INUSE"}],"IPv6assignments":[{"id":0,"scope":"Global","gateway":"0:0:0:0:0:0:0:0","source":"Stateless","address":"fd55:faaf:e1ab:20fc:3640:b5ff:febf:c72d","prefix":64,"type":"INUSE"}],"name":"eth0","IPv6statelessEnabled":true,"label":"unknown","IPv6staticEnabled":false}],"firmware":[{"status":"Active","name":"UEFI Firmware/BIOS","role":"Primary","date":"2015-11-25T00:00:00Z","type":"UEFI","build":"B2E151CUS","version":"1.80"}],"bladeState":1,"activationKeys":[],"status":{"message":"managed","name":"MANAGED"},"bladeState_health":"WARNING","parent":{"uuid":"7891C3B5CE754E489810B0D3BA41DA02","uri":"chassis/7891C3B5CE754E489810B0D3BA41DA02"},"hostname":"IMM2-3440b5bfc72d","powerSupplies":[],"FRU":"81Y5128","uri":"node/4570F6EE789C11E293DD3440B5BFC72C","vnicMode":"disabled","powerAllocation":{"maximumAllocatedPower":340,"minimumAllocatedPower":174},"expansionProductType":"","powerStatus":8,"bootOrder":{"uri":"node/4570F6EE789C11E293DD3440B5BFC72C/bootOrder","bootOrderList":[{"currentBootOrderDevices":["None"],"bootType":"SingleUse","possibleBootOrderDevices":["None"]}]},"expansionProducts":[],"ipv6Addresses":["fd55:faaf:e1ab:20fc:3640:b5ff:febf:c72d"],"slots":[1],"manufacturer":"IBM","addinCards":[],"raidSettings":[],"vpdID":"20","uuid":"4570F6EE789C11E293DD3440B5BFC72C","isConnectionTrusted":"true","memoryModules":[{"model":"DDR3","speed":1333,"manufacturer":"Hynix Semiconductor","capacity":8,"serialNumber":"1F876BD2","displayName":"DIMM 1","slot":1,"type":"DDR3","partNumber":"HMT31GR7CFR4A-H9"}],"fruSerialNumber":"Y010BG295069","encapsulation":{"encapsulationMode":"notSupported"},"secureBootMode":{"possibleValues":[],"currentValue":""},"tlsVersion":{"possibleValues":["TLS_10"],"currentValue":"Unknown"},"model":"AC1","isScalable":false,"expansionCardSlots":2,"isITME":false,"hostMacAddresses":"6C:AE:8B:2A:2F:41,6C:AE:8B:2A:2F:45","contact":"Fred","dataHandle":1475711273995,"ipv4Addresses":["10.240.75.97"],"cmmDisplayName":"Node 01","backedBy":"real","complexID":-1,"name":"Testing87","memorySlots":24,"drives":[{"bay":1,"capacity":-1}],"cmmHealthState":"Non-Critical","userDescription":"","subSlots":[],"partNumber":"00Y2738","excludedHealthState":"Minor-Failure","bladeState_string":"Testing87","machineType":"8737","isRemotePresenceEnabled":true,"pciDevices":[{"pciSubID":"405","fodUniqueID":"","pciRevision":"0","isAgentless":false,"pciBusNumber":"4","pciSubVendorID":"1014","isAddOnCard":false,"pciDeviceNumber":"0","posID":"534","pciFunctionNumber":"0","portInfo":{},"name":"","vpdID":"102b"}],"domainName":"","processors":[{"speed":2.2,"manufacturer":"Intel(R) Corporation","family":"INTEL_R_XEON_TM","displayName":"Intel(R) Xeon(R) CPU E5-2660 0 @ 2.20GHz","slot":1,"productVersion":"Intel(R) Xeon(R) CPU E5-2660 0 @ 2.20GHz","cores":8}],"processorSlots":2,"pciCapabilities":["Raid Link"],"productId":"321","hasOS":false,"lanOverUsbPortForwardingModes":[{"state":"disabled","type":"DSA","externalIPAddress":""}],"bootMode":{"possibleValues":["UEFI and Legacy"],"currentValue":"UEFI and Legacy"},"ports":[{"ioModuleBay":0,"portNumber":1}],"embeddedHypervisorPresence":false,"posID":"256","nist":{"possibleValues":["Compatibility"],"currentValue":"Unknown"},"overallHealthState":"Minor-Failure","subType":"Blacktip","partitionID":-1,"flashStorage":[],"productName":"IBM Flex System x240 Compute Node with embedded 10Gb Virtual Fabric","dnsHostnames":["ite-bt-793-imm1.labs.lenovo.com"]}],"displayName":"SN#Y030BG168057","productName":"IBM Chassis Midplane"},"itemLocation":"","itemHeight":10,"itemLocationRoom":""}],"location":"","UUID":"A18C32CF-851B-44C4-B177-9A2A1C481142","nodeList":[],"placeholderList":[],"switchList":[],"room":""}]}
|
9
|
+
+ Response 400
|
10
|
+
+ Response 401
|
11
|
+
+ Response 404
|
12
|
+
+ Response 409
|
13
|
+
+ Response 500
|
14
|
+
|
15
|
+
# GET /cabinet?excludeAttributes=storageList,height
|
16
|
+
|
17
|
+
+ Response 200
|
18
|
+
{"cabinetList":[{"cabinetName":"Scale REWE RSL 1","complexList":[],"chassisList":[{"itemParentUUID":null,"itemName":"SN#Y030BG168057","itemLowerUnit":17,"itemType":"CHASSIS","itemLocationRack":"Scale REWE RSL 1","itemSubType":"BladeCenter-X","itemUUID":"7891C3B5CE754E489810B0D3BA41DA02","itemInventory":{"powerSupplySlots":6,"accessState":"Online","manufacturerId":"20301","location":{"lowestRackUnit":17,"location":"","rack":"Scale REWE RSL 1","room":""},"serialNumber":"100086A","type":"Chassis","fanSlots":10,"passThroughModules":[],"switchSlots":4,"leds":[{"color":"Blue","location":"FrontPanel","name":"Location","state":"Off"}],"description":"IBM Flex System Chassis","errorFields":[],"mgmtProcIPaddress":"10.240.75.92","activationKeys":[],"status":{"message":"MANAGED","name":"MANAGED"},"hostname":"MM5CF3FC25D74D","parent":{"uuid":"A18C32CF-851B-44C4-B177-9A2A1C481142","uri":"cabinet/A18C32CF-851B-44C4-B177-9A2A1C481142"},"powerSupplies":[{"model":"","manufacturerId":"20301","serialNumber":"","inputVoltageIsAC":true,"inputVoltageMin":200,"type":"PowerSupply","dataHandle":0,"cmmDisplayName":"Power Supply 01","leds":[{"color":"Green","location":"Planar","name":"IN","state":"On"}],"description":"Power Supply","name":"Power Supply 01","cmmHealthState":"Normal","userDescription":"","manufactureDate":"2111","partNumber":"69Y5802","firmware":[{"status":"","name":"Power Supply Firmware","role":"","date":"","type":"Power Supply Firmware","build":"","version":"4"}],"machineType":"","hardwareRevision":"69.54","parent":{"uuid":"7891C3B5CE754E489810B0D3BA41DA02","uri":"chassis/7891C3B5CE754E489810B0D3BA41DA02"},"FRU":"69Y5806","uri":"powerSupply/362A016053D94A29A0A8A107374BC9E6","productId":"304","powerAllocation":{"totalInputPower":2505,"totalOutputPower":343},"powerState":"Unknown","posID":"128","slots":[1],"manufacturer":"IBM","vpdID":"61","uuid":"362A016053D94A29A0A8A107374BC9E6","productName":"IBM 2500 W Power Supply","fruSerialNumber":"ZK118115V005","inputVoltageMax":208}],"uri":"chassis/7891C3B5CE754E489810B0D3BA41DA02","powerAllocation":{"midPlaneCardMaximumAllocatedPower":38,"remainingOutputPower":10900,"totalInputPower":16336,"allocatedOutputPower":4130,"totalOutputPower":15030,"midPlaneCardMinimumAllocatedPower":38},"manufacturer":"IBM","fanMuxes":[{"model":"","manufacturerId":"20301","machineType":"","status":"Normal","hardwareRevision":"5.3","parent":{"uuid":"7891C3B5CE754E489810B0D3BA41DA02","uri":"chassis/7891C3B5CE754E489810B0D3BA41DA02"},"serialNumber":"","FRU":"94Y5805","type":"FanMux","uri":"fanMux/055396F531DA11E3A2B7C30D30C2FA73","productId":"338","dataHandle":0,"cmmDisplayName":"Fan Logic 01","leds":[{"color":"Amber","location":"FrontPanel","name":"FAULT","state":"Off"}],"manufacturer":"IBM","slots":[1],"description":"fan logic card","name":"Fan Logic 01","uuid":"055396F531DA11E3A2B7C30D30C2FA73","cmmHealthState":"Normal","manufactureDate":"4311","productName":"IBM Flex System Enterprise Chassis Fan Logic Card","fruSerialNumber":"Y031BG16P0FA","partNumber":"49Y3276"}],"vpdID":"14","isConnectionTrusted":"true","uuid":"7891C3B5CE754E489810B0D3BA41DA02","activeAlerts":[{"id":"IBM:CMM01:Y030BG168057:01:57662:272057","corrIDs":"","location":"01010201","msgID":"CMM0488","severity":"WARNING","msg":"The CMM J40 jumper is installed in bay 1."}],"tlsVersion":{"possibleValues":["SSL_30"],"currentValue":"SSL_30"},"encapsulation":{"encapsulationMode":"notSupported"},"complex":[],"model":"92X","energyPolicies":{"powerRedundancyMode":3,"powerCappingPolicy":{"cappingPolicy":"OFF","maxPowerCap":15030,"currentPowerCap":0,"minPowerCap":4130},"acousticAttenuationMode":"Off","hotAirRecirculation":{"chassisBay":[{"sensorValue":25.0,"isExceeded":"Y","subSlot":-1,"slot":0,"sensorName":"Chassis Ambient"}],"maxVariation":5.0,"isEnabled":true}},"fans":[{"model":"","manufacturerId":"20301","serialNumber":"","type":"Fan","dataHandle":0,"cmmDisplayName":"Fan 01","leds":[{"color":"Amber","location":"FrontPanel","name":"FAULT","state":"Off"}],"description":"Fan Module","name":"Fan 01","errorFields":[],"cmmHealthState":"Normal","userDescription":"","manufactureDate":"2911","partNumber":"88Y6671","firmware":[{"status":"","name":"Fan Controller","role":"","date":"","type":"Fan Controller","build":"","version":"226"}],"machineType":"","hardwareRevision":"4.0","parent":{"uuid":"7891C3B5CE754E489810B0D3BA41DA02","uri":"chassis/7891C3B5CE754E489810B0D3BA41DA02"},"FRU":"81Y2910","uri":"fan/89AF1FCA120A4A1E9565AC33F7E44FAB","productId":"341","powerAllocation":{"maximumAllocatedPower":75,"minimumAllocatedPower":75},"powerState":"Unknown","posID":"373","slots":[1],"manufacturer":"IBM","vpdID":"10","uuid":"89AF1FCA120A4A1E9565AC33F7E44FAB","productName":"","fruSerialNumber":"YK10GM17E124"}],"bladeSlots":14,"contact":"No Contact Configured","dataHandle":1475710685851,"switches":[{"accessState":"Online","model":"","manufacturerId":"20301","serialNumber":"","type":"Switch","dataHandle":1475710610479,"ipv4Addresses":["10.240.75.93"],"cmmDisplayName":"IO Module 01","backedBy":"real","leds":[{"color":"Blue","location":"FrontPanel","name":"Enclosure Identify","state":"Off"}],"description":"SI4093 10Gb Interconnect Module","name":"IO Module 01","errorFields":[{"IOCompatibilityData":"FETCH_FAILED"}],"stackMode":"N/A","attachedNodes":[],"cmmHealthState":"Normal","userDescription":"","partNumber":"95Y3315","ipInterfaces":[{"IPv4enabled":true,"IPv4DHCPmode":"STATIC_ONLY","IPv6enabled":true,"IPv6DHCPenabled":true,"IPv4assignments":[{"id":2,"subnet":"255.255.252.0","gateway":"10.240.72.1","address":"10.240.75.93","type":"INUSE"}],"IPv6assignments":[{"id":1,"scope":"LinkLocal","gateway":"0:0:0:0:0:0:0:0","source":"Other","address":"fe80:0:0:0:aa97:dcff:fe5f:4fef","prefix":64,"type":"INUSE"}],"name":"ioe0","IPv6statelessEnabled":true,"label":"","IPv6staticEnabled":false}],"excludedHealthState":"Normal","firmware":[{"status":"Active","name":"Boot ROM","date":"2016-08-03T04:00:00Z","type":"Boot ROM","build":"","version":"7.8.14.5"}],"machineType":"","parent":{"uuid":"7891C3B5CE754E489810B0D3BA41DA02","uri":"chassis/7891C3B5CE754E489810B0D3BA41DA02"},"hostname":"","FRU":"95Y3314","macAddresses":["A8:97:DC:5F:4F:EF"],"uri":"switch/1B33D6C82893D0214567A897DC5F4F00","productId":"502","powerAllocation":{"maximumAllocatedPower":100,"minimumAllocatedPower":100},"powerState":"On","ipv6Addresses":["fe80:0:0:0:aa97:dcff:fe5f:4fef"],"posID":"36","overallHealthState":"Normal","protectedMode":"False","manufacturer":"IBM","slots":[1],"vpdID":"304","uuid":"1B33D6C82893D0214567A897DC5F4F00","productName":"IBM Flex System Fabric SI4093 System Interconnect Module","dnsHostnames":["SW-Y011CM3AB229.labs.lenovo.com"],"fruSerialNumber":"Y011CM3AB229"}],"fanMuxSlots":2,"backedBy":"real","cmmDisplayName":"SN#Y030BG168057","name":"SN#Y030BG168057","ledCardSlots":1,"SecurityPolicy":{"cmmPolicyState":"PENDING","cmmPolicyLevel":"LEGACY"},"cmmHealthState":"Critical","userDescription":"","partNumber":"88Y6660","excludedHealthState":"Critical","machineType":"7893","cmms":[{"accessState":"Online","model":"","manufacturerId":"20301","serialNumber":"","type":"CMM","dataHandle":1475710356939,"ipv4Addresses":["10.240.75.92"],"backedBy":"real","cmmDisplayName":"SN#Y030BG168057","hostConfig":[{"DDNSenabled":false,"terIPv6userDNSserver":"0:0:0:0:0:0:0:0","DNSenabled":false,"IPversionPriority":"IPv6ThenIPv4","secIPv4userDNSserver":"10.240.0.11","terIPv4userDNSserver":"0.0.0.0","priIPv6userDNSserver":"0:0:0:0:0:0:0:0","secIPv6userDNSserver":"0:0:0:0:0:0:0:0","priIPv4userDNSserver":"10.240.0.10"}],"leds":[{"color":"Amber","location":"FrontPanel","name":"FAULT","state":"Off"}],"description":"CMM","name":"SN#Y030BG168057","mgmtProcIPaddress":"10.240.75.92","errorFields":[],"role":"primary","cmmHealthState":"Non-Critical","userDescription":"","partNumber":"68Y7054","ipInterfaces":[{"IPv4enabled":true,"IPv4DHCPmode":"STATIC_ONLY","IPv6enabled":true,"IPv6DHCPenabled":true,"IPv4assignments":[{"id":2,"subnet":"255.255.252.0","gateway":"10.240.72.1","address":"10.240.75.92","type":"INUSE"}],"IPv6assignments":[{"id":1,"scope":"LinkLocal","gateway":"0:0:0:0:0:0:0:0","source":"Other","address":"fe80:0:0:0:5ef3:fcff:fe25:d74d","prefix":64,"type":"INUSE"}],"name":"eth0","IPv6statelessEnabled":true,"label":"External","IPv6staticEnabled":false}],"excludedHealthState":"Warning","firmware":[{"status":"","name":"CMM firmware","role":"","date":"2016-07-29T04:00:00Z","type":"CMM firmware","build":"2PET33B","version":"2.5.7"}],"machineType":"","parent":{"uuid":"7891C3B5CE754E489810B0D3BA41DA02","uri":"chassis/7891C3B5CE754E489810B0D3BA41DA02"},"hostname":"MM5CF3FC25D74D","domainName":"","FRU":"68Y7032","macAddresses":["5C:F3:FC:25:D7:4D"],"uri":"cmm/4CCEE929981C11E0A61DB70AC0D67616","productId":"65","powerAllocation":{"maximumAllocatedPower":20,"minimumAllocatedPower":20},"ipv6Addresses":["fe80:0:0:0:5ef3:fcff:fe25:d74d"],"overallHealthState":"Warning","slots":[1],"manufacturer":"IBM","uuid":"4CCEE929981C11E0A61DB70AC0D67616","dnsHostnames":["Chassis115.labs.lenovo.com"],"fruSerialNumber":"Y030BG168057"}],"mmSlots":2,"managerName":"UNKNOWN","domainName":"","managerUuid":"UNKNOWN","productId":"336","nist":{"possibleValues":["Compatibility"],"currentValue":"Compatibility"},"posID":"336","overallHealthState":"Critical","nodes":[{"accessState":"Online","arch":"x86","manufacturerId":"20301","location":{"lowestRackUnit":17,"location":"","rack":"Scale REWE RSL 1","room":""},"addinCardSlots":0,"serialNumber":"06MAPZ6","driveBays":8,"macAddress":"34:40:B5:BF:C7:2D,34:40:B5:BF:C7:2E","type":"ITE","lanOverUsb":"enabled","onboardPciDevices":[{"pciSubID":"405","fodUniqueID":"","pciRevision":"0","isAgentless":false,"pciBusNumber":"4","pciSubVendorID":"1014","isAddOnCard":false,"pciDeviceNumber":"0","posID":"534","pciFunctionNumber":"0","portInfo":{},"name":"","vpdID":"102b"}],"leds":[{"color":"Yellow","location":"FrontPanel","name":"Fault","state":"Off"}],"description":"IBM Flex System x240 with 10Gb","mgmtProcIPaddress":"10.240.75.97","expansionCards":[{"pciSubID":"24","firmware":[{"revision":"0","classifications":[13],"status":"Active","name":"QLogic Adapter Software Bundle","role":"Primary","softwareID":"16570024","type":"Software Bundle","build":"0","date":"2013-09-05T00:00:00Z","version":"3.2.5.5"}],"slotSupportsHotPlug":"false","isAgentless":true,"pciRevision":"1","pciBusNumber":"22","pciSubVendorID":"1657","FRU":"88Y6373","pciDeviceNumber":"0","slotNumber":"2","posID":"22","pciFunctionNumber":"0","bay":2,"manufacturer":"BRCD","name":"Brocade 16Gb Fibre Channel Adapter for IBM BladeCenter","vpdID":"1657","uuid":"A317C9D1198911E1AED88C7CFF1529FF","productName":"Brocade 16Gb Fibre Channel Adapter for IBM BladeCenter","partNumber":"88Y6372","fruSerialNumber":"Y050UZ1RB00A","slotName":"SlotDesig4_Mezzanine 2 Card"}],"errorFields":[{"IOCompatibilityData":"FETCH_FAILED"}],"ipInterfaces":[{"IPv4enabled":true,"IPv4DHCPmode":"STATIC_ONLY","IPv6enabled":true,"IPv6DHCPenabled":true,"IPv4assignments":[{"id":0,"subnet":"255.255.252.0","gateway":"0.0.0.0","address":"10.240.75.97","type":"INUSE"}],"IPv6assignments":[{"id":0,"scope":"Global","gateway":"0:0:0:0:0:0:0:0","source":"Stateless","address":"fd55:faaf:e1ab:20fc:3640:b5ff:febf:c72d","prefix":64,"type":"INUSE"}],"name":"eth0","IPv6statelessEnabled":true,"label":"unknown","IPv6staticEnabled":false}],"firmware":[{"status":"Active","name":"UEFI Firmware/BIOS","role":"Primary","date":"2015-11-25T00:00:00Z","type":"UEFI","build":"B2E151CUS","version":"1.80"}],"bladeState":1,"activationKeys":[],"status":{"message":"managed","name":"MANAGED"},"bladeState_health":"WARNING","parent":{"uuid":"7891C3B5CE754E489810B0D3BA41DA02","uri":"chassis/7891C3B5CE754E489810B0D3BA41DA02"},"hostname":"IMM2-3440b5bfc72d","powerSupplies":[],"FRU":"81Y5128","uri":"node/4570F6EE789C11E293DD3440B5BFC72C","vnicMode":"disabled","powerAllocation":{"maximumAllocatedPower":340,"minimumAllocatedPower":174},"expansionProductType":"","powerStatus":8,"bootOrder":{"uri":"node/4570F6EE789C11E293DD3440B5BFC72C/bootOrder","bootOrderList":[{"currentBootOrderDevices":["None"],"bootType":"SingleUse","possibleBootOrderDevices":["None"]}]},"expansionProducts":[],"ipv6Addresses":["fd55:faaf:e1ab:20fc:3640:b5ff:febf:c72d"],"slots":[1],"manufacturer":"IBM","addinCards":[],"raidSettings":[],"vpdID":"20","uuid":"4570F6EE789C11E293DD3440B5BFC72C","isConnectionTrusted":"true","memoryModules":[{"model":"DDR3","speed":1333,"manufacturer":"Hynix Semiconductor","capacity":8,"serialNumber":"1F876BD2","displayName":"DIMM 1","slot":1,"type":"DDR3","partNumber":"HMT31GR7CFR4A-H9"}],"fruSerialNumber":"Y010BG295069","encapsulation":{"encapsulationMode":"notSupported"},"secureBootMode":{"possibleValues":[],"currentValue":""},"tlsVersion":{"possibleValues":["TLS_10"],"currentValue":"Unknown"},"model":"AC1","isScalable":false,"expansionCardSlots":2,"isITME":false,"hostMacAddresses":"6C:AE:8B:2A:2F:41,6C:AE:8B:2A:2F:45","contact":"Fred","dataHandle":1475711273995,"ipv4Addresses":["10.240.75.97"],"cmmDisplayName":"Node 01","backedBy":"real","complexID":-1,"name":"Testing87","memorySlots":24,"drives":[{"bay":1,"capacity":-1}],"cmmHealthState":"Non-Critical","userDescription":"","subSlots":[],"partNumber":"00Y2738","excludedHealthState":"Minor-Failure","bladeState_string":"Testing87","machineType":"8737","isRemotePresenceEnabled":true,"pciDevices":[{"pciSubID":"405","fodUniqueID":"","pciRevision":"0","isAgentless":false,"pciBusNumber":"4","pciSubVendorID":"1014","isAddOnCard":false,"pciDeviceNumber":"0","posID":"534","pciFunctionNumber":"0","portInfo":{},"name":"","vpdID":"102b"}],"domainName":"","processors":[{"speed":2.2,"manufacturer":"Intel(R) Corporation","family":"INTEL_R_XEON_TM","displayName":"Intel(R) Xeon(R) CPU E5-2660 0 @ 2.20GHz","slot":1,"productVersion":"Intel(R) Xeon(R) CPU E5-2660 0 @ 2.20GHz","cores":8}],"processorSlots":2,"pciCapabilities":["Raid Link"],"productId":"321","hasOS":false,"lanOverUsbPortForwardingModes":[{"state":"disabled","type":"DSA","externalIPAddress":""}],"bootMode":{"possibleValues":["UEFI and Legacy"],"currentValue":"UEFI and Legacy"},"ports":[{"ioModuleBay":0,"portNumber":1}],"embeddedHypervisorPresence":false,"posID":"256","nist":{"possibleValues":["Compatibility"],"currentValue":"Unknown"},"overallHealthState":"Minor-Failure","subType":"Blacktip","partitionID":-1,"flashStorage":[],"productName":"IBM Flex System x240 Compute Node with embedded 10Gb Virtual Fabric","dnsHostnames":["ite-bt-793-imm1.labs.lenovo.com"]}],"displayName":"SN#Y030BG168057","productName":"IBM Chassis Midplane"},"itemLocation":"","itemHeight":10,"itemLocationRoom":""}],"location":"","UUID":"A18C32CF-851B-44C4-B177-9A2A1C481142","nodeList":[],"placeholderList":[],"switchList":[],"room":""}]}
|
19
|
+
+ Response 400
|
20
|
+
+ Response 401
|
21
|
+
+ Response 404
|
22
|
+
+ Response 409
|
23
|
+
+ Response 500
|
24
|
+
|
25
|
+
# GET /cabinet?includeAttributes=storageList,height
|
26
|
+
|
27
|
+
+ Response 200 (application/json)
|
28
|
+
{"cabinetList":[{"storageList":[],"height":42,"chassisList":[{}],"nodeList":[],"switchList":[]}]}
|
29
|
+
+ Response 400
|
30
|
+
+ Response 401
|
31
|
+
+ Response 404
|
32
|
+
+ Response 409
|
33
|
+
+ Response 500
|
34
|
+
|
35
|
+
# GET /cabinet/A18C32CF-851B-44C4-B177-9A2A1C481142
|
36
|
+
|
37
|
+
+ Response 200 (application/json)
|
38
|
+
{"storageList":[],"cabinetName":"Scale REWE RSL 1","height":42,"complexList":[],"chassisList":[{"itemParentUUID":null,"itemName":"SN#Y030BG168057","itemLowerUnit":17,"itemType":"CHASSIS","itemLocationRack":"Scale REWE RSL 1","itemSubType":"BladeCenter-X","itemUUID":"7891C3B5CE754E489810B0D3BA41DA02","itemInventory":{"accessState":"Online","powerSupplySlots":6,"manufacturerId":"20301","location":{"lowestRackUnit":17,"location":"","rack":"Scale REWE RSL 1","room":""},"serialNumber":"100086A","type":"Chassis","fanSlots":10,"passThroughModules":[],"height":10,"switchSlots":4,"leds":[{"color":"Blue","location":"FrontPanel","name":"Location","state":"Off"}],"description":"IBM Flex System Chassis","errorFields":[{"PowerCappingPolicy":"FETCH_FAILED"}],"mgmtProcIPaddress":"10.240.75.92","activationKeys":[],"status":{"message":"MANAGED","name":"MANAGED"},"hostname":"MM5CF3FC25D74D","parent":{"uuid":"A18C32CF-851B-44C4-B177-9A2A1C481142","uri":"cabinet/A18C32CF-851B-44C4-B177-9A2A1C481142"},"powerSupplies":[{"model":"","manufacturerId":"20301","serialNumber":"","inputVoltageIsAC":true,"inputVoltageMin":200,"type":"PowerSupply","dataHandle":0,"cmmDisplayName":"Power Supply 01","leds":[{"color":"Green","location":"Planar","name":"IN","state":"On"}],"description":"Power Supply","name":"Power Supply 01","cmmHealthState":"Normal","userDescription":"","manufactureDate":"2111","partNumber":"69Y5802","firmware":[{"status":"","name":"Power Supply Firmware","role":"","date":"","type":"Power Supply Firmware","build":"","version":"4"}],"machineType":"","hardwareRevision":"69.54","parent":{"uuid":"7891C3B5CE754E489810B0D3BA41DA02","uri":"chassis/7891C3B5CE754E489810B0D3BA41DA02"},"FRU":"69Y5806","uri":"powerSupply/362A016053D94A29A0A8A107374BC9E6","productId":"304","powerAllocation":{"totalInputPower":2505,"totalOutputPower":343},"powerState":"Unknown","posID":"128","slots":[1],"manufacturer":"IBM","vpdID":"61","uuid":"362A016053D94A29A0A8A107374BC9E6","productName":"IBM 2500 W Power Supply","fruSerialNumber":"ZK118115V005","inputVoltageMax":208}],"uri":"chassis/7891C3B5CE754E489810B0D3BA41DA02","powerAllocation":{"midPlaneCardMaximumAllocatedPower":38,"remainingOutputPower":10900,"totalInputPower":16336,"allocatedOutputPower":4130,"totalOutputPower":15030,"midPlaneCardMinimumAllocatedPower":38},"manufacturer":"IBM","fanMuxes":[{"model":"","manufacturerId":"20301","machineType":"","status":"Normal","hardwareRevision":"5.3","parent":{"uuid":"7891C3B5CE754E489810B0D3BA41DA02","uri":"chassis/7891C3B5CE754E489810B0D3BA41DA02"},"serialNumber":"","FRU":"94Y5805","type":"FanMux","uri":"fanMux/055396F531DA11E3A2B7C30D30C2FA73","productId":"338","dataHandle":0,"cmmDisplayName":"Fan Logic 01","leds":[{"color":"Amber","location":"FrontPanel","name":"FAULT","state":"Off"}],"manufacturer":"IBM","slots":[1],"description":"fan logic card","name":"Fan Logic 01","uuid":"055396F531DA11E3A2B7C30D30C2FA73","cmmHealthState":"Normal","manufactureDate":"4311","productName":"IBM Flex System Enterprise Chassis Fan Logic Card","fruSerialNumber":"Y031BG16P0FA","partNumber":"49Y3276"}],"vpdID":"14","isConnectionTrusted":"true","uuid":"7891C3B5CE754E489810B0D3BA41DA02","activeAlerts":[{"id":"IBM:CMM01:Y030BG168057:01:57662:301","corrIDs":"","location":"01010201","msgID":"CMM0488","severity":"WARNING","msg":"The CMM J40 jumper is installed in bay 1."}],"tlsVersion":{"possibleValues":["SSL_30"],"currentValue":"SSL_30"},"encapsulation":{"encapsulationMode":"notSupported"},"complex":[],"model":"92X","energyPolicies":{"powerRedundancyMode":3,"powerCappingPolicy":{"cappingPolicy":"OFF","maxPowerCap":15030,"currentPowerCap":0,"minPowerCap":4130},"acousticAttenuationMode":"Off","hotAirRecirculation":{"chassisBay":[{"sensorValue":25.0,"isExceeded":"Y","subSlot":-1,"slot":0,"sensorName":"Chassis Ambient"}],"maxVariation":5.0,"isEnabled":true}},"fans":[{"model":"","manufacturerId":"20301","serialNumber":"","type":"Fan","dataHandle":0,"cmmDisplayName":"Fan 01","leds":[{"color":"Amber","location":"FrontPanel","name":"FAULT","state":"Off"}],"description":"Fan Module","name":"Fan 01","errorFields":[],"cmmHealthState":"Normal","userDescription":"","manufactureDate":"2911","partNumber":"88Y6671","firmware":[{"status":"","name":"Fan Controller","role":"","date":"","type":"Fan Controller","build":"","version":"226"}],"machineType":"","hardwareRevision":"4.0","parent":{"uuid":"7891C3B5CE754E489810B0D3BA41DA02","uri":"chassis/7891C3B5CE754E489810B0D3BA41DA02"},"FRU":"81Y2910","uri":"fan/89AF1FCA120A4A1E9565AC33F7E44FAB","productId":"341","powerAllocation":{"maximumAllocatedPower":75,"minimumAllocatedPower":75},"powerState":"Unknown","posID":"373","slots":[1],"manufacturer":"IBM","vpdID":"10","uuid":"89AF1FCA120A4A1E9565AC33F7E44FAB","productName":"","fruSerialNumber":"YK10GM17E124"}],"bladeSlots":14,"contact":"No Contact Configured","dataHandle":1475848121205,"switches":[{"accessState":"Online","model":"","manufacturerId":"20301","serialNumber":"","type":"Switch","dataHandle":1475847973719,"ipv4Addresses":["10.240.75.93"],"cmmDisplayName":"IO Module 01","backedBy":"real","leds":[{"color":"Blue","location":"FrontPanel","name":"Enclosure Identify","state":"Off"}],"description":"SI4093 10Gb Interconnect Module","name":"IO Module 01","errorFields":[{"HealthSummary":"NETWORK_FAIL"}],"stackMode":"N/A","attachedNodes":[],"cmmHealthState":"Normal","userDescription":"","partNumber":"95Y3315","ipInterfaces":[{"IPv4enabled":true,"IPv4DHCPmode":"STATIC_ONLY","IPv6enabled":true,"IPv6DHCPenabled":true,"IPv4assignments":[{"id":2,"subnet":"255.255.252.0","gateway":"10.240.72.1","address":"10.240.75.93","type":"INUSE"}],"IPv6assignments":[{"id":1,"scope":"LinkLocal","gateway":"0:0:0:0:0:0:0:0","source":"Other","address":"fe80:0:0:0:aa97:dcff:fe5f:4fef","prefix":64,"type":"INUSE"}],"name":"ioe0","IPv6statelessEnabled":true,"label":"","IPv6staticEnabled":false}],"excludedHealthState":"Normal","firmware":[{"status":"Active","name":"Boot ROM","date":"2016-08-03T04:00:00Z","type":"Boot ROM","build":"","version":"7.8.14.5"}],"machineType":"","parent":{"uuid":"7891C3B5CE754E489810B0D3BA41DA02","uri":"chassis/7891C3B5CE754E489810B0D3BA41DA02"},"hostname":"","FRU":"95Y3314","macAddresses":["A8:97:DC:5F:4F:EF"],"uri":"switch/1B33D6C82893D0214567A897DC5F4F00","productId":"502","powerAllocation":{"maximumAllocatedPower":100,"minimumAllocatedPower":100},"powerState":"On","ipv6Addresses":["fe80:0:0:0:aa97:dcff:fe5f:4fef"],"posID":"36","overallHealthState":"Normal","protectedMode":"False","manufacturer":"IBM","slots":[1],"vpdID":"304","uuid":"1B33D6C82893D0214567A897DC5F4F00","productName":"IBM Flex System Fabric SI4093 System Interconnect Module","dnsHostnames":["SW-Y011CM3AB229.labs.lenovo.com"],"fruSerialNumber":"Y011CM3AB229"}],"fanMuxSlots":2,"backedBy":"real","cmmDisplayName":"SN#Y030BG168057","name":"SN#Y030BG168057","ledCardSlots":1,"SecurityPolicy":{"cmmPolicyState":"PENDING","cmmPolicyLevel":"LEGACY"},"cmmHealthState":"Critical","userDescription":"","partNumber":"88Y6660","excludedHealthState":"Critical","machineType":"7893","cmms":[{"accessState":"Online","model":"","manufacturerId":"20301","serialNumber":"","type":"CMM","dataHandle":1475847696634,"ipv4Addresses":["10.240.75.92"],"backedBy":"real","cmmDisplayName":"SN#Y030BG168057","hostConfig":[{"DDNSenabled":false,"terIPv6userDNSserver":"0:0:0:0:0:0:0:0","DNSenabled":false,"IPversionPriority":"IPv6ThenIPv4","secIPv4userDNSserver":"10.240.0.11","terIPv4userDNSserver":"0.0.0.0","priIPv6userDNSserver":"0:0:0:0:0:0:0:0","secIPv6userDNSserver":"0:0:0:0:0:0:0:0","priIPv4userDNSserver":"10.240.0.10"}],"leds":[{"color":"Amber","location":"FrontPanel","name":"FAULT","state":"Off"}],"description":"CMM","name":"SN#Y030BG168057","mgmtProcIPaddress":"10.240.75.92","errorFields":[],"role":"primary","cmmHealthState":"Non-Critical","userDescription":"","partNumber":"68Y7054","ipInterfaces":[{"IPv4enabled":true,"IPv4DHCPmode":"STATIC_ONLY","IPv6enabled":true,"IPv6DHCPenabled":true,"IPv4assignments":[{"id":2,"subnet":"255.255.252.0","gateway":"10.240.72.1","address":"10.240.75.92","type":"INUSE"}],"IPv6assignments":[{"id":1,"scope":"LinkLocal","gateway":"0:0:0:0:0:0:0:0","source":"Other","address":"fe80:0:0:0:5ef3:fcff:fe25:d74d","prefix":64,"type":"INUSE"}],"name":"eth0","IPv6statelessEnabled":true,"label":"External","IPv6staticEnabled":false}],"excludedHealthState":"Warning","firmware":[{"status":"","name":"CMM firmware","role":"","date":"2016-07-29T04:00:00Z","type":"CMM firmware","build":"2PET33B","version":"2.5.7"}],"machineType":"","parent":{"uuid":"7891C3B5CE754E489810B0D3BA41DA02","uri":"chassis/7891C3B5CE754E489810B0D3BA41DA02"},"hostname":"MM5CF3FC25D74D","domainName":"","FRU":"68Y7032","macAddresses":["5C:F3:FC:25:D7:4D"],"uri":"cmm/4CCEE929981C11E0A61DB70AC0D67616","productId":"65","powerAllocation":{"maximumAllocatedPower":20,"minimumAllocatedPower":20},"ipv6Addresses":["fe80:0:0:0:5ef3:fcff:fe25:d74d"],"overallHealthState":"Warning","slots":[1],"manufacturer":"IBM","uuid":"4CCEE929981C11E0A61DB70AC0D67616","dnsHostnames":["Chassis115.labs.lenovo.com"],"fruSerialNumber":"Y030BG168057"}],"mmSlots":2,"managerName":"UNKNOWN","domainName":"","managerUuid":"UNKNOWN","productId":"336","nist":{"possibleValues":["Compatibility"],"currentValue":"Compatibility"},"posID":"336","overallHealthState":"Critical","nodes":[{"accessState":"Online","arch":"x86","manufacturerId":"20301","location":{"lowestRackUnit":17,"location":"","rack":"Scale REWE RSL 1","room":""},"addinCardSlots":0,"serialNumber":"06MAPZ6","driveBays":8,"macAddress":"34:40:B5:BF:C7:2D,34:40:B5:BF:C7:2E","type":"ITE","lanOverUsb":"enabled","onboardPciDevices":[{"pciSubID":"405","fodUniqueID":"","pciRevision":"0","isAgentless":false,"pciBusNumber":"4","pciSubVendorID":"1014","isAddOnCard":false,"pciDeviceNumber":"0","posID":"534","pciFunctionNumber":"0","portInfo":{},"name":"","vpdID":"102b"}],"leds":[{"color":"Yellow","location":"FrontPanel","name":"Fault","state":"Off"}],"description":"IBM Flex System x240 with 10Gb","mgmtProcIPaddress":"10.240.75.97","expansionCards":[{"pciSubID":"24","firmware":[{"revision":"0","classifications":[13],"status":"Active","name":"QLogic Adapter Software Bundle","role":"Primary","softwareID":"16570024","type":"Software Bundle","build":"0","date":"2013-09-05T00:00:00Z","version":"3.2.5.5"}],"slotSupportsHotPlug":"false","isAgentless":true,"pciRevision":"1","pciBusNumber":"22","pciSubVendorID":"1657","FRU":"88Y6373","pciDeviceNumber":"0","slotNumber":"2","posID":"22","pciFunctionNumber":"0","bay":2,"manufacturer":"BRCD","name":"Brocade 16Gb Fibre Channel Adapter for IBM BladeCenter","vpdID":"1657","uuid":"A317C9D1198911E1AED88C7CFF1529FF","productName":"Brocade 16Gb Fibre Channel Adapter for IBM BladeCenter","partNumber":"88Y6372","fruSerialNumber":"Y050UZ1RB00A","slotName":"SlotDesig4_Mezzanine 2 Card"}],"errorFields":[{"IOCompatibilityData":"FETCH_FAILED"}],"ipInterfaces":[{"IPv4enabled":true,"IPv4DHCPmode":"STATIC_ONLY","IPv6enabled":true,"IPv6DHCPenabled":true,"IPv4assignments":[{"id":0,"subnet":"255.255.252.0","gateway":"0.0.0.0","address":"10.240.75.97","type":"INUSE"}],"IPv6assignments":[{"id":0,"scope":"Global","gateway":"0:0:0:0:0:0:0:0","source":"Stateless","address":"fd55:faaf:e1ab:20fc:3640:b5ff:febf:c72d","prefix":64,"type":"INUSE"}],"name":"eth0","IPv6statelessEnabled":true,"label":"unknown","IPv6staticEnabled":false}],"firmware":[{"status":"Active","name":"UEFI Firmware/BIOS","role":"Primary","date":"2015-11-25T00:00:00Z","type":"UEFI","build":"B2E151CUS","version":"1.80"}],"bladeState":1,"activationKeys":[],"status":{"message":"managed","name":"MANAGED"},"bladeState_health":"WARNING","parent":{"uuid":"7891C3B5CE754E489810B0D3BA41DA02","uri":"chassis/7891C3B5CE754E489810B0D3BA41DA02"},"hostname":"IMM2-3440b5bfc72d","powerSupplies":[],"FRU":"81Y5128","uri":"node/4570F6EE789C11E293DD3440B5BFC72C","vnicMode":"disabled","powerAllocation":{"maximumAllocatedPower":340,"minimumAllocatedPower":174},"expansionProductType":"","powerStatus":8,"bootOrder":{"uri":"node/4570F6EE789C11E293DD3440B5BFC72C/bootOrder","bootOrderList":[{"currentBootOrderDevices":["None"],"bootType":"SingleUse","possibleBootOrderDevices":["None"]}]},"expansionProducts":[],"ipv6Addresses":["fd55:faaf:e1ab:20fc:3640:b5ff:febf:c72d"],"slots":[1],"manufacturer":"IBM","addinCards":[],"raidSettings":[],"vpdID":"20","uuid":"4570F6EE789C11E293DD3440B5BFC72C","isConnectionTrusted":"true","memoryModules":[{"model":"DDR3","speed":1333,"manufacturer":"Hynix Semiconductor","capacity":8,"serialNumber":"1F876BD2","displayName":"DIMM 1","slot":1,"type":"DDR3","partNumber":"HMT31GR7CFR4A-H9"}],"fruSerialNumber":"Y010BG295069","encapsulation":{"encapsulationMode":"notSupported"},"secureBootMode":{"possibleValues":[],"currentValue":""},"tlsVersion":{"possibleValues":["TLS_10"],"currentValue":"Unknown"},"model":"AC1","isScalable":false,"expansionCardSlots":2,"isITME":false,"hostMacAddresses":"6C:AE:8B:2A:2F:41,6C:AE:8B:2A:2F:45","contact":"Fred","dataHandle":1475848105454,"ipv4Addresses":["10.240.75.97"],"cmmDisplayName":"Node 01","backedBy":"real","complexID":-1,"name":"Testing87","memorySlots":24,"drives":[{"bay":1,"capacity":-1}],"cmmHealthState":"Non-Critical","userDescription":"","subSlots":[],"partNumber":"00Y2738","excludedHealthState":"Minor-Failure","bladeState_string":"Testing87","machineType":"8737","isRemotePresenceEnabled":true,"pciDevices":[{"pciSubID":"405","fodUniqueID":"","pciRevision":"0","isAgentless":false,"pciBusNumber":"4","pciSubVendorID":"1014","isAddOnCard":false,"pciDeviceNumber":"0","posID":"534","pciFunctionNumber":"0","portInfo":{},"name":"","vpdID":"102b"}],"domainName":"","processors":[{"speed":2.2,"manufacturer":"Intel(R) Corporation","family":"INTEL_R_XEON_TM","displayName":"Intel(R) Xeon(R) CPU E5-2660 0 @ 2.20GHz","slot":1,"productVersion":"Intel(R) Xeon(R) CPU E5-2660 0 @ 2.20GHz","cores":8}],"processorSlots":2,"pciCapabilities":["Raid Link"],"productId":"321","hasOS":false,"lanOverUsbPortForwardingModes":[{"state":"disabled","type":"DSA","externalIPAddress":""}],"bootMode":{"possibleValues":["UEFI and Legacy"],"currentValue":"UEFI and Legacy"},"ports":[{"ioModuleBay":0,"portNumber":1}],"embeddedHypervisorPresence":false,"posID":"256","nist":{"possibleValues":["Compatibility"],"currentValue":"Unknown"},"overallHealthState":"Minor-Failure","subType":"Blacktip","partitionID":-1,"flashStorage":[],"productName":"IBM Flex System x240 Compute Node with embedded 10Gb Virtual Fabric","dnsHostnames":["ite-bt-793-imm1.labs.lenovo.com"]}],"displayName":"SN#Y030BG168057","productName":"IBM Chassis Midplane"},"itemLocation":"","itemHeight":10,"itemLocationRoom":""}],"location":"","UUID":"A18C32CF-851B-44C4-B177-9A2A1C481142","nodeList":[],"placeholderList":[],"switchList":[],"room":""}
|
39
|
+
+ Response 400
|
40
|
+
+ Response 401
|
41
|
+
+ Response 404
|
42
|
+
+ Response 409
|
43
|
+
+ Response 500
|
44
|
+
|
45
|
+
# GET /cabinet/A18C32CF-851B-44C4-B177-9A2A1C481142?excludeAttributes=storageList,height
|
46
|
+
|
47
|
+
+ Response 200 (application/json)
|
48
|
+
{"cabinetName":"Scale REWE RSL 1","complexList":[],"chassisList":[{"itemParentUUID":null,"itemName":"SN#Y030BG168057","itemLowerUnit":17,"itemType":"CHASSIS","itemLocationRack":"Scale REWE RSL 1","itemSubType":"BladeCenter-X","itemUUID":"7891C3B5CE754E489810B0D3BA41DA02","itemInventory":{"powerSupplySlots":6,"accessState":"Online","manufacturerId":"20301","location":{"lowestRackUnit":17,"location":"","rack":"Scale REWE RSL 1","room":""},"serialNumber":"100086A","type":"Chassis","fanSlots":10,"passThroughModules":[],"switchSlots":4,"leds":[{"color":"Blue","location":"FrontPanel","name":"Location","state":"Off"}],"description":"IBM Flex System Chassis","errorFields":[{"PowerCappingPolicy":"FETCH_FAILED"}],"mgmtProcIPaddress":"10.240.75.92","activationKeys":[],"status":{"message":"MANAGED","name":"MANAGED"},"hostname":"MM5CF3FC25D74D","parent":{"uuid":"A18C32CF-851B-44C4-B177-9A2A1C481142","uri":"cabinet/A18C32CF-851B-44C4-B177-9A2A1C481142"},"powerSupplies":[{"model":"","manufacturerId":"20301","serialNumber":"","inputVoltageIsAC":true,"inputVoltageMin":200,"type":"PowerSupply","dataHandle":0,"cmmDisplayName":"Power Supply 01","leds":[{"color":"Green","location":"Planar","name":"IN","state":"On"}],"description":"Power Supply","name":"Power Supply 01","cmmHealthState":"Normal","userDescription":"","manufactureDate":"2111","partNumber":"69Y5802","firmware":[{"status":"","name":"Power Supply Firmware","role":"","date":"","type":"Power Supply Firmware","build":"","version":"4"}],"machineType":"","hardwareRevision":"69.54","parent":{"uuid":"7891C3B5CE754E489810B0D3BA41DA02","uri":"chassis/7891C3B5CE754E489810B0D3BA41DA02"},"FRU":"69Y5806","uri":"powerSupply/362A016053D94A29A0A8A107374BC9E6","productId":"304","powerAllocation":{"totalInputPower":2505,"totalOutputPower":343},"powerState":"Unknown","posID":"128","slots":[1],"manufacturer":"IBM","vpdID":"61","uuid":"362A016053D94A29A0A8A107374BC9E6","productName":"IBM 2500 W Power Supply","fruSerialNumber":"ZK118115V005","inputVoltageMax":208}],"uri":"chassis/7891C3B5CE754E489810B0D3BA41DA02","powerAllocation":{"midPlaneCardMaximumAllocatedPower":38,"remainingOutputPower":10900,"totalInputPower":16336,"allocatedOutputPower":4130,"totalOutputPower":15030,"midPlaneCardMinimumAllocatedPower":38},"manufacturer":"IBM","fanMuxes":[{"model":"","manufacturerId":"20301","machineType":"","status":"Normal","hardwareRevision":"5.3","parent":{"uuid":"7891C3B5CE754E489810B0D3BA41DA02","uri":"chassis/7891C3B5CE754E489810B0D3BA41DA02"},"serialNumber":"","FRU":"94Y5805","type":"FanMux","uri":"fanMux/055396F531DA11E3A2B7C30D30C2FA73","productId":"338","dataHandle":0,"cmmDisplayName":"Fan Logic 01","leds":[{"color":"Amber","location":"FrontPanel","name":"FAULT","state":"Off"}],"manufacturer":"IBM","slots":[1],"description":"fan logic card","name":"Fan Logic 01","uuid":"055396F531DA11E3A2B7C30D30C2FA73","cmmHealthState":"Normal","manufactureDate":"4311","productName":"IBM Flex System Enterprise Chassis Fan Logic Card","fruSerialNumber":"Y031BG16P0FA","partNumber":"49Y3276"}],"vpdID":"14","isConnectionTrusted":"true","uuid":"7891C3B5CE754E489810B0D3BA41DA02","activeAlerts":[{"id":"IBM:CMM01:Y030BG168057:01:57662:301","corrIDs":"","location":"01010201","msgID":"CMM0488","severity":"WARNING","msg":"The CMM J40 jumper is installed in bay 1."}],"tlsVersion":{"possibleValues":["SSL_30"],"currentValue":"SSL_30"},"encapsulation":{"encapsulationMode":"notSupported"},"complex":[],"model":"92X","energyPolicies":{"powerRedundancyMode":3,"powerCappingPolicy":{"cappingPolicy":"OFF","maxPowerCap":15030,"currentPowerCap":0,"minPowerCap":4130},"acousticAttenuationMode":"Off","hotAirRecirculation":{"chassisBay":[{"sensorValue":25.0,"isExceeded":"Y","subSlot":-1,"slot":0,"sensorName":"Chassis Ambient"}],"maxVariation":5.0,"isEnabled":true}},"fans":[{"model":"","manufacturerId":"20301","serialNumber":"","type":"Fan","dataHandle":0,"cmmDisplayName":"Fan 01","leds":[{"color":"Amber","location":"FrontPanel","name":"FAULT","state":"Off"}],"description":"Fan Module","name":"Fan 01","errorFields":[],"cmmHealthState":"Normal","userDescription":"","manufactureDate":"2911","partNumber":"88Y6671","firmware":[{"status":"","name":"Fan Controller","role":"","date":"","type":"Fan Controller","build":"","version":"226"}],"machineType":"","hardwareRevision":"4.0","parent":{"uuid":"7891C3B5CE754E489810B0D3BA41DA02","uri":"chassis/7891C3B5CE754E489810B0D3BA41DA02"},"FRU":"81Y2910","uri":"fan/89AF1FCA120A4A1E9565AC33F7E44FAB","productId":"341","powerAllocation":{"maximumAllocatedPower":75,"minimumAllocatedPower":75},"powerState":"Unknown","posID":"373","slots":[1],"manufacturer":"IBM","vpdID":"10","uuid":"89AF1FCA120A4A1E9565AC33F7E44FAB","productName":"","fruSerialNumber":"YK10GM17E124"}],"bladeSlots":14,"contact":"No Contact Configured","dataHandle":1475848121205,"switches":[{"accessState":"Online","model":"","manufacturerId":"20301","serialNumber":"","type":"Switch","dataHandle":1475847973719,"ipv4Addresses":["10.240.75.93"],"cmmDisplayName":"IO Module 01","backedBy":"real","leds":[{"color":"Blue","location":"FrontPanel","name":"Enclosure Identify","state":"Off"}],"description":"SI4093 10Gb Interconnect Module","name":"IO Module 01","errorFields":[{"HealthSummary":"NETWORK_FAIL"}],"stackMode":"N/A","attachedNodes":[],"cmmHealthState":"Normal","userDescription":"","partNumber":"95Y3315","ipInterfaces":[{"IPv4enabled":true,"IPv4DHCPmode":"STATIC_ONLY","IPv6enabled":true,"IPv6DHCPenabled":true,"IPv4assignments":[{"id":2,"subnet":"255.255.252.0","gateway":"10.240.72.1","address":"10.240.75.93","type":"INUSE"}],"IPv6assignments":[{"id":1,"scope":"LinkLocal","gateway":"0:0:0:0:0:0:0:0","source":"Other","address":"fe80:0:0:0:aa97:dcff:fe5f:4fef","prefix":64,"type":"INUSE"}],"name":"ioe0","IPv6statelessEnabled":true,"label":"","IPv6staticEnabled":false}],"excludedHealthState":"Normal","firmware":[{"status":"Active","name":"Boot ROM","date":"2016-08-03T04:00:00Z","type":"Boot ROM","build":"","version":"7.8.14.5"}],"machineType":"","parent":{"uuid":"7891C3B5CE754E489810B0D3BA41DA02","uri":"chassis/7891C3B5CE754E489810B0D3BA41DA02"},"hostname":"","FRU":"95Y3314","macAddresses":["A8:97:DC:5F:4F:EF"],"uri":"switch/1B33D6C82893D0214567A897DC5F4F00","productId":"502","powerAllocation":{"maximumAllocatedPower":100,"minimumAllocatedPower":100},"powerState":"On","ipv6Addresses":["fe80:0:0:0:aa97:dcff:fe5f:4fef"],"posID":"36","overallHealthState":"Normal","protectedMode":"False","manufacturer":"IBM","slots":[1],"vpdID":"304","uuid":"1B33D6C82893D0214567A897DC5F4F00","productName":"IBM Flex System Fabric SI4093 System Interconnect Module","dnsHostnames":["SW-Y011CM3AB229.labs.lenovo.com"],"fruSerialNumber":"Y011CM3AB229"}],"fanMuxSlots":2,"backedBy":"real","cmmDisplayName":"SN#Y030BG168057","name":"SN#Y030BG168057","ledCardSlots":1,"SecurityPolicy":{"cmmPolicyState":"PENDING","cmmPolicyLevel":"LEGACY"},"cmmHealthState":"Critical","userDescription":"","partNumber":"88Y6660","excludedHealthState":"Critical","machineType":"7893","cmms":[{"accessState":"Online","model":"","manufacturerId":"20301","serialNumber":"","type":"CMM","dataHandle":1475847696634,"ipv4Addresses":["10.240.75.92"],"backedBy":"real","cmmDisplayName":"SN#Y030BG168057","hostConfig":[{"DDNSenabled":false,"terIPv6userDNSserver":"0:0:0:0:0:0:0:0","DNSenabled":false,"IPversionPriority":"IPv6ThenIPv4","secIPv4userDNSserver":"10.240.0.11","terIPv4userDNSserver":"0.0.0.0","priIPv6userDNSserver":"0:0:0:0:0:0:0:0","secIPv6userDNSserver":"0:0:0:0:0:0:0:0","priIPv4userDNSserver":"10.240.0.10"}],"leds":[{"color":"Amber","location":"FrontPanel","name":"FAULT","state":"Off"}],"description":"CMM","name":"SN#Y030BG168057","mgmtProcIPaddress":"10.240.75.92","errorFields":[],"role":"primary","cmmHealthState":"Non-Critical","userDescription":"","partNumber":"68Y7054","ipInterfaces":[{"IPv4enabled":true,"IPv4DHCPmode":"STATIC_ONLY","IPv6enabled":true,"IPv6DHCPenabled":true,"IPv4assignments":[{"id":2,"subnet":"255.255.252.0","gateway":"10.240.72.1","address":"10.240.75.92","type":"INUSE"}],"IPv6assignments":[{"id":1,"scope":"LinkLocal","gateway":"0:0:0:0:0:0:0:0","source":"Other","address":"fe80:0:0:0:5ef3:fcff:fe25:d74d","prefix":64,"type":"INUSE"}],"name":"eth0","IPv6statelessEnabled":true,"label":"External","IPv6staticEnabled":false}],"excludedHealthState":"Warning","firmware":[{"status":"","name":"CMM firmware","role":"","date":"2016-07-29T04:00:00Z","type":"CMM firmware","build":"2PET33B","version":"2.5.7"}],"machineType":"","parent":{"uuid":"7891C3B5CE754E489810B0D3BA41DA02","uri":"chassis/7891C3B5CE754E489810B0D3BA41DA02"},"hostname":"MM5CF3FC25D74D","domainName":"","FRU":"68Y7032","macAddresses":["5C:F3:FC:25:D7:4D"],"uri":"cmm/4CCEE929981C11E0A61DB70AC0D67616","productId":"65","powerAllocation":{"maximumAllocatedPower":20,"minimumAllocatedPower":20},"ipv6Addresses":["fe80:0:0:0:5ef3:fcff:fe25:d74d"],"overallHealthState":"Warning","slots":[1],"manufacturer":"IBM","uuid":"4CCEE929981C11E0A61DB70AC0D67616","dnsHostnames":["Chassis115.labs.lenovo.com"],"fruSerialNumber":"Y030BG168057"}],"mmSlots":2,"managerName":"UNKNOWN","domainName":"","managerUuid":"UNKNOWN","productId":"336","nist":{"possibleValues":["Compatibility"],"currentValue":"Compatibility"},"posID":"336","overallHealthState":"Critical","nodes":[{"accessState":"Online","arch":"x86","manufacturerId":"20301","location":{"lowestRackUnit":17,"location":"","rack":"Scale REWE RSL 1","room":""},"addinCardSlots":0,"serialNumber":"06MAPZ6","driveBays":8,"macAddress":"34:40:B5:BF:C7:2D,34:40:B5:BF:C7:2E","type":"ITE","lanOverUsb":"enabled","onboardPciDevices":[{"pciSubID":"405","fodUniqueID":"","pciRevision":"0","isAgentless":false,"pciBusNumber":"4","pciSubVendorID":"1014","isAddOnCard":false,"pciDeviceNumber":"0","posID":"534","pciFunctionNumber":"0","portInfo":{},"name":"","vpdID":"102b"}],"leds":[{"color":"Yellow","location":"FrontPanel","name":"Fault","state":"Off"}],"description":"IBM Flex System x240 with 10Gb","mgmtProcIPaddress":"10.240.75.97","expansionCards":[{"pciSubID":"24","firmware":[{"revision":"0","classifications":[13],"status":"Active","name":"QLogic Adapter Software Bundle","role":"Primary","softwareID":"16570024","type":"Software Bundle","build":"0","date":"2013-09-05T00:00:00Z","version":"3.2.5.5"}],"slotSupportsHotPlug":"false","isAgentless":true,"pciRevision":"1","pciBusNumber":"22","pciSubVendorID":"1657","FRU":"88Y6373","pciDeviceNumber":"0","slotNumber":"2","posID":"22","pciFunctionNumber":"0","bay":2,"manufacturer":"BRCD","name":"Brocade 16Gb Fibre Channel Adapter for IBM BladeCenter","vpdID":"1657","uuid":"A317C9D1198911E1AED88C7CFF1529FF","productName":"Brocade 16Gb Fibre Channel Adapter for IBM BladeCenter","partNumber":"88Y6372","fruSerialNumber":"Y050UZ1RB00A","slotName":"SlotDesig4_Mezzanine 2 Card"}],"errorFields":[{"IOCompatibilityData":"FETCH_FAILED"}],"ipInterfaces":[{"IPv4enabled":true,"IPv4DHCPmode":"STATIC_ONLY","IPv6enabled":true,"IPv6DHCPenabled":true,"IPv4assignments":[{"id":0,"subnet":"255.255.252.0","gateway":"0.0.0.0","address":"10.240.75.97","type":"INUSE"}],"IPv6assignments":[{"id":0,"scope":"Global","gateway":"0:0:0:0:0:0:0:0","source":"Stateless","address":"fd55:faaf:e1ab:20fc:3640:b5ff:febf:c72d","prefix":64,"type":"INUSE"}],"name":"eth0","IPv6statelessEnabled":true,"label":"unknown","IPv6staticEnabled":false}],"firmware":[{"status":"Active","name":"UEFI Firmware/BIOS","role":"Primary","date":"2015-11-25T00:00:00Z","type":"UEFI","build":"B2E151CUS","version":"1.80"}],"bladeState":1,"activationKeys":[],"status":{"message":"managed","name":"MANAGED"},"bladeState_health":"WARNING","parent":{"uuid":"7891C3B5CE754E489810B0D3BA41DA02","uri":"chassis/7891C3B5CE754E489810B0D3BA41DA02"},"hostname":"IMM2-3440b5bfc72d","powerSupplies":[],"FRU":"81Y5128","uri":"node/4570F6EE789C11E293DD3440B5BFC72C","vnicMode":"disabled","powerAllocation":{"maximumAllocatedPower":340,"minimumAllocatedPower":174},"expansionProductType":"","powerStatus":8,"bootOrder":{"uri":"node/4570F6EE789C11E293DD3440B5BFC72C/bootOrder","bootOrderList":[{"currentBootOrderDevices":["None"],"bootType":"SingleUse","possibleBootOrderDevices":["None"]}]},"expansionProducts":[],"ipv6Addresses":["fd55:faaf:e1ab:20fc:3640:b5ff:febf:c72d"],"slots":[1],"manufacturer":"IBM","addinCards":[],"raidSettings":[],"vpdID":"20","uuid":"4570F6EE789C11E293DD3440B5BFC72C","isConnectionTrusted":"true","memoryModules":[{"model":"DDR3","speed":1333,"manufacturer":"Hynix Semiconductor","capacity":8,"serialNumber":"1F876BD2","displayName":"DIMM 1","slot":1,"type":"DDR3","partNumber":"HMT31GR7CFR4A-H9"}],"fruSerialNumber":"Y010BG295069","encapsulation":{"encapsulationMode":"notSupported"},"secureBootMode":{"possibleValues":[],"currentValue":""},"tlsVersion":{"possibleValues":["TLS_10"],"currentValue":"Unknown"},"model":"AC1","isScalable":false,"expansionCardSlots":2,"isITME":false,"hostMacAddresses":"6C:AE:8B:2A:2F:41,6C:AE:8B:2A:2F:45","contact":"Fred","dataHandle":1475848105454,"ipv4Addresses":["10.240.75.97"],"cmmDisplayName":"Node 01","backedBy":"real","complexID":-1,"name":"Testing87","memorySlots":24,"drives":[{"bay":1,"capacity":-1}],"cmmHealthState":"Non-Critical","userDescription":"","subSlots":[],"partNumber":"00Y2738","excludedHealthState":"Minor-Failure","bladeState_string":"Testing87","machineType":"8737","isRemotePresenceEnabled":true,"pciDevices":[{"pciSubID":"405","fodUniqueID":"","pciRevision":"0","isAgentless":false,"pciBusNumber":"4","pciSubVendorID":"1014","isAddOnCard":false,"pciDeviceNumber":"0","posID":"534","pciFunctionNumber":"0","portInfo":{},"name":"","vpdID":"102b"}],"domainName":"","processors":[{"speed":2.2,"manufacturer":"Intel(R) Corporation","family":"INTEL_R_XEON_TM","displayName":"Intel(R) Xeon(R) CPU E5-2660 0 @ 2.20GHz","slot":1,"productVersion":"Intel(R) Xeon(R) CPU E5-2660 0 @ 2.20GHz","cores":8}],"processorSlots":2,"pciCapabilities":["Raid Link"],"productId":"321","hasOS":false,"lanOverUsbPortForwardingModes":[{"state":"disabled","type":"DSA","externalIPAddress":""}],"bootMode":{"possibleValues":["UEFI and Legacy"],"currentValue":"UEFI and Legacy"},"ports":[{"ioModuleBay":0,"portNumber":1}],"embeddedHypervisorPresence":false,"posID":"256","nist":{"possibleValues":["Compatibility"],"currentValue":"Unknown"},"overallHealthState":"Minor-Failure","subType":"Blacktip","partitionID":-1,"flashStorage":[],"productName":"IBM Flex System x240 Compute Node with embedded 10Gb Virtual Fabric","dnsHostnames":["ite-bt-793-imm1.labs.lenovo.com"]}],"displayName":"SN#Y030BG168057","productName":"IBM Chassis Midplane"},"itemLocation":"","itemHeight":10,"itemLocationRoom":""}],"location":"","UUID":"A18C32CF-851B-44C4-B177-9A2A1C481142","nodeList":[],"placeholderList":[],"switchList":[],"room":""}
|
49
|
+
+ Response 400
|
50
|
+
+ Response 401
|
51
|
+
+ Response 404
|
52
|
+
+ Response 409
|
53
|
+
+ Response 500
|
54
|
+
|
55
|
+
# GET /cabinet/A18C32CF-851B-44C4-B177-9A2A1C481142?includeAttributes=storageList,height
|
56
|
+
|
57
|
+
+ Response 200 (application/json)
|
58
|
+
{"storageList":[],"height":42,"chassisList":[{}],"nodeList":[],"switchList":[]}
|
59
|
+
+ Response 400
|
60
|
+
+ Response 401
|
61
|
+
+ Response 404
|
62
|
+
+ Response 409
|
63
|
+
+ Response 500
|
@@ -0,0 +1,69 @@
|
|
1
|
+
FORMAT: 1A
|
2
|
+
|
3
|
+
# Canisters
|
4
|
+
|
5
|
+
# GET /canisters
|
6
|
+
|
7
|
+
+ Response 200 (application/json)
|
8
|
+
{ "canisterList": [ { "manufacturerId": "20301", "location": { "lowestRackUnit": 0, "location": "No Location Configured", "rack": "", "room": "" }, "serialNumber": "G22L006", "driveBays": 0, "macAddress": "", "lanOverUsb": "enabled", "type": "ITE", "leds": [ { "color": "Amber", "location": "FrontPanel", "name": "Fault", "state": "Off" }, { "color": "Blue", "location": "FrontPanel", "name": "Identification", "state": "Off" }, { "color": "Amber", "location": "FrontPanel", "name": "Check Log", "state": "On" }, { "color": "Green", "location": "FrontPanel", "name": "Power", "state": "On" }, { "color": "Green", "location": "Planar", "name": "BMC Heartbeat", "state": "Blinking" }, { "color": "Amber", "location": "FrontPanel", "name": "Controller Fault", "state": "Off" }, { "color": "Amber", "location": "FrontPanel", "name": "Internal Fault", "state": "Off" }, { "color": "Yellow", "location": "Planar", "name": "IMM Fault", "state": "Off" } ], "description": "Device data missing", "errorFields": [ { "Memory": "FETCH_FAILED" }, { "RackCPU": "FETCH_FAILED" }, { "BootMode": "FETCH_FAILED" }, { "FlashDimm": "FETCH_FAILED" }, { "VnicMode": "FETCH_FAILED" }, { "IOCompatibilityData": "FETCH_FAILED" } ], "ipInterfaces": [ { "IPv4enabled": true, "IPv4DHCPmode": "STATIC_ONLY", "IPv6enabled": true, "IPv6DHCPenabled": true, "IPv4assignments": [ { "id": 0, "subnet": "255.255.252.0", "gateway": "0.0.0.0", "address": "10.240.72.69", "type": "INUSE" } ], "IPv6assignments": [ { "id": 0, "scope": "Global", "gateway": "0:0:0:0:0:0:0:0", "source": "Static", "address": "fd6d:8bc2:3ad4:0:5ef3:fcff:fe6f:bcc", "prefix": 64, "type": "INUSE" }, { "id": 0, "scope": "Global", "gateway": "0:0:0:0:0:0:0:0", "source": "Stateless", "address": "fd55:faaf:e1ab:20fc:5ef3:fcff:fe6f:bcc", "prefix": 64, "type": "INUSE" }, { "id": 0, "scope": "Unknown", "gateway": "0:0:0:0:0:0:0:0", "source": "Unknown", "address": "fe80:0:0:0:5ef3:fcff:fe6f:bcc", "prefix": 64, "type": "UNKNOWN" } ], "name": "eth0", "IPv6statelessEnabled": true, "label": "unknown", "IPv6staticEnabled": true } ], "firmware": [ { "status": "Inactive", "name": "UEFI Firmware/BIOS", "role": "Backup", "date": "", "type": "UEFI", "build": "0000000", "version": "0.00" }, { "status": "Inactive", "name": "UEFI Backup Firmware/BIOS", "role": "Backup", "date": "", "type": "UEFI-Backup", "build": "0000000", "version": "0.00" }, { "status": "Active", "name": "DSA Diagnostic Software", "role": "Primary", "date": "", "type": "DSA", "build": "*", "version": "65535.65535" }, { "status": "Active", "name": "IMM2 Firmware", "role": "Primary", "date": "2013-10-08T00:00:00Z", "type": "IMM2", "build": "1AOO43S", "version": "2.65" }, { "status": "Inactive", "name": "IMM2 Backup Firmware", "role": "Backup", "date": "2013-07-29T00:00:00Z", "type": "IMM2-Backup", "build": "1AOO41X", "version": "2.60" } ], "bladeState": 1, "activationKeys": [], "hostname": "IMM2-5cf3fc6f0bcc", "parent": { "uuid": "B8106786386411E19AE3EF8BCD385476", "uri": "node/B8106786386411E19AE3EF8BCD385476" }, "FRU": "90Y7691", "uri": "canister/457784225BA511E18290B4F27BD253A5", "vnicMode": "disabled", "ipv6ServiceAddress": "", "powerStatus": 8, "ipv6Addresses": [ "fd6d:8bc2:3ad4:0:5ef3:fcff:fe6f:bcc", "fd55:faaf:e1ab:20fc:5ef3:fcff:fe6f:bcc", "fe80:0:0:0:5ef3:fcff:fe6f:bcc" ], "serviceHostName": "", "manufacturer": "IBM", "slots": [ 5 ], "vpdID": "3", "uuid": "457784225BA511E18290B4F27BD253A5", "memoryModules": [], "fruSerialNumber": "YM11BG22D03F", "model": "A49", "contact": "No Contact Configured", "dataHandle": 1475537856727, "ipv4Addresses": [ "10.240.72.69", "169.254.95.118" ], "cmmDisplayName": "Node 05 - 01", "backedBy": "real", "name": "Storage ITE Mgm", "memorySlots": 2, "drives": [], "cmmHealthState": "Normal", "userDescription": "", "subSlots": [ 1 ], "ipv4ServiceAddress": "10.240.72.71", "partNumber": "90Y7627", "machineType": "4939", "domainName": "", "processors": [], "processorSlots": 1, "productId": "374", "posID": "384", "subType": "SRC", "productName": "PRODUCT DESCRIPTION STORAGE ITE PRODUCT DESCRIPTION STORAGE ITE PRODUCT DESCRIPTION STORAGE ITE" }, { "manufacturerId": "20301", "location": { "lowestRackUnit": 0, "location": "No Location Configured", "rack": "", "room": "" }, "serialNumber": "G22L006", "driveBays": 0, "macAddress": "", "lanOverUsb": "enabled", "type": "ITE", "leds": [ { "color": "Amber", "location": "FrontPanel", "name": "Fault", "state": "Off" }, { "color": "Blue", "location": "FrontPanel", "name": "Identification", "state": "Off" }, { "color": "Amber", "location": "FrontPanel", "name": "Check Log", "state": "On" }, { "color": "Green", "location": "FrontPanel", "name": "Power", "state": "On" }, { "color": "Green", "location": "Planar", "name": "BMC Heartbeat", "state": "Blinking" }, { "color": "Amber", "location": "FrontPanel", "name": "Controller Fault", "state": "Off" }, { "color": "Amber", "location": "FrontPanel", "name": "Internal Fault", "state": "Off" }, { "color": "Yellow", "location": "Planar", "name": "IMM Fault", "state": "Off" } ], "description": "Device data missing", "errorFields": [ { "Memory": "FETCH_FAILED" }, { "RackCPU": "FETCH_FAILED" }, { "BootMode": "FETCH_FAILED" }, { "FlashDimm": "FETCH_FAILED" }, { "VnicMode": "FETCH_FAILED" }, { "IOCompatibilityData": "NETWORK_FAIL" } ], "ipInterfaces": [ { "IPv4enabled": true, "IPv4DHCPmode": "STATIC_ONLY", "IPv6enabled": true, "IPv6DHCPenabled": true, "IPv4assignments": [ { "id": 0, "subnet": "255.255.252.0", "gateway": "0.0.0.0", "address": "10.240.72.70", "type": "INUSE" } ], "IPv6assignments": [ { "id": 0, "scope": "Global", "gateway": "0:0:0:0:0:0:0:0", "source": "Stateless", "address": "fd55:faaf:e1ab:20fc:5ef3:fcff:fe6f:c64", "prefix": 64, "type": "INUSE" }, { "id": 0, "scope": "Global", "gateway": "0:0:0:0:0:0:0:0", "source": "Static", "address": "fd6d:8bc2:3ad4:0:5ef3:fcff:fe6f:c64", "prefix": 64, "type": "INUSE" }, { "id": 0, "scope": "Unknown", "gateway": "0:0:0:0:0:0:0:0", "source": "Unknown", "address": "fe80:0:0:0:5ef3:fcff:fe6f:c64", "prefix": 64, "type": "UNKNOWN" } ], "name": "eth0", "IPv6statelessEnabled": true, "label": "unknown", "IPv6staticEnabled": true } ], "firmware": [ { "status": "Inactive", "name": "UEFI Firmware/BIOS", "role": "Backup", "date": "", "type": "UEFI", "build": "0000000", "version": "0.00" }, { "status": "Inactive", "name": "UEFI Backup Firmware/BIOS", "role": "Backup", "date": "", "type": "UEFI-Backup", "build": "0000000", "version": "0.00" }, { "status": "Active", "name": "DSA Diagnostic Software", "role": "Primary", "date": "", "type": "DSA", "build": "*", "version": "65535.65535" }, { "status": "Active", "name": "IMM2 Firmware", "role": "Primary", "date": "2013-10-08T00:00:00Z", "type": "IMM2", "build": "1AOO43S", "version": "2.65" }, { "status": "Inactive", "name": "IMM2 Backup Firmware", "role": "Backup", "date": "2013-07-29T00:00:00Z", "type": "IMM2-Backup", "build": "1AOO41X", "version": "2.60" } ], "bladeState": 1, "activationKeys": [], "hostname": "IMM2-5cf3fc6f0c64", "parent": { "uuid": "B8106786386411E19AE3EF8BCD385476", "uri": "node/B8106786386411E19AE3EF8BCD385476" }, "FRU": "90Y7691", "uri": "canister/E0D47B8A5BC511E1B5D1D13BF6351882", "vnicMode": "disabled", "ipv6ServiceAddress": "", "powerStatus": 8, "ipv6Addresses": [ "fd55:faaf:e1ab:20fc:5ef3:fcff:fe6f:c64", "fd6d:8bc2:3ad4:0:5ef3:fcff:fe6f:c64", "fe80:0:0:0:5ef3:fcff:fe6f:c64" ], "serviceHostName": "", "manufacturer": "IBM", "slots": [ 5 ], "vpdID": "3", "uuid": "E0D47B8A5BC511E1B5D1D13BF6351882", "memoryModules": [], "fruSerialNumber": "YM11BG22D042", "model": "A49", "contact": "No Contact Configured", "dataHandle": 1475537856456, "ipv4Addresses": [ "10.240.72.70", "169.254.95.118" ], "cmmDisplayName": "Node 05 - 02", "backedBy": "real", "name": "Storage ITE Mgm", "memorySlots": 2, "drives": [], "cmmHealthState": "Normal", "userDescription": "", "subSlots": [ 2 ], "ipv4ServiceAddress": "10.240.72.72", "partNumber": "90Y7627", "machineType": "4939", "domainName": "", "processors": [], "processorSlots": 1, "productId": "374", "posID": "384", "subType": "SRC", "productName": "PRODUCT DESCRIPTION STORAGE ITE PRODUCT DESCRIPTION STORAGE ITE PRODUCT DESCRIPTION STORAGE ITE" } ] }
|
9
|
+
|
10
|
+
+ Response 400
|
11
|
+
+ Response 401
|
12
|
+
+ Response 404
|
13
|
+
+ Response 409
|
14
|
+
+ Response 500
|
15
|
+
|
16
|
+
# GET /canisters?includeAttributes=memorySlots
|
17
|
+
|
18
|
+
+ Response 200 (application/json)
|
19
|
+
{ "canisterList": [ { "parent": { "uuid": "B8106786386411E19AE3EF8BCD385476", "uri": "node/B8106786386411E19AE3EF8BCD385476" }, "memorySlots": 2, "uuid": "457784225BA511E18290B4F27BD253A5", "uri": "canister/457784225BA511E18290B4F27BD253A5", "dataHandle": 1475537856727 }, { "parent": { "uuid": "B8106786386411E19AE3EF8BCD385476", "uri": "node/B8106786386411E19AE3EF8BCD385476" }, "memorySlots": 2, "uuid": "E0D47B8A5BC511E1B5D1D13BF6351882", "uri": "canister/E0D47B8A5BC511E1B5D1D13BF6351882", "dataHandle": 1475537856456 } ] }
|
20
|
+
|
21
|
+
+ Response 400
|
22
|
+
+ Response 401
|
23
|
+
+ Response 404
|
24
|
+
+ Response 409
|
25
|
+
+ Response 500
|
26
|
+
|
27
|
+
# GET /canisters?excludeAttributes=memorySlots
|
28
|
+
|
29
|
+
+ Response 200 (application/json)
|
30
|
+
{ "canisterList": [ { "model": "A49", "manufacturerId": "20301", "location": { "lowestRackUnit": 0, "location": "No Location Configured", "rack": "", "room": "" }, "serialNumber": "G22L006", "driveBays": 0, "macAddress": "", "type": "ITE", "lanOverUsb": "enabled", "contact": "No Contact Configured", "dataHandle": 1475537856727, "ipv4Addresses": [ "10.240.72.69", "169.254.95.118" ], "backedBy": "real", "cmmDisplayName": "Node 05 - 01", "leds": [ { "color": "Amber", "location": "FrontPanel", "name": "Fault", "state": "Off" }, { "color": "Blue", "location": "FrontPanel", "name": "Identification", "state": "Off" }, { "color": "Amber", "location": "FrontPanel", "name": "Check Log", "state": "On" }, { "color": "Green", "location": "FrontPanel", "name": "Power", "state": "On" }, { "color": "Green", "location": "Planar", "name": "BMC Heartbeat", "state": "Blinking" }, { "color": "Amber", "location": "FrontPanel", "name": "Controller Fault", "state": "Off" }, { "color": "Amber", "location": "FrontPanel", "name": "Internal Fault", "state": "Off" }, { "color": "Yellow", "location": "Planar", "name": "IMM Fault", "state": "Off" } ], "description": "Device data missing", "name": "Storage ITE Mgm", "errorFields": [ { "Memory": "FETCH_FAILED" }, { "RackCPU": "FETCH_FAILED" }, { "BootMode": "FETCH_FAILED" }, { "FlashDimm": "FETCH_FAILED" }, { "VnicMode": "FETCH_FAILED" }, { "IOCompatibilityData": "FETCH_FAILED" } ], "cmmHealthState": "Normal", "drives": [], "userDescription": "", "subSlots": [ 1 ], "ipv4ServiceAddress": "10.240.72.71", "partNumber": "90Y7627", "ipInterfaces": [ { "IPv4enabled": true, "IPv4DHCPmode": "STATIC_ONLY", "IPv6enabled": true, "IPv6DHCPenabled": true, "IPv4assignments": [ { "id": 0, "subnet": "255.255.252.0", "gateway": "0.0.0.0", "address": "10.240.72.69", "type": "INUSE" } ], "IPv6assignments": [ { "id": 0, "scope": "Global", "gateway": "0:0:0:0:0:0:0:0", "source": "Static", "address": "fd6d:8bc2:3ad4:0:5ef3:fcff:fe6f:bcc", "prefix": 64, "type": "INUSE" }, { "id": 0, "scope": "Global", "gateway": "0:0:0:0:0:0:0:0", "source": "Stateless", "address": "fd55:faaf:e1ab:20fc:5ef3:fcff:fe6f:bcc", "prefix": 64, "type": "INUSE" }, { "id": 0, "scope": "Unknown", "gateway": "0:0:0:0:0:0:0:0", "source": "Unknown", "address": "fe80:0:0:0:5ef3:fcff:fe6f:bcc", "prefix": 64, "type": "UNKNOWN" } ], "name": "eth0", "IPv6statelessEnabled": true, "label": "unknown", "IPv6staticEnabled": true } ], "firmware": [ { "status": "Inactive", "name": "UEFI Firmware/BIOS", "role": "Backup", "date": "", "type": "UEFI", "build": "0000000", "version": "0.00" }, { "status": "Inactive", "name": "UEFI Backup Firmware/BIOS", "role": "Backup", "date": "", "type": "UEFI-Backup", "build": "0000000", "version": "0.00" }, { "status": "Active", "name": "DSA Diagnostic Software", "role": "Primary", "date": "", "type": "DSA", "build": "*", "version": "65535.65535" }, { "status": "Active", "name": "IMM2 Firmware", "role": "Primary", "date": "2013-10-08T00:00:00Z", "type": "IMM2", "build": "1AOO43S", "version": "2.65" }, { "status": "Inactive", "name": "IMM2 Backup Firmware", "role": "Backup", "date": "2013-07-29T00:00:00Z", "type": "IMM2-Backup", "build": "1AOO41X", "version": "2.60" } ], "bladeState": 1, "machineType": "4939", "activationKeys": [], "parent": { "uuid": "B8106786386411E19AE3EF8BCD385476", "uri": "node/B8106786386411E19AE3EF8BCD385476" }, "hostname": "IMM2-5cf3fc6f0bcc", "domainName": "", "FRU": "90Y7691", "processors": [], "uri": "canister/457784225BA511E18290B4F27BD253A5", "processorSlots": 1, "vnicMode": "disabled", "productId": "374", "ipv6ServiceAddress": "", "powerStatus": 8, "ipv6Addresses": [ "fd6d:8bc2:3ad4:0:5ef3:fcff:fe6f:bcc", "fd55:faaf:e1ab:20fc:5ef3:fcff:fe6f:bcc", "fe80:0:0:0:5ef3:fcff:fe6f:bcc" ], "posID": "384", "slots": [ 5 ], "subType": "SRC", "manufacturer": "IBM", "serviceHostName": "", "vpdID": "3", "uuid": "457784225BA511E18290B4F27BD253A5", "productName": "PRODUCT DESCRIPTION STORAGE ITE PRODUCT DESCRIPTION STORAGE ITE PRODUCT DESCRIPTION STORAGE ITE", "memoryModules": [], "fruSerialNumber": "YM11BG22D03F" }, { "model": "A49", "manufacturerId": "20301", "location": { "lowestRackUnit": 0, "location": "No Location Configured", "rack": "", "room": "" }, "serialNumber": "G22L006", "driveBays": 0, "macAddress": "", "type": "ITE", "lanOverUsb": "enabled", "contact": "No Contact Configured", "dataHandle": 1475537856456, "ipv4Addresses": [ "10.240.72.70", "169.254.95.118" ], "backedBy": "real", "cmmDisplayName": "Node 05 - 02", "leds": [ { "color": "Amber", "location": "FrontPanel", "name": "Fault", "state": "Off" }, { "color": "Blue", "location": "FrontPanel", "name": "Identification", "state": "Off" }, { "color": "Amber", "location": "FrontPanel", "name": "Check Log", "state": "On" }, { "color": "Green", "location": "FrontPanel", "name": "Power", "state": "On" }, { "color": "Green", "location": "Planar", "name": "BMC Heartbeat", "state": "Blinking" }, { "color": "Amber", "location": "FrontPanel", "name": "Controller Fault", "state": "Off" }, { "color": "Amber", "location": "FrontPanel", "name": "Internal Fault", "state": "Off" }, { "color": "Yellow", "location": "Planar", "name": "IMM Fault", "state": "Off" } ], "description": "Device data missing", "name": "Storage ITE Mgm", "errorFields": [ { "Memory": "FETCH_FAILED" }, { "RackCPU": "FETCH_FAILED" }, { "BootMode": "FETCH_FAILED" }, { "FlashDimm": "FETCH_FAILED" }, { "VnicMode": "FETCH_FAILED" }, { "IOCompatibilityData": "NETWORK_FAIL" } ], "cmmHealthState": "Normal", "drives": [], "userDescription": "", "subSlots": [ 2 ], "ipv4ServiceAddress": "10.240.72.72", "partNumber": "90Y7627", "ipInterfaces": [ { "IPv4enabled": true, "IPv4DHCPmode": "STATIC_ONLY", "IPv6enabled": true, "IPv6DHCPenabled": true, "IPv4assignments": [ { "id": 0, "subnet": "255.255.252.0", "gateway": "0.0.0.0", "address": "10.240.72.70", "type": "INUSE" } ], "IPv6assignments": [ { "id": 0, "scope": "Global", "gateway": "0:0:0:0:0:0:0:0", "source": "Stateless", "address": "fd55:faaf:e1ab:20fc:5ef3:fcff:fe6f:c64", "prefix": 64, "type": "INUSE" }, { "id": 0, "scope": "Global", "gateway": "0:0:0:0:0:0:0:0", "source": "Static", "address": "fd6d:8bc2:3ad4:0:5ef3:fcff:fe6f:c64", "prefix": 64, "type": "INUSE" }, { "id": 0, "scope": "Unknown", "gateway": "0:0:0:0:0:0:0:0", "source": "Unknown", "address": "fe80:0:0:0:5ef3:fcff:fe6f:c64", "prefix": 64, "type": "UNKNOWN" } ], "name": "eth0", "IPv6statelessEnabled": true, "label": "unknown", "IPv6staticEnabled": true } ], "firmware": [ { "status": "Inactive", "name": "UEFI Firmware/BIOS", "role": "Backup", "date": "", "type": "UEFI", "build": "0000000", "version": "0.00" }, { "status": "Inactive", "name": "UEFI Backup Firmware/BIOS", "role": "Backup", "date": "", "type": "UEFI-Backup", "build": "0000000", "version": "0.00" }, { "status": "Active", "name": "DSA Diagnostic Software", "role": "Primary", "date": "", "type": "DSA", "build": "*", "version": "65535.65535" }, { "status": "Active", "name": "IMM2 Firmware", "role": "Primary", "date": "2013-10-08T00:00:00Z", "type": "IMM2", "build": "1AOO43S", "version": "2.65" }, { "status": "Inactive", "name": "IMM2 Backup Firmware", "role": "Backup", "date": "2013-07-29T00:00:00Z", "type": "IMM2-Backup", "build": "1AOO41X", "version": "2.60" } ], "bladeState": 1, "machineType": "4939", "activationKeys": [], "parent": { "uuid": "B8106786386411E19AE3EF8BCD385476", "uri": "node/B8106786386411E19AE3EF8BCD385476" }, "hostname": "IMM2-5cf3fc6f0c64", "domainName": "", "FRU": "90Y7691", "processors": [], "uri": "canister/E0D47B8A5BC511E1B5D1D13BF6351882", "processorSlots": 1, "vnicMode": "disabled", "productId": "374", "ipv6ServiceAddress": "", "powerStatus": 8, "ipv6Addresses": [ "fd55:faaf:e1ab:20fc:5ef3:fcff:fe6f:c64", "fd6d:8bc2:3ad4:0:5ef3:fcff:fe6f:c64", "fe80:0:0:0:5ef3:fcff:fe6f:c64" ], "posID": "384", "slots": [ 5 ], "subType": "SRC", "manufacturer": "IBM", "serviceHostName": "", "vpdID": "3", "uuid": "E0D47B8A5BC511E1B5D1D13BF6351882", "productName": "PRODUCT DESCRIPTION STORAGE ITE PRODUCT DESCRIPTION STORAGE ITE PRODUCT DESCRIPTION STORAGE ITE", "memoryModules": [], "fruSerialNumber": "YM11BG22D042" } ] }
|
31
|
+
|
32
|
+
+ Response 400
|
33
|
+
+ Response 401
|
34
|
+
+ Response 404
|
35
|
+
+ Response 409
|
36
|
+
+ Response 500
|
37
|
+
|
38
|
+
# GET /canisters/457784225BA511E18290B4F27BD253A5
|
39
|
+
|
40
|
+
+ Response 200 (application/json)
|
41
|
+
{ "manufacturerId": "20301", "location": { "lowestRackUnit": 0, "location": "No Location Configured", "rack": "", "room": "" }, "serialNumber": "G22L006", "driveBays": 0, "macAddress": "", "lanOverUsb": "enabled", "type": "ITE", "leds": [ { "color": "Amber", "location": "FrontPanel", "name": "Fault", "state": "Off" }, { "color": "Blue", "location": "FrontPanel", "name": "Identification", "state": "Off" }, { "color": "Amber", "location": "FrontPanel", "name": "Check Log", "state": "On" }, { "color": "Green", "location": "FrontPanel", "name": "Power", "state": "On" }, { "color": "Green", "location": "Planar", "name": "BMC Heartbeat", "state": "Blinking" }, { "color": "Amber", "location": "FrontPanel", "name": "Controller Fault", "state": "Off" }, { "color": "Amber", "location": "FrontPanel", "name": "Internal Fault", "state": "Off" }, { "color": "Yellow", "location": "Planar", "name": "IMM Fault", "state": "Off" } ], "description": "Device data missing", "errorFields": [ { "Memory": "FETCH_FAILED" }, { "RackCPU": "FETCH_FAILED" }, { "BootMode": "FETCH_FAILED" }, { "FlashDimm": "FETCH_FAILED" }, { "VnicMode": "FETCH_FAILED" }, { "IOCompatibilityData": "FETCH_FAILED" } ], "ipInterfaces": [ { "IPv4enabled": true, "IPv4DHCPmode": "STATIC_ONLY", "IPv6enabled": true, "IPv6DHCPenabled": true, "IPv4assignments": [ { "id": 0, "subnet": "255.255.252.0", "gateway": "0.0.0.0", "address": "10.240.72.69", "type": "INUSE" } ], "IPv6assignments": [ { "id": 0, "scope": "Global", "gateway": "0:0:0:0:0:0:0:0", "source": "Static", "address": "fd6d:8bc2:3ad4:0:5ef3:fcff:fe6f:bcc", "prefix": 64, "type": "INUSE" }, { "id": 0, "scope": "Global", "gateway": "0:0:0:0:0:0:0:0", "source": "Stateless", "address": "fd55:faaf:e1ab:20fc:5ef3:fcff:fe6f:bcc", "prefix": 64, "type": "INUSE" }, { "id": 0, "scope": "Unknown", "gateway": "0:0:0:0:0:0:0:0", "source": "Unknown", "address": "fe80:0:0:0:5ef3:fcff:fe6f:bcc", "prefix": 64, "type": "UNKNOWN" } ], "name": "eth0", "IPv6statelessEnabled": true, "label": "unknown", "IPv6staticEnabled": true } ], "firmware": [ { "status": "Inactive", "name": "UEFI Firmware/BIOS", "role": "Backup", "date": "", "type": "UEFI", "build": "0000000", "version": "0.00" }, { "status": "Inactive", "name": "UEFI Backup Firmware/BIOS", "role": "Backup", "date": "", "type": "UEFI-Backup", "build": "0000000", "version": "0.00" }, { "status": "Active", "name": "DSA Diagnostic Software", "role": "Primary", "date": "", "type": "DSA", "build": "*", "version": "65535.65535" }, { "status": "Active", "name": "IMM2 Firmware", "role": "Primary", "date": "2013-10-08T00:00:00Z", "type": "IMM2", "build": "1AOO43S", "version": "2.65" }, { "status": "Inactive", "name": "IMM2 Backup Firmware", "role": "Backup", "date": "2013-07-29T00:00:00Z", "type": "IMM2-Backup", "build": "1AOO41X", "version": "2.60" } ], "bladeState": 1, "activationKeys": [], "hostname": "IMM2-5cf3fc6f0bcc", "parent": { "uuid": "B8106786386411E19AE3EF8BCD385476", "uri": "node/B8106786386411E19AE3EF8BCD385476" }, "FRU": "90Y7691", "uri": "canister/457784225BA511E18290B4F27BD253A5", "vnicMode": "disabled", "ipv6ServiceAddress": "", "powerStatus": 8, "ipv6Addresses": [ "fd6d:8bc2:3ad4:0:5ef3:fcff:fe6f:bcc", "fd55:faaf:e1ab:20fc:5ef3:fcff:fe6f:bcc", "fe80:0:0:0:5ef3:fcff:fe6f:bcc" ], "serviceHostName": "", "manufacturer": "IBM", "slots": [ 5 ], "vpdID": "3", "uuid": "457784225BA511E18290B4F27BD253A5", "memoryModules": [], "fruSerialNumber": "YM11BG22D03F", "model": "A49", "contact": "No Contact Configured", "dataHandle": 1475537856727, "ipv4Addresses": [ "10.240.72.69", "169.254.95.118" ], "cmmDisplayName": "Node 05 - 01", "backedBy": "real", "name": "Storage ITE Mgm", "memorySlots": 2, "drives": [], "cmmHealthState": "Normal", "userDescription": "", "subSlots": [ 1 ], "ipv4ServiceAddress": "10.240.72.71", "partNumber": "90Y7627", "machineType": "4939", "domainName": "", "processors": [], "processorSlots": 1, "productId": "374", "posID": "384", "subType": "SRC", "productName": "PRODUCT DESCRIPTION STORAGE ITE PRODUCT DESCRIPTION STORAGE ITE PRODUCT DESCRIPTION STORAGE ITE" }
|
42
|
+
|
43
|
+
+ Response 400
|
44
|
+
+ Response 401
|
45
|
+
+ Response 404
|
46
|
+
+ Response 409
|
47
|
+
+ Response 500
|
48
|
+
|
49
|
+
# GET /canisters/457784225BA511E18290B4F27BD253A5?includeAttributes=memorySlots
|
50
|
+
|
51
|
+
+ Response 200 (application/json)
|
52
|
+
{ "parent": { "uuid": "B8106786386411E19AE3EF8BCD385476", "uri": "node/B8106786386411E19AE3EF8BCD385476" }, "memorySlots": 2, "uuid": "457784225BA511E18290B4F27BD253A5", "uri": "canister/457784225BA511E18290B4F27BD253A5", "dataHandle": 1475537856727 }
|
53
|
+
|
54
|
+
+ Response 400
|
55
|
+
+ Response 401
|
56
|
+
+ Response 404
|
57
|
+
+ Response 409
|
58
|
+
+ Response 500
|
59
|
+
|
60
|
+
# GET /canisters/457784225BA511E18290B4F27BD253A5?excludeAttributes=memorySlots
|
61
|
+
|
62
|
+
+ Response 200 (application/json)
|
63
|
+
{ "model": "A49", "manufacturerId": "20301", "location": { "lowestRackUnit": 0, "location": "No Location Configured", "rack": "", "room": "" }, "serialNumber": "G22L006", "driveBays": 0, "macAddress": "", "type": "ITE", "lanOverUsb": "enabled", "contact": "No Contact Configured", "dataHandle": 1475537856727, "ipv4Addresses": [ "10.240.72.69", "169.254.95.118" ], "backedBy": "real", "cmmDisplayName": "Node 05 - 01", "leds": [ { "color": "Amber", "location": "FrontPanel", "name": "Fault", "state": "Off" }, { "color": "Blue", "location": "FrontPanel", "name": "Identification", "state": "Off" }, { "color": "Amber", "location": "FrontPanel", "name": "Check Log", "state": "On" }, { "color": "Green", "location": "FrontPanel", "name": "Power", "state": "On" }, { "color": "Green", "location": "Planar", "name": "BMC Heartbeat", "state": "Blinking" }, { "color": "Amber", "location": "FrontPanel", "name": "Controller Fault", "state": "Off" }, { "color": "Amber", "location": "FrontPanel", "name": "Internal Fault", "state": "Off" }, { "color": "Yellow", "location": "Planar", "name": "IMM Fault", "state": "Off" } ], "description": "Device data missing", "name": "Storage ITE Mgm", "errorFields": [ { "Memory": "FETCH_FAILED" }, { "RackCPU": "FETCH_FAILED" }, { "BootMode": "FETCH_FAILED" }, { "FlashDimm": "FETCH_FAILED" }, { "VnicMode": "FETCH_FAILED" }, { "IOCompatibilityData": "FETCH_FAILED" } ], "cmmHealthState": "Normal", "drives": [], "userDescription": "", "subSlots": [ 1 ], "ipv4ServiceAddress": "10.240.72.71", "partNumber": "90Y7627", "ipInterfaces": [ { "IPv4enabled": true, "IPv4DHCPmode": "STATIC_ONLY", "IPv6enabled": true, "IPv6DHCPenabled": true, "IPv4assignments": [ { "id": 0, "subnet": "255.255.252.0", "gateway": "0.0.0.0", "address": "10.240.72.69", "type": "INUSE" } ], "IPv6assignments": [ { "id": 0, "scope": "Global", "gateway": "0:0:0:0:0:0:0:0", "source": "Static", "address": "fd6d:8bc2:3ad4:0:5ef3:fcff:fe6f:bcc", "prefix": 64, "type": "INUSE" }, { "id": 0, "scope": "Global", "gateway": "0:0:0:0:0:0:0:0", "source": "Stateless", "address": "fd55:faaf:e1ab:20fc:5ef3:fcff:fe6f:bcc", "prefix": 64, "type": "INUSE" }, { "id": 0, "scope": "Unknown", "gateway": "0:0:0:0:0:0:0:0", "source": "Unknown", "address": "fe80:0:0:0:5ef3:fcff:fe6f:bcc", "prefix": 64, "type": "UNKNOWN" } ], "name": "eth0", "IPv6statelessEnabled": true, "label": "unknown", "IPv6staticEnabled": true } ], "firmware": [ { "status": "Inactive", "name": "UEFI Firmware/BIOS", "role": "Backup", "date": "", "type": "UEFI", "build": "0000000", "version": "0.00" }, { "status": "Inactive", "name": "UEFI Backup Firmware/BIOS", "role": "Backup", "date": "", "type": "UEFI-Backup", "build": "0000000", "version": "0.00" }, { "status": "Active", "name": "DSA Diagnostic Software", "role": "Primary", "date": "", "type": "DSA", "build": "*", "version": "65535.65535" }, { "status": "Active", "name": "IMM2 Firmware", "role": "Primary", "date": "2013-10-08T00:00:00Z", "type": "IMM2", "build": "1AOO43S", "version": "2.65" }, { "status": "Inactive", "name": "IMM2 Backup Firmware", "role": "Backup", "date": "2013-07-29T00:00:00Z", "type": "IMM2-Backup", "build": "1AOO41X", "version": "2.60" } ], "bladeState": 1, "machineType": "4939", "activationKeys": [], "parent": { "uuid": "B8106786386411E19AE3EF8BCD385476", "uri": "node/B8106786386411E19AE3EF8BCD385476" }, "hostname": "IMM2-5cf3fc6f0bcc", "domainName": "", "FRU": "90Y7691", "processors": [], "uri": "canister/457784225BA511E18290B4F27BD253A5", "processorSlots": 1, "vnicMode": "disabled", "productId": "374", "ipv6ServiceAddress": "", "powerStatus": 8, "ipv6Addresses": [ "fd6d:8bc2:3ad4:0:5ef3:fcff:fe6f:bcc", "fd55:faaf:e1ab:20fc:5ef3:fcff:fe6f:bcc", "fe80:0:0:0:5ef3:fcff:fe6f:bcc" ], "posID": "384", "slots": [ 5 ], "subType": "SRC", "manufacturer": "IBM", "serviceHostName": "", "vpdID": "3", "uuid": "457784225BA511E18290B4F27BD253A5", "productName": "PRODUCT DESCRIPTION STORAGE ITE PRODUCT DESCRIPTION STORAGE ITE PRODUCT DESCRIPTION STORAGE ITE", "memoryModules": [], "fruSerialNumber": "YM11BG22D03F" }
|
64
|
+
|
65
|
+
+ Response 400
|
66
|
+
+ Response 401
|
67
|
+
+ Response 404
|
68
|
+
+ Response 409
|
69
|
+
+ Response 500
|
data/docs/apib/chassis.apib
CHANGED
@@ -5,1434 +5,71 @@ FORMAT: 1A
|
|
5
5
|
# GET /chassis
|
6
6
|
|
7
7
|
+ Response 200 (application/json)
|
8
|
-
{
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
"id": "LENOVO:CMM01:Y034BG17606E:01:15679",
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
"sensorValue": 26.5,
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
"fanMuxSlots": 2,
|
73
|
-
"fanSlots": 10,
|
74
|
-
"height": 10,
|
75
|
-
"hostname": "MM5CF3FC25DF43",
|
76
|
-
"isConnectionTrusted": "true",
|
77
|
-
"leds": [{
|
78
|
-
"color": "Blue",
|
79
|
-
"location": "FrontPanel",
|
80
|
-
"name": "Location",
|
81
|
-
"state": "Off"
|
82
|
-
}, {
|
83
|
-
"color": "Amber",
|
84
|
-
"location": "FrontPanel",
|
85
|
-
"name": "FAULT",
|
86
|
-
"state": "Off"
|
87
|
-
}, {
|
88
|
-
"color": "Amber",
|
89
|
-
"location": "FrontPanel",
|
90
|
-
"name": "Information",
|
91
|
-
"state": "On"
|
92
|
-
}],
|
93
|
-
"location": {
|
94
|
-
"lowestRackUnit": 0,
|
95
|
-
"location": "No Location Configured",
|
96
|
-
"rack": "",
|
97
|
-
"room": ""
|
98
|
-
},
|
99
|
-
"manufacturer": "20301",
|
100
|
-
"manufacturerId": "20301",
|
101
|
-
"mgmtProcIPaddress": "fd55:faaf:e1ab:2021:5ef3:fcff:fe25:df43",
|
102
|
-
"model": "HC1",
|
103
|
-
"powerAllocation": {
|
104
|
-
"midPlaneCardMaximumAllocatedPower": 38,
|
105
|
-
"midPlaneCardMinimumAllocatedPower": 38,
|
106
|
-
"remainingOutputPower": 5467,
|
107
|
-
"totalInputPower": 10891,
|
108
|
-
"totalOutputPower": 7515,
|
109
|
-
"allocatedOutputPower": 2048
|
110
|
-
},
|
111
|
-
"powerSupplySlots": 6,
|
112
|
-
"serialNumber": "23FBX24",
|
113
|
-
"status": {
|
114
|
-
"message": "MANAGED",
|
115
|
-
"name": "MANAGED"
|
116
|
-
},
|
117
|
-
"switchSlots": 4,
|
118
|
-
"tlsVersion": {
|
119
|
-
"possibleValues": ["SSL_30",
|
120
|
-
"TLS_12_Server_Client",
|
121
|
-
"TLS_12_Server"
|
122
|
-
],
|
123
|
-
"currentValue": "SSL_30"
|
124
|
-
},
|
125
|
-
"type": "Chassis",
|
126
|
-
"uri": "chassis/ED895B48D50D4E34B5DAF1F697B1FAC5",
|
127
|
-
"uuid": "ED895B48D50D4E34B5DAF1F697B1FAC5",
|
128
|
-
"vpdID": "14",
|
129
|
-
"name": "SN#Y034BG17606E",
|
130
|
-
"ledCardSlots": 1,
|
131
|
-
"SecurityPolicy": {
|
132
|
-
"cmmPolicyLevel": "SECURE",
|
133
|
-
"cmmPolicyState": "ACTIVE"
|
134
|
-
},
|
135
|
-
"userDescription": "",
|
136
|
-
"partNumber": "88Y6660",
|
137
|
-
"excludedHealthState": "Critical",
|
138
|
-
"machineType": "8721",
|
139
|
-
"mmSlots": 2,
|
140
|
-
"managerName": "UNKNOWN",
|
141
|
-
"domainName": "",
|
142
|
-
"managerUuid": "UNKNOWN",
|
143
|
-
"productId": "336",
|
144
|
-
"nist": {
|
145
|
-
"possibleValues": ["Compatibility",
|
146
|
-
"Nist_800_131A_Strict",
|
147
|
-
"Nist_800_131A_Custom"
|
148
|
-
],
|
149
|
-
"currentValue": "Compatibility"
|
150
|
-
},
|
151
|
-
"posID": "336",
|
152
|
-
"overallHealthState": "Critical",
|
153
|
-
"complex": [{
|
154
|
-
"partition": [{
|
155
|
-
"nodes": [{
|
156
|
-
"accessState": "Partial",
|
157
|
-
"manufacturerId": "20301",
|
158
|
-
"arch": "x86",
|
159
|
-
"addinCardSlots": 0,
|
160
|
-
"location": {
|
161
|
-
"lowestRackUnit": 0,
|
162
|
-
"location": "",
|
163
|
-
"rack": "",
|
164
|
-
"room": ""
|
165
|
-
},
|
166
|
-
"serialNumber": "23YWAP6",
|
167
|
-
"driveBays": 8,
|
168
|
-
"macAddress": "6C:AE:8B:6F:0D:39,6C:AE:8B:6F:0D:38",
|
169
|
-
"lanOverUsb": "disabled",
|
170
|
-
"type": "ITE",
|
171
|
-
"onboardPciDevices": [],
|
172
|
-
"leds": [{
|
173
|
-
"location": "Unknown",
|
174
|
-
"color": "Unknown",
|
175
|
-
"name": "",
|
176
|
-
"state": "Off"
|
177
|
-
}, {
|
178
|
-
"location": "Planar",
|
179
|
-
"color": "Yellow",
|
180
|
-
"name": "DC Fault",
|
181
|
-
"state": "Off"
|
182
|
-
}, {
|
183
|
-
"location": "Planar",
|
184
|
-
"color": "Yellow",
|
185
|
-
"name": "SAS BP 1 Error",
|
186
|
-
"state": "Off"
|
187
|
-
}, {
|
188
|
-
"location": "Planar",
|
189
|
-
"color": "Yellow",
|
190
|
-
"name": "SAS BP 2 Error",
|
191
|
-
"state": "Off"
|
192
|
-
}, {
|
193
|
-
"location": "Planar",
|
194
|
-
"color": "Yellow",
|
195
|
-
"name": "CMOS Batt Errror",
|
196
|
-
"state": "Off"
|
197
|
-
}],
|
198
|
-
"description": "Flex System x880 X6 + 10G",
|
199
|
-
"errorFields": [{
|
200
|
-
"HostAndDomain": "NO_CONNECTOR"
|
201
|
-
}, {
|
202
|
-
"PhysicalAndLocation": "NO_CONNECTOR"
|
203
|
-
}, {
|
204
|
-
"Memory": "NO_CONNECTOR"
|
205
|
-
}, {
|
206
|
-
"ServerOnboardPciDevices": "NO_CONNECTOR"
|
207
|
-
}, {
|
208
|
-
"BootMode": "NO_CONNECTOR"
|
209
|
-
}, {
|
210
|
-
"Memory": "NO_CONNECTOR"
|
211
|
-
}, {
|
212
|
-
"BootOrder": "NO_CONNECTOR"
|
213
|
-
}, {
|
214
|
-
"FlashDimm": "NO_CONNECTOR"
|
215
|
-
}, {
|
216
|
-
"HostMacAddress": "NO_CONNECTOR"
|
217
|
-
}, {
|
218
|
-
"VnicMode": "NO_CONNECTOR"
|
219
|
-
}, {
|
220
|
-
"RemotePresenceEnabled": "NO_CONNECTOR"
|
221
|
-
}, {
|
222
|
-
"ActivationKey": "NO_CONNECTOR"
|
223
|
-
}, {
|
224
|
-
"LanOverUsbMode": "FETCH_FAILED"
|
225
|
-
}, {
|
226
|
-
"ServerMetrics": "NO_CONNECTOR"
|
227
|
-
}, {
|
228
|
-
"ScalableComplexPartitionUUIDData": "NO_CONNECTOR"
|
229
|
-
}],
|
230
|
-
"expansionCards": [],
|
231
|
-
"mgmtProcIPaddress": "fd55:faaf:e1ab:2021:6eae:8bff:fe6f:d39",
|
232
|
-
"ipInterfaces": [{
|
233
|
-
"IPv4enabled": true,
|
234
|
-
"IPv4DHCPmode": "DHCP_THEN_STATIC",
|
235
|
-
"IPv6enabled": true,
|
236
|
-
"IPv6assignments": [{
|
237
|
-
"id": 16,
|
238
|
-
"scope": "Global",
|
239
|
-
"source": "Stateless",
|
240
|
-
"gateway": "0:0:0:0:0:0:0:0",
|
241
|
-
"address": "fd55:faaf:e1ab:2021:6eae:8bff:fe6f:d39",
|
242
|
-
"prefix": 64,
|
243
|
-
"type": "INUSE"
|
244
|
-
}, {
|
245
|
-
"id": 1,
|
246
|
-
"scope": "LinkLocal",
|
247
|
-
"source": "Other",
|
248
|
-
"gateway": "fe80:0:0:0:202:ff:fe02:2",
|
249
|
-
"address": "fe80:0:0:0:6eae:8bff:fe6f:d39",
|
250
|
-
"prefix": 64,
|
251
|
-
"type": "INUSE"
|
252
|
-
}, {
|
253
|
-
"id": 3,
|
254
|
-
"scope": "Global",
|
255
|
-
"source": "Static",
|
256
|
-
"gateway": "0:0:0:0:0:0:0:0",
|
257
|
-
"address": "0:0:0:0:0:0:0:0",
|
258
|
-
"prefix": 64,
|
259
|
-
"type": "CONFIGURED"
|
260
|
-
}],
|
261
|
-
"IPv4assignments": [{
|
262
|
-
"id": 2,
|
263
|
-
"subnet": "255.255.248.0",
|
264
|
-
"gateway": "10.240.80.1",
|
265
|
-
"address": "10.240.81.176",
|
266
|
-
"type": "CONFIGURED"
|
267
|
-
}, {
|
268
|
-
"id": 64,
|
269
|
-
"subnet": "255.255.240.0",
|
270
|
-
"gateway": "10.243.0.1",
|
271
|
-
"address": "10.243.12.118",
|
272
|
-
"type": "INUSE"
|
273
|
-
}],
|
274
|
-
"IPv6DHCPenabled": true,
|
275
|
-
"name": "eth1",
|
276
|
-
"IPv6statelessEnabled": false,
|
277
|
-
"label": "eth1",
|
278
|
-
"IPv6staticEnabled": false
|
279
|
-
}],
|
280
|
-
"firmware": [{
|
281
|
-
"status": "Active",
|
282
|
-
"name": "MP",
|
283
|
-
"role": "Primary",
|
284
|
-
"build": "1AOO89M",
|
285
|
-
"type": "MP",
|
286
|
-
"date": "2014-09-08T04:00:00Z",
|
287
|
-
"version": "9.00"
|
288
|
-
}, {
|
289
|
-
"status": "Not Active",
|
290
|
-
"name": "MP",
|
291
|
-
"role": "Backup",
|
292
|
-
"build": "1AOO89M",
|
293
|
-
"type": "MP",
|
294
|
-
"date": "2014-09-08T04:00:00Z",
|
295
|
-
"version": "9.00"
|
296
|
-
}, {
|
297
|
-
"status": "Active",
|
298
|
-
"name": "UEFI",
|
299
|
-
"role": "Primary",
|
300
|
-
"build": "N2E111AUS",
|
301
|
-
"type": "UEFI",
|
302
|
-
"date": "2014-07-31T04:00:00Z",
|
303
|
-
"version": "1.00"
|
304
|
-
}, {
|
305
|
-
"status": "Not Active",
|
306
|
-
"name": "UEFI",
|
307
|
-
"role": "Backup",
|
308
|
-
"build": "N2E111AUS",
|
309
|
-
"type": "UEFI",
|
310
|
-
"date": "2014-07-31T04:00:00Z",
|
311
|
-
"version": "1.00"
|
312
|
-
}, {
|
313
|
-
"status": "Active",
|
314
|
-
"name": "DSA",
|
315
|
-
"role": "Primary",
|
316
|
-
"build": "DSYTD1H",
|
317
|
-
"type": "DSA",
|
318
|
-
"date": "2013-10-14T04:00:00Z",
|
319
|
-
"version": "9.50"
|
320
|
-
}],
|
321
|
-
"bladeState": 1,
|
322
|
-
"activationKeys": [],
|
323
|
-
"status": {
|
324
|
-
"message": "managed",
|
325
|
-
"name": "MANAGED"
|
326
|
-
},
|
327
|
-
"bladeState_health": "GOOD",
|
328
|
-
"hostname": "",
|
329
|
-
"parent": {
|
330
|
-
"uuid": "ED895B48D50D4E34B5DAF1F697B1FAC5",
|
331
|
-
"uri": "chassis/ED895B48D50D4E34B5DAF1F697B1FAC5"
|
332
|
-
},
|
333
|
-
"powerSupplies": [],
|
334
|
-
"parentComplexID": "88DA",
|
335
|
-
"FRU": "47C2239",
|
336
|
-
"uri": "node/DA5036596FE011E3A5736CAE8B7034F0",
|
337
|
-
"vnicMode": "disabled",
|
338
|
-
"powerAllocation": {
|
339
|
-
"maximumAllocatedPower": 140,
|
340
|
-
"minimumAllocatedPower": 254
|
341
|
-
},
|
342
|
-
"bootOrder": {
|
343
|
-
"bootOrderList": [],
|
344
|
-
"uri": "node/DA5036596FE011E3A5736CAE8B7034F0/bootOrder"
|
345
|
-
},
|
346
|
-
"powerStatus": 5,
|
347
|
-
"expansionProductType": "",
|
348
|
-
"expansionProducts": [],
|
349
|
-
"ipv6Addresses": ["fd55:faaf:e1ab:2021:6eae:8bff:fe6f:d39",
|
350
|
-
"fe80:0:0:0:6eae:8bff:fe6f:d39"
|
351
|
-
],
|
352
|
-
"manufacturer": "Lenovo",
|
353
|
-
"slots": [3,
|
354
|
-
4
|
355
|
-
],
|
356
|
-
"addinCards": [],
|
357
|
-
"vpdID": "30",
|
358
|
-
"raidSettings": [],
|
359
|
-
"parentPartitionUUID": "",
|
360
|
-
"isConnectionTrusted": "false",
|
361
|
-
"uuid": "DA5036596FE011E3A5736CAE8B7034F0",
|
362
|
-
"memoryModules": [],
|
363
|
-
"tlsVersion": {
|
364
|
-
"possibleValues": ["TLS_10",
|
365
|
-
"TLS_11",
|
366
|
-
"TLS_12"
|
367
|
-
],
|
368
|
-
"currentValue": "Unknown"
|
369
|
-
},
|
370
|
-
"secureBootMode": {
|
371
|
-
"possibleValues": [],
|
372
|
-
"currentValue": ""
|
373
|
-
},
|
374
|
-
"partitionEnabled": false,
|
375
|
-
"fruSerialNumber": "YG31BG3B600L",
|
376
|
-
"model": "AC1",
|
377
|
-
"expansionCardSlots": 4,
|
378
|
-
"isScalable": true,
|
379
|
-
"hostMacAddresses": "",
|
380
|
-
"isITME": false,
|
381
|
-
"contact": "",
|
382
|
-
"dataHandle": 1427332579349,
|
383
|
-
"ipv4Addresses": ["10.243.12.118",
|
384
|
-
"10.240.81.176"
|
385
|
-
],
|
386
|
-
"backedBy": "real",
|
387
|
-
"cmmDisplayName": "Node 03",
|
388
|
-
"complexID": 35034,
|
389
|
-
"name": "Newport-dev1",
|
390
|
-
"memorySlots": 48,
|
391
|
-
"drives": [],
|
392
|
-
"cmmHealthState": "Normal",
|
393
|
-
"userDescription": "",
|
394
|
-
"subSlots": [],
|
395
|
-
"partNumber": "00AN678",
|
396
|
-
"excludedHealthState": "Critical",
|
397
|
-
"bladeState_string": "Newport-dev1",
|
398
|
-
"machineType": "7903",
|
399
|
-
"isRemotePresenceEnabled": false,
|
400
|
-
"pciDevices": [],
|
401
|
-
"domainName": "",
|
402
|
-
"processors": [],
|
403
|
-
"processorSlots": 2,
|
404
|
-
"pciCapabilities": [],
|
405
|
-
"hasOS": false,
|
406
|
-
"productId": "448",
|
407
|
-
"bootMode": {
|
408
|
-
"possibleValues": [],
|
409
|
-
"currentValue": ""
|
410
|
-
},
|
411
|
-
"embeddedHypervisorPresence": false,
|
412
|
-
"ports": [],
|
413
|
-
"nist": {
|
414
|
-
"possibleValues": ["Compatibility",
|
415
|
-
"Nist_800_131A_Strict"
|
416
|
-
],
|
417
|
-
"currentValue": "Unknown"
|
418
|
-
},
|
419
|
-
"posID": "256",
|
420
|
-
"overallHealthState": "Critical",
|
421
|
-
"subType": "Nantahala",
|
422
|
-
"partitionID": 1,
|
423
|
-
"flashStorage": [],
|
424
|
-
"dnsHostnames": ["10.243.12.118",
|
425
|
-
"10.240.81.176",
|
426
|
-
"fd55:faaf:e1ab:2021:6eae:8bff:fe6f:d39"
|
427
|
-
],
|
428
|
-
"productName": "Flex System x880 X6 Compute Node with embedded 10Gb Virtual Fabric"
|
429
|
-
}],
|
430
|
-
"slots": [3,
|
431
|
-
4
|
432
|
-
],
|
433
|
-
"partitionID": 1,
|
434
|
-
"uuid": ""
|
435
|
-
}],
|
436
|
-
"orphanNodes": [],
|
437
|
-
"slots": [3,
|
438
|
-
4
|
439
|
-
],
|
440
|
-
"complexID": "88DA",
|
441
|
-
"partitionCount": 1,
|
442
|
-
"uuid": "DA5036596FE011E3A5736CAE8B7034F0",
|
443
|
-
"nodeCount": 1
|
444
|
-
}, {
|
445
|
-
"partition": [{
|
446
|
-
"nodes": [{
|
447
|
-
"accessState": "Partial",
|
448
|
-
"manufacturerId": "20301",
|
449
|
-
"arch": "x86",
|
450
|
-
"addinCardSlots": 0,
|
451
|
-
"location": {
|
452
|
-
"lowestRackUnit": 0,
|
453
|
-
"location": "",
|
454
|
-
"rack": "",
|
455
|
-
"room": ""
|
456
|
-
},
|
457
|
-
"serialNumber": "23YWAN5",
|
458
|
-
"driveBays": 8,
|
459
|
-
"macAddress": "6C:AE:8B:6F:0E:05,6C:AE:8B:6F:0E:04",
|
460
|
-
"lanOverUsb": "disabled",
|
461
|
-
"type": "ITE",
|
462
|
-
"onboardPciDevices": [],
|
463
|
-
"leds": [{
|
464
|
-
"location": "Unknown",
|
465
|
-
"color": "Unknown",
|
466
|
-
"name": "",
|
467
|
-
"state": "Off"
|
468
|
-
}, {
|
469
|
-
"location": "Planar",
|
470
|
-
"color": "Yellow",
|
471
|
-
"name": "DC Fault",
|
472
|
-
"state": "Off"
|
473
|
-
}, {
|
474
|
-
"location": "Planar",
|
475
|
-
"color": "Yellow",
|
476
|
-
"name": "SAS BP 1 Error",
|
477
|
-
"state": "Off"
|
478
|
-
}, {
|
479
|
-
"location": "Planar",
|
480
|
-
"color": "Yellow",
|
481
|
-
"name": "SAS BP 2 Error",
|
482
|
-
"state": "Off"
|
483
|
-
}, {
|
484
|
-
"location": "Planar",
|
485
|
-
"color": "Yellow",
|
486
|
-
"name": "CMOS Batt Errror",
|
487
|
-
"state": "Off"
|
488
|
-
}],
|
489
|
-
"description": "Flex System x880 X6 + 10G",
|
490
|
-
"errorFields": [{
|
491
|
-
"HostAndDomain": "NO_CONNECTOR"
|
492
|
-
}, {
|
493
|
-
"PhysicalAndLocation": "NO_CONNECTOR"
|
494
|
-
}, {
|
495
|
-
"Memory": "NO_CONNECTOR"
|
496
|
-
}, {
|
497
|
-
"ServerOnboardPciDevices": "NO_CONNECTOR"
|
498
|
-
}, {
|
499
|
-
"BootMode": "NO_CONNECTOR"
|
500
|
-
}, {
|
501
|
-
"Memory": "NO_CONNECTOR"
|
502
|
-
}, {
|
503
|
-
"BootOrder": "NO_CONNECTOR"
|
504
|
-
}, {
|
505
|
-
"FlashDimm": "NO_CONNECTOR"
|
506
|
-
}, {
|
507
|
-
"HostMacAddress": "NO_CONNECTOR"
|
508
|
-
}, {
|
509
|
-
"VnicMode": "NO_CONNECTOR"
|
510
|
-
}, {
|
511
|
-
"RemotePresenceEnabled": "NO_CONNECTOR"
|
512
|
-
}, {
|
513
|
-
"ActivationKey": "NO_CONNECTOR"
|
514
|
-
}, {
|
515
|
-
"LanOverUsbMode": "FETCH_FAILED"
|
516
|
-
}, {
|
517
|
-
"ServerMetrics": "NO_CONNECTOR"
|
518
|
-
}, {
|
519
|
-
"ScalableComplexPartitionUUIDData": "NO_CONNECTOR"
|
520
|
-
}],
|
521
|
-
"expansionCards": [],
|
522
|
-
"mgmtProcIPaddress": "fd55:faaf:e1ab:2021:6eae:8bff:fe6f:e05",
|
523
|
-
"ipInterfaces": [{
|
524
|
-
"IPv4enabled": true,
|
525
|
-
"IPv4DHCPmode": "DHCP_ONLY",
|
526
|
-
"IPv6enabled": true,
|
527
|
-
"IPv6assignments": [{
|
528
|
-
"id": 16,
|
529
|
-
"scope": "Global",
|
530
|
-
"source": "Stateless",
|
531
|
-
"gateway": "0:0:0:0:0:0:0:0",
|
532
|
-
"address": "fd55:faaf:e1ab:2021:6eae:8bff:fe6f:e05",
|
533
|
-
"prefix": 64,
|
534
|
-
"type": "INUSE"
|
535
|
-
}, {
|
536
|
-
"id": 1,
|
537
|
-
"scope": "LinkLocal",
|
538
|
-
"source": "Other",
|
539
|
-
"gateway": "fe80:0:0:0:202:ff:fe02:2",
|
540
|
-
"address": "fe80:0:0:0:6eae:8bff:fe6f:e05",
|
541
|
-
"prefix": 64,
|
542
|
-
"type": "INUSE"
|
543
|
-
}, {
|
544
|
-
"id": 3,
|
545
|
-
"scope": "Global",
|
546
|
-
"source": "Static",
|
547
|
-
"gateway": "0:0:0:0:0:0:0:0",
|
548
|
-
"address": "0:0:0:0:0:0:0:0",
|
549
|
-
"prefix": 64,
|
550
|
-
"type": "CONFIGURED"
|
551
|
-
}],
|
552
|
-
"IPv4assignments": [{
|
553
|
-
"id": 2,
|
554
|
-
"subnet": "255.255.248.0",
|
555
|
-
"gateway": "10.240.80.1",
|
556
|
-
"address": "10.240.86.235",
|
557
|
-
"type": "CONFIGURED"
|
558
|
-
}, {
|
559
|
-
"id": 64,
|
560
|
-
"subnet": "255.255.240.0",
|
561
|
-
"gateway": "10.243.0.1",
|
562
|
-
"address": "10.243.15.207",
|
563
|
-
"type": "INUSE"
|
564
|
-
}],
|
565
|
-
"IPv6DHCPenabled": true,
|
566
|
-
"name": "eth1",
|
567
|
-
"IPv6statelessEnabled": false,
|
568
|
-
"label": "eth1",
|
569
|
-
"IPv6staticEnabled": false
|
570
|
-
}],
|
571
|
-
"firmware": [{
|
572
|
-
"status": "Active",
|
573
|
-
"name": "MP",
|
574
|
-
"role": "Primary",
|
575
|
-
"build": "1AOO89M",
|
576
|
-
"type": "MP",
|
577
|
-
"date": "2014-09-08T04:00:00Z",
|
578
|
-
"version": "9.00"
|
579
|
-
}, {
|
580
|
-
"status": "Not Active",
|
581
|
-
"name": "MP",
|
582
|
-
"role": "Backup",
|
583
|
-
"build": "1AOO89M",
|
584
|
-
"type": "MP",
|
585
|
-
"date": "2014-09-08T04:00:00Z",
|
586
|
-
"version": "9.00"
|
587
|
-
}, {
|
588
|
-
"status": "Active",
|
589
|
-
"name": "UEFI",
|
590
|
-
"role": "Primary",
|
591
|
-
"build": "N2E111AUS",
|
592
|
-
"type": "UEFI",
|
593
|
-
"date": "2014-07-31T04:00:00Z",
|
594
|
-
"version": "1.00"
|
595
|
-
}, {
|
596
|
-
"status": "Not Active",
|
597
|
-
"name": "UEFI",
|
598
|
-
"role": "Backup",
|
599
|
-
"build": "N2E111AUS",
|
600
|
-
"type": "UEFI",
|
601
|
-
"date": "2014-07-31T04:00:00Z",
|
602
|
-
"version": "1.00"
|
603
|
-
}, {
|
604
|
-
"status": "Active",
|
605
|
-
"name": "DSA",
|
606
|
-
"role": "Primary",
|
607
|
-
"build": "DSYTD1H",
|
608
|
-
"type": "DSA",
|
609
|
-
"date": "2013-10-14T04:00:00Z",
|
610
|
-
"version": "9.50"
|
611
|
-
}],
|
612
|
-
"bladeState": 1,
|
613
|
-
"activationKeys": [],
|
614
|
-
"status": {
|
615
|
-
"message": "managed",
|
616
|
-
"name": "MANAGED"
|
617
|
-
},
|
618
|
-
"bladeState_health": "GOOD",
|
619
|
-
"hostname": "",
|
620
|
-
"parent": {
|
621
|
-
"uuid": "ED895B48D50D4E34B5DAF1F697B1FAC5",
|
622
|
-
"uri": "chassis/ED895B48D50D4E34B5DAF1F697B1FAC5"
|
623
|
-
},
|
624
|
-
"powerSupplies": [],
|
625
|
-
"parentComplexID": "0640",
|
626
|
-
"FRU": "47C2239",
|
627
|
-
"uri": "node/BDB64B266F3911E391406CAE8B703820",
|
628
|
-
"vnicMode": "disabled",
|
629
|
-
"powerAllocation": {
|
630
|
-
"maximumAllocatedPower": 330,
|
631
|
-
"minimumAllocatedPower": 233
|
632
|
-
},
|
633
|
-
"bootOrder": {
|
634
|
-
"bootOrderList": [],
|
635
|
-
"uri": "node/BDB64B266F3911E391406CAE8B703820/bootOrder"
|
636
|
-
},
|
637
|
-
"powerStatus": 5,
|
638
|
-
"expansionProductType": "",
|
639
|
-
"expansionProducts": [],
|
640
|
-
"ipv6Addresses": ["fd55:faaf:e1ab:2021:6eae:8bff:fe6f:e05",
|
641
|
-
"fe80:0:0:0:6eae:8bff:fe6f:e05"
|
642
|
-
],
|
643
|
-
"manufacturer": "Lenovo",
|
644
|
-
"slots": [1,
|
645
|
-
2
|
646
|
-
],
|
647
|
-
"addinCards": [],
|
648
|
-
"vpdID": "30",
|
649
|
-
"raidSettings": [],
|
650
|
-
"parentPartitionUUID": "",
|
651
|
-
"isConnectionTrusted": "false",
|
652
|
-
"uuid": "BDB64B266F3911E391406CAE8B703820",
|
653
|
-
"memoryModules": [],
|
654
|
-
"tlsVersion": {
|
655
|
-
"possibleValues": ["TLS_10",
|
656
|
-
"TLS_11",
|
657
|
-
"TLS_12"
|
658
|
-
],
|
659
|
-
"currentValue": "Unknown"
|
660
|
-
},
|
661
|
-
"secureBootMode": {
|
662
|
-
"possibleValues": [],
|
663
|
-
"currentValue": ""
|
664
|
-
},
|
665
|
-
"partitionEnabled": false,
|
666
|
-
"fruSerialNumber": "YG31BG3B6027",
|
667
|
-
"model": "AC1",
|
668
|
-
"expansionCardSlots": 4,
|
669
|
-
"isScalable": true,
|
670
|
-
"hostMacAddresses": "",
|
671
|
-
"isITME": false,
|
672
|
-
"contact": "",
|
673
|
-
"dataHandle": 1427332579243,
|
674
|
-
"ipv4Addresses": ["10.243.15.207",
|
675
|
-
"10.240.86.235"
|
676
|
-
],
|
677
|
-
"backedBy": "real",
|
678
|
-
"cmmDisplayName": "Node 01",
|
679
|
-
"complexID": 1600,
|
680
|
-
"name": "Newport-dev2",
|
681
|
-
"memorySlots": 48,
|
682
|
-
"drives": [],
|
683
|
-
"cmmHealthState": "Normal",
|
684
|
-
"userDescription": "",
|
685
|
-
"subSlots": [],
|
686
|
-
"partNumber": "00AN678",
|
687
|
-
"excludedHealthState": "Critical",
|
688
|
-
"bladeState_string": "Newport-dev2",
|
689
|
-
"machineType": "7903",
|
690
|
-
"isRemotePresenceEnabled": false,
|
691
|
-
"pciDevices": [],
|
692
|
-
"domainName": "",
|
693
|
-
"processors": [],
|
694
|
-
"processorSlots": 2,
|
695
|
-
"pciCapabilities": [],
|
696
|
-
"hasOS": false,
|
697
|
-
"productId": "448",
|
698
|
-
"bootMode": {
|
699
|
-
"possibleValues": [],
|
700
|
-
"currentValue": ""
|
701
|
-
},
|
702
|
-
"embeddedHypervisorPresence": false,
|
703
|
-
"ports": [],
|
704
|
-
"nist": {
|
705
|
-
"possibleValues": ["Compatibility",
|
706
|
-
"Nist_800_131A_Strict"
|
707
|
-
],
|
708
|
-
"currentValue": "Unknown"
|
709
|
-
},
|
710
|
-
"posID": "256",
|
711
|
-
"overallHealthState": "Critical",
|
712
|
-
"subType": "Nantahala",
|
713
|
-
"partitionID": 1,
|
714
|
-
"flashStorage": [],
|
715
|
-
"dnsHostnames": ["10.243.15.207",
|
716
|
-
"10.240.86.235",
|
717
|
-
"fd55:faaf:e1ab:2021:6eae:8bff:fe6f:e05"
|
718
|
-
],
|
719
|
-
"productName": "Flex System x880 X6 Compute Node with embedded 10Gb Virtual Fabric"
|
720
|
-
}],
|
721
|
-
"slots": [1,
|
722
|
-
2
|
723
|
-
],
|
724
|
-
"partitionID": 1,
|
725
|
-
"uuid": "BDB64B266F3911E391406CAE8B703820"
|
726
|
-
}],
|
727
|
-
"orphanNodes": [],
|
728
|
-
"slots": [1,
|
729
|
-
2
|
730
|
-
],
|
731
|
-
"complexID": "0640",
|
732
|
-
"partitionCount": 1,
|
733
|
-
"uuid": "BDB64B266F3911E391406CAE8B703820",
|
734
|
-
"nodeCount": 1
|
735
|
-
}],
|
736
|
-
"powerSupplies": [],
|
737
|
-
"parentComplexID": "0640",
|
738
|
-
"FRU": "47C2239",
|
739
|
-
"uri": "node/BDB64B266F3911E391406CAE8B703820",
|
740
|
-
"vnicMode": "disabled",
|
741
|
-
"powerAllocation": {
|
742
|
-
"maximumAllocatedPower": 330,
|
743
|
-
"minimumAllocatedPower": 233
|
744
|
-
},
|
745
|
-
"bootOrder": {
|
746
|
-
"bootOrderList": [],
|
747
|
-
"uri": "node/BDB64B266F3911E391406CAE8B703820/bootOrder"
|
748
|
-
},
|
749
|
-
"powerStatus": 5,
|
750
|
-
"expansionProductType": "",
|
751
|
-
"expansionProducts": [],
|
752
|
-
"ipv6Addresses": ["fd55:faaf:e1ab:2021:6eae:8bff:fe6f:e05",
|
753
|
-
"fe80:0:0:0:6eae:8bff:fe6f:e05"
|
754
|
-
],
|
755
|
-
"manufacturer": "Lenovo",
|
756
|
-
"slots": [1,
|
757
|
-
2
|
758
|
-
],
|
759
|
-
"addinCards": [],
|
760
|
-
"vpdID": "30",
|
761
|
-
"raidSettings": [],
|
762
|
-
"parentPartitionUUID": "",
|
763
|
-
"isConnectionTrusted": "false",
|
764
|
-
"uuid": "BDB64B266F3911E391406CAE8B703820",
|
765
|
-
"memoryModules": [],
|
766
|
-
"tlsVersion": {
|
767
|
-
"possibleValues": ["TLS_10",
|
768
|
-
"TLS_11",
|
769
|
-
"TLS_12"
|
770
|
-
],
|
771
|
-
"currentValue": "Unknown"
|
772
|
-
},
|
773
|
-
"secureBootMode": {
|
774
|
-
"possibleValues": [],
|
775
|
-
"currentValue": ""
|
776
|
-
},
|
777
|
-
"partitionEnabled": false,
|
778
|
-
"fruSerialNumber": "YG31BG3B6027",
|
779
|
-
"model": "AC1",
|
780
|
-
"expansionCardSlots": 4,
|
781
|
-
"isScalable": true,
|
782
|
-
"hostMacAddresses": "",
|
783
|
-
"isITME": false,
|
784
|
-
"contact": "",
|
785
|
-
"dataHandle": 1427332579243,
|
786
|
-
"ipv4Addresses": ["10.243.15.207",
|
787
|
-
"10.240.86.235"
|
788
|
-
],
|
789
|
-
"backedBy": "real",
|
790
|
-
"cmmDisplayName": "Node 01",
|
791
|
-
"complexID": 1600,
|
792
|
-
"name": "Newport-dev2",
|
793
|
-
"memorySlots": 48,
|
794
|
-
"drives": [],
|
795
|
-
"cmmHealthState": "Normal",
|
796
|
-
"userDescription": "",
|
797
|
-
"subSlots": [],
|
798
|
-
"partNumber": "00AN678",
|
799
|
-
"excludedHealthState": "Critical",
|
800
|
-
"bladeState_string": "Newport-dev2",
|
801
|
-
"machineType": "7903",
|
802
|
-
"isRemotePresenceEnabled": false,
|
803
|
-
"pciDevices": [],
|
804
|
-
"domainName": "",
|
805
|
-
"processors": [],
|
806
|
-
"processorSlots": 2,
|
807
|
-
"pciCapabilities": [],
|
808
|
-
"hasOS": false,
|
809
|
-
"productId": "448",
|
810
|
-
"bootMode": {
|
811
|
-
"possibleValues": [],
|
812
|
-
"currentValue": ""
|
813
|
-
},
|
814
|
-
"embeddedHypervisorPresence": false,
|
815
|
-
"ports": [],
|
816
|
-
"nist": {
|
817
|
-
"possibleValues": ["Compatibility",
|
818
|
-
"Nist_800_131A_Strict"
|
819
|
-
],
|
820
|
-
"currentValue": "Unknown"
|
821
|
-
},
|
822
|
-
"posID": "256",
|
823
|
-
"overallHealthState": "Critical",
|
824
|
-
"subType": "Nantahala",
|
825
|
-
"partitionID": 1,
|
826
|
-
"flashStorage": [],
|
827
|
-
"dnsHostnames": ["10.243.15.207",
|
828
|
-
"10.240.86.235",
|
829
|
-
"fd55:faaf:e1ab:2021:6eae:8bff:fe6f:e05"
|
830
|
-
],
|
831
|
-
"productName": "Flex System x880 X6 Compute Node with embedded 10Gb Virtual Fabric",
|
832
|
-
"powerSupplies": [{
|
833
|
-
"model": "",
|
834
|
-
"manufacturerId": "20301",
|
835
|
-
"inputVoltageIsAC": true,
|
836
|
-
"serialNumber": "",
|
837
|
-
"type": "PowerSupply",
|
838
|
-
"inputVoltageMin": 200,
|
839
|
-
"dataHandle": 0,
|
840
|
-
"cmmDisplayName": "Power Supply 01",
|
841
|
-
"leds": [{
|
842
|
-
"location": "FRU",
|
843
|
-
"color": "Green",
|
844
|
-
"name": "IN",
|
845
|
-
"state": "On"
|
846
|
-
}, {
|
847
|
-
"location": "FRU",
|
848
|
-
"color": "Green",
|
849
|
-
"name": "OUT",
|
850
|
-
"state": "On"
|
851
|
-
}, {
|
852
|
-
"location": "FRU",
|
853
|
-
"color": "Amber",
|
854
|
-
"name": "FAULT",
|
855
|
-
"state": "Off"
|
856
|
-
}],
|
857
|
-
"description": "Power Supply",
|
858
|
-
"name": "Power Supply 01",
|
859
|
-
"cmmHealthState": "Normal",
|
860
|
-
"manufactureDate": "2511",
|
861
|
-
"userDescription": "",
|
862
|
-
"partNumber": "69Y5802",
|
863
|
-
"firmware": [{
|
864
|
-
"status": "",
|
865
|
-
"name": "Power Supply Firmware",
|
866
|
-
"role": "",
|
867
|
-
"build": "",
|
868
|
-
"type": "Power Supply Firmware",
|
869
|
-
"date": "",
|
870
|
-
"version": "5"
|
871
|
-
}],
|
872
|
-
"machineType": "",
|
873
|
-
"hardwareRevision": "75.54",
|
874
|
-
"parent": {
|
875
|
-
"uuid": "ED895B48D50D4E34B5DAF1F697B1FAC5",
|
876
|
-
"uri": "chassis/ED895B48D50D4E34B5DAF1F697B1FAC5"
|
877
|
-
},
|
878
|
-
"FRU": "69Y5806",
|
879
|
-
"uri": "powerSupply/E9D20C4DA58F4942896E976134AD0962",
|
880
|
-
"productId": "304",
|
881
|
-
"powerAllocation": {
|
882
|
-
"totalInputPower": 2505,
|
883
|
-
"totalOutputPower": 338
|
884
|
-
},
|
885
|
-
"posID": "128",
|
886
|
-
"powerState": "Unknown",
|
887
|
-
"manufacturer": "Lenovo",
|
888
|
-
"slots": [1],
|
889
|
-
"vpdID": "61",
|
890
|
-
"uuid": "E9D20C4DA58F4942896E976134AD0962",
|
891
|
-
"productName": "2500 W Power Supply",
|
892
|
-
"fruSerialNumber": "ZK128116T06A",
|
893
|
-
"inputVoltageMax": 208
|
894
|
-
}, {
|
895
|
-
"model": "",
|
896
|
-
"manufacturerId": "20301",
|
897
|
-
"inputVoltageIsAC": true,
|
898
|
-
"serialNumber": "",
|
899
|
-
"type": "PowerSupply",
|
900
|
-
"inputVoltageMin": -1,
|
901
|
-
"dataHandle": 0,
|
902
|
-
"cmmDisplayName": "Power Supply 06",
|
903
|
-
"leds": [{
|
904
|
-
"location": "FRU",
|
905
|
-
"color": "Green",
|
906
|
-
"name": "IN",
|
907
|
-
"state": "Off"
|
908
|
-
}, {
|
909
|
-
"location": "FRU",
|
910
|
-
"color": "Green",
|
911
|
-
"name": "OUT",
|
912
|
-
"state": "Off"
|
913
|
-
}, {
|
914
|
-
"location": "FRU",
|
915
|
-
"color": "Amber",
|
916
|
-
"name": "FAULT",
|
917
|
-
"state": "Off"
|
918
|
-
}],
|
919
|
-
"description": "Power Supply",
|
920
|
-
"name": "Power Supply 06",
|
921
|
-
"cmmHealthState": "Non-Critical",
|
922
|
-
"manufactureDate": "2911",
|
923
|
-
"userDescription": "",
|
924
|
-
"partNumber": "69Y5801",
|
925
|
-
"firmware": [{
|
926
|
-
"status": "",
|
927
|
-
"name": "Power Supply Firmware",
|
928
|
-
"role": "",
|
929
|
-
"build": "",
|
930
|
-
"type": "Power Supply Firmware",
|
931
|
-
"date": "",
|
932
|
-
"version": "0"
|
933
|
-
}],
|
934
|
-
"machineType": "",
|
935
|
-
"hardwareRevision": "6.0",
|
936
|
-
"parent": {
|
937
|
-
"uuid": "ED895B48D50D4E34B5DAF1F697B1FAC5",
|
938
|
-
"uri": "chassis/ED895B48D50D4E34B5DAF1F697B1FAC5"
|
939
|
-
},
|
940
|
-
"FRU": "69Y5817",
|
941
|
-
"uri": "powerSupply/A2D7550BB07D11E0009E009E009E009E",
|
942
|
-
"productId": "303",
|
943
|
-
"powerAllocation": {
|
944
|
-
"totalInputPower": 0,
|
945
|
-
"totalOutputPower": 338
|
946
|
-
},
|
947
|
-
"posID": "128",
|
948
|
-
"powerState": "Unknown",
|
949
|
-
"manufacturer": "Lenovo",
|
950
|
-
"slots": [6],
|
951
|
-
"vpdID": "60",
|
952
|
-
"uuid": "A2D7550BB07D11E0009E009E009E009E",
|
953
|
-
"productName": "2500 W Power Supply",
|
954
|
-
"fruSerialNumber": "ZK135117N00Y",
|
955
|
-
"inputVoltageMax": -1
|
956
|
-
}],
|
957
|
-
"fans": [{
|
958
|
-
"model": "",
|
959
|
-
"manufacturerId": "20301",
|
960
|
-
"serialNumber": "",
|
961
|
-
"type": "Fan",
|
962
|
-
"dataHandle": 0,
|
963
|
-
"cmmDisplayName": "Fan 01",
|
964
|
-
"leds": [{
|
965
|
-
"location": "FrontPanel",
|
966
|
-
"color": "Amber",
|
967
|
-
"name": "FAULT",
|
968
|
-
"state": "Off"
|
969
|
-
}],
|
970
|
-
"description": "Fan Module",
|
971
|
-
"errorFields": [],
|
972
|
-
"name": "Fan 01",
|
973
|
-
"cmmHealthState": "Normal",
|
974
|
-
"manufactureDate": "2911",
|
975
|
-
"userDescription": "",
|
976
|
-
"partNumber": "88Y6671",
|
977
|
-
"firmware": [{
|
978
|
-
"status": "",
|
979
|
-
"name": "Fan Controller",
|
980
|
-
"role": "",
|
981
|
-
"build": "",
|
982
|
-
"type": "Fan Controller",
|
983
|
-
"date": "",
|
984
|
-
"version": "226"
|
985
|
-
}],
|
986
|
-
"machineType": "",
|
987
|
-
"hardwareRevision": "4.0",
|
988
|
-
"parent": {
|
989
|
-
"uuid": "ED895B48D50D4E34B5DAF1F697B1FAC5",
|
990
|
-
"uri": "chassis/ED895B48D50D4E34B5DAF1F697B1FAC5"
|
991
|
-
},
|
992
|
-
"FRU": "81Y2910",
|
993
|
-
"uri": "fan/5B47AE2A24EB42BFB698204C8DDEE798",
|
994
|
-
"productId": "341",
|
995
|
-
"powerAllocation": {
|
996
|
-
"maximumAllocatedPower": 75,
|
997
|
-
"minimumAllocatedPower": 75
|
998
|
-
},
|
999
|
-
"posID": "373",
|
1000
|
-
"powerState": "Unknown",
|
1001
|
-
"manufacturer": "Lenovo",
|
1002
|
-
"slots": [1],
|
1003
|
-
"vpdID": "10",
|
1004
|
-
"uuid": "5B47AE2A24EB42BFB698204C8DDEE798",
|
1005
|
-
"productName": "",
|
1006
|
-
"fruSerialNumber": "YK10GM17D057"
|
1007
|
-
}, {
|
1008
|
-
"model": "",
|
1009
|
-
"manufacturerId": "20301",
|
1010
|
-
"serialNumber": "",
|
1011
|
-
"type": "Fan",
|
1012
|
-
"dataHandle": 0,
|
1013
|
-
"cmmDisplayName": "Fan 10",
|
1014
|
-
"leds": [{
|
1015
|
-
"location": "FrontPanel",
|
1016
|
-
"color": "Amber",
|
1017
|
-
"name": "FAULT",
|
1018
|
-
"state": "Off"
|
1019
|
-
}],
|
1020
|
-
"description": "Fan Module",
|
1021
|
-
"errorFields": [],
|
1022
|
-
"name": "Fan 10",
|
1023
|
-
"cmmHealthState": "Normal",
|
1024
|
-
"manufactureDate": "3011",
|
1025
|
-
"userDescription": "",
|
1026
|
-
"partNumber": "88Y6670",
|
1027
|
-
"firmware": [{
|
1028
|
-
"status": "",
|
1029
|
-
"name": "Fan Controller",
|
1030
|
-
"role": "",
|
1031
|
-
"build": "",
|
1032
|
-
"type": "Fan Controller",
|
1033
|
-
"date": "",
|
1034
|
-
"version": "226"
|
1035
|
-
}],
|
1036
|
-
"machineType": "",
|
1037
|
-
"hardwareRevision": "4.0",
|
1038
|
-
"parent": {
|
1039
|
-
"uuid": "ED895B48D50D4E34B5DAF1F697B1FAC5",
|
1040
|
-
"uri": "chassis/ED895B48D50D4E34B5DAF1F697B1FAC5"
|
1041
|
-
},
|
1042
|
-
"FRU": "81Y2911",
|
1043
|
-
"uri": "fan/06449592A0F2459686DFFFBCA04FDF9F",
|
1044
|
-
"productId": "339",
|
1045
|
-
"powerAllocation": {
|
1046
|
-
"maximumAllocatedPower": 60,
|
1047
|
-
"minimumAllocatedPower": 60
|
1048
|
-
},
|
1049
|
-
"posID": "373",
|
1050
|
-
"powerState": "Unknown",
|
1051
|
-
"manufacturer": "Lenovo",
|
1052
|
-
"slots": [10],
|
1053
|
-
"vpdID": "8",
|
1054
|
-
"uuid": "06449592A0F2459686DFFFBCA04FDF9F",
|
1055
|
-
"productName": "",
|
1056
|
-
"fruSerialNumber": "YK10GM17L019"
|
1057
|
-
}],
|
1058
|
-
"fanMuxes": [{
|
1059
|
-
"model": "",
|
1060
|
-
"machineType": "",
|
1061
|
-
"manufacturerId": "20301",
|
1062
|
-
"status": "Non-Critical",
|
1063
|
-
"hardwareRevision": "4.0",
|
1064
|
-
"parent": {
|
1065
|
-
"uuid": "ED895B48D50D4E34B5DAF1F697B1FAC5",
|
1066
|
-
"uri": "chassis/ED895B48D50D4E34B5DAF1F697B1FAC5"
|
1067
|
-
},
|
1068
|
-
"serialNumber": "",
|
1069
|
-
"FRU": "81Y2912",
|
1070
|
-
"type": "FanMux",
|
1071
|
-
"uri": "fanMux/5BB0129A985711E09F9BE2A4EAFEE097",
|
1072
|
-
"dataHandle": 0,
|
1073
|
-
"productId": "338",
|
1074
|
-
"cmmDisplayName": "Fan Logic 01",
|
1075
|
-
"leds": [{
|
1076
|
-
"location": "FrontPanel",
|
1077
|
-
"color": "Amber",
|
1078
|
-
"name": "FAULT",
|
1079
|
-
"state": "On"
|
1080
|
-
}],
|
1081
|
-
"description": "Fan Logic Module",
|
1082
|
-
"slots": [1],
|
1083
|
-
"manufacturer": "Lenovo",
|
1084
|
-
"name": "Fan Logic 01",
|
1085
|
-
"cmmHealthState": "Non-Critical",
|
1086
|
-
"uuid": "5BB0129A985711E09F9BE2A4EAFEE097",
|
1087
|
-
"manufactureDate": "2511",
|
1088
|
-
"productName": "Fan Pack Multiplexor Card",
|
1089
|
-
"partNumber": "81Y2990",
|
1090
|
-
"fruSerialNumber": "Y031BG16D09S"
|
1091
|
-
}, {
|
1092
|
-
"model": "",
|
1093
|
-
"machineType": "",
|
1094
|
-
"manufacturerId": "20301",
|
1095
|
-
"status": "Non-Critical",
|
1096
|
-
"hardwareRevision": "4.0",
|
1097
|
-
"parent": {
|
1098
|
-
"uuid": "ED895B48D50D4E34B5DAF1F697B1FAC5",
|
1099
|
-
"uri": "chassis/ED895B48D50D4E34B5DAF1F697B1FAC5"
|
1100
|
-
},
|
1101
|
-
"serialNumber": "",
|
1102
|
-
"FRU": "81Y2912",
|
1103
|
-
"type": "FanMux",
|
1104
|
-
"uri": "fanMux/BFBA72BA988211E0A90B93081C30C3B8",
|
1105
|
-
"dataHandle": 0,
|
1106
|
-
"productId": "338",
|
1107
|
-
"cmmDisplayName": "Fan Logic 02",
|
1108
|
-
"leds": [{
|
1109
|
-
"location": "FrontPanel",
|
1110
|
-
"color": "Amber",
|
1111
|
-
"name": "FAULT",
|
1112
|
-
"state": "On"
|
1113
|
-
}],
|
1114
|
-
"description": "Fan Logic Module",
|
1115
|
-
"slots": [2],
|
1116
|
-
"manufacturer": "Lenovo",
|
1117
|
-
"name": "Fan Logic 02",
|
1118
|
-
"cmmHealthState": "Non-Critical",
|
1119
|
-
"uuid": "BFBA72BA988211E0A90B93081C30C3B8",
|
1120
|
-
"manufactureDate": "2511",
|
1121
|
-
"productName": "Fan Pack Multiplexor Card",
|
1122
|
-
"partNumber": "81Y2990",
|
1123
|
-
"fruSerialNumber": "Y031BG16D085"
|
1124
|
-
}],
|
1125
|
-
"switches": [],
|
1126
|
-
"passThroughModules": [],
|
1127
|
-
"cmms": [{
|
1128
|
-
"model": "",
|
1129
|
-
"accessState": "Online",
|
1130
|
-
"serialNumber": "",
|
1131
|
-
"type": "CMM",
|
1132
|
-
"dataHandle": 1427332097660,
|
1133
|
-
"ipv4Addresses": ["10.243.4.147"],
|
1134
|
-
"cmmDisplayName": "SN#Y034BG17606E",
|
1135
|
-
"backedBy": "real",
|
1136
|
-
"hostConfig": [{
|
1137
|
-
"DDNSenabled": false,
|
1138
|
-
"IPversionPriority": "IPv6ThenIPv4",
|
1139
|
-
"DNSenabled": false,
|
1140
|
-
"terIPv6userDNSserver": "0:0:0:0:0:0:0:0",
|
1141
|
-
"secIPv4userDNSserver": "0.0.0.0",
|
1142
|
-
"terIPv4userDNSserver": "0.0.0.0",
|
1143
|
-
"secIPv6userDNSserver": "0:0:0:0:0:0:0:0",
|
1144
|
-
"priIPv6userDNSserver": "0:0:0:0:0:0:0:0",
|
1145
|
-
"priIPv4userDNSserver": "0.0.0.0"
|
1146
|
-
}],
|
1147
|
-
"leds": [{
|
1148
|
-
"location": "FrontPanel",
|
1149
|
-
"color": "Blue",
|
1150
|
-
"name": "Location",
|
1151
|
-
"state": "Off"
|
1152
|
-
}, {
|
1153
|
-
"location": "FrontPanel",
|
1154
|
-
"color": "Amber",
|
1155
|
-
"name": "FAULT",
|
1156
|
-
"state": "Off"
|
1157
|
-
}, {
|
1158
|
-
"location": "FrontPanel",
|
1159
|
-
"color": "Amber",
|
1160
|
-
"name": "Information",
|
1161
|
-
"state": "On"
|
1162
|
-
}],
|
1163
|
-
"description": "CMM",
|
1164
|
-
"errorFields": [],
|
1165
|
-
"mgmtProcIPaddress": "fd55:faaf:e1ab:2021:5ef3:fcff:fe25:df43",
|
1166
|
-
"name": "10.243.4.147",
|
1167
|
-
"role": "primary",
|
1168
|
-
"cmmHealthState": "Non-Critical",
|
1169
|
-
"userDescription": "",
|
1170
|
-
"partNumber": "68Y7029",
|
1171
|
-
"ipInterfaces": [{
|
1172
|
-
"IPv4enabled": true,
|
1173
|
-
"IPv4DHCPmode": "STATIC_ONLY",
|
1174
|
-
"IPv6enabled": true,
|
1175
|
-
"IPv6assignments": [{
|
1176
|
-
"id": 1,
|
1177
|
-
"scope": "LinkLocal",
|
1178
|
-
"source": "Other",
|
1179
|
-
"gateway": "0:0:0:0:0:0:0:0",
|
1180
|
-
"address": "fe80:0:0:0:5ef3:fcff:fe25:df43",
|
1181
|
-
"prefix": 64,
|
1182
|
-
"type": "INUSE"
|
1183
|
-
}, {
|
1184
|
-
"id": 2,
|
1185
|
-
"scope": "Global",
|
1186
|
-
"source": "Static",
|
1187
|
-
"gateway": "0:0:0:0:0:0:0:0",
|
1188
|
-
"address": "0:0:0:0:0:0:0:0",
|
1189
|
-
"prefix": 0,
|
1190
|
-
"type": "CONFIGURED"
|
1191
|
-
}, {
|
1192
|
-
"id": 16,
|
1193
|
-
"scope": "Global",
|
1194
|
-
"source": "Stateless",
|
1195
|
-
"gateway": "0:0:0:0:0:0:0:0",
|
1196
|
-
"address": "fd55:faaf:e1ab:2021:5ef3:fcff:fe25:df43",
|
1197
|
-
"prefix": 64,
|
1198
|
-
"type": "INUSE"
|
1199
|
-
}],
|
1200
|
-
"IPv4assignments": [{
|
1201
|
-
"id": 2,
|
1202
|
-
"subnet": "255.255.240.0",
|
1203
|
-
"gateway": "10.243.0.1",
|
1204
|
-
"address": "10.243.4.147",
|
1205
|
-
"type": "CONFIGURED"
|
1206
|
-
}, {
|
1207
|
-
"id": 2,
|
1208
|
-
"subnet": "255.255.240.0",
|
1209
|
-
"gateway": "10.243.0.1",
|
1210
|
-
"address": "10.243.4.147",
|
1211
|
-
"type": "INUSE"
|
1212
|
-
}],
|
1213
|
-
"IPv6DHCPenabled": true,
|
1214
|
-
"name": "eth0",
|
1215
|
-
"IPv6statelessEnabled": true,
|
1216
|
-
"label": "External",
|
1217
|
-
"IPv6staticEnabled": false
|
1218
|
-
}],
|
1219
|
-
"excludedHealthState": "Critical",
|
1220
|
-
"firmware": [{
|
1221
|
-
"status": "",
|
1222
|
-
"name": "CMM firmware",
|
1223
|
-
"role": "",
|
1224
|
-
"build": "1AON01N",
|
1225
|
-
"type": "CMM firmware",
|
1226
|
-
"date": "2015-03-09T04:00:00Z",
|
1227
|
-
"version": "1.0.0"
|
1228
|
-
}],
|
1229
|
-
"machineType": "",
|
1230
|
-
"hostname": "MM5CF3FC25DF43",
|
1231
|
-
"parent": {
|
1232
|
-
"uuid": "ED895B48D50D4E34B5DAF1F697B1FAC5",
|
1233
|
-
"uri": "chassis/ED895B48D50D4E34B5DAF1F697B1FAC5"
|
1234
|
-
},
|
1235
|
-
"domainName": "",
|
1236
|
-
"FRU": "68Y7032",
|
1237
|
-
"macAddresses": ["5C:F3:FC:25:DF:43"],
|
1238
|
-
"uri": "cmm/F37A6570B83611E09D0DD02C07D25365",
|
1239
|
-
"productId": "65",
|
1240
|
-
"powerAllocation": {
|
1241
|
-
"maximumAllocatedPower": 20,
|
1242
|
-
"minimumAllocatedPower": 20
|
1243
|
-
},
|
1244
|
-
"ipv6Addresses": ["fe80:0:0:0:5ef3:fcff:fe25:df43",
|
1245
|
-
"fd55:faaf:e1ab:2021:5ef3:fcff:fe25:df43"
|
1246
|
-
],
|
1247
|
-
"overallHealthState": "Critical",
|
1248
|
-
"slots": [1],
|
1249
|
-
"uuid": "F37A6570B83611E09D0DD02C07D25365",
|
1250
|
-
"dnsHostnames": ["10.243.4.147",
|
1251
|
-
"fd55:faaf:e1ab:2021:5ef3:fcff:fe25:df43"
|
1252
|
-
],
|
1253
|
-
"fruSerialNumber": "Y034BG17606E"
|
1254
|
-
}],
|
1255
|
-
"nodes": [{
|
1256
|
-
"accessState": "Partial",
|
1257
|
-
"manufacturerId": "20301",
|
1258
|
-
"arch": "x86",
|
1259
|
-
"addinCardSlots": 0,
|
1260
|
-
"location": {
|
1261
|
-
"lowestRackUnit": 0,
|
1262
|
-
"location": "",
|
1263
|
-
"rack": "",
|
1264
|
-
"room": ""
|
1265
|
-
},
|
1266
|
-
"serialNumber": "23YWAN5",
|
1267
|
-
"driveBays": 8,
|
1268
|
-
"macAddress": "6C:AE:8B:6F:0E:05,6C:AE:8B:6F:0E:04",
|
1269
|
-
"lanOverUsb": "disabled",
|
1270
|
-
"type": "ITE",
|
1271
|
-
"onboardPciDevices": [],
|
1272
|
-
"leds": [{
|
1273
|
-
"location": "Unknown",
|
1274
|
-
"color": "Unknown",
|
1275
|
-
"name": "",
|
1276
|
-
"state": "Off"
|
1277
|
-
}, {
|
1278
|
-
"location": "Planar",
|
1279
|
-
"color": "Yellow",
|
1280
|
-
"name": "DC Fault",
|
1281
|
-
"state": "Off"
|
1282
|
-
}, {
|
1283
|
-
"location": "Planar",
|
1284
|
-
"color": "Yellow",
|
1285
|
-
"name": "SAS BP 1 Error",
|
1286
|
-
"state": "Off"
|
1287
|
-
}, {
|
1288
|
-
"location": "Planar",
|
1289
|
-
"color": "Yellow",
|
1290
|
-
"name": "SAS BP 2 Error",
|
1291
|
-
"state": "Off"
|
1292
|
-
}, {
|
1293
|
-
"location": "Planar",
|
1294
|
-
"color": "Yellow",
|
1295
|
-
"name": "CMOS Batt Errror",
|
1296
|
-
"state": "Off"
|
1297
|
-
}],
|
1298
|
-
"description": "Flex System x880 X6 + 10G",
|
1299
|
-
"errorFields": [{
|
1300
|
-
"HostAndDomain": "NO_CONNECTOR"
|
1301
|
-
}, {
|
1302
|
-
"PhysicalAndLocation": "NO_CONNECTOR"
|
1303
|
-
}, {
|
1304
|
-
"Memory": "NO_CONNECTOR"
|
1305
|
-
}, {
|
1306
|
-
"ServerOnboardPciDevices": "NO_CONNECTOR"
|
1307
|
-
}, {
|
1308
|
-
"BootMode": "NO_CONNECTOR"
|
1309
|
-
}, {
|
1310
|
-
"Memory": "NO_CONNECTOR"
|
1311
|
-
}, {
|
1312
|
-
"BootOrder": "NO_CONNECTOR"
|
1313
|
-
}, {
|
1314
|
-
"FlashDimm": "NO_CONNECTOR"
|
1315
|
-
}, {
|
1316
|
-
"HostMacAddress": "NO_CONNECTOR"
|
1317
|
-
}, {
|
1318
|
-
"VnicMode": "NO_CONNECTOR"
|
1319
|
-
}, {
|
1320
|
-
"RemotePresenceEnabled": "NO_CONNECTOR"
|
1321
|
-
}, {
|
1322
|
-
"ActivationKey": "NO_CONNECTOR"
|
1323
|
-
}, {
|
1324
|
-
"LanOverUsbMode": "FETCH_FAILED"
|
1325
|
-
}, {
|
1326
|
-
"ServerMetrics": "NO_CONNECTOR"
|
1327
|
-
}, {
|
1328
|
-
"ScalableComplexPartitionUUIDData": "NO_CONNECTOR"
|
1329
|
-
}],
|
1330
|
-
"expansionCards": [],
|
1331
|
-
"mgmtProcIPaddress": "fd55:faaf:e1ab:2021:6eae:8bff:fe6f:e05",
|
1332
|
-
"ipInterfaces": [{
|
1333
|
-
"IPv4enabled": true,
|
1334
|
-
"IPv4DHCPmode": "DHCP_ONLY",
|
1335
|
-
"IPv6enabled": true,
|
1336
|
-
"IPv6assignments": [{
|
1337
|
-
"id": 16,
|
1338
|
-
"scope": "Global",
|
1339
|
-
"source": "Stateless",
|
1340
|
-
"gateway": "0:0:0:0:0:0:0:0",
|
1341
|
-
"address": "fd55:faaf:e1ab:2021:6eae:8bff:fe6f:e05",
|
1342
|
-
"prefix": 64,
|
1343
|
-
"type": "INUSE"
|
1344
|
-
}, {
|
1345
|
-
"id": 1,
|
1346
|
-
"scope": "LinkLocal",
|
1347
|
-
"source": "Other",
|
1348
|
-
"gateway": "fe80:0:0:0:202:ff:fe02:2",
|
1349
|
-
"address": "fe80:0:0:0:6eae:8bff:fe6f:e05",
|
1350
|
-
"prefix": 64,
|
1351
|
-
"type": "INUSE"
|
1352
|
-
}, {
|
1353
|
-
"id": 3,
|
1354
|
-
"scope": "Global",
|
1355
|
-
"source": "Static",
|
1356
|
-
"gateway": "0:0:0:0:0:0:0:0",
|
1357
|
-
"address": "0:0:0:0:0:0:0:0",
|
1358
|
-
"prefix": 64,
|
1359
|
-
"type": "CONFIGURED"
|
1360
|
-
}],
|
1361
|
-
"IPv4assignments": [{
|
1362
|
-
"id": 2,
|
1363
|
-
"subnet": "255.255.248.0",
|
1364
|
-
"gateway": "10.240.80.1",
|
1365
|
-
"address": "10.240.86.235",
|
1366
|
-
"type": "CONFIGURED"
|
1367
|
-
}, {
|
1368
|
-
"id": 64,
|
1369
|
-
"subnet": "255.255.240.0",
|
1370
|
-
"gateway": "10.243.0.1",
|
1371
|
-
"address": "10.243.15.207",
|
1372
|
-
"type": "INUSE"
|
1373
|
-
}],
|
1374
|
-
"IPv6DHCPenabled": true,
|
1375
|
-
"name": "eth1",
|
1376
|
-
"IPv6statelessEnabled": false,
|
1377
|
-
"label": "eth1",
|
1378
|
-
"IPv6staticEnabled": false
|
1379
|
-
}],
|
1380
|
-
"firmware": [{
|
1381
|
-
"status": "Active",
|
1382
|
-
"name": "MP",
|
1383
|
-
"role": "Primary",
|
1384
|
-
"build": "1AOO89M",
|
1385
|
-
"type": "MP",
|
1386
|
-
"date": "2014-09-08T04:00:00Z",
|
1387
|
-
"version": "9.00"
|
1388
|
-
}, {
|
1389
|
-
"status": "Not Active",
|
1390
|
-
"name": "MP",
|
1391
|
-
"role": "Backup",
|
1392
|
-
"build": "1AOO89M",
|
1393
|
-
"type": "MP",
|
1394
|
-
"date": "2014-09-08T04:00:00Z",
|
1395
|
-
"version": "9.00"
|
1396
|
-
}, {
|
1397
|
-
"status": "Active",
|
1398
|
-
"name": "UEFI",
|
1399
|
-
"role": "Primary",
|
1400
|
-
"build": "N2E111AUS",
|
1401
|
-
"type": "UEFI",
|
1402
|
-
"date": "2014-07-31T04:00:00Z",
|
1403
|
-
"version": "1.00"
|
1404
|
-
}, {
|
1405
|
-
"status": "Not Active",
|
1406
|
-
"name": "UEFI",
|
1407
|
-
"role": "Backup",
|
1408
|
-
"build": "N2E111AUS",
|
1409
|
-
"type": "UEFI",
|
1410
|
-
"date": "2014-07-31T04:00:00Z",
|
1411
|
-
"version": "1.00"
|
1412
|
-
}, {
|
1413
|
-
"status": "Active",
|
1414
|
-
"name": "DSA",
|
1415
|
-
"role": "Primary",
|
1416
|
-
"build": "DSYTD1H",
|
1417
|
-
"type": "DSA",
|
1418
|
-
"date": "2013-10-14T04:00:00Z",
|
1419
|
-
"version": "9.50"
|
1420
|
-
}],
|
1421
|
-
"bladeState": 1,
|
1422
|
-
"activationKeys": [],
|
1423
|
-
"status": {
|
1424
|
-
"message": "managed",
|
1425
|
-
"name": "MANAGED"
|
1426
|
-
},
|
1427
|
-
"bladeState_health": "GOOD",
|
1428
|
-
"hostname": "",
|
1429
|
-
"parent": {
|
1430
|
-
"uuid": "ED895B48D50D4E34B5DAF1F697B1FAC5",
|
1431
|
-
"uri": "chassis/ED895B48D50D4E34B5DAF1F697B1FAC5"
|
1432
|
-
}
|
1433
|
-
}]
|
1434
|
-
}]
|
1435
|
-
}
|
8
|
+
{"chassisList":[{"powerSupplySlots":6,"accessState":"Online","manufacturerId":"20301","location":{"lowestRackUnit":0,"location":"No Location Configured","rack":"","room":""},"serialNumber":"10006DA","type":"Chassis","fanSlots":10,"passThroughModules":[],"height":10,"switchSlots":4,"leds":[{"color":"Blue","location":"FrontPanel","name":"Location","state":"Off"}],"description":"IBM Flex System Chassis","errorFields":[],"mgmtProcIPaddress":"10.240.72.61","activationKeys":[],"status":{"message":"MANAGED","name":"MANAGED"},"hostname":"MM5CF3FC25DEB3","powerSupplies":[{"model":"","manufacturerId":"20301","serialNumber":"","inputVoltageIsAC":true,"inputVoltageMin":200,"type":"PowerSupply","dataHandle":0,"cmmDisplayName":"Power Supply 01","leds":[{"color":"Green","location":"Planar","name":"IN","state":"On"}],"description":"2100W Power Supply","name":"Power Supply 01","cmmHealthState":"Normal","userDescription":"","manufactureDate":"5112","partNumber":"69Y5830","firmware":[{"status":"","name":"Power Supply Firmware","role":"","date":"","type":"Power Supply Firmware","build":"","version":"14"}],"machineType":"","hardwareRevision":"2.0","parent":{"uuid":"7F3E7E375B5747E0938969896B1CFDF5","uri":"chassis/7F3E7E375B5747E0938969896B1CFDF5"},"FRU":"69Y5831","uri":"powerSupply/735425074A8511E200FB00FB00FB00FB","productId":"303","powerAllocation":{"totalInputPower":0,"totalOutputPower":0},"powerState":"Unknown","posID":"128","slots":[1],"manufacturer":"IBM","vpdID":"70","uuid":"735425074A8511E200FB00FB00FB00FB","productName":"IBM Flex System Enterprise Chassis 2100W Power Module","fruSerialNumber":"ZK11512CJ007","inputVoltageMax":240}],"uri":"chassis/7F3E7E375B5747E0938969896B1CFDF5","powerAllocation":{"midPlaneCardMaximumAllocatedPower":38,"remainingOutputPower":8718,"totalInputPower":13721,"allocatedOutputPower":3906,"totalOutputPower":12624,"midPlaneCardMinimumAllocatedPower":38},"manufacturer":"IBM","fanMuxes":[{"model":"","manufacturerId":"20301","machineType":"","status":"Normal","hardwareRevision":"5.3","parent":{"uuid":"7F3E7E375B5747E0938969896B1CFDF5","uri":"chassis/7F3E7E375B5747E0938969896B1CFDF5"},"serialNumber":"","FRU":"94Y5805","type":"FanMux","uri":"fanMux/08F010AC32A811E38EC187BED4950FD7","productId":"338","dataHandle":0,"cmmDisplayName":"Fan Logic 01","leds":[{"color":"Amber","location":"FrontPanel","name":"FAULT","state":"Off"}],"manufacturer":"IBM","slots":[1],"description":"fan logic card","name":"Fan Logic 01","uuid":"08F010AC32A811E38EC187BED4950FD7","cmmHealthState":"Normal","manufactureDate":"4311","productName":"IBM Flex System Enterprise Chassis Fan Logic Card","fruSerialNumber":"Y031BG16D093","partNumber":"49Y3276"}],"vpdID":"14","isConnectionTrusted":"true","uuid":"7F3E7E375B5747E0938969896B1CFDF5","activeAlerts":[{"id":"IBM:CMM01:Y034BG176046:01:1075771676:3623","corrIDs":"","location":"01010201","msgID":"CMM0488","severity":"WARNING","msg":"The CMM J40 jumper is installed in bay 1."}],"tlsVersion":{"possibleValues":["SSL_30"],"currentValue":"SSL_30"},"encapsulation":{"encapsulationMode":"notSupported"},"complex":[],"model":"92X","energyPolicies":{"powerRedundancyMode":3,"powerCappingPolicy":{"cappingPolicy":"OFF","maxPowerCap":12624,"currentPowerCap":0,"minPowerCap":3906},"acousticAttenuationMode":"Off","hotAirRecirculation":{"chassisBay":[{"sensorValue":27,"isExceeded":"Y","subSlot":-1,"slot":0,"sensorName":"Chassis Ambient"}],"maxVariation":5,"isEnabled":true}},"fans":[{"model":"","manufacturerId":"20301","serialNumber":"","type":"Fan","dataHandle":0,"cmmDisplayName":"Fan 01","leds":[{"color":"Amber","location":"FrontPanel","name":"FAULT","state":"Off"}],"description":"IBM Fan Pack","name":"Fan 01","errorFields":[],"cmmHealthState":"Normal","userDescription":"","manufactureDate":"2611","partNumber":"88Y6691","firmware":[{"status":"","name":"Fan Controller","role":"","date":"","type":"Fan Controller","build":"","version":"226"}],"machineType":"","hardwareRevision":"4.0","parent":{"uuid":"7F3E7E375B5747E0938969896B1CFDF5","uri":"chassis/7F3E7E375B5747E0938969896B1CFDF5"},"FRU":"88Y6685","uri":"fan/57B16D219DB211E0AEBDBBC70E13DA7F","productId":"342","powerAllocation":{"maximumAllocatedPower":0,"minimumAllocatedPower":0},"powerState":"Unknown","posID":"373","slots":[1],"manufacturer":"IBM","vpdID":"11","uuid":"57B16D219DB211E0AEBDBBC70E13DA7F","productName":"80mm Fan Pack for ITE Cooling","fruSerialNumber":"YK10JPB69K75"}],"bladeSlots":14,"contact":"No Contact Configured","dataHandle":1475529688350,"switches":[{"accessState":"Online","model":"","manufacturerId":"20301","serialNumber":"","type":"Switch","dataHandle":1475526003869,"ipv4Addresses":["10.240.72.62"],"cmmDisplayName":"IO Module 01","backedBy":"real","leds":[{"color":"Blue","location":"FrontPanel","name":"Enclosure Identify","state":"Off"}],"description":"EN4093R 10Gb Ethernet Switch","name":"IO Module 01","errorFields":[{"IOCompatibilityData":"FETCH_FAILED"}],"stackMode":"Standby","attachedNodes":[],"cmmHealthState":"Normal","userDescription":"","partNumber":"95Y3311","ipInterfaces":[{"IPv4enabled":true,"IPv4DHCPmode":"STATIC_ONLY","IPv6enabled":true,"IPv6DHCPenabled":true,"IPv4assignments":[{"id":2,"subnet":"255.255.252.0","gateway":"10.240.72.1","address":"10.240.72.62","type":"CONFIGURED"}],"IPv6assignments":[{"id":1,"scope":"LinkLocal","gateway":"0:0:0:0:0:0:0:0","source":"Other","address":"fe80:0:0:0:aa97:dcff:fe78:4fef","prefix":64,"type":"INUSE"}],"name":"ioe0","IPv6statelessEnabled":true,"label":"","IPv6staticEnabled":false}],"excludedHealthState":"Normal","firmware":[{"status":"Active","name":"Boot ROM","date":"2016-08-03T04:00:00Z","type":"Boot ROM","build":"","version":"7.8.14.5"}],"machineType":"","parent":{"uuid":"7F3E7E375B5747E0938969896B1CFDF5","uri":"chassis/7F3E7E375B5747E0938969896B1CFDF5"},"hostname":"","FRU":"95Y3312","macAddresses":["A8:97:DC:78:4F:EF"],"uri":"switch/1B33D6D13F267A614567A897DC784F00","productId":"471","powerAllocation":{"maximumAllocatedPower":100,"minimumAllocatedPower":100},"powerState":"On","ipv6Addresses":["fe80:0:0:0:aa97:dcff:fe78:4fef"],"posID":"33","overallHealthState":"Normal","protectedMode":"False","manufacturer":"IBM","slots":[1],"vpdID":"304","uuid":"1B33D6D13F267A614567A897DC784F00","productName":"IBM Flex System Fabric EN4093R 10Gb Scalable Switch","dnsHostnames":["SW-Y010CM3BE008.labs.lenovo.com"],"fruSerialNumber":"Y010CM3BE008"}],"fanMuxSlots":2,"backedBy":"real","cmmDisplayName":"SN#Y034BG176046","name":"SN#Y034BG176046","ledCardSlots":1,"SecurityPolicy":{"cmmPolicyState":"ACTIVE","cmmPolicyLevel":"SECURE"},"cmmHealthState":"Non-Critical","userDescription":"","partNumber":"88Y6660","excludedHealthState":"Critical","machineType":"7893","cmms":[{"accessState":"Online","model":"","manufacturerId":"20301","serialNumber":"","type":"CMM","dataHandle":1475525612693,"ipv4Addresses":["10.240.72.61"],"backedBy":"real","cmmDisplayName":"SN#Y034BG176046","hostConfig":[{"DDNSenabled":false,"terIPv6userDNSserver":"0:0:0:0:0:0:0:0","DNSenabled":false,"IPversionPriority":"IPv6ThenIPv4","secIPv4userDNSserver":"10.240.0.11","terIPv4userDNSserver":"0.0.0.0","priIPv6userDNSserver":"0:0:0:0:0:0:0:0","secIPv6userDNSserver":"0:0:0:0:0:0:0:0","priIPv4userDNSserver":"10.240.0.10"}],"leds":[{"color":"Amber","location":"FrontPanel","name":"FAULT","state":"Off"}],"description":"CMM","name":"SN#Y034BG176046","mgmtProcIPaddress":"10.240.72.61","errorFields":[],"role":"primary","cmmHealthState":"Non-Critical","userDescription":"","partNumber":"68Y7029","ipInterfaces":[{"IPv4enabled":true,"IPv4DHCPmode":"STATIC_ONLY","IPv6enabled":true,"IPv6DHCPenabled":true,"IPv4assignments":[{"id":2,"subnet":"255.255.252.0","gateway":"10.240.72.1","address":"10.240.72.61","type":"CONFIGURED"}],"IPv6assignments":[{"id":1,"scope":"LinkLocal","gateway":"0:0:0:0:0:0:0:0","source":"Other","address":"fe80:0:0:0:5ef3:fcff:fe25:deb3","prefix":64,"type":"INUSE"}],"name":"eth0","IPv6statelessEnabled":false,"label":"External","IPv6staticEnabled":false}],"excludedHealthState":"Warning","firmware":[{"status":"","name":"CMM firmware","role":"","date":"2016-07-29T04:00:00Z","type":"CMM firmware","build":"2PET33B","version":"2.5.7"}],"machineType":"","parent":{"uuid":"7F3E7E375B5747E0938969896B1CFDF5","uri":"chassis/7F3E7E375B5747E0938969896B1CFDF5"},"hostname":"MM5CF3FC25DEB3","domainName":"labs.lenovo.com","FRU":"68Y7032","macAddresses":["5C:F3:FC:25:DE:B3"],"uri":"cmm/80C0B2F6B84011E0B504EC89B07DB965","productId":"65","powerAllocation":{"maximumAllocatedPower":20,"minimumAllocatedPower":20},"ipv6Addresses":["fe80:0:0:0:5ef3:fcff:fe25:deb3"],"overallHealthState":"Warning","slots":[1],"manufacturer":"IBM","uuid":"80C0B2F6B84011E0B504EC89B07DB965","dnsHostnames":["Chassis119.labs.lenovo.com"],"fruSerialNumber":"Y034BG176046"}],"mmSlots":2,"managerName":"UNKNOWN","domainName":"labs.lenovo.com","managerUuid":"UNKNOWN","productId":"336","nist":{"possibleValues":["Compatibility"],"currentValue":"Compatibility"},"posID":"336","overallHealthState":"Critical","nodes":[{"accessState":"Online","arch":"x86","manufacturerId":"20301","location":{"lowestRackUnit":0,"location":"No Location Configured","rack":"","room":""},"addinCardSlots":0,"serialNumber":"23RBT03","driveBays":8,"macAddress":"5C:F3:FC:6E:10:B9,5C:F3:FC:6E:10:BA","type":"ITE","lanOverUsb":"enabled","onboardPciDevices":[{"pciSubID":"405","fodUniqueID":"","pciRevision":"0","isAgentless":false,"pciBusNumber":"4","pciSubVendorID":"1014","isAddOnCard":false,"pciDeviceNumber":"0","posID":"534","pciFunctionNumber":"0","portInfo":{},"name":"","vpdID":"102b"}],"leds":[{"color":"Yellow","location":"FrontPanel","name":"Fault","state":"Off"}],"description":"HX24","mgmtProcIPaddress":"10.240.72.66","expansionCards":[{"pciSubID":"24","firmware":[{"revision":"0","classifications":[13],"status":"Active","name":"QLogic Adapter Software Bundle","role":"Primary","softwareID":"16570024","type":"Software Bundle","build":"0","date":"2013-09-05T00:00:00Z","version":"3.2.5.5"}],"slotSupportsHotPlug":"false","isAgentless":true,"pciRevision":"1","pciBusNumber":"22","pciSubVendorID":"1657","FRU":"88Y6373","pciDeviceNumber":"0","slotNumber":"2","posID":"22","pciFunctionNumber":"0","bay":2,"manufacturer":"IBM","name":"IBM Flex System FC5022 2-Port 16Gb FC Adapter","vpdID":"1657","uuid":"0D00463D9A4811E1BACA8C7CFF317CFF","productName":"IBM Flex System FC5022 2-Port 16Gb FC Adapter","partNumber":"88Y6372","fruSerialNumber":"Y050UZ29502E","slotName":"SlotDesig3_Mezzanine 2 Card"}],"errorFields":[{"IOCompatibilityData":"FETCH_FAILED"}],"ipInterfaces":[{"IPv4enabled":true,"IPv4DHCPmode":"STATIC_ONLY","IPv6enabled":true,"IPv6DHCPenabled":false,"IPv4assignments":[{"id":0,"subnet":"255.255.252.0","gateway":"0.0.0.0","address":"10.240.72.66","type":"INUSE"}],"IPv6assignments":[{"id":0,"scope":"Global","gateway":"0:0:0:0:0:0:0:0","source":"Static","address":"fd72:56fc:a162:0:5ef3:fcff:fe6e:10b9","prefix":64,"type":"INUSE"}],"name":"eth0","IPv6statelessEnabled":false,"label":"unknown","IPv6staticEnabled":true}],"firmware":[{"status":"Active","name":"UEFI Firmware/BIOS","role":"Primary","date":"2015-11-25T00:00:00Z","type":"UEFI","build":"B2E151CUS","version":"1.80"}],"bladeState":1,"activationKeys":[],"status":{"message":"managed","name":"MANAGED"},"bladeState_health":"WARNING","parent":{"uuid":"7F3E7E375B5747E0938969896B1CFDF5","uri":"chassis/7F3E7E375B5747E0938969896B1CFDF5"},"hostname":"ite-bt-101-imm1","powerSupplies":[],"FRU":"81Y5128","uri":"node/6B538D351B8211E193F65CF3FC6E4030","vnicMode":"enabled","powerAllocation":{"maximumAllocatedPower":181,"minimumAllocatedPower":84},"expansionProductType":"","powerStatus":8,"bootOrder":{"uri":"node/6B538D351B8211E193F65CF3FC6E4030/bootOrder","bootOrderList":[{"currentBootOrderDevices":["None"],"bootType":"SingleUse","possibleBootOrderDevices":["None"]}]},"expansionProducts":[],"ipv6Addresses":["fd72:56fc:a162:0:5ef3:fcff:fe6e:10b9"],"slots":[1],"manufacturer":"IBM","addinCards":[],"raidSettings":[],"vpdID":"20","uuid":"6B538D351B8211E193F65CF3FC6E4030","isConnectionTrusted":"true","memoryModules":[{"model":"DDR3","speed":1333,"manufacturer":"Samsung","capacity":2,"serialNumber":"827D4D6A","displayName":"DIMM 1","slot":1,"type":"DDR3","partNumber":"M393B5773CH0-YH9"}],"fruSerialNumber":"Y032BG1AW010","encapsulation":{"encapsulationMode":"notSupported"},"secureBootMode":{"possibleValues":[],"currentValue":""},"tlsVersion":{"possibleValues":["TLS_10"],"currentValue":"Unknown"},"model":"AC1","isScalable":false,"expansionCardSlots":2,"isITME":false,"hostMacAddresses":"5C:F3:FC:6E:40:30,5C:F3:FC:6E:40:31,5C:F3:FC:6E:40:32,5C:F3:FC:6E:40:33,5C:F3:FC:6E:40:34,5C:F3:FC:6E:40:35,5C:F3:FC:6E:40:36,5C:F3:FC:6E:40:37","contact":"Fred","dataHandle":1475527436785,"ipv4Addresses":["10.240.72.66"],"cmmDisplayName":"Node 01","backedBy":"real","complexID":-1,"name":"Web Server 1","memorySlots":24,"drives":[{"bay":1,"capacity":-1}],"cmmHealthState":"Non-Critical","userDescription":"","subSlots":[],"partNumber":"49Y8176","excludedHealthState":"Minor-Failure","bladeState_string":"Web Server 1","machineType":"8737","isRemotePresenceEnabled":true,"pciDevices":[{"pciSubID":"405","fodUniqueID":"","pciRevision":"0","isAgentless":false,"pciBusNumber":"4","pciSubVendorID":"1014","isAddOnCard":false,"pciDeviceNumber":"0","posID":"534","pciFunctionNumber":"0","portInfo":{},"name":"","vpdID":"102b"}],"domainName":"","processors":[{"speed":2.7,"manufacturer":"Intel(R) Corporation","family":"INTEL_R_XEON_TM","displayName":"Intel(R) Xeon(R) CPU E5-2680 0 @ 2.70GHz","slot":1,"productVersion":"Intel(R) Xeon(R) CPU E5-2680 0 @ 2.70GHz","cores":8}],"processorSlots":2,"pciCapabilities":["Raid Link"],"productId":"321","hasOS":false,"lanOverUsbPortForwardingModes":[{"state":"disabled","type":"DSA","externalIPAddress":""}],"bootMode":{"possibleValues":["UEFI and Legacy"],"currentValue":"UEFI Only"},"ports":[{"ioModuleBay":0,"portNumber":1}],"embeddedHypervisorPresence":false,"posID":"256","nist":{"possibleValues":["Compatibility"],"currentValue":"Unknown"},"overallHealthState":"Minor-Failure","subType":"Blacktip","partitionID":-1,"flashStorage":[],"productName":"IBM Flex System C4240 M4 Compute Node","dnsHostnames":["ite-bt-101-imm1.labs.lenovo.com"]}],"displayName":"SN#Y034BG176046","productName":"IBM Chassis Midplane"}]}
|
9
|
+
+ Response 400
|
10
|
+
+ Response 401
|
11
|
+
+ Response 404
|
12
|
+
+ Response 409
|
13
|
+
+ Response 500
|
14
|
+
|
15
|
+
# GET /chassis?includeAttributes=type
|
16
|
+
|
17
|
+
+ Response 200 (application/json)
|
18
|
+
{"chassisList":[{"accessState":"Online","type":"That Machine","activationKeys":[],"uuid":"7F3E7E375B5747E0938969896B1CFDF5","uri":"chassis/7F3E7E375B5747E0938969896B1CFDF5","dataHandle":1475529234174}]}
|
19
|
+
+ Response 400
|
20
|
+
+ Response 401
|
21
|
+
+ Response 404
|
22
|
+
+ Response 409
|
23
|
+
+ Response 500
|
24
|
+
|
25
|
+
# GET /chassis?excludeAttributes=accessState,activationKeys
|
26
|
+
|
27
|
+
+ Response 200 (application/json)
|
28
|
+
{"chassisList":[{"powerSupplySlots":6,"manufacturerId":"20301","location":{"lowestRackUnit":0,"location":"No Location Configured","rack":"","room":""},"serialNumber":"10006DA","type":"Chassis","fanSlots":10,"passThroughModules":[],"height":10,"switchSlots":4,"leds":[{"color":"Blue","location":"FrontPanel","name":"Location","state":"Off"}],"description":"IBM Flex System Chassis","errorFields":[],"mgmtProcIPaddress":"10.240.72.61","status":{"message":"MANAGED","name":"MANAGED"},"hostname":"MM5CF3FC25DEB3","powerSupplies":[{"model":"","manufacturerId":"20301","serialNumber":"","inputVoltageIsAC":true,"inputVoltageMin":200,"type":"PowerSupply","dataHandle":0,"cmmDisplayName":"Power Supply 01","leds":[{"color":"Green","location":"Planar","name":"IN","state":"On"}],"description":"2100W Power Supply","name":"Power Supply 01","cmmHealthState":"Normal","userDescription":"","manufactureDate":"5112","partNumber":"69Y5830","firmware":[{"status":"","name":"Power Supply Firmware","role":"","date":"","type":"Power Supply Firmware","build":"","version":"14"}],"machineType":"","hardwareRevision":"2.0","parent":{"uuid":"7F3E7E375B5747E0938969896B1CFDF5","uri":"chassis/7F3E7E375B5747E0938969896B1CFDF5"},"FRU":"69Y5831","uri":"powerSupply/735425074A8511E200FB00FB00FB00FB","productId":"303","powerAllocation":{"totalInputPower":0,"totalOutputPower":0},"powerState":"Unknown","posID":"128","slots":[1],"manufacturer":"IBM","vpdID":"70","uuid":"735425074A8511E200FB00FB00FB00FB","productName":"IBM Flex System Enterprise Chassis 2100W Power Module","fruSerialNumber":"ZK11512CJ007","inputVoltageMax":240}],"uri":"chassis/7F3E7E375B5747E0938969896B1CFDF5","powerAllocation":{"midPlaneCardMaximumAllocatedPower":38,"remainingOutputPower":8718,"totalInputPower":13721,"allocatedOutputPower":3906,"totalOutputPower":12624,"midPlaneCardMinimumAllocatedPower":38},"manufacturer":"IBM","fanMuxes":[{"model":"","manufacturerId":"20301","machineType":"","status":"Normal","hardwareRevision":"5.3","parent":{"uuid":"7F3E7E375B5747E0938969896B1CFDF5","uri":"chassis/7F3E7E375B5747E0938969896B1CFDF5"},"serialNumber":"","FRU":"94Y5805","type":"FanMux","uri":"fanMux/08F010AC32A811E38EC187BED4950FD7","productId":"338","dataHandle":0,"cmmDisplayName":"Fan Logic 01","leds":[{"color":"Amber","location":"FrontPanel","name":"FAULT","state":"Off"}],"manufacturer":"IBM","slots":[1],"description":"fan logic card","name":"Fan Logic 01","uuid":"08F010AC32A811E38EC187BED4950FD7","cmmHealthState":"Normal","manufactureDate":"4311","productName":"IBM Flex System Enterprise Chassis Fan Logic Card","fruSerialNumber":"Y031BG16D093","partNumber":"49Y3276"}],"vpdID":"14","isConnectionTrusted":"true","uuid":"7F3E7E375B5747E0938969896B1CFDF5","activeAlerts":[{"id":"IBM:CMM01:Y034BG176046:01:1075771676:3108","corrIDs":"","location":"01010201","msgID":"CMM0488","severity":"WARNING","msg":"The CMM J40 jumper is installed in bay 1."}],"tlsVersion":{"possibleValues":["SSL_30"],"currentValue":"SSL_30"},"encapsulation":{"encapsulationMode":"notSupported"},"complex":[],"model":"92X","energyPolicies":{"powerRedundancyMode":3,"powerCappingPolicy":{"cappingPolicy":"OFF","maxPowerCap":12624,"currentPowerCap":0,"minPowerCap":3906},"acousticAttenuationMode":"Off","hotAirRecirculation":{"chassisBay":[{"sensorValue":27,"isExceeded":"Y","subSlot":-1,"slot":0,"sensorName":"Chassis Ambient"}],"maxVariation":5,"isEnabled":true}},"fans":[{"model":"","manufacturerId":"20301","serialNumber":"","type":"Fan","dataHandle":0,"cmmDisplayName":"Fan 01","leds":[{"color":"Amber","location":"FrontPanel","name":"FAULT","state":"Off"}],"description":"IBM Fan Pack","name":"Fan 01","errorFields":[],"cmmHealthState":"Normal","userDescription":"","manufactureDate":"2611","partNumber":"88Y6691","firmware":[{"status":"","name":"Fan Controller","role":"","date":"","type":"Fan Controller","build":"","version":"226"}],"machineType":"","hardwareRevision":"4.0","parent":{"uuid":"7F3E7E375B5747E0938969896B1CFDF5","uri":"chassis/7F3E7E375B5747E0938969896B1CFDF5"},"FRU":"88Y6685","uri":"fan/57B16D219DB211E0AEBDBBC70E13DA7F","productId":"342","powerAllocation":{"maximumAllocatedPower":0,"minimumAllocatedPower":0},"powerState":"Unknown","posID":"373","slots":[1],"manufacturer":"IBM","vpdID":"11","uuid":"57B16D219DB211E0AEBDBBC70E13DA7F","productName":"80mm Fan Pack for ITE Cooling","fruSerialNumber":"YK10JPB69K75"}],"bladeSlots":14,"contact":"No Contact Configured","dataHandle":1475529328729,"switches":[{"model":"","manufacturerId":"20301","serialNumber":"","type":"Switch","dataHandle":1475526003869,"ipv4Addresses":["10.240.72.62"],"cmmDisplayName":"IO Module 01","backedBy":"real","leds":[{"color":"Blue","location":"FrontPanel","name":"Enclosure Identify","state":"Off"}],"description":"EN4093R 10Gb Ethernet Switch","name":"IO Module 01","errorFields":[{"IOCompatibilityData":"FETCH_FAILED"}],"stackMode":"Standby","attachedNodes":[],"cmmHealthState":"Normal","userDescription":"","partNumber":"95Y3311","ipInterfaces":[{"IPv4enabled":true,"IPv4DHCPmode":"STATIC_ONLY","IPv6enabled":true,"IPv6DHCPenabled":true,"IPv4assignments":[{"id":2,"subnet":"255.255.252.0","gateway":"10.240.72.1","address":"10.240.72.62","type":"CONFIGURED"}],"IPv6assignments":[{"id":1,"scope":"LinkLocal","gateway":"0:0:0:0:0:0:0:0","source":"Other","address":"fe80:0:0:0:aa97:dcff:fe78:4fef","prefix":64,"type":"INUSE"}],"name":"ioe0","IPv6statelessEnabled":true,"label":"","IPv6staticEnabled":false}],"excludedHealthState":"Normal","firmware":[{"status":"Active","name":"Boot ROM","date":"2016-08-03T04:00:00Z","type":"Boot ROM","build":"","version":"7.8.14.5"}],"machineType":"","parent":{"uuid":"7F3E7E375B5747E0938969896B1CFDF5","uri":"chassis/7F3E7E375B5747E0938969896B1CFDF5"},"hostname":"","FRU":"95Y3312","macAddresses":["A8:97:DC:78:4F:EF"],"uri":"switch/1B33D6D13F267A614567A897DC784F00","productId":"471","powerAllocation":{"maximumAllocatedPower":100,"minimumAllocatedPower":100},"powerState":"On","ipv6Addresses":["fe80:0:0:0:aa97:dcff:fe78:4fef"],"posID":"33","overallHealthState":"Normal","protectedMode":"False","manufacturer":"IBM","slots":[1],"vpdID":"304","uuid":"1B33D6D13F267A614567A897DC784F00","productName":"IBM Flex System Fabric EN4093R 10Gb Scalable Switch","dnsHostnames":["SW-Y010CM3BE008.labs.lenovo.com"],"fruSerialNumber":"Y010CM3BE008"}],"fanMuxSlots":2,"backedBy":"real","cmmDisplayName":"SN#Y034BG176046","name":"SN#Y034BG176046","ledCardSlots":1,"SecurityPolicy":{"cmmPolicyState":"ACTIVE","cmmPolicyLevel":"SECURE"},"cmmHealthState":"Non-Critical","userDescription":"","partNumber":"88Y6660","excludedHealthState":"Critical","machineType":"7893","cmms":[{"model":"","manufacturerId":"20301","serialNumber":"","type":"CMM","dataHandle":1475525612693,"ipv4Addresses":["10.240.72.61"],"backedBy":"real","cmmDisplayName":"SN#Y034BG176046","hostConfig":[{"DDNSenabled":false,"terIPv6userDNSserver":"0:0:0:0:0:0:0:0","DNSenabled":false,"IPversionPriority":"IPv6ThenIPv4","secIPv4userDNSserver":"10.240.0.11","terIPv4userDNSserver":"0.0.0.0","priIPv6userDNSserver":"0:0:0:0:0:0:0:0","secIPv6userDNSserver":"0:0:0:0:0:0:0:0","priIPv4userDNSserver":"10.240.0.10"}],"leds":[{"color":"Amber","location":"FrontPanel","name":"FAULT","state":"Off"}],"description":"CMM","name":"SN#Y034BG176046","mgmtProcIPaddress":"10.240.72.61","errorFields":[],"role":"primary","cmmHealthState":"Non-Critical","userDescription":"","partNumber":"68Y7029","ipInterfaces":[{"IPv4enabled":true,"IPv4DHCPmode":"STATIC_ONLY","IPv6enabled":true,"IPv6DHCPenabled":true,"IPv4assignments":[{"id":2,"subnet":"255.255.252.0","gateway":"10.240.72.1","address":"10.240.72.61","type":"CONFIGURED"}],"IPv6assignments":[{"id":1,"scope":"LinkLocal","gateway":"0:0:0:0:0:0:0:0","source":"Other","address":"fe80:0:0:0:5ef3:fcff:fe25:deb3","prefix":64,"type":"INUSE"}],"name":"eth0","IPv6statelessEnabled":false,"label":"External","IPv6staticEnabled":false}],"excludedHealthState":"Warning","firmware":[{"status":"","name":"CMM firmware","role":"","date":"2016-07-29T04:00:00Z","type":"CMM firmware","build":"2PET33B","version":"2.5.7"}],"machineType":"","parent":{"uuid":"7F3E7E375B5747E0938969896B1CFDF5","uri":"chassis/7F3E7E375B5747E0938969896B1CFDF5"},"hostname":"MM5CF3FC25DEB3","domainName":"labs.lenovo.com","FRU":"68Y7032","macAddresses":["5C:F3:FC:25:DE:B3"],"uri":"cmm/80C0B2F6B84011E0B504EC89B07DB965","productId":"65","powerAllocation":{"maximumAllocatedPower":20,"minimumAllocatedPower":20},"ipv6Addresses":["fe80:0:0:0:5ef3:fcff:fe25:deb3"],"overallHealthState":"Warning","slots":[1],"manufacturer":"IBM","uuid":"80C0B2F6B84011E0B504EC89B07DB965","dnsHostnames":["Chassis119.labs.lenovo.com"],"fruSerialNumber":"Y034BG176046"}],"mmSlots":2,"managerName":"UNKNOWN","domainName":"labs.lenovo.com","managerUuid":"UNKNOWN","productId":"336","nist":{"possibleValues":["Compatibility"],"currentValue":"Compatibility"},"posID":"336","overallHealthState":"Critical","nodes":[{"arch":"x86","manufacturerId":"20301","location":{"lowestRackUnit":0,"location":"No Location Configured","rack":"","room":""},"addinCardSlots":0,"serialNumber":"23RBT03","driveBays":8,"macAddress":"5C:F3:FC:6E:10:B9,5C:F3:FC:6E:10:BA","type":"ITE","lanOverUsb":"enabled","onboardPciDevices":[{"pciSubID":"405","fodUniqueID":"","pciRevision":"0","isAgentless":false,"pciBusNumber":"4","pciSubVendorID":"1014","isAddOnCard":false,"pciDeviceNumber":"0","posID":"534","pciFunctionNumber":"0","portInfo":{},"name":"","vpdID":"102b"}],"leds":[{"color":"Yellow","location":"FrontPanel","name":"Fault","state":"Off"}],"description":"HX24","mgmtProcIPaddress":"10.240.72.66","expansionCards":[{"pciSubID":"24","firmware":[{"revision":"0","classifications":[13],"status":"Active","name":"QLogic Adapter Software Bundle","role":"Primary","softwareID":"16570024","type":"Software Bundle","build":"0","date":"2013-09-05T00:00:00Z","version":"3.2.5.5"}],"slotSupportsHotPlug":"false","isAgentless":true,"pciRevision":"1","pciBusNumber":"22","pciSubVendorID":"1657","FRU":"88Y6373","pciDeviceNumber":"0","slotNumber":"2","posID":"22","pciFunctionNumber":"0","bay":2,"manufacturer":"IBM","name":"IBM Flex System FC5022 2-Port 16Gb FC Adapter","vpdID":"1657","uuid":"0D00463D9A4811E1BACA8C7CFF317CFF","productName":"IBM Flex System FC5022 2-Port 16Gb FC Adapter","partNumber":"88Y6372","fruSerialNumber":"Y050UZ29502E","slotName":"SlotDesig3_Mezzanine 2 Card"}],"errorFields":[{"IOCompatibilityData":"FETCH_FAILED"}],"ipInterfaces":[{"IPv4enabled":true,"IPv4DHCPmode":"STATIC_ONLY","IPv6enabled":true,"IPv6DHCPenabled":false,"IPv4assignments":[{"id":0,"subnet":"255.255.252.0","gateway":"0.0.0.0","address":"10.240.72.66","type":"INUSE"}],"IPv6assignments":[{"id":0,"scope":"Global","gateway":"0:0:0:0:0:0:0:0","source":"Static","address":"fd72:56fc:a162:0:5ef3:fcff:fe6e:10b9","prefix":64,"type":"INUSE"}],"name":"eth0","IPv6statelessEnabled":false,"label":"unknown","IPv6staticEnabled":true}],"firmware":[{"status":"Active","name":"UEFI Firmware/BIOS","role":"Primary","date":"2015-11-25T00:00:00Z","type":"UEFI","build":"B2E151CUS","version":"1.80"}],"bladeState":1,"status":{"message":"managed","name":"MANAGED"},"bladeState_health":"WARNING","parent":{"uuid":"7F3E7E375B5747E0938969896B1CFDF5","uri":"chassis/7F3E7E375B5747E0938969896B1CFDF5"},"hostname":"ite-bt-101-imm1","powerSupplies":[],"FRU":"81Y5128","uri":"node/6B538D351B8211E193F65CF3FC6E4030","vnicMode":"enabled","powerAllocation":{"maximumAllocatedPower":181,"minimumAllocatedPower":84},"expansionProductType":"","powerStatus":8,"bootOrder":{"uri":"node/6B538D351B8211E193F65CF3FC6E4030/bootOrder","bootOrderList":[{"currentBootOrderDevices":["None"],"bootType":"SingleUse","possibleBootOrderDevices":["None"]}]},"expansionProducts":[],"ipv6Addresses":["fd72:56fc:a162:0:5ef3:fcff:fe6e:10b9"],"slots":[1],"manufacturer":"IBM","addinCards":[],"raidSettings":[],"vpdID":"20","uuid":"6B538D351B8211E193F65CF3FC6E4030","isConnectionTrusted":"true","memoryModules":[{"model":"DDR3","speed":1333,"manufacturer":"Samsung","capacity":2,"serialNumber":"827D4D6A","displayName":"DIMM 1","slot":1,"type":"DDR3","partNumber":"M393B5773CH0-YH9"}],"fruSerialNumber":"Y032BG1AW010","encapsulation":{"encapsulationMode":"notSupported"},"secureBootMode":{"possibleValues":[],"currentValue":""},"tlsVersion":{"possibleValues":["TLS_10"],"currentValue":"Unknown"},"model":"AC1","isScalable":false,"expansionCardSlots":2,"isITME":false,"hostMacAddresses":"5C:F3:FC:6E:40:30,5C:F3:FC:6E:40:31,5C:F3:FC:6E:40:32,5C:F3:FC:6E:40:33,5C:F3:FC:6E:40:34,5C:F3:FC:6E:40:35,5C:F3:FC:6E:40:36,5C:F3:FC:6E:40:37","contact":"Fred","dataHandle":1475527436785,"ipv4Addresses":["10.240.72.66"],"cmmDisplayName":"Node 01","backedBy":"real","complexID":-1,"name":"Web Server 1","memorySlots":24,"drives":[{"bay":1,"capacity":-1}],"cmmHealthState":"Non-Critical","userDescription":"","subSlots":[],"partNumber":"49Y8176","excludedHealthState":"Minor-Failure","bladeState_string":"Web Server 1","machineType":"8737","isRemotePresenceEnabled":true,"pciDevices":[{"pciSubID":"405","fodUniqueID":"","pciRevision":"0","isAgentless":false,"pciBusNumber":"4","pciSubVendorID":"1014","isAddOnCard":false,"pciDeviceNumber":"0","posID":"534","pciFunctionNumber":"0","portInfo":{},"name":"","vpdID":"102b"}],"domainName":"","processors":[{"speed":2.7,"manufacturer":"Intel(R) Corporation","family":"INTEL_R_XEON_TM","displayName":"Intel(R) Xeon(R) CPU E5-2680 0 @ 2.70GHz","slot":1,"productVersion":"Intel(R) Xeon(R) CPU E5-2680 0 @ 2.70GHz","cores":8}],"processorSlots":2,"pciCapabilities":["Raid Link"],"productId":"321","hasOS":false,"lanOverUsbPortForwardingModes":[{"state":"disabled","type":"DSA","externalIPAddress":""}],"bootMode":{"possibleValues":["UEFI and Legacy"],"currentValue":"UEFI Only"},"ports":[{"ioModuleBay":0,"portNumber":1}],"embeddedHypervisorPresence":false,"posID":"256","nist":{"possibleValues":["Compatibility"],"currentValue":"Unknown"},"overallHealthState":"Minor-Failure","subType":"Blacktip","partitionID":-1,"flashStorage":[],"productName":"IBM Flex System C4240 M4 Compute Node","dnsHostnames":["ite-bt-101-imm1.labs.lenovo.com"]}],"displayName":"SN#Y034BG176046","productName":"IBM Chassis Midplane"}]}
|
29
|
+
+ Response 400
|
30
|
+
+ Response 401
|
31
|
+
+ Response 404
|
32
|
+
+ Response 409
|
33
|
+
+ Response 500
|
34
|
+
|
35
|
+
# GET /chassis/7F3E7E375B5747E0938969896B1CFDF5?includeAttributes=type
|
36
|
+
|
37
|
+
+ Response 200 (application/json)
|
38
|
+
|
39
|
+
{"accessState":"Online","type":"That Machine","activationKeys":[],"uuid":"7F3E7E375B5747E0938969896B1CFDF5","uri":"chassis/7F3E7E375B5747E0938969896B1CFDF5","dataHandle":1475529234174}
|
40
|
+
+ Response 400
|
41
|
+
+ Response 401
|
42
|
+
+ Response 404
|
43
|
+
+ Response 409
|
44
|
+
+ Response 500
|
45
|
+
|
46
|
+
# GET /chassis/7F3E7E375B5747E0938969896B1CFDF5?excludeAttributes=accessState,activationKeys
|
47
|
+
|
48
|
+
+ Response 200 (application/json)
|
49
|
+
|
50
|
+
{"powerSupplySlots":6,"manufacturerId":"20301","location":{"lowestRackUnit":0,"location":"No Location Configured","rack":"","room":""},"serialNumber":"10006DA","type":"Chassis","fanSlots":10,"passThroughModules":[],"height":10,"switchSlots":4,"leds":[{"color":"Blue","location":"FrontPanel","name":"Location","state":"Off"}],"description":"IBM Flex System Chassis","errorFields":[],"mgmtProcIPaddress":"10.240.72.61","status":{"message":"MANAGED","name":"MANAGED"},"hostname":"MM5CF3FC25DEB3","powerSupplies":[{"model":"","manufacturerId":"20301","serialNumber":"","inputVoltageIsAC":true,"inputVoltageMin":200,"type":"PowerSupply","dataHandle":0,"cmmDisplayName":"Power Supply 01","leds":[{"color":"Green","location":"Planar","name":"IN","state":"On"}],"description":"2100W Power Supply","name":"Power Supply 01","cmmHealthState":"Normal","userDescription":"","manufactureDate":"5112","partNumber":"69Y5830","firmware":[{"status":"","name":"Power Supply Firmware","role":"","date":"","type":"Power Supply Firmware","build":"","version":"14"}],"machineType":"","hardwareRevision":"2.0","parent":{"uuid":"7F3E7E375B5747E0938969896B1CFDF5","uri":"chassis/7F3E7E375B5747E0938969896B1CFDF5"},"FRU":"69Y5831","uri":"powerSupply/735425074A8511E200FB00FB00FB00FB","productId":"303","powerAllocation":{"totalInputPower":0,"totalOutputPower":0},"powerState":"Unknown","posID":"128","slots":[1],"manufacturer":"IBM","vpdID":"70","uuid":"735425074A8511E200FB00FB00FB00FB","productName":"IBM Flex System Enterprise Chassis 2100W Power Module","fruSerialNumber":"ZK11512CJ007","inputVoltageMax":240}],"uri":"chassis/7F3E7E375B5747E0938969896B1CFDF5","powerAllocation":{"midPlaneCardMaximumAllocatedPower":38,"remainingOutputPower":8718,"totalInputPower":13721,"allocatedOutputPower":3906,"totalOutputPower":12624,"midPlaneCardMinimumAllocatedPower":38},"manufacturer":"IBM","fanMuxes":[{"model":"","manufacturerId":"20301","machineType":"","status":"Normal","hardwareRevision":"5.3","parent":{"uuid":"7F3E7E375B5747E0938969896B1CFDF5","uri":"chassis/7F3E7E375B5747E0938969896B1CFDF5"},"serialNumber":"","FRU":"94Y5805","type":"FanMux","uri":"fanMux/08F010AC32A811E38EC187BED4950FD7","productId":"338","dataHandle":0,"cmmDisplayName":"Fan Logic 01","leds":[{"color":"Amber","location":"FrontPanel","name":"FAULT","state":"Off"}],"manufacturer":"IBM","slots":[1],"description":"fan logic card","name":"Fan Logic 01","uuid":"08F010AC32A811E38EC187BED4950FD7","cmmHealthState":"Normal","manufactureDate":"4311","productName":"IBM Flex System Enterprise Chassis Fan Logic Card","fruSerialNumber":"Y031BG16D093","partNumber":"49Y3276"}],"vpdID":"14","isConnectionTrusted":"true","uuid":"7F3E7E375B5747E0938969896B1CFDF5","activeAlerts":[{"id":"IBM:CMM01:Y034BG176046:01:1075771676:68429","corrIDs":"","location":"01010201","msgID":"CMM0488","severity":"WARNING","msg":"The CMM J40 jumper is installed in bay 1."}],"tlsVersion":{"possibleValues":["SSL_30"],"currentValue":"SSL_30"},"encapsulation":{"encapsulationMode":"notSupported"},"complex":[],"model":"92X","energyPolicies":{"powerRedundancyMode":3,"powerCappingPolicy":{"cappingPolicy":"OFF","maxPowerCap":12624,"currentPowerCap":0,"minPowerCap":3906},"acousticAttenuationMode":"Off","hotAirRecirculation":{"chassisBay":[{"sensorValue":27,"isExceeded":"Y","subSlot":-1,"slot":0,"sensorName":"Chassis Ambient"}],"maxVariation":5,"isEnabled":true}},"fans":[{"model":"","manufacturerId":"20301","serialNumber":"","type":"Fan","dataHandle":0,"cmmDisplayName":"Fan 01","leds":[{"color":"Amber","location":"FrontPanel","name":"FAULT","state":"Off"}],"description":"IBM Fan Pack","name":"Fan 01","errorFields":[],"cmmHealthState":"Normal","userDescription":"","manufactureDate":"2611","partNumber":"88Y6691","firmware":[{"status":"","name":"Fan Controller","role":"","date":"","type":"Fan Controller","build":"","version":"226"}],"machineType":"","hardwareRevision":"4.0","parent":{"uuid":"7F3E7E375B5747E0938969896B1CFDF5","uri":"chassis/7F3E7E375B5747E0938969896B1CFDF5"},"FRU":"88Y6685","uri":"fan/57B16D219DB211E0AEBDBBC70E13DA7F","productId":"342","powerAllocation":{"maximumAllocatedPower":0,"minimumAllocatedPower":0},"powerState":"Unknown","posID":"373","slots":[1],"manufacturer":"IBM","vpdID":"11","uuid":"57B16D219DB211E0AEBDBBC70E13DA7F","productName":"80mm Fan Pack for ITE Cooling","fruSerialNumber":"YK10JPB69K75"}],"bladeSlots":14,"contact":"No Contact Configured","dataHandle":1475581033352,"switches":[{"model":"","manufacturerId":"20301","serialNumber":"","type":"Switch","dataHandle":1475537616428,"ipv4Addresses":["10.240.72.62"],"cmmDisplayName":"IO Module 01","backedBy":"real","leds":[{"color":"Blue","location":"FrontPanel","name":"Enclosure Identify","state":"Off"}],"description":"EN4093R 10Gb Ethernet Switch","name":"IO Module 01","errorFields":[{"IOCompatibilityData":"FETCH_FAILED"}],"stackMode":"Standby","attachedNodes":[],"cmmHealthState":"Normal","userDescription":"","partNumber":"95Y3311","ipInterfaces":[{"IPv4enabled":true,"IPv4DHCPmode":"STATIC_ONLY","IPv6enabled":true,"IPv6DHCPenabled":true,"IPv4assignments":[{"id":2,"subnet":"255.255.252.0","gateway":"10.240.72.1","address":"10.240.72.62","type":"INUSE"}],"IPv6assignments":[{"id":1,"scope":"LinkLocal","gateway":"0:0:0:0:0:0:0:0","source":"Other","address":"fe80:0:0:0:aa97:dcff:fe78:4fef","prefix":64,"type":"INUSE"}],"name":"ioe0","IPv6statelessEnabled":true,"label":"","IPv6staticEnabled":false}],"excludedHealthState":"Normal","firmware":[{"status":"Active","name":"Boot ROM","date":"2016-08-03T04:00:00Z","type":"Boot ROM","build":"","version":"7.8.14.5"}],"machineType":"","parent":{"uuid":"7F3E7E375B5747E0938969896B1CFDF5","uri":"chassis/7F3E7E375B5747E0938969896B1CFDF5"},"hostname":"","FRU":"95Y3312","macAddresses":["A8:97:DC:78:4F:EF"],"uri":"switch/1B33D6D13F267A614567A897DC784F00","productId":"471","powerAllocation":{"maximumAllocatedPower":100,"minimumAllocatedPower":100},"powerState":"On","ipv6Addresses":["fe80:0:0:0:aa97:dcff:fe78:4fef"],"posID":"33","overallHealthState":"Normal","protectedMode":"False","manufacturer":"IBM","slots":[1],"vpdID":"304","uuid":"1B33D6D13F267A614567A897DC784F00","productName":"IBM Flex System Fabric EN4093R 10Gb Scalable Switch","dnsHostnames":["SW-Y010CM3BE008.labs.lenovo.com"],"fruSerialNumber":"Y010CM3BE008"}],"fanMuxSlots":2,"backedBy":"real","cmmDisplayName":"SN#Y034BG176046","name":"SN#Y034BG176046","ledCardSlots":1,"SecurityPolicy":{"cmmPolicyState":"ACTIVE","cmmPolicyLevel":"SECURE"},"cmmHealthState":"Non-Critical","userDescription":"","partNumber":"88Y6660","excludedHealthState":"Critical","machineType":"7893","cmms":[{"model":"","manufacturerId":"20301","serialNumber":"","type":"CMM","dataHandle":1475537428195,"ipv4Addresses":["10.240.72.61"],"backedBy":"real","cmmDisplayName":"SN#Y034BG176046","hostConfig":[{"DDNSenabled":false,"terIPv6userDNSserver":"0:0:0:0:0:0:0:0","DNSenabled":false,"IPversionPriority":"IPv6ThenIPv4","secIPv4userDNSserver":"10.240.0.11","terIPv4userDNSserver":"0.0.0.0","priIPv6userDNSserver":"0:0:0:0:0:0:0:0","secIPv6userDNSserver":"0:0:0:0:0:0:0:0","priIPv4userDNSserver":"10.240.0.10"}],"leds":[{"color":"Amber","location":"FrontPanel","name":"FAULT","state":"Off"}],"description":"CMM","name":"SN#Y034BG176046","mgmtProcIPaddress":"10.240.72.61","errorFields":[],"role":"primary","cmmHealthState":"Non-Critical","userDescription":"","partNumber":"68Y7029","ipInterfaces":[{"IPv4enabled":true,"IPv4DHCPmode":"STATIC_ONLY","IPv6enabled":true,"IPv6DHCPenabled":true,"IPv4assignments":[{"id":2,"subnet":"255.255.252.0","gateway":"10.240.72.1","address":"10.240.72.61","type":"INUSE"}],"IPv6assignments":[{"id":1,"scope":"LinkLocal","gateway":"0:0:0:0:0:0:0:0","source":"Other","address":"fe80:0:0:0:5ef3:fcff:fe25:deb3","prefix":64,"type":"INUSE"}],"name":"eth0","IPv6statelessEnabled":false,"label":"External","IPv6staticEnabled":false}],"excludedHealthState":"Warning","firmware":[{"status":"","name":"CMM firmware","role":"","date":"2016-07-29T04:00:00Z","type":"CMM firmware","build":"2PET33B","version":"2.5.7"}],"machineType":"","parent":{"uuid":"7F3E7E375B5747E0938969896B1CFDF5","uri":"chassis/7F3E7E375B5747E0938969896B1CFDF5"},"hostname":"MM5CF3FC25DEB3","domainName":"labs.lenovo.com","FRU":"68Y7032","macAddresses":["5C:F3:FC:25:DE:B3"],"uri":"cmm/80C0B2F6B84011E0B504EC89B07DB965","productId":"65","powerAllocation":{"maximumAllocatedPower":20,"minimumAllocatedPower":20},"ipv6Addresses":["fe80:0:0:0:5ef3:fcff:fe25:deb3"],"overallHealthState":"Warning","slots":[1],"manufacturer":"IBM","uuid":"80C0B2F6B84011E0B504EC89B07DB965","dnsHostnames":["Chassis119.labs.lenovo.com"],"fruSerialNumber":"Y034BG176046"}],"mmSlots":2,"managerName":"UNKNOWN","domainName":"labs.lenovo.com","managerUuid":"UNKNOWN","productId":"336","nist":{"possibleValues":["Compatibility"],"currentValue":"Compatibility"},"posID":"336","overallHealthState":"Critical","nodes":[{"arch":"x86","manufacturerId":"20301","location":{"lowestRackUnit":0,"location":"No Location Configured","rack":"","room":""},"addinCardSlots":0,"serialNumber":"23RBT03","driveBays":8,"macAddress":"5C:F3:FC:6E:10:B9,5C:F3:FC:6E:10:BA","type":"ITE","lanOverUsb":"enabled","onboardPciDevices":[{"pciSubID":"405","fodUniqueID":"","pciRevision":"0","isAgentless":false,"pciBusNumber":"4","pciSubVendorID":"1014","isAddOnCard":false,"pciDeviceNumber":"0","posID":"534","pciFunctionNumber":"0","portInfo":{},"name":"","vpdID":"102b"}],"leds":[{"color":"Yellow","location":"FrontPanel","name":"Fault","state":"Off"}],"description":"HX24","mgmtProcIPaddress":"10.240.72.66","expansionCards":[{"pciSubID":"24","firmware":[{"revision":"0","classifications":[13],"status":"Active","name":"QLogic Adapter Software Bundle","role":"Primary","softwareID":"16570024","type":"Software Bundle","build":"0","date":"2013-09-05T00:00:00Z","version":"3.2.5.5"}],"slotSupportsHotPlug":"false","isAgentless":true,"pciRevision":"1","pciBusNumber":"22","pciSubVendorID":"1657","FRU":"88Y6373","pciDeviceNumber":"0","slotNumber":"2","posID":"22","pciFunctionNumber":"0","bay":2,"manufacturer":"IBM","name":"IBM Flex System FC5022 2-Port 16Gb FC Adapter","vpdID":"1657","uuid":"0D00463D9A4811E1BACA8C7CFF317CFF","productName":"IBM Flex System FC5022 2-Port 16Gb FC Adapter","partNumber":"88Y6372","fruSerialNumber":"Y050UZ29502E","slotName":"SlotDesig3_Mezzanine 2 Card"}],"errorFields":[{"IOCompatibilityData":"FETCH_FAILED"}],"ipInterfaces":[{"IPv4enabled":true,"IPv4DHCPmode":"STATIC_ONLY","IPv6enabled":true,"IPv6DHCPenabled":false,"IPv4assignments":[{"id":0,"subnet":"255.255.252.0","gateway":"0.0.0.0","address":"10.240.72.66","type":"INUSE"}],"IPv6assignments":[{"id":0,"scope":"Global","gateway":"0:0:0:0:0:0:0:0","source":"Static","address":"fd72:56fc:a162:0:5ef3:fcff:fe6e:10b9","prefix":64,"type":"INUSE"}],"name":"eth0","IPv6statelessEnabled":false,"label":"unknown","IPv6staticEnabled":true}],"firmware":[{"status":"Active","name":"UEFI Firmware/BIOS","role":"Primary","date":"2015-11-25T00:00:00Z","type":"UEFI","build":"B2E151CUS","version":"1.80"}],"bladeState":1,"status":{"message":"managed","name":"MANAGED"},"bladeState_health":"WARNING","parent":{"uuid":"7F3E7E375B5747E0938969896B1CFDF5","uri":"chassis/7F3E7E375B5747E0938969896B1CFDF5"},"hostname":"ite-bt-101-imm1","powerSupplies":[],"FRU":"81Y5128","uri":"node/6B538D351B8211E193F65CF3FC6E4030","vnicMode":"enabled","powerAllocation":{"maximumAllocatedPower":181,"minimumAllocatedPower":84},"expansionProductType":"","powerStatus":8,"bootOrder":{"uri":"node/6B538D351B8211E193F65CF3FC6E4030/bootOrder","bootOrderList":[{"currentBootOrderDevices":["None"],"bootType":"SingleUse","possibleBootOrderDevices":["None"]}]},"expansionProducts":[],"ipv6Addresses":["fd72:56fc:a162:0:5ef3:fcff:fe6e:10b9"],"slots":[1],"manufacturer":"IBM","addinCards":[],"raidSettings":[],"vpdID":"20","uuid":"6B538D351B8211E193F65CF3FC6E4030","isConnectionTrusted":"true","memoryModules":[{"model":"DDR3","speed":1333,"manufacturer":"Samsung","capacity":2,"serialNumber":"827D4D6A","displayName":"DIMM 1","slot":1,"type":"DDR3","partNumber":"M393B5773CH0-YH9"}],"fruSerialNumber":"Y032BG1AW010","encapsulation":{"encapsulationMode":"notSupported"},"secureBootMode":{"possibleValues":[],"currentValue":""},"tlsVersion":{"possibleValues":["TLS_10"],"currentValue":"Unknown"},"model":"AC1","isScalable":false,"expansionCardSlots":2,"isITME":false,"hostMacAddresses":"5C:F3:FC:6E:40:30,5C:F3:FC:6E:40:31,5C:F3:FC:6E:40:32,5C:F3:FC:6E:40:33,5C:F3:FC:6E:40:34,5C:F3:FC:6E:40:35,5C:F3:FC:6E:40:36,5C:F3:FC:6E:40:37","contact":"Fred","dataHandle":1475537876417,"ipv4Addresses":["10.240.72.66"],"cmmDisplayName":"Node 01","backedBy":"real","complexID":-1,"name":"Web Server 1","memorySlots":24,"drives":[{"bay":1,"capacity":-1}],"cmmHealthState":"Non-Critical","userDescription":"","subSlots":[],"partNumber":"49Y8176","excludedHealthState":"Minor-Failure","bladeState_string":"Web Server 1","machineType":"8737","isRemotePresenceEnabled":true,"pciDevices":[{"pciSubID":"405","fodUniqueID":"","pciRevision":"0","isAgentless":false,"pciBusNumber":"4","pciSubVendorID":"1014","isAddOnCard":false,"pciDeviceNumber":"0","posID":"534","pciFunctionNumber":"0","portInfo":{},"name":"","vpdID":"102b"}],"domainName":"","processors":[{"speed":2.7,"manufacturer":"Intel(R) Corporation","family":"INTEL_R_XEON_TM","displayName":"Intel(R) Xeon(R) CPU E5-2680 0 @ 2.70GHz","slot":1,"productVersion":"Intel(R) Xeon(R) CPU E5-2680 0 @ 2.70GHz","cores":8}],"processorSlots":2,"pciCapabilities":["Raid Link"],"productId":"321","hasOS":false,"lanOverUsbPortForwardingModes":[{"state":"disabled","type":"DSA","externalIPAddress":""}],"bootMode":{"possibleValues":["UEFI and Legacy"],"currentValue":"UEFI Only"},"ports":[{"ioModuleBay":0,"portNumber":1}],"embeddedHypervisorPresence":false,"posID":"256","nist":{"possibleValues":["Compatibility"],"currentValue":"Unknown"},"overallHealthState":"Minor-Failure","subType":"Blacktip","partitionID":-1,"flashStorage":[],"productName":"IBM Flex System C4240 M4 Compute Node","dnsHostnames":["ite-bt-101-imm1.labs.lenovo.com"]}],"displayName":"SN#Y034BG176046","productName":"IBM Chassis Midplane"}
|
51
|
+
+ Response 400
|
52
|
+
+ Response 401
|
53
|
+
+ Response 404
|
54
|
+
+ Response 409
|
55
|
+
+ Response 500
|
56
|
+
|
57
|
+
# GET /chassis/7F3E7E375B5747E0938969896B1CFDF5,3B058C775CE44FA6AC05608B196EDAB1?includeAttributes=type
|
58
|
+
|
59
|
+
+ Response 200 (application/json)
|
60
|
+
|
61
|
+
{"chassisList":[{"accessState":"Online","type":"That Machine","activationKeys":[],"uuid":"7F3E7E375B5747E0938969896B1CFDF5","uri":"chassis/7F3E7E375B5747E0938969896B1CFDF5","dataHandle":1475529234174}]}
|
62
|
+
+ Response 400
|
63
|
+
+ Response 401
|
64
|
+
+ Response 404
|
65
|
+
+ Response 409
|
66
|
+
+ Response 500
|
67
|
+
|
68
|
+
# GET /chassis/7F3E7E375B5747E0938969896B1CFDF5,3B058C775CE44FA6AC05608B196EDAB1?excludeAttributes=accessState,activationKeys
|
69
|
+
|
70
|
+
+ Response 200 (application/json)
|
71
|
+
|
72
|
+
{"chassisList":[{"powerSupplySlots":6,"manufacturerId":"20301","location":{"lowestRackUnit":0,"location":"No Location Configured","rack":"","room":""},"serialNumber":"10006DA","type":"Chassis","fanSlots":10,"passThroughModules":[],"height":10,"switchSlots":4,"leds":[{"color":"Blue","location":"FrontPanel","name":"Location","state":"Off"}],"description":"IBM Flex System Chassis","errorFields":[],"mgmtProcIPaddress":"10.240.72.61","status":{"message":"MANAGED","name":"MANAGED"},"hostname":"MM5CF3FC25DEB3","powerSupplies":[{"model":"","manufacturerId":"20301","serialNumber":"","inputVoltageIsAC":true,"inputVoltageMin":200,"type":"PowerSupply","dataHandle":0,"cmmDisplayName":"Power Supply 01","leds":[{"color":"Green","location":"Planar","name":"IN","state":"On"}],"description":"2100W Power Supply","name":"Power Supply 01","cmmHealthState":"Normal","userDescription":"","manufactureDate":"5112","partNumber":"69Y5830","firmware":[{"status":"","name":"Power Supply Firmware","role":"","date":"","type":"Power Supply Firmware","build":"","version":"14"}],"machineType":"","hardwareRevision":"2.0","parent":{"uuid":"7F3E7E375B5747E0938969896B1CFDF5","uri":"chassis/7F3E7E375B5747E0938969896B1CFDF5"},"FRU":"69Y5831","uri":"powerSupply/735425074A8511E200FB00FB00FB00FB","productId":"303","powerAllocation":{"totalInputPower":0,"totalOutputPower":0},"powerState":"Unknown","posID":"128","slots":[1],"manufacturer":"IBM","vpdID":"70","uuid":"735425074A8511E200FB00FB00FB00FB","productName":"IBM Flex System Enterprise Chassis 2100W Power Module","fruSerialNumber":"ZK11512CJ007","inputVoltageMax":240}],"uri":"chassis/7F3E7E375B5747E0938969896B1CFDF5","powerAllocation":{"midPlaneCardMaximumAllocatedPower":38,"remainingOutputPower":8718,"totalInputPower":13721,"allocatedOutputPower":3906,"totalOutputPower":12624,"midPlaneCardMinimumAllocatedPower":38},"manufacturer":"IBM","fanMuxes":[{"model":"","manufacturerId":"20301","machineType":"","status":"Normal","hardwareRevision":"5.3","parent":{"uuid":"7F3E7E375B5747E0938969896B1CFDF5","uri":"chassis/7F3E7E375B5747E0938969896B1CFDF5"},"serialNumber":"","FRU":"94Y5805","type":"FanMux","uri":"fanMux/08F010AC32A811E38EC187BED4950FD7","productId":"338","dataHandle":0,"cmmDisplayName":"Fan Logic 01","leds":[{"color":"Amber","location":"FrontPanel","name":"FAULT","state":"Off"}],"manufacturer":"IBM","slots":[1],"description":"fan logic card","name":"Fan Logic 01","uuid":"08F010AC32A811E38EC187BED4950FD7","cmmHealthState":"Normal","manufactureDate":"4311","productName":"IBM Flex System Enterprise Chassis Fan Logic Card","fruSerialNumber":"Y031BG16D093","partNumber":"49Y3276"}],"vpdID":"14","isConnectionTrusted":"true","uuid":"7F3E7E375B5747E0938969896B1CFDF5","activeAlerts":[{"id":"IBM:CMM01:Y034BG176046:01:1075771676:3108","corrIDs":"","location":"01010201","msgID":"CMM0488","severity":"WARNING","msg":"The CMM J40 jumper is installed in bay 1."}],"tlsVersion":{"possibleValues":["SSL_30"],"currentValue":"SSL_30"},"encapsulation":{"encapsulationMode":"notSupported"},"complex":[],"model":"92X","energyPolicies":{"powerRedundancyMode":3,"powerCappingPolicy":{"cappingPolicy":"OFF","maxPowerCap":12624,"currentPowerCap":0,"minPowerCap":3906},"acousticAttenuationMode":"Off","hotAirRecirculation":{"chassisBay":[{"sensorValue":27,"isExceeded":"Y","subSlot":-1,"slot":0,"sensorName":"Chassis Ambient"}],"maxVariation":5,"isEnabled":true}},"fans":[{"model":"","manufacturerId":"20301","serialNumber":"","type":"Fan","dataHandle":0,"cmmDisplayName":"Fan 01","leds":[{"color":"Amber","location":"FrontPanel","name":"FAULT","state":"Off"}],"description":"IBM Fan Pack","name":"Fan 01","errorFields":[],"cmmHealthState":"Normal","userDescription":"","manufactureDate":"2611","partNumber":"88Y6691","firmware":[{"status":"","name":"Fan Controller","role":"","date":"","type":"Fan Controller","build":"","version":"226"}],"machineType":"","hardwareRevision":"4.0","parent":{"uuid":"7F3E7E375B5747E0938969896B1CFDF5","uri":"chassis/7F3E7E375B5747E0938969896B1CFDF5"},"FRU":"88Y6685","uri":"fan/57B16D219DB211E0AEBDBBC70E13DA7F","productId":"342","powerAllocation":{"maximumAllocatedPower":0,"minimumAllocatedPower":0},"powerState":"Unknown","posID":"373","slots":[1],"manufacturer":"IBM","vpdID":"11","uuid":"57B16D219DB211E0AEBDBBC70E13DA7F","productName":"80mm Fan Pack for ITE Cooling","fruSerialNumber":"YK10JPB69K75"}],"bladeSlots":14,"contact":"No Contact Configured","dataHandle":1475529328729,"switches":[{"model":"","manufacturerId":"20301","serialNumber":"","type":"Switch","dataHandle":1475526003869,"ipv4Addresses":["10.240.72.62"],"cmmDisplayName":"IO Module 01","backedBy":"real","leds":[{"color":"Blue","location":"FrontPanel","name":"Enclosure Identify","state":"Off"}],"description":"EN4093R 10Gb Ethernet Switch","name":"IO Module 01","errorFields":[{"IOCompatibilityData":"FETCH_FAILED"}],"stackMode":"Standby","attachedNodes":[],"cmmHealthState":"Normal","userDescription":"","partNumber":"95Y3311","ipInterfaces":[{"IPv4enabled":true,"IPv4DHCPmode":"STATIC_ONLY","IPv6enabled":true,"IPv6DHCPenabled":true,"IPv4assignments":[{"id":2,"subnet":"255.255.252.0","gateway":"10.240.72.1","address":"10.240.72.62","type":"CONFIGURED"}],"IPv6assignments":[{"id":1,"scope":"LinkLocal","gateway":"0:0:0:0:0:0:0:0","source":"Other","address":"fe80:0:0:0:aa97:dcff:fe78:4fef","prefix":64,"type":"INUSE"}],"name":"ioe0","IPv6statelessEnabled":true,"label":"","IPv6staticEnabled":false}],"excludedHealthState":"Normal","firmware":[{"status":"Active","name":"Boot ROM","date":"2016-08-03T04:00:00Z","type":"Boot ROM","build":"","version":"7.8.14.5"}],"machineType":"","parent":{"uuid":"7F3E7E375B5747E0938969896B1CFDF5","uri":"chassis/7F3E7E375B5747E0938969896B1CFDF5"},"hostname":"","FRU":"95Y3312","macAddresses":["A8:97:DC:78:4F:EF"],"uri":"switch/1B33D6D13F267A614567A897DC784F00","productId":"471","powerAllocation":{"maximumAllocatedPower":100,"minimumAllocatedPower":100},"powerState":"On","ipv6Addresses":["fe80:0:0:0:aa97:dcff:fe78:4fef"],"posID":"33","overallHealthState":"Normal","protectedMode":"False","manufacturer":"IBM","slots":[1],"vpdID":"304","uuid":"1B33D6D13F267A614567A897DC784F00","productName":"IBM Flex System Fabric EN4093R 10Gb Scalable Switch","dnsHostnames":["SW-Y010CM3BE008.labs.lenovo.com"],"fruSerialNumber":"Y010CM3BE008"}],"fanMuxSlots":2,"backedBy":"real","cmmDisplayName":"SN#Y034BG176046","name":"SN#Y034BG176046","ledCardSlots":1,"SecurityPolicy":{"cmmPolicyState":"ACTIVE","cmmPolicyLevel":"SECURE"},"cmmHealthState":"Non-Critical","userDescription":"","partNumber":"88Y6660","excludedHealthState":"Critical","machineType":"7893","cmms":[{"model":"","manufacturerId":"20301","serialNumber":"","type":"CMM","dataHandle":1475525612693,"ipv4Addresses":["10.240.72.61"],"backedBy":"real","cmmDisplayName":"SN#Y034BG176046","hostConfig":[{"DDNSenabled":false,"terIPv6userDNSserver":"0:0:0:0:0:0:0:0","DNSenabled":false,"IPversionPriority":"IPv6ThenIPv4","secIPv4userDNSserver":"10.240.0.11","terIPv4userDNSserver":"0.0.0.0","priIPv6userDNSserver":"0:0:0:0:0:0:0:0","secIPv6userDNSserver":"0:0:0:0:0:0:0:0","priIPv4userDNSserver":"10.240.0.10"}],"leds":[{"color":"Amber","location":"FrontPanel","name":"FAULT","state":"Off"}],"description":"CMM","name":"SN#Y034BG176046","mgmtProcIPaddress":"10.240.72.61","errorFields":[],"role":"primary","cmmHealthState":"Non-Critical","userDescription":"","partNumber":"68Y7029","ipInterfaces":[{"IPv4enabled":true,"IPv4DHCPmode":"STATIC_ONLY","IPv6enabled":true,"IPv6DHCPenabled":true,"IPv4assignments":[{"id":2,"subnet":"255.255.252.0","gateway":"10.240.72.1","address":"10.240.72.61","type":"CONFIGURED"}],"IPv6assignments":[{"id":1,"scope":"LinkLocal","gateway":"0:0:0:0:0:0:0:0","source":"Other","address":"fe80:0:0:0:5ef3:fcff:fe25:deb3","prefix":64,"type":"INUSE"}],"name":"eth0","IPv6statelessEnabled":false,"label":"External","IPv6staticEnabled":false}],"excludedHealthState":"Warning","firmware":[{"status":"","name":"CMM firmware","role":"","date":"2016-07-29T04:00:00Z","type":"CMM firmware","build":"2PET33B","version":"2.5.7"}],"machineType":"","parent":{"uuid":"7F3E7E375B5747E0938969896B1CFDF5","uri":"chassis/7F3E7E375B5747E0938969896B1CFDF5"},"hostname":"MM5CF3FC25DEB3","domainName":"labs.lenovo.com","FRU":"68Y7032","macAddresses":["5C:F3:FC:25:DE:B3"],"uri":"cmm/80C0B2F6B84011E0B504EC89B07DB965","productId":"65","powerAllocation":{"maximumAllocatedPower":20,"minimumAllocatedPower":20},"ipv6Addresses":["fe80:0:0:0:5ef3:fcff:fe25:deb3"],"overallHealthState":"Warning","slots":[1],"manufacturer":"IBM","uuid":"80C0B2F6B84011E0B504EC89B07DB965","dnsHostnames":["Chassis119.labs.lenovo.com"],"fruSerialNumber":"Y034BG176046"}],"mmSlots":2,"managerName":"UNKNOWN","domainName":"labs.lenovo.com","managerUuid":"UNKNOWN","productId":"336","nist":{"possibleValues":["Compatibility"],"currentValue":"Compatibility"},"posID":"336","overallHealthState":"Critical","nodes":[{"arch":"x86","manufacturerId":"20301","location":{"lowestRackUnit":0,"location":"No Location Configured","rack":"","room":""},"addinCardSlots":0,"serialNumber":"23RBT03","driveBays":8,"macAddress":"5C:F3:FC:6E:10:B9,5C:F3:FC:6E:10:BA","type":"ITE","lanOverUsb":"enabled","onboardPciDevices":[{"pciSubID":"405","fodUniqueID":"","pciRevision":"0","isAgentless":false,"pciBusNumber":"4","pciSubVendorID":"1014","isAddOnCard":false,"pciDeviceNumber":"0","posID":"534","pciFunctionNumber":"0","portInfo":{},"name":"","vpdID":"102b"}],"leds":[{"color":"Yellow","location":"FrontPanel","name":"Fault","state":"Off"}],"description":"HX24","mgmtProcIPaddress":"10.240.72.66","expansionCards":[{"pciSubID":"24","firmware":[{"revision":"0","classifications":[13],"status":"Active","name":"QLogic Adapter Software Bundle","role":"Primary","softwareID":"16570024","type":"Software Bundle","build":"0","date":"2013-09-05T00:00:00Z","version":"3.2.5.5"}],"slotSupportsHotPlug":"false","isAgentless":true,"pciRevision":"1","pciBusNumber":"22","pciSubVendorID":"1657","FRU":"88Y6373","pciDeviceNumber":"0","slotNumber":"2","posID":"22","pciFunctionNumber":"0","bay":2,"manufacturer":"IBM","name":"IBM Flex System FC5022 2-Port 16Gb FC Adapter","vpdID":"1657","uuid":"0D00463D9A4811E1BACA8C7CFF317CFF","productName":"IBM Flex System FC5022 2-Port 16Gb FC Adapter","partNumber":"88Y6372","fruSerialNumber":"Y050UZ29502E","slotName":"SlotDesig3_Mezzanine 2 Card"}],"errorFields":[{"IOCompatibilityData":"FETCH_FAILED"}],"ipInterfaces":[{"IPv4enabled":true,"IPv4DHCPmode":"STATIC_ONLY","IPv6enabled":true,"IPv6DHCPenabled":false,"IPv4assignments":[{"id":0,"subnet":"255.255.252.0","gateway":"0.0.0.0","address":"10.240.72.66","type":"INUSE"}],"IPv6assignments":[{"id":0,"scope":"Global","gateway":"0:0:0:0:0:0:0:0","source":"Static","address":"fd72:56fc:a162:0:5ef3:fcff:fe6e:10b9","prefix":64,"type":"INUSE"}],"name":"eth0","IPv6statelessEnabled":false,"label":"unknown","IPv6staticEnabled":true}],"firmware":[{"status":"Active","name":"UEFI Firmware/BIOS","role":"Primary","date":"2015-11-25T00:00:00Z","type":"UEFI","build":"B2E151CUS","version":"1.80"}],"bladeState":1,"status":{"message":"managed","name":"MANAGED"},"bladeState_health":"WARNING","parent":{"uuid":"7F3E7E375B5747E0938969896B1CFDF5","uri":"chassis/7F3E7E375B5747E0938969896B1CFDF5"},"hostname":"ite-bt-101-imm1","powerSupplies":[],"FRU":"81Y5128","uri":"node/6B538D351B8211E193F65CF3FC6E4030","vnicMode":"enabled","powerAllocation":{"maximumAllocatedPower":181,"minimumAllocatedPower":84},"expansionProductType":"","powerStatus":8,"bootOrder":{"uri":"node/6B538D351B8211E193F65CF3FC6E4030/bootOrder","bootOrderList":[{"currentBootOrderDevices":["None"],"bootType":"SingleUse","possibleBootOrderDevices":["None"]}]},"expansionProducts":[],"ipv6Addresses":["fd72:56fc:a162:0:5ef3:fcff:fe6e:10b9"],"slots":[1],"manufacturer":"IBM","addinCards":[],"raidSettings":[],"vpdID":"20","uuid":"6B538D351B8211E193F65CF3FC6E4030","isConnectionTrusted":"true","memoryModules":[{"model":"DDR3","speed":1333,"manufacturer":"Samsung","capacity":2,"serialNumber":"827D4D6A","displayName":"DIMM 1","slot":1,"type":"DDR3","partNumber":"M393B5773CH0-YH9"}],"fruSerialNumber":"Y032BG1AW010","encapsulation":{"encapsulationMode":"notSupported"},"secureBootMode":{"possibleValues":[],"currentValue":""},"tlsVersion":{"possibleValues":["TLS_10"],"currentValue":"Unknown"},"model":"AC1","isScalable":false,"expansionCardSlots":2,"isITME":false,"hostMacAddresses":"5C:F3:FC:6E:40:30,5C:F3:FC:6E:40:31,5C:F3:FC:6E:40:32,5C:F3:FC:6E:40:33,5C:F3:FC:6E:40:34,5C:F3:FC:6E:40:35,5C:F3:FC:6E:40:36,5C:F3:FC:6E:40:37","contact":"Fred","dataHandle":1475527436785,"ipv4Addresses":["10.240.72.66"],"cmmDisplayName":"Node 01","backedBy":"real","complexID":-1,"name":"Web Server 1","memorySlots":24,"drives":[{"bay":1,"capacity":-1}],"cmmHealthState":"Non-Critical","userDescription":"","subSlots":[],"partNumber":"49Y8176","excludedHealthState":"Minor-Failure","bladeState_string":"Web Server 1","machineType":"8737","isRemotePresenceEnabled":true,"pciDevices":[{"pciSubID":"405","fodUniqueID":"","pciRevision":"0","isAgentless":false,"pciBusNumber":"4","pciSubVendorID":"1014","isAddOnCard":false,"pciDeviceNumber":"0","posID":"534","pciFunctionNumber":"0","portInfo":{},"name":"","vpdID":"102b"}],"domainName":"","processors":[{"speed":2.7,"manufacturer":"Intel(R) Corporation","family":"INTEL_R_XEON_TM","displayName":"Intel(R) Xeon(R) CPU E5-2680 0 @ 2.70GHz","slot":1,"productVersion":"Intel(R) Xeon(R) CPU E5-2680 0 @ 2.70GHz","cores":8}],"processorSlots":2,"pciCapabilities":["Raid Link"],"productId":"321","hasOS":false,"lanOverUsbPortForwardingModes":[{"state":"disabled","type":"DSA","externalIPAddress":""}],"bootMode":{"possibleValues":["UEFI and Legacy"],"currentValue":"UEFI Only"},"ports":[{"ioModuleBay":0,"portNumber":1}],"embeddedHypervisorPresence":false,"posID":"256","nist":{"possibleValues":["Compatibility"],"currentValue":"Unknown"},"overallHealthState":"Minor-Failure","subType":"Blacktip","partitionID":-1,"flashStorage":[],"productName":"IBM Flex System C4240 M4 Compute Node","dnsHostnames":["ite-bt-101-imm1.labs.lenovo.com"]}],"displayName":"SN#Y034BG176046","productName":"IBM Chassis Midplane"}]}
|
1436
73
|
+ Response 400
|
1437
74
|
+ Response 401
|
1438
75
|
+ Response 404
|