parent
400f9317ba
commit
31711e9444
@ -0,0 +1,44 @@
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
||||
# not use this file except in compliance with the License. You may obtain
|
||||
# a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
# License for the specific language governing permissions and limitations
|
||||
# under the License.
|
||||
|
||||
from dracclient.resources import uris
|
||||
from dracclient import utils
|
||||
|
||||
|
||||
class LifecycleControllerManagement(object):
|
||||
|
||||
def __init__(self, client):
|
||||
"""Creates LifecycleControllerManagement object
|
||||
|
||||
:param client: an instance of WSManClient
|
||||
"""
|
||||
self.client = client
|
||||
|
||||
def get_version(self):
|
||||
"""Returns the Lifecycle controller version
|
||||
|
||||
:returns: Lifecycle controller version as a tuple of integers
|
||||
:raises: WSManRequestFailure on request failures
|
||||
:raises: WSManInvalidResponse when receiving invalid response
|
||||
:raises: DRACOperationFailed on error reported back by the DRAC
|
||||
interface
|
||||
"""
|
||||
|
||||
filter_query = ('select LifecycleControllerVersion '
|
||||
'from DCIM_SystemView')
|
||||
doc = self.client.enumerate(uris.DCIM_SystemView,
|
||||
filter_query=filter_query)
|
||||
lc_version_str = utils.find_xml(doc, 'LifecycleControllerVersion',
|
||||
uris.DCIM_SystemView).text
|
||||
|
||||
return tuple(map(int, (lc_version_str.split('.'))))
|
@ -0,0 +1,54 @@
|
||||
<s:Envelope xmlns:n1="http://schemas.dell.com/wbem/wscim/1/cim-schema/2/DCIM_BootConfigSetting"
|
||||
xmlns:s="http://www.w3.org/2003/05/soap-envelope"
|
||||
xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing"
|
||||
xmlns:wsen="http://schemas.xmlsoap.org/ws/2004/09/enumeration"
|
||||
xmlns:wsman="http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd">
|
||||
<s:Header>
|
||||
<wsa:To>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</wsa:To>
|
||||
<wsa:Action>http://schemas.xmlsoap.org/ws/2004/09/enumeration/EnumerateResponse</wsa:Action>
|
||||
<wsa:RelatesTo>uuid:0fa1f933-4c3c-480f-8a35-75035f9fbfad</wsa:RelatesTo>
|
||||
<wsa:MessageID>uuid:6fa24f5f-2170-1170-8ea5-a36fc6fe83b0</wsa:MessageID>
|
||||
</s:Header>
|
||||
<s:Body>
|
||||
<wsen:EnumerateResponse>
|
||||
<wsman:Items>
|
||||
<n1:DCIM_BootConfigSetting>
|
||||
<n1:ElementName>BootSeq</n1:ElementName>
|
||||
<n1:InstanceID>IPL</n1:InstanceID>
|
||||
<n1:IsCurrent>1</n1:IsCurrent>
|
||||
<n1:IsDefault>0</n1:IsDefault>
|
||||
<n1:IsNext>1</n1:IsNext>
|
||||
</n1:DCIM_BootConfigSetting>
|
||||
<n1:DCIM_BootConfigSetting>
|
||||
<n1:ElementName>HddSeq</n1:ElementName>
|
||||
<n1:InstanceID>BCV</n1:InstanceID>
|
||||
<n1:IsCurrent>2</n1:IsCurrent>
|
||||
<n1:IsDefault>0</n1:IsDefault>
|
||||
<n1:IsNext>2</n1:IsNext>
|
||||
</n1:DCIM_BootConfigSetting>
|
||||
<n1:DCIM_BootConfigSetting>
|
||||
<n1:ElementName>UefiBootSeq</n1:ElementName>
|
||||
<n1:InstanceID>UEFI</n1:InstanceID>
|
||||
<n1:IsCurrent>2</n1:IsCurrent>
|
||||
<n1:IsDefault>0</n1:IsDefault>
|
||||
<n1:IsNext>2</n1:IsNext>
|
||||
</n1:DCIM_BootConfigSetting>
|
||||
<n1:DCIM_BootConfigSetting>
|
||||
<n1:ElementName>OneTimeBootMode</n1:ElementName>
|
||||
<n1:InstanceID>OneTime</n1:InstanceID>
|
||||
<n1:IsCurrent>2</n1:IsCurrent>
|
||||
<n1:IsDefault>0</n1:IsDefault>
|
||||
<n1:IsNext>2</n1:IsNext>
|
||||
</n1:DCIM_BootConfigSetting>
|
||||
<n1:DCIM_BootConfigSetting>
|
||||
<n1:ElementName>vFlash Boot Configuration</n1:ElementName>
|
||||
<n1:InstanceID>vFlash</n1:InstanceID>
|
||||
<n1:IsCurrent>2</n1:IsCurrent>
|
||||
<n1:IsDefault>0</n1:IsDefault>
|
||||
<n1:IsNext>2</n1:IsNext>
|
||||
</n1:DCIM_BootConfigSetting>
|
||||
</wsman:Items>
|
||||
<wsman:EndOfSequence/>
|
||||
</wsen:EnumerateResponse>
|
||||
</s:Body>
|
||||
</s:Envelope>
|
@ -0,0 +1,17 @@
|
||||
<s:Envelope xmlns:n1="http://schemas.dell.com/wbem/wscim/1/cim-schema/2/DCIM_BootConfigSetting"
|
||||
xmlns:s="http://www.w3.org/2003/05/soap-envelope"
|
||||
xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing">
|
||||
<s:Header>
|
||||
<wsa:To>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</wsa:To>
|
||||
<wsa:Action>http://schemas.dell.com/wbem/wscim/1/cim-schema/2/DCIM_BootConfigSetting/ChangeBootOrderByInstanceIDResponse</wsa:Action>
|
||||
<wsa:RelatesTo>uuid:9c14b4d7-9d68-4240-a523-bfe733ec3c19</wsa:RelatesTo>
|
||||
<wsa:MessageID>uuid:072e2dd9-2188-1188-8ea8-a36fc6fe83b0</wsa:MessageID>
|
||||
</s:Header>
|
||||
<s:Body>
|
||||
<n1:ChangeBootOrderByInstanceID_OUTPUT>
|
||||
<n1:Message>Boot Source does not belong to specified Boot Configuration</n1:Message>
|
||||
<n1:MessageID>BOOT007</n1:MessageID>
|
||||
<n1:ReturnValue>2</n1:ReturnValue>
|
||||
</n1:ChangeBootOrderByInstanceID_OUTPUT>
|
||||
</s:Body>
|
||||
</s:Envelope>
|
@ -0,0 +1,17 @@
|
||||
<s:Envelope xmlns:n1="http://schemas.dell.com/wbem/wscim/1/cim-schema/2/DCIM_BootConfigSetting"
|
||||
xmlns:s="http://www.w3.org/2003/05/soap-envelope"
|
||||
xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing">
|
||||
<s:Header>
|
||||
<wsa:To>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</wsa:To>
|
||||
<wsa:Action>http://schemas.dell.com/wbem/wscim/1/cim-schema/2/DCIM_BootConfigSetting/ChangeBootOrderByInstanceIDResponse</wsa:Action>
|
||||
<wsa:RelatesTo>uuid:6489f08e-43f8-4616-9c8e-46502a0d297e</wsa:RelatesTo>
|
||||
<wsa:MessageID>uuid:14c20b22-2188-1188-8ead-a36fc6fe83b0</wsa:MessageID>
|
||||
</s:Header>
|
||||
<s:Body>
|
||||
<n1:ChangeBootOrderByInstanceID_OUTPUT>
|
||||
<n1:Message>The command was successful</n1:Message>
|
||||
<n1:MessageID>BOOT001</n1:MessageID>
|
||||
<n1:ReturnValue>0</n1:ReturnValue>
|
||||
</n1:ChangeBootOrderByInstanceID_OUTPUT>
|
||||
</s:Body>
|
||||
</s:Envelope>
|
@ -0,0 +1,85 @@
|
||||
<s:Envelope xmlns:n1="http://schemas.dell.com/wbem/wscim/1/cim-schema/2/DCIM_BootSourceSetting"
|
||||
xmlns:s="http://www.w3.org/2003/05/soap-envelope"
|
||||
xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing"
|
||||
xmlns:wsen="http://schemas.xmlsoap.org/ws/2004/09/enumeration"
|
||||
xmlns:wsman="http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd">
|
||||
<s:Header>
|
||||
<wsa:To>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</wsa:To>
|
||||
<wsa:Action>http://schemas.xmlsoap.org/ws/2004/09/enumeration/EnumerateResponse</wsa:Action>
|
||||
<wsa:RelatesTo>uuid:307f8c7a-e08f-491c-906f-97917d12aca3</wsa:RelatesTo>
|
||||
<wsa:MessageID>uuid:a6d469c4-0340-1340-8003-96a61a2b2b84</wsa:MessageID>
|
||||
</s:Header>
|
||||
<s:Body>
|
||||
<wsen:EnumerateResponse>
|
||||
<wsman:Items>
|
||||
<n1:DCIM_BootSourceSetting>
|
||||
<n1:BIOSBootString>Embedded NIC 1: BRCM MBA Slot 0200 v7.2.3 BootSeq</n1:BIOSBootString>
|
||||
<n1:BootString>Embedded NIC 1: BRCM MBA Slot 0200 v7.2.3 BootSeq</n1:BootString>
|
||||
<n1:CurrentAssignedSequence>0</n1:CurrentAssignedSequence>
|
||||
<n1:CurrentEnabledStatus>1</n1:CurrentEnabledStatus>
|
||||
<n1:ElementName>Embedded NIC 1: BRCM MBA Slot 0200 v7.2.3 BootSeq</n1:ElementName>
|
||||
<n1:FailThroughSupported>1</n1:FailThroughSupported>
|
||||
<n1:InstanceID>IPL:NIC.Embedded.1-1:082927b7c62a9f52ef0d65a33416d76c</n1:InstanceID>
|
||||
<n1:PendingAssignedSequence>0</n1:PendingAssignedSequence>
|
||||
<n1:PendingEnabledStatus>1</n1:PendingEnabledStatus>
|
||||
</n1:DCIM_BootSourceSetting>
|
||||
<n1:DCIM_BootSourceSetting>
|
||||
<n1:BIOSBootString>Hard drive C: BootSeq</n1:BIOSBootString>
|
||||
<n1:BootString>Hard drive C: BootSeq</n1:BootString>
|
||||
<n1:CurrentAssignedSequence>1</n1:CurrentAssignedSequence>
|
||||
<n1:CurrentEnabledStatus>1</n1:CurrentEnabledStatus>
|
||||
<n1:ElementName>Hard drive C: BootSeq</n1:ElementName>
|
||||
<n1:FailThroughSupported>1</n1:FailThroughSupported>
|
||||
<n1:InstanceID>IPL:HardDisk.List.1-1:c9203080df84781e2ca3d512883dee6f</n1:InstanceID>
|
||||
<n1:PendingAssignedSequence>1</n1:PendingAssignedSequence>
|
||||
<n1:PendingEnabledStatus>1</n1:PendingEnabledStatus>
|
||||
</n1:DCIM_BootSourceSetting>
|
||||
<n1:DCIM_BootSourceSetting>
|
||||
<n1:BIOSBootString>Embedded SATA Port A Optical: SATA Optical Drive BootSeq</n1:BIOSBootString>
|
||||
<n1:BootString>Embedded SATA Port A Optical: SATA Optical Drive BootSeq</n1:BootString>
|
||||
<n1:CurrentAssignedSequence>2</n1:CurrentAssignedSequence>
|
||||
<n1:CurrentEnabledStatus>1</n1:CurrentEnabledStatus>
|
||||
<n1:ElementName>Embedded SATA Port A Optical: SATA Optical Drive BootSeq</n1:ElementName>
|
||||
<n1:FailThroughSupported>1</n1:FailThroughSupported>
|
||||
<n1:InstanceID>IPL:Optical.SATAEmbedded.A-1:eb8aeb15796fb85f8e1447f0cfb8a68e</n1:InstanceID>
|
||||
<n1:PendingAssignedSequence>2</n1:PendingAssignedSequence>
|
||||
<n1:PendingEnabledStatus>1</n1:PendingEnabledStatus>
|
||||
</n1:DCIM_BootSourceSetting>
|
||||
<n1:DCIM_BootSourceSetting>
|
||||
<n1:BIOSBootString>Integrated SAS: #0100 ID0B LUN0 FUJITSU MBD2147RC HddSeq</n1:BIOSBootString>
|
||||
<n1:BootString>Integrated SAS: #0100 ID0B LUN0 FUJITSU MBD2147RC HddSeq</n1:BootString>
|
||||
<n1:CurrentAssignedSequence>0</n1:CurrentAssignedSequence>
|
||||
<n1:CurrentEnabledStatus>1</n1:CurrentEnabledStatus>
|
||||
<n1:ElementName>Integrated SAS: #0100 ID0B LUN0 FUJITSU MBD2147RC HddSeq</n1:ElementName>
|
||||
<n1:FailThroughSupported>2</n1:FailThroughSupported>
|
||||
<n1:InstanceID>BCV:RAID.Integrated.1-1:b0288ef62190fe49448c0c8bd58e3299</n1:InstanceID>
|
||||
<n1:PendingAssignedSequence>0</n1:PendingAssignedSequence>
|
||||
<n1:PendingEnabledStatus>1</n1:PendingEnabledStatus>
|
||||
</n1:DCIM_BootSourceSetting>
|
||||
<n1:DCIM_BootSourceSetting>
|
||||
<n1:BIOSBootString>Embedded SATA Port A Optical: TEAC DVD-ROM DV-28SW UefiBootSeq</n1:BIOSBootString>
|
||||
<n1:BootString>Embedded SATA Port A Optical: TEAC DVD-ROM DV-28SW UefiBootSeq</n1:BootString>
|
||||
<n1:CurrentAssignedSequence>0</n1:CurrentAssignedSequence>
|
||||
<n1:CurrentEnabledStatus>1</n1:CurrentEnabledStatus>
|
||||
<n1:ElementName>Embedded SATA Port A Optical: TEAC DVD-ROM DV-28SW UefiBootSeq</n1:ElementName>
|
||||
<n1:FailThroughSupported>1</n1:FailThroughSupported>
|
||||
<n1:InstanceID>UEFI:Optical.SATAEmbedded.A-1:f4517f4fe99654f4b3d1f2cf5ffa1236</n1:InstanceID>
|
||||
<n1:PendingAssignedSequence>0</n1:PendingAssignedSequence>
|
||||
<n1:PendingEnabledStatus>1</n1:PendingEnabledStatus>
|
||||
</n1:DCIM_BootSourceSetting>
|
||||
<n1:DCIM_BootSourceSetting>
|
||||
<n1:BIOSBootString>Embedded NIC 1: Broadcom NetXtreme II Gigabit Ethernet (BCM5709) UefiBootSeq</n1:BIOSBootString>
|
||||
<n1:BootString>Embedded NIC 1: Broadcom NetXtreme II Gigabit Ethernet (BCM5709) UefiBootSeq</n1:BootString>
|
||||
<n1:CurrentAssignedSequence>1</n1:CurrentAssignedSequence>
|
||||
<n1:CurrentEnabledStatus>1</n1:CurrentEnabledStatus>
|
||||
<n1:ElementName>Embedded NIC 1: Broadcom NetXtreme II Gigabit Ethernet (BCM5709) UefiBootSeq</n1:ElementName>
|
||||
<n1:FailThroughSupported>1</n1:FailThroughSupported>
|
||||
<n1:InstanceID>UEFI:NIC.Embedded.1-1:764aa69cc6ae153bf9aa038a0cf31bf2</n1:InstanceID>
|
||||
<n1:PendingAssignedSequence>1</n1:PendingAssignedSequence>
|
||||
<n1:PendingEnabledStatus>1</n1:PendingEnabledStatus>
|
||||
</n1:DCIM_BootSourceSetting>
|
||||
</wsman:Items>
|
||||
<wsman:EndOfSequence/>
|
||||
</wsen:EnumerateResponse>
|
||||
</s:Body>
|
||||
</s:Envelope>
|
@ -0,0 +1,139 @@
|
||||
<s:Envelope xmlns:n1="http://schemas.dell.com/wbem/wscim/1/cim-schema/2/DCIM_BootSourceSetting"
|
||||
xmlns:s="http://www.w3.org/2003/05/soap-envelope"
|
||||
xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing"
|
||||
xmlns:wsen="http://schemas.xmlsoap.org/ws/2004/09/enumeration"
|
||||
xmlns:wsman="http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd">
|
||||
<s:Header>
|
||||
<wsa:To>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</wsa:To>
|
||||
<wsa:Action>http://schemas.xmlsoap.org/ws/2004/09/enumeration/EnumerateResponse</wsa:Action>
|
||||
<wsa:RelatesTo>uuid:8228360f-4368-4377-a020-7b86001ec6a2</wsa:RelatesTo>
|
||||
<wsa:MessageID>uuid:9daff045-2172-1172-8ea7-a36fc6fe83b0</wsa:MessageID>
|
||||
</s:Header>
|
||||
<s:Body>
|
||||
<wsen:EnumerateResponse>
|
||||
<wsman:Items>
|
||||
<n1:DCIM_BootSourceSetting>
|
||||
<n1:BIOSBootString>Embedded SATA Port Optical Drive E: HL-DT-ST DVD-ROM DU90N BootSeq</n1:BIOSBootString>
|
||||
<n1:BootSourceType>IPL</n1:BootSourceType>
|
||||
<n1:BootString>Embedded SATA Port Optical Drive E: HL-DT-ST DVD-ROM DU90N BootSeq</n1:BootString>
|
||||
<n1:CurrentAssignedSequence>1</n1:CurrentAssignedSequence>
|
||||
<n1:CurrentEnabledStatus>1</n1:CurrentEnabledStatus>
|
||||
<n1:ElementName>Embedded SATA Port Optical Drive E: HL-DT-ST DVD-ROM DU90N BootSeq</n1:ElementName>
|
||||
<n1:FailThroughSupported>1</n1:FailThroughSupported>
|
||||
<n1:InstanceID>IPL:BIOS.Setup.1-1#BootSeq#Optical.SATAEmbedded.E-1#9cfba379c4a2890f7f419c75db47d605</n1:InstanceID>
|
||||
<n1:PendingAssignedSequence>1</n1:PendingAssignedSequence>
|
||||
<n1:PendingEnabledStatus>1</n1:PendingEnabledStatus>
|
||||
</n1:DCIM_BootSourceSetting>
|
||||
<n1:DCIM_BootSourceSetting>
|
||||
<n1:BIOSBootString>Embedded NIC 1 Port 1 Partition 1: BRCM MBA Slot 0200 v16.4.3 BootSeq</n1:BIOSBootString>
|
||||
<n1:BootSourceType>IPL</n1:BootSourceType>
|
||||
<n1:BootString>Embedded NIC 1 Port 1 Partition 1: BRCM MBA Slot 0200 v16.4.3 BootSeq</n1:BootString>
|
||||
<n1:CurrentAssignedSequence>0</n1:CurrentAssignedSequence>
|
||||
<n1:CurrentEnabledStatus>1</n1:CurrentEnabledStatus>
|
||||
<n1:ElementName>Embedded NIC 1 Port 1 Partition 1: BRCM MBA Slot 0200 v16.4.3 BootSeq</n1:ElementName>
|
||||
<n1:FailThroughSupported>1</n1:FailThroughSupported>
|
||||
<n1:InstanceID>IPL:BIOS.Setup.1-1#BootSeq#NIC.Embedded.1-1-1#fbeeb18f19fd4e768c941e66af4fc424</n1:InstanceID>
|
||||
<n1:PendingAssignedSequence>0</n1:PendingAssignedSequence>
|
||||
<n1:PendingEnabledStatus>1</n1:PendingEnabledStatus>
|
||||
</n1:DCIM_BootSourceSetting>
|
||||
<n1:DCIM_BootSourceSetting>
|
||||
<n1:BIOSBootString>Hard drive C: BootSeq</n1:BIOSBootString>
|
||||
<n1:BootSourceType>IPL</n1:BootSourceType>
|
||||
<n1:BootString>Hard drive C: BootSeq</n1:BootString>
|
||||
<n1:CurrentAssignedSequence>2</n1:CurrentAssignedSequence>
|
||||
<n1:CurrentEnabledStatus>1</n1:CurrentEnabledStatus>
|
||||
<n1:ElementName>Hard drive C: BootSeq</n1:ElementName>
|
||||
<n1:FailThroughSupported>1</n1:FailThroughSupported>
|
||||
<n1:InstanceID>IPL:BIOS.Setup.1-1#BootSeq#HardDisk.List.1-1#c9203080df84781e2ca3d512883dee6f</n1:InstanceID>
|
||||
<n1:PendingAssignedSequence>2</n1:PendingAssignedSequence>
|
||||
<n1:PendingEnabledStatus>1</n1:PendingEnabledStatus>
|
||||
</n1:DCIM_BootSourceSetting>
|
||||
<n1:DCIM_BootSourceSetting>
|
||||
<n1:BIOSBootString>Integrated RAID Controller 1: PERC H710 Mini(bus 01 dev 00) HddSeq</n1:BIOSBootString>
|
||||
<n1:BootSourceType>BCV</n1:BootSourceType>
|
||||
<n1:BootString>Integrated RAID Controller 1: PERC H710 Mini(bus 01 dev 00) HddSeq</n1:BootString>
|
||||
<n1:CurrentAssignedSequence>0</n1:CurrentAssignedSequence>
|
||||
<n1:CurrentEnabledStatus>1</n1:CurrentEnabledStatus>
|
||||
<n1:ElementName>Integrated RAID Controller 1: PERC H710 Mini(bus 01 dev 00) HddSeq</n1:ElementName>
|
||||
<n1:FailThroughSupported>2</n1:FailThroughSupported>
|
||||
<n1:InstanceID>BCV:BIOS.Setup.1-1#HddSeq#RAID.Integrated.1-1#aa80b1ccc4782ee46ad0015e60b9f8bc</n1:InstanceID>
|
||||
<n1:PendingAssignedSequence>0</n1:PendingAssignedSequence>
|
||||
<n1:PendingEnabledStatus>1</n1:PendingEnabledStatus>
|
||||
</n1:DCIM_BootSourceSetting>
|
||||
<n1:DCIM_BootSourceSetting>
|
||||
<n1:BIOSBootString>Embedded SATA Port Optical Drive E: HL-DT-ST DVD-ROM DU90N UefiBootSeq</n1:BIOSBootString>
|
||||
<n1:BootSourceType>UEFI</n1:BootSourceType>
|
||||
<n1:BootString>Embedded SATA Port Optical Drive E: HL-DT-ST DVD-ROM DU90N UefiBootSeq</n1:BootString>
|
||||
<n1:CurrentAssignedSequence>0</n1:CurrentAssignedSequence>
|
||||
<n1:CurrentEnabledStatus>1</n1:CurrentEnabledStatus>
|
||||
<n1:ElementName>Embedded SATA Port Optical Drive E: HL-DT-ST DVD-ROM DU90N UefiBootSeq</n1:ElementName>
|
||||
<n1:FailThroughSupported>1</n1:FailThroughSupported>
|
||||
<n1:InstanceID>UEFI:BIOS.Setup.1-1#UefiBootSeq#Optical.SATAEmbedded.E-1#e63a20057ae7c7a24a2dcfe561ab3059</n1:InstanceID>
|
||||
<n1:PendingAssignedSequence>0</n1:PendingAssignedSequence>
|
||||
<n1:PendingEnabledStatus>1</n1:PendingEnabledStatus>
|
||||
</n1:DCIM_BootSourceSetting>
|
||||
<n1:DCIM_BootSourceSetting>
|
||||
<n1:BIOSBootString>Embedded NIC 1 Port 1 Partition 1: EFI Network 1 UefiBootSeq</n1:BIOSBootString>
|
||||
<n1:BootSourceType>UEFI</n1:BootSourceType>
|
||||
<n1:BootString>Embedded NIC 1 Port 1 Partition 1: EFI Network 1 UefiBootSeq</n1:BootString>
|
||||
<n1:CurrentAssignedSequence>1</n1:CurrentAssignedSequence>
|
||||
<n1:CurrentEnabledStatus>0</n1:CurrentEnabledStatus>
|
||||
<n1:ElementName>Embedded NIC 1 Port 1 Partition 1: EFI Network 1 UefiBootSeq</n1:ElementName>
|
||||
<n1:FailThroughSupported>1</n1:FailThroughSupported>
|
||||
<n1:InstanceID>UEFI:BIOS.Setup.1-1#UefiBootSeq#NIC.Embedded.1-1-1#4957070f0aa1fcff841e886b4011e6e5</n1:InstanceID>
|
||||
<n1:PendingAssignedSequence>1</n1:PendingAssignedSequence>
|
||||
<n1:PendingEnabledStatus>0</n1:PendingEnabledStatus>
|
||||
</n1:DCIM_BootSourceSetting>
|
||||
<n1:DCIM_BootSourceSetting>
|
||||
<n1:BIOSBootString>Embedded NIC 2 Port 1 Partition 1: EFI Network 2 UefiBootSeq</n1:BIOSBootString>
|
||||
<n1:BootSourceType>UEFI</n1:BootSourceType>
|
||||
<n1:BootString>Embedded NIC 2 Port 1 Partition 1: EFI Network 2 UefiBootSeq</n1:BootString>
|
||||
<n1:CurrentAssignedSequence>2</n1:CurrentAssignedSequence>
|
||||
<n1:CurrentEnabledStatus>0</n1:CurrentEnabledStatus>
|
||||
<n1:ElementName>Embedded NIC 2 Port 1 Partition 1: EFI Network 2 UefiBootSeq</n1:ElementName>
|
||||
<n1:FailThroughSupported>1</n1:FailThroughSupported>
|
||||
<n1:InstanceID>UEFI:BIOS.Setup.1-1#UefiBootSeq#NIC.Embedded.2-1-1#236af982351f674f952c4db458fe40ab</n1:InstanceID>
|
||||
<n1:PendingAssignedSequence>2</n1:PendingAssignedSequence>
|
||||
<n1:PendingEnabledStatus>0</n1:PendingEnabledStatus>
|
||||
</n1:DCIM_BootSourceSetting>
|
||||
<n1:DCIM_BootSourceSetting>
|
||||
<n1:BIOSBootString>NIC in Slot 2 Port 1 Partition 1: EFI Network 3 UefiBootSeq</n1:BIOSBootString>
|
||||
<n1:BootSourceType>UEFI</n1:BootSourceType>
|
||||
<n1:BootString>NIC in Slot 2 Port 1 Partition 1: EFI Network 3 UefiBootSeq</n1:BootString>
|
||||
<n1:CurrentAssignedSequence>3</n1:CurrentAssignedSequence>
|
||||
<n1:CurrentEnabledStatus>0</n1:CurrentEnabledStatus>
|
||||
<n1:ElementName>NIC in Slot 2 Port 1 Partition 1: EFI Network 3 UefiBootSeq</n1:ElementName>
|
||||
<n1:FailThroughSupported>1</n1:FailThroughSupported>
|
||||
<n1:InstanceID>UEFI:BIOS.Setup.1-1#UefiBootSeq#NIC.Slot.2-1-1#d4dcb3203b7a0e381ffa1c5df5873890</n1:InstanceID>
|
||||
<n1:PendingAssignedSequence>3</n1:PendingAssignedSequence>
|
||||
<n1:PendingEnabledStatus>0</n1:PendingEnabledStatus>
|
||||
</n1:DCIM_BootSourceSetting>
|
||||
<n1:DCIM_BootSourceSetting>
|
||||
<n1:BIOSBootString>NIC in Slot 2 Port 2 Partition 1: EFI Network 4 UefiBootSeq</n1:BIOSBootString>
|
||||
<n1:BootSourceType>UEFI</n1:BootSourceType>
|
||||
<n1:BootString>NIC in Slot 2 Port 2 Partition 1: EFI Network 4 UefiBootSeq</n1:BootString>
|
||||
<n1:CurrentAssignedSequence>4</n1:CurrentAssignedSequence>
|
||||
<n1:CurrentEnabledStatus>0</n1:CurrentEnabledStatus>
|
||||
<n1:ElementName>NIC in Slot 2 Port 2 Partition 1: EFI Network 4 UefiBootSeq</n1:ElementName>
|
||||
<n1:FailThroughSupported>1</n1:FailThroughSupported>
|
||||
<n1:InstanceID>UEFI:BIOS.Setup.1-1#UefiBootSeq#NIC.Slot.2-2-1#f438b57a48e180b211662c463cd406b1</n1:InstanceID>
|
||||
<n1:PendingAssignedSequence>4</n1:PendingAssignedSequence>
|
||||
<n1:PendingEnabledStatus>0</n1:PendingEnabledStatus>
|
||||
</n1:DCIM_BootSourceSetting>
|
||||
<n1:DCIM_BootSourceSetting>
|
||||
<n1:BIOSBootString>Unavailable: Windows Boot Manager UefiBootSeq</n1:BIOSBootString>
|
||||
<n1:BootSourceType>UEFI</n1:BootSourceType>
|
||||
<n1:BootString>Unavailable: Windows Boot Manager UefiBootSeq</n1:BootString>
|
||||
<n1:CurrentAssignedSequence>5</n1:CurrentAssignedSequence>
|
||||
<n1:CurrentEnabledStatus>1</n1:CurrentEnabledStatus>
|
||||
<n1:ElementName>Unavailable: Windows Boot Manager UefiBootSeq</n1:ElementName>
|
||||
<n1:FailThroughSupported>1</n1:FailThroughSupported>
|
||||
<n1:InstanceID>UEFI:BIOS.Setup.1-1#UefiBootSeq#Unknown.Unknown.6-1#f80cdb0ddd723411affd9b05852b3f4a</n1:InstanceID>
|
||||
<n1:PendingAssignedSequence>5</n1:PendingAssignedSequence>
|
||||
<n1:PendingEnabledStatus>1</n1:PendingEnabledStatus>
|
||||
</n1:DCIM_BootSourceSetting>
|
||||
</wsman:Items>
|
||||
<wsman:EndOfSequence/>
|
||||
</wsen:EnumerateResponse>
|
||||
</s:Body>
|
||||
</s:Envelope>
|
@ -0,0 +1,23 @@
|
||||
<s:Envelope xmlns:n1="http://schemas.dell.com/wbem/wscim/1/cim-schema/2/DCIM_SystemView"
|
||||
xmlns:s="http://www.w3.org/2003/05/soap-envelope"
|
||||
xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing"
|
||||
xmlns:wsen="http://schemas.xmlsoap.org/ws/2004/09/enumeration"
|
||||
xmlns:wsman="http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd">
|
||||
<s:Header>
|
||||
<wsa:To>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</wsa:To>
|
||||
<wsa:Action>http://schemas.xmlsoap.org/ws/2004/09/enumeration/EnumerateResponse</wsa:Action>
|
||||
<wsa:RelatesTo>uuid:c4710f54-6fd5-4719-859c-7e69080b99e6</wsa:RelatesTo>
|
||||
<wsa:MessageID>uuid:3b67422f-215c-115c-8e9f-a36fc6fe83b0</wsa:MessageID>
|
||||
</s:Header>
|
||||
<s:Body>
|
||||
<wsen:EnumerateResponse>
|
||||
<wsman:Items>
|
||||
<n1:DCIM_SystemView>
|
||||
<n1:InstanceID>System.Embedded.1</n1:InstanceID>
|
||||
<n1:LifecycleControllerVersion>2.1.0</n1:LifecycleControllerVersion>
|
||||
</n1:DCIM_SystemView>
|
||||
</wsman:Items>
|
||||
<wsman:EndOfSequence/>
|
||||
</wsen:EnumerateResponse>
|
||||
</s:Body>
|
||||
</s:Envelope>
|
Loading…
Reference in new issue